From a194aa56e656273fde94d2935e43d0640d90e42f Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Wed, 9 Jul 2003 03:20:24 +0200 Subject: cgraph.c (cgraph_node_name): New function. * cgraph.c (cgraph_node_name): New function. (dump_cgraph): Use it. * cgraph.h (cgraph_dump_file): Declare. (cgraph_node_name): Declare. * cgraphunit.c: Include timevar.h (cgraph_finalize_compilation_unit): Use timevar; reorganize dumps. (cgraph_optimize_function): Use TV_INTEGRATION. (cgraph_mark_local_functions): reorganize dumps. (cgraph_mark_functions_to_inline_once): Likewise. (cgraph_optimize): Likewise; use timevar. * timevar.def (TV_CGRAPH, TV_CGRAPHOPT): New. * toplev.c (dump_file_index): Add DFI_cgraph. (dump_file_info): Likewise. (cgraph_dump_file): New global variable. (do_compile): Open and close cgraph dump. * invoke.texi (-d): Document new flag; renumber. From-SVN: r69120 --- gcc/timevar.def | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/timevar.def') diff --git a/gcc/timevar.def b/gcc/timevar.def index f8a32f6..22d3097 100644 --- a/gcc/timevar.def +++ b/gcc/timevar.def @@ -39,6 +39,8 @@ DEFTIMEVAR (TV_GC , "garbage collection") /* Time spent generating dump files. */ DEFTIMEVAR (TV_DUMP , "dump files") +DEFTIMEVAR (TV_CGRAPH , "callgraph construction") +DEFTIMEVAR (TV_CGRAPHOPT , "callgraph optimization") /* Time spent by constructing CFG. */ DEFTIMEVAR (TV_CFG , "cfg construction") /* Time spent by cleaning up CFG. */ -- cgit v1.1