diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-31 11:48:56 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-07-31 11:48:56 +0000 |
commit | 86c98a43b4af8d90165cded55c0565a849e22050 (patch) | |
tree | 5d52b76e3a224ba07efb9f5620abc987ed68ed5b /gcc | |
parent | b069160759f328addcc8925fed2d8ce96b2e6035 (diff) | |
download | gcc-86c98a43b4af8d90165cded55c0565a849e22050.tar.gz |
* sched-vis.c (dump_insn_slim): Print print_rtx_head at the
start of each new line.
* final.c (final_scan_insn): If the final dump is requested as
slim RTL, dump slim RTL to the assembly file also.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190006 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/final.c | 9 | ||||
-rw-r--r-- | gcc/sched-vis.c | 2 |
3 files changed, 16 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e923388a811..879137aa802 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2012-07-31 Steven Bosscher <steven@gcc.gnu.org> + + * sched-vis.c (dump_insn_slim): Print print_rtx_head at the + start of each new line. + * final.c (final_scan_insn): If the final dump is requested as + slim RTL, dump slim RTL to the assembly file also. + 2012-07-31 Andrey Belevantsev <abel@ispras.ru> PR target/53975 diff --git a/gcc/final.c b/gcc/final.c index 095d608cdc3..cdae0117388 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2747,11 +2747,16 @@ final_scan_insn (rtx insn, FILE *file, int optimize_p ATTRIBUTE_UNUSED, insn_code_number = recog_memoized (insn); cleanup_subreg_operands (insn); - /* Dump the insn in the assembly for debugging. */ + /* Dump the insn in the assembly for debugging (-dAP). + If the final dump is requested as slim RTL, dump slim + RTL to the assembly file also. */ if (flag_dump_rtl_in_asm) { print_rtx_head = ASM_COMMENT_START; - print_rtl_single (asm_out_file, insn); + if (! (dump_flags & TDF_SLIM)) + print_rtl_single (asm_out_file, insn); + else + dump_insn_slim (asm_out_file, insn); print_rtx_head = ""; } diff --git a/gcc/sched-vis.c b/gcc/sched-vis.c index d5a8747169a..7a07b3f95f9 100644 --- a/gcc/sched-vis.c +++ b/gcc/sched-vis.c @@ -767,11 +767,13 @@ dump_insn_slim (FILE *f, const_rtx x) rtx note; print_insn (t, x, 1); + fputs (print_rtx_head, f); fputs (t, f); putc ('\n', f); if (INSN_P (x) && REG_NOTES (x)) for (note = REG_NOTES (x); note; note = XEXP (note, 1)) { + fputs (print_rtx_head, f); print_value (t, XEXP (note, 0), 1); fprintf (f, " %s: %s\n", GET_REG_NOTE_NAME (REG_NOTE_KIND (note)), t); |