timevar.def (TV_MACH_DEP): New.

* timevar.def (TV_MACH_DEP): New.
        * toplev.c (rest_of_compilation): Use it.
        * config/ia64/ia64.c (ia64_reorg): Push to TV_SCHED2.

From-SVN: r45017
This commit is contained in:
Richard Henderson 2001-08-18 19:43:30 -07:00 committed by Richard Henderson
parent b36d8fb47a
commit eced69b5dd
4 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2001-08-18 Richard Henderson <rth@redhat.com>
* timevar.def (TV_MACH_DEP): New.
* toplev.c (rest_of_compilation): Use it.
* config/ia64/ia64.c (ia64_reorg): Push to TV_SCHED2.
2001-08-18 Zack Weinberg <zackw@panix.com>
* unwind-dw2.c (execute_stack_op): Add default aborts to

View File

@ -43,6 +43,7 @@ Boston, MA 02111-1307, USA. */
#include "basic-block.h"
#include "toplev.h"
#include "sched-int.h"
#include "timevar.h"
#include "target.h"
#include "target-def.h"
@ -6562,9 +6563,11 @@ ia64_reorg (insns)
if (ia64_flag_schedule_insns2)
{
timevar_push (TV_SCHED2);
ia64_final_schedule = 1;
schedule_ebbs (rtl_dump_file);
ia64_final_schedule = 0;
timevar_pop (TV_SCHED2);
/* This relies on the NOTE_INSN_BASIC_BLOCK notes to be in the same
place as they were during scheduling. */

View File

@ -69,6 +69,7 @@ DEFTIMEVAR (TV_IFCVT2 , "if-conversion 2")
DEFTIMEVAR (TV_PEEPHOLE2 , "peephole 2")
DEFTIMEVAR (TV_RENAME_REGISTERS , "rename registers")
DEFTIMEVAR (TV_SCHED2 , "scheduling 2")
DEFTIMEVAR (TV_MACH_DEP , "machine dep reorg")
DEFTIMEVAR (TV_DBR_SCHED , "delay branch sched")
DEFTIMEVAR (TV_REORDER_BLOCKS , "reorder blocks")
DEFTIMEVAR (TV_SHORTEN_BRANCH , "shorten branches")

View File

@ -3611,11 +3611,13 @@ rest_of_compilation (decl)
/* If a machine dependent reorganization is needed, call it. */
#ifdef MACHINE_DEPENDENT_REORG
timevar_push (TV_MACH_DEP);
open_dump_file (DFI_mach, decl);
MACHINE_DEPENDENT_REORG (insns);
close_dump_file (DFI_mach, print_rtl, insns);
timevar_pop (TV_MACH_DEP);
ggc_collect ();
#endif