diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-22 17:36:11 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-22 17:36:11 +0000 |
commit | 3469584104628cc2ed0d2ab3174d2e013467c6e8 (patch) | |
tree | 9519b5fef717db8de20c7fc5aa6552664ff2478f /gcc | |
parent | c359831bce826d1d14bd78aec28cf7e34206e046 (diff) | |
download | gcc-3469584104628cc2ed0d2ab3174d2e013467c6e8.zip gcc-3469584104628cc2ed0d2ab3174d2e013467c6e8.tar.gz gcc-3469584104628cc2ed0d2ab3174d2e013467c6e8.tar.bz2 |
* doc/invoke.texi: Document dumps, .btl, .cfg, and .bypass.
From-SVN: r68345
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8fd33ca..fa2eb4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-06-22 Kazu Hirata <kazu@cs.umass.edu> + + * doc/invoke.texi: Document dumps, .btl, .cfg, and .bypass. + 2003-06-22 Andreas Schwab <schwab@suse.de> * doc/invoke.texi: Remove leading `-' from options in index. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ff476d8..7ff3ba1 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -3124,9 +3124,11 @@ Dump after instruction combination, to the file @file{@var{file}.21.combine}. @item C @opindex dC Dump after the first if conversion, to the file @file{@var{file}.16.ce1}. +Also dump after the second if conversion, to the file @file{@var{file}.22.ce2}. @item d @opindex dd -Dump after delayed branch scheduling, to @file{@var{file}.36.dbr}. +Dump after branch target load optimization, to to @file{@var{file}.33.btl}. +Also dump after delayed branch scheduling, to @file{@var{file}.36.dbr}. @item D @opindex dD Dump all macro definitions, at the end of preprocessing, in addition to @@ -3140,7 +3142,8 @@ Dump after SSA optimizations, to @file{@var{file}.04.ssa} and Dump after the second if conversion, to @file{@var{file}.32.ce3}. @item f @opindex df -Dump after life analysis, to @file{@var{file}.20.life}. +Dump after control and data flow analysis, to @file{@var{file}.14.cfg}. +Also dump after life analysis, to @file{@var{file}.20.life}. @item F @opindex dF Dump after purging @code{ADDRESSOF} codes, to @file{@var{file}.10.addressof}. @@ -3150,6 +3153,8 @@ Dump after global register allocation, to @file{@var{file}.26.greg}. @item G @opindex dG Dump after GCSE, to @file{@var{file}.11.gcse}. +Also dump after jump bypassing and control flow optimizations, to +@file{@var{file}.13.bypass}. @item h @opindex dh Dump after finalization of EH handling code, to @file{@var{file}.02.eh}. |