summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorjgreenhalgh <jgreenhalgh@138bc75d-0d04-0410-961f-82ee72b054a4>2015-10-30 15:46:01 +0000
committerjgreenhalgh <jgreenhalgh@138bc75d-0d04-0410-961f-82ee72b054a4>2015-10-30 15:46:01 +0000
commit4c930e7e4b86177627a3af2c13fa9c40b5dbac70 (patch)
tree79b11c40362ce4bda0c01876a4a81f0cb6015f69 /gcc
parent60a0bf6a80fe7b3cc736828890d93355eeecdf62 (diff)
downloadgcc-4c930e7e4b86177627a3af2c13fa9c40b5dbac70.tar.gz
Re: [Docs] Reword the documentation for -fdump-rtl-
gcc/ * doc/invoke.texi (fdump-rtl-@var{pass}): Clarify relationship between pass numbering and execution order. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229584 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/invoke.texi22
2 files changed, 17 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c7e7fe1ef92..4f1b882f786 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2015-10-30 James Greenhalgh <james.greenhalgh@arm.com>
+
+ * doc/invoke.texi (fdump-rtl-@var{pass}): Clarify relationship
+ between pass numbering and execution order.
+
2015-10-30 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/arm.c (cortex_a9_sched_adjust_cost): Use reg_set_p to
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index 70dc5d0b197..4fc7d887a72 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -6666,17 +6666,19 @@ Says to make debugging dumps during compilation at times specified by
@var{letters}. This is used for debugging the RTL-based passes of the
compiler. The file names for most of the dumps are made by appending
a pass number and a word to the @var{dumpname}, and the files are
-created in the directory of the output file. In case of
+created in the directory of the output file. In case of
@option{=@var{filename}} option, the dump is output on the given file
-instead of the pass numbered dump files. Note that the pass number is
-computed statically as passes get registered into the pass manager.
-Thus the numbering is not related to the dynamic order of execution of
-passes. In particular, a pass installed by a plugin could have a
-number over 200 even if it executed quite early. @var{dumpname} is
-generated from the name of the output file, if explicitly specified
-and it is not an executable, otherwise it is the basename of the
-source file. These switches may have different effects when
-@option{-E} is used for preprocessing.
+instead of the pass numbered dump files. Note that the pass number is
+assigned as passes are registered into the pass manager. Most passes
+are registered in the order that they will execute and for these passes
+the number corresponds to the pass execution order. However, passes
+registered by plugins, passes specific to compilation targets, or
+passes that are otherwise registered after all the other passes are
+numbered higher than a pass named "final", even if they are executed
+earlier. @var{dumpname} is generated from the name of the output
+file if explicitly specified and not an executable, otherwise it is
+the basename of the source file. These switches may have different
+effects when @option{-E} is used for preprocessing.
Debug dumps can be enabled with a @option{-fdump-rtl} switch or some
@option{-d} option @var{letters}. Here are the possible