OSDN Git Service

Toplevel:
[pf3gnuchains/gcc-fork.git] / gcc / doc / passes.texi
1 @c markers: CROSSREF BUG TODO
2
3 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 @c 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 @c This is part of the GCC manual.
6 @c For copying conditions, see the file gcc.texi.
7
8 @node Passes
9 @chapter Passes and Files of the Compiler
10 @cindex passes and files of the compiler
11 @cindex files and passes of the compiler
12 @cindex compiler passes and files
13
14 This chapter is dedicated to giving an overview of the optimization and
15 code generation passes of the compiler.  In the process, it describes 
16 some of the language front end interface, though this description is no
17 where near complete.
18
19 @menu
20 * Parsing pass::         The language front end turns text into bits.
21 * Gimplification pass::  The bits are turned into something we can optimize.
22 * Pass manager::         Sequencing the optimization passes.
23 * Tree-SSA passes::      Optimizations on a high-level representation.
24 * RTL passes::           Optimizations on a low-level representation.
25 @end menu
26
27 @node Parsing pass
28 @section Parsing pass
29 @cindex GENERIC
30 @findex lang_hooks.parse_file
31 The language front end is invoked only once, via
32 @code{lang_hooks.parse_file}, to parse the entire input.  The language
33 front end may use any intermediate language representation deemed 
34 appropriate.  The C front end uses GENERIC trees (CROSSREF), plus
35 a double handful of language specific tree codes defined in
36 @file{c-common.def}.  The Fortran front end uses a completely different
37 private representation.
38
39 @cindex GIMPLE
40 @cindex gimplification
41 @cindex gimplifier
42 @cindex language-independent intermediate representation
43 @cindex intermediate representation lowering
44 @cindex lowering, language-dependent intermediate representation
45 At some point the front end must translate the representation used in the
46 front end to a representation understood by the language-independent 
47 portions of the compiler.  Current practice takes one of two forms.
48 The C front end manually invokes the gimplifier (CROSSREF) on each function,
49 and uses the gimplifier callbacks to convert the language-specific tree 
50 nodes directly to GIMPLE (CROSSREF) before passing the function off to
51 be compiled.
52 The Fortran front end converts from a private representation to GENERIC,
53 which is later lowered to GIMPLE when the function is compiled.  Which
54 route to choose probably depends on how well GENERIC (plus extensions)
55 can be made to match up with the source language and necessary parsing
56 data structures.
57
58 BUG: Gimplification must occur before nested function lowering,
59 and nested function lowering must be done by the front end before
60 passing the data off to cgraph.
61
62 TODO: Cgraph should control nested function lowering.  It would
63 only be invoked when it is certain that the outer-most function
64 is used.
65
66 TODO: Cgraph needs a gimplify_function callback.  It should be
67 invoked when (1) it is certain that the function is used, (2)
68 warning flags specified by the user require some amount of
69 compilation in order to honor, (3) the language indicates that
70 semantic analysis is not complete until gimplification occurs.
71 Hum... this sounds overly complicated.  Perhaps we should just
72 have the front end gimplify always; in most cases it's only one
73 function call.
74
75 The front end needs to pass all function definitions and top level 
76 declarations off to the middle-end so that they can be compiled and
77 emitted to the object file.  For a simple procedural language, it is
78 usually most convenient to do this as each top level declaration or
79 definition is seen.  There is also a distinction to be made between
80 generating functional code and generating complete debug information.
81 The only thing that is absolutely required for functional code is that
82 function and data @emph{defintions} be passed to the middle-end.  For
83 complete debug information, function, data and type declarations 
84 should all be passed as well.
85
86 @findex rest_of_decl_compilation
87 @findex rest_of_type_compilation
88 @findex cgraph_finalize_function
89 In any case, the front end needs each complete top-level function or
90 data declaration, and each data definition should be passed to 
91 @code{rest_of_decl_compilation}.  Each complete type definition should
92 be passed to @code{rest_of_type_compilation}.  Each function definition
93 should be passed to @code{cgraph_finalize_function}.
94
95 TODO: I know rest_of_compilation currently has all sorts of
96 rtl-generation semantics.  I plan to move all code generation
97 bits (both tree and rtl) to compile_function.  Should we hide
98 cgraph from the front ends and move back to rest_of_compilation
99 as the official interface?  Possibly we should rename all three
100 interfaces such that the names match in some meaningful way and
101 that is more descriptive than "rest_of".
102
103 The middle-end will, at its option, emit the function and data 
104 definitions immediately or queue them for later processing.
105
106 @node Gimplification pass
107 @section Gimplification pass
108
109 @cindex gimplification
110 @cindex GIMPLE
111 @dfn{Gimplification} is a whimsical term for the process of converting
112 the intermediate representation of a function into the GIMPLE language
113 (CROSSREF).  The term stuck, and so words like ``gimplification,''
114 ``gimplify,'' ``gimplifier'' and the like are sprinkled throughout this
115 section of code.
116
117 @cindex GENERIC
118 While a front end may certainly choose to generate GIMPLE directly if
119 it chooses, this can be a moderately complex process unless the 
120 intermediate language used by the front end is already fairly simple.
121 Usually it is easier to generate GENERIC trees plus extensions
122 and let the language-independent gimplifier do most of the work.
123
124 @findex gimplify_function_tree
125 @findex gimplify_expr
126 @findex lang_hooks.gimplify_expr
127 The main entry point to this pass is @code{gimplify_function_tree}
128 located in @file{gimplify.c}.  From here we process the entire 
129 function gimplifying each statement in turn.  The main workhorse
130 for this pass is @code{gimplify_expr}.  Approximately everything
131 passes through here at least once, and it is from here that we
132 invoke the @code{lang_hooks.gimplify_expr} callback.
133
134 The callback should examine the expression in question and return
135 @code{GS_UNHANDLED} if the expression is not a language specific
136 construct that requires attention.  Otherwise it should alter the
137 expression in some way to such that forward progress is made toward
138 producing valid GIMPLE.  If the callback is certain that the 
139 transformation is complete and the expression is valid GIMPLE, it
140 should return @code{GS_ALL_DONE}.  Otherwise it should return
141 @code{GS_OK}, which will cause the expression to be processed again.
142 If the callback encounters an error during the transformation (because
143 the front end is relying on the gimplification process to finish
144 semantic checks), it should return @code{GS_ERROR}.
145
146 @node Pass manager
147 @section Pass manager
148
149 The pass manager is located in @file{passes.c} and @file{passes.h}.
150 Its job is to run all of the individual passes in the correct order,
151 and take care of standard bookkeeping that applies to every pass.
152
153 The theory of operation is that each pass defines a structure that
154 represents everything we need to know about that pass --- when it
155 should be run, how it should be run, what intermediate language 
156 form or on-the-side data structures it needs.  We register the pass
157 to be run in some particular order, and the pass manager arranges
158 for everything to happen in the correct order.
159
160 The actuality doesn't completely live up to the theory at present.
161 Command-line switches and @code{timevar_id_t} enumerations must still
162 be defined elsewhere.  The pass manager validates constraints but does
163 not attempt to (re-)generate data structures or lower intermediate
164 language form based on the requirements of the next pass.  Nevertheless,
165 what is present is useful, and a far sight better than nothing at all.
166
167 TODO: describe the global variables set up by the pass manager,
168 and a brief description of how a new pass should use it.
169 I need to look at what info rtl passes use first...
170
171 @node Tree-SSA passes
172 @section Tree-SSA passes
173
174 The following briefly describes the tree optimization passes that are
175 run after gimplification and what source files they are located in.
176
177 @itemize @bullet
178 @item Remove useless statements
179
180 This pass is an extremely simple sweep across the gimple code in which
181 we identify obviously dead code and remove it.  Here we do things like
182 simplify @code{if} statements with constant conditions, remove
183 exception handling constructs surrounding code that obviously cannot
184 throw, remove lexical bindings that contain no variables, and other
185 assorted simplistic cleanups.  The idea is to get rid of the obvious
186 stuff quickly rather than wait until later when it's more work to get
187 rid of it.  This pass is located in @file{tree-cfg.c} and described by
188 @code{pass_remove_useless_stmts}.
189
190 @item Mudflap declaration registration
191
192 If mudflap (@pxref{Optimize Options,,-fmudflap -fmudflapth
193 -fmudflapir,gcc.info,Using the GNU Compiler Collection (GCC)}) is
194 enabled, we generate code to register some variable declarations with
195 the mudflap runtime.  Specifically, the runtime tracks the lifetimes of
196 those variable declarations that have their addresses taken, or whose
197 bounds are unknown at compile time (@code{extern}).  This pass generates
198 new exception handling constructs (@code{try}/@code{finally}), and so
199 must run before those are lowered.  In addition, the pass enqueues
200 declarations of static variables whose lifetimes extend to the entire
201 program.  The pass is located in @file{tree-mudflap.c} and is described
202 by @code{pass_mudflap_1}.
203
204 @item Lower control flow
205
206 This pass flattens @code{if} statements (@code{COND_EXPR}) and 
207 and moves lexical bindings (@code{BIND_EXPR}) out of line.  After
208 this pass, all @code{if} statements will have exactly two @code{goto}
209 statements in its @code{then} and @code{else} arms.  Lexical binding
210 information for each statement will be found in @code{TREE_BLOCK} rather
211 than being inferred from its position under a @code{BIND_EXPR}.  This
212 pass is found in @file{gimple-low.c} and is described by 
213 @code{pass_lower_cf}.
214
215 @item Lower exception handling control flow
216
217 This pass decomposes high-level exception handling constructs
218 (@code{TRY_FINALLY_EXPR} and @code{TRY_CATCH_EXPR}) into a form
219 that explicitly represents the control flow involved.  After this
220 pass, @code{lookup_stmt_eh_region} will return a non-negative
221 number for any statement that may have EH control flow semantics;
222 examine @code{tree_can_throw_internal} or @code{tree_can_throw_external}
223 for exact semantics.  Exact control flow may be extracted from
224 @code{foreach_reachable_handler}.  The EH region nesting tree is defined
225 in @file{except.h} and built in @file{except.c}.  The lowering pass
226 itself is in @file{tree-eh.c} and is described by @code{pass_lower_eh}.
227
228 @item Build the control flow graph
229
230 This pass decomposes a function into basic blocks and creates all of
231 the edges that connect them.  It is located in @file{tree-cfg.c} and
232 is described by @code{pass_build_cfg}.
233
234 @item Find all referenced variables
235
236 This pass walks the entire function and collects an array of all 
237 variables referenced in the function, @code{referenced_vars}.  The
238 index at which a variable is found in the array is used as a UID
239 for the variable within this function.  This data is needed by the
240 SSA rewriting routines.  The pass is located in @file{tree-dfa.c}
241 and is described by @code{pass_referenced_vars}.
242
243 @item Enter static single assignment form
244
245 This pass rewrites the function such that it is in SSA form.  After
246 this pass, all @code{is_gimple_reg} variables will be referenced by
247 @code{SSA_NAME}, and all occurences of other variables will be 
248 annotated with @code{VDEFS} and @code{VUSES}; phi nodes will have 
249 been inserted as necessary for each basic block.  This pass is
250 located in @file{tree-ssa.c} and is described by @code{pass_build_ssa}.
251
252 @item Warn for uninitialized variables
253
254 This pass scans the function for uses of @code{SSA_NAME}s that
255 are fed by default definition.  For non-parameter variables, such
256 uses are uninitialized.  The pass is run twice, before and after
257 optimization.  In the first pass we only warn for uses that are
258 positively uninitialized; in the second pass we warn for uses that
259 are possibly uninitialized.  The pass is located in @file{tree-ssa.c}
260 and is defined by @code{pass_early_warn_uninitialized} and
261 @code{pass_late_warn_uninitialized}.
262
263 @item Dead code elimination
264
265 This pass scans the function for statements without side effects whose
266 result is unused.  It does not do memory life analysis, so any value
267 that is stored in memory is considered used.  The pass is run multiple
268 times throughout the optimization process.  It is located in
269 @file{tree-ssa-dce.c} and is described by @code{pass_dce}.
270
271 @item Dominator optimizations
272
273 This pass performs trivial dominator-based copy and constant propagation,
274 expression simplification, and jump threading.  It is run multiple times
275 throughout the optimization process.  It it located in @file{tree-ssa-dom.c}
276 and is described by @code{pass_dominator}.
277
278 @item Redundant phi elimination
279
280 This pass removes phi nodes for which all of the arguments are the same
281 value, excluding feedback.  Such degenerate forms are typically created
282 by removing unreachable code.  The pass is run multiple times throughout
283 the optimization process.  It is located in @file{tree-ssa.c} and is
284 described by @code{pass_redundant_phi}.o
285
286 @item Forward propagation of single-use variables
287
288 This pass attempts to remove redundant computation by substituting
289 variables that are used once into the expression that uses them and
290 seeing if the result can be simplified.  It is located in 
291 @file{tree-ssa-forwprop.c} and is described by @code{pass_forwprop}.
292
293 @item Copy Renaming
294
295 This pass attempts to change the name of compiler temporaries involved in 
296 copy operations such that SSA->normal can coalesce the copy away. When compiler
297 temporaries are copies of user variables, it also renames the compiler
298 temporary to the user variable resulting in better use of user symbols.  It is 
299 located in @file{tree-ssa-copyrename.c} and is described by 
300 @code{pass_copyrename}.
301
302 @item PHI node optimizations
303
304 This pass recognizes forms of phi inputs that can be represented as
305 conditional expressions and rewrites them into straight line code.
306 It is located in @file{tree-ssa-phiopt.c} and is described by 
307 @code{pass_phiopt}.
308
309 @item May-alias optimization
310
311 This pass performs a flow sensitive SSA-based points-to analysis.
312 The resulting may-alias, must-alias, and escape analysis information
313 is used to promote variables from in-memory addressable objects to
314 non-aliased variables that can be renamed into SSA form.  We also
315 update the @code{VDEF}/@code{VUSE} memory tags for non-renamable
316 aggregates so that we get fewer false kills.  The pass is located
317 in @file{tree-ssa-alias.c} and is described by @code{pass_may_alias}.
318
319 @item Profiling
320
321 This pass rewrites the function in order to collect runtime block
322 and value profiling data.  Such data may be fed back into the compiler
323 on a subsequent run so as to allow optimization based on expected
324 execution frequencies.  The pass is located in @file{predict.c} and
325 is described by @code{pass_profile}.
326
327 @item Lower complex arithmetic
328
329 This pass rewrites complex arithmetic operations into their component
330 scalar arithmetic operations.  The pass is located in @file{tree-complex.c}
331 and is described by @code{pass_lower_complex}.
332
333 @item Scalar replacement of aggregates
334
335 This pass rewrites suitable non-aliased local aggregate variables into
336 a set of scalar variables.  The resulting scalar variables are 
337 rewritten into SSA form, which allows subsequent optimization passes
338 to do a significantly better job with them.  The pass is located in
339 @file{tree-sra.c} and is described by @code{pass_sra}.
340
341 @item Dead store elimination
342
343 This pass eliminates stores to memory that are subsequently overwritten
344 by another store, without any intervening loads.  The pass is located
345 in @file{tree-ssa-dse.c} and is described by @code{pass_dse}.
346
347 @item Tail recursion elimination
348
349 This pass transforms tail recursion into a loop.  It is located in
350 @file{tree-tailcall.c} and is described by @code{pass_tail_recursion}.
351
352 @item Partial redundancy elimination
353
354 This pass eliminates partially redundant computations, as well as
355 performing load motion.  The pass is located in @file{tree-ssa-pre.c}
356 and is described by @code{pass_pre}.
357
358 @item Loop optimization
359
360 The main driver of the pass is placed in @file{tree-ssa-loop.c}
361 and described by @code{pass_loop}.
362
363 The optimizations performed by this pass are:
364
365 Loop invariant motion.  This pass moves only invariants that
366 would be hard to handle on rtl level (function calls, operations that expand to
367 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
368 operands of conditions that are invariant out of the loop, so that we can use
369 just trivial invariantness analysis in loop unswitching.  The pass also includes
370 store motion.  The pass is implemented in @file{tree-ssa-loop-im.c}.
371
372 Canonical induction variable creation.  This pass creates a simple counter
373 for number of iterations of the loop and replaces the exit condition of the
374 loop using it, in case when a complicated analysis is necessary to determine
375 the number of iterations.  Later optimizations then may determine the number
376 easily.  The pass is implemented in @file{tree-ssa-loop-ivcanon.c}.
377
378 Induction variable optimizations.  This pass performs standard induction
379 variable optimizations, including strength reduction, induction variable
380 merging and induction variable elimination.  The pass is implemented in
381 @file{tree-ssa-loop-ivopts.c}.
382
383 The optimizations also use various utility functions contained in
384 @file{tree-ssa-loop-manip.c}, @file{cfgloop.c}, @file{cfgloopanal.c} and
385 @file{cfgloopmanip.c}.
386
387 @item Tree level if-conversion for vectorizer
388
389 This pass applies if-conversion to simple loops to help vectorizer.
390 We identify if convertable loops, if-convert statements and merge
391 basic blocks in one big block. The idea is to present loop in such
392 form so that vectorizer can have one to one mapping between statements
393 and available vector operations. This patch re-introduces COND_EXPR
394 at GIMPLE level. This pass is located in @file{tree-if-conv.c}.
395
396 @item Conditional constant propagation
397
398 This pass relaxes a lattice of values in order to identify those
399 that must be constant even in the presence of conditional branches.
400 The pass is located in @file{tree-ssa-ccp.c} and is described
401 by @code{pass_ccp}.
402
403 @item Folding builtin functions
404
405 This pass simplifies builtin functions, as applicable, with constant 
406 arguments or with inferrable string lengths.  It is located in
407 @file{tree-ssa-ccp.c} and is described by @code{pass_fold_builtins}.
408
409 @item Split critical edges
410
411 This pass identifies critical edges and inserts empty basic blocks
412 such that the edge is no longer critical.  The pass is located in
413 @file{tree-cfg.c} and is described by @code{pass_split_crit_edges}.
414
415 @item Partial redundancy elimination
416
417 This pass answers the question ``given a hypothetical temporary
418 variable, what expressions could we eliminate?''  It is located
419 in @file{tree-ssa-pre.c} and is described by @code{pass_pre}.
420
421 @item Control dependence dead code elimination
422
423 This pass is a stronger form of dead code elimination that can
424 eliminate unnecessary control flow statements.   It is located
425 in @file{tree-ssa-dce.c} and is described by @code{pass_cd_dce}.
426
427 @item Tail call elimination
428
429 This pass identifies function calls that may be rewritten into
430 jumps.  No code transformation is actually applied here, but the
431 data and control flow problem is solved.  The code transformation
432 requires target support, and so is delayed until RTL.  In the
433 meantime @code{CALL_EXPR_TAILCALL} is set indicating the possibility.
434 The pass is located in @file{tree-tailcall.c} and is described by
435 @code{pass_tail_calls}.  The RTL transformation is handled by 
436 @code{fixup_tail_calls} in @file{calls.c}.
437
438 @item Warn for function return without value
439
440 For non-void functions, this pass locates return statements that do
441 not specify a value and issues a warning.  Such a statement may have
442 been injected by falling off the end of the function.  This pass is
443 run last so that we have as much time as possible to prove that the
444 statement is not reachable.  It is located in @file{tree-cfg.c} and
445 is described by @code{pass_warn_function_return}.
446
447 @item Mudflap statement annotation
448
449 If mudflap is enabled, we rewrite some memory accesses with code to
450 validate that the memory access is correct.  In particular, expressions
451 involving pointer dereferences (@code{INDIRECT_REF}, @code{ARRAY_REF},
452 etc.) are replaced by code that checks the selected address range
453 against the mudflap runtime's database of valid regions.  This check
454 includes an inline lookup into a direct-mapped cache, based on
455 shift/mask operations of the pointer value, with a fallback function
456 call into the runtime.  The pass is located in @file{tree-mudflap.c} and
457 is described by @code{pass_mudflap_2}.
458
459 @item Leave static single assignment form
460
461 This pass rewrites the function such that it is in normal form.  At
462 the same time, we eliminate as many single-use temporaries as possible,
463 so the intermediate language is no longer GIMPLE, but GENERIC.  The
464 pass is located in @file{tree-ssa.c} and is described by @code{pass_del_ssa}.
465 @end itemize
466
467 @node RTL passes
468 @section RTL passes
469
470 The following briefly describes the rtl generation and optimization
471 passes that are run after tree optimization.
472
473 @itemize @bullet
474 @item RTL generation
475
476 @c Avoiding overfull is tricky here.
477 The source files for RTL generation include
478 @file{stmt.c},
479 @file{calls.c},
480 @file{expr.c},
481 @file{explow.c},
482 @file{expmed.c},
483 @file{function.c},
484 @file{optabs.c}
485 and @file{emit-rtl.c}.
486 Also, the file
487 @file{insn-emit.c}, generated from the machine description by the
488 program @code{genemit}, is used in this pass.  The header file
489 @file{expr.h} is used for communication within this pass.
490
491 @findex genflags
492 @findex gencodes
493 The header files @file{insn-flags.h} and @file{insn-codes.h},
494 generated from the machine description by the programs @code{genflags}
495 and @code{gencodes}, tell this pass which standard names are available
496 for use and which patterns correspond to them.
497
498 @item Generate exception handling landing pads
499
500 This pass generates the glue that handles communication between the
501 exception handling library routines and the exception handlers within
502 the function.  Entry points in the function that are invoked by the
503 exception handling library are called @dfn{landing pads}.  The code
504 for this pass is located within @file{except.c}.
505
506 @item Cleanup control flow graph
507
508 This pass removes unreachable code, simplifies jumps to next, jumps to
509 jump, jumps across jumps, etc.  The pass is run multiple times.
510 For historical reasons, it is occasionally referred to as the ``jump
511 optimization pass''.  The bulk of the code for this pass is in 
512 @file{cfgcleanup.c}, and there are support routines in @file{cfgrtl.c}
513 and @file{jump.c}.
514
515 @item Common subexpression elimination
516
517 This pass removes redundant computation within basic blocks, and 
518 optimizes addressing modes based on cost.  The pass is run twice.
519 The source is located in @file{cse.c}.
520
521 @item Global common subexpression elimination.
522
523 This pass performs two
524 different types of GCSE  depending on whether you are optimizing for
525 size or not (LCM based GCSE tends to increase code size for a gain in
526 speed, while Morel-Renvoise based GCSE does not).
527 When optimizing for size, GCSE is done using Morel-Renvoise Partial
528 Redundancy Elimination, with the exception that it does not try to move
529 invariants out of loops---that is left to  the loop optimization pass.
530 If MR PRE GCSE is done, code hoisting (aka unification) is also done, as
531 well as load motion.
532 If you are optimizing for speed, LCM (lazy code motion) based GCSE is
533 done.  LCM is based on the work of Knoop, Ruthing, and Steffen.  LCM
534 based GCSE also does loop invariant code motion.  We also perform load
535 and store motion when optimizing for speed.
536 Regardless of which type of GCSE is used, the GCSE pass also performs
537 global constant and  copy propagation.
538 The source file for this pass is @file{gcse.c}, and the LCM routines
539 are in @file{lcm.c}.
540
541 @item Loop optimization
542
543 This pass moves constant expressions out of loops,
544 and optionally does strength-reduction and loop unrolling as well.
545 Its source files are @file{loop.c} and @file{unroll.c}, plus the header
546 @file{loop.h} used for communication between them.  Loop unrolling uses
547 some functions in @file{integrate.c} and the header @file{integrate.h}.
548 Loop dependency analysis routines are contained in @file{dependence.c}.
549 This pass is seriously out-of-date and is supposed to be replaced by
550 a new one described below in near future.
551
552 A second loop optimization pass takes care of basic block level
553 optimizations---unrolling, peeling and unswitching loops. The source
554 files are @file{cfgloopanal.c} and @file{cfgloopmanip.c} containing
555 generic loop analysis and manipulation code, @file{loop-init.c} with
556 initialization and finalization code, @file{loop-unswitch.c} for loop
557 unswitching and @file{loop-unroll.c} for loop unrolling and peeling.
558 It also contains a separate loop invariant motion pass implemented in
559 @file{loop-invariant.c}.
560
561 @item Jump bypassing
562
563 This pass is an aggressive form of GCSE that transforms the control
564 flow graph of a function by propagating constants into conditional
565 branch instructions.  The source file for this pass is @file{gcse.c}.
566
567 @item If conversion
568
569 This pass attempts to replace conditional branches and surrounding
570 assignments with arithmetic, boolean value producing comparison
571 instructions, and conditional move instructions.  In the very last
572 invocation after reload, it will generate predicated instructions
573 when supported by the target.  The pass is located in @file{ifcvt.c}.
574
575 @item Web construction
576
577 This pass splits independent uses of each pseudo-register.  This can
578 improve effect of the other transformation, such as CSE or register
579 allocation.  Its source files are @file{web.c}.
580
581 @item Life analysis
582
583 This pass computes which pseudo-registers are live at each point in
584 the program, and makes the first instruction that uses a value point
585 at the instruction that computed the value.  It then deletes
586 computations whose results are never used, and combines memory
587 references with add or subtract instructions to make autoincrement or
588 autodecrement addressing.  The pass is located in @file{flow.c}.
589
590 @item Instruction combination
591
592 This pass attempts to combine groups of two or three instructions that
593 are related by data flow into single instructions.  It combines the
594 RTL expressions for the instructions by substitution, simplifies the
595 result using algebra, and then attempts to match the result against
596 the machine description.  The pass is located in @file{combine.c}.
597
598 @item Register movement
599
600 This pass looks for cases where matching constraints would force an
601 instruction to need a reload, and this reload would be a
602 register-to-register move.  It then attempts to change the registers
603 used by the instruction to avoid the move instruction.
604 The pass is located in @file{regmove.c}.
605
606 @item Optimize mode switching
607
608 This pass looks for instructions that require the processor to be in a
609 specific ``mode'' and minimizes the number of mode changes required to
610 satisfy all users.  What these modes are, and what they apply to are
611 completely target-specific.  The source is located in @file{lcm.c}.
612
613 @cindex modulo scheduling
614 @cindex sms, swing, software pipelining
615 @item Modulo scheduling 
616
617 This pass looks at innermost loops and reorders their instructions 
618 by overlapping different iterations.  Modulo scheduling is performed 
619 immediately before instruction scheduling.
620 The pass is located in (@file{modulo-sched.c}).  
621
622 @item Instruction scheduling
623
624 This pass looks for instructions whose output will not be available by
625 the time that it is used in subsequent instructions.  Memory loads and
626 floating point instructions often have this behavior on RISC machines.
627 It re-orders instructions within a basic block to try to separate the
628 definition and use of items that otherwise would cause pipeline
629 stalls.  This pass is performed twice, before and after register
630 allocation.  The pass is located in @file{haifa-sched.c},
631 @file{sched-deps.c}, @file{sched-ebb.c}, @file{sched-rgn.c} and
632 @file{sched-vis.c}.
633
634 @item Register allocation
635
636 These passes make sure that all occurrences of pseudo registers are
637 eliminated, either by allocating them to a hard register, replacing
638 them by an equivalent expression (e.g.@: a constant) or by placing
639 them on the stack.  This is done in several subpasses:
640
641 @itemize @bullet
642 @item
643 Register class preferencing.  The RTL code is scanned to find out
644 which register class is best for each pseudo register.  The source
645 file is @file{regclass.c}.
646
647 @item
648 Local register allocation.  This pass allocates hard registers to
649 pseudo registers that are used only within one basic block.  Because
650 the basic block is linear, it can use fast and powerful techniques to
651 do a decent job.  The source is located in @file{local-alloc.c}.
652
653 @item
654 Global register allocation.  This pass allocates hard registers for
655 the remaining pseudo registers (those whose life spans are not
656 contained in one basic block).  The pass is located in @file{global.c}.
657
658 @item
659 Graph coloring register allocator.  The files @file{ra.c}, @file{ra-build.c},
660 @file{ra-colorize.c}, @file{ra-debug.c}, @file{ra-rewrite.c} together with
661 the header @file{ra.h} contain another register allocator, which is used
662 when the option @option{-fnew-ra} is given.  In that case it is run instead
663 of the above mentioned local and global register allocation passes.
664
665 @cindex reloading
666 @item
667 Reloading.  This pass renumbers pseudo registers with the hardware
668 registers numbers they were allocated.  Pseudo registers that did not
669 get hard registers are replaced with stack slots.  Then it finds
670 instructions that are invalid because a value has failed to end up in
671 a register, or has ended up in a register of the wrong kind.  It fixes
672 up these instructions by reloading the problematical values
673 temporarily into registers.  Additional instructions are generated to
674 do the copying.
675
676 The reload pass also optionally eliminates the frame pointer and inserts
677 instructions to save and restore call-clobbered registers around calls.
678
679 Source files are @file{reload.c} and @file{reload1.c}, plus the header
680 @file{reload.h} used for communication between them.
681 @end itemize
682
683 @item Basic block reordering
684
685 This pass implements profile guided code positioning.  If profile
686 information is not available, various types of static analysis are
687 performed to make the predictions normally coming from the profile
688 feedback (IE execution frequency, branch probability, etc).  It is
689 implemented in the file @file{bb-reorder.c}, and the various
690 prediction routines are in @file{predict.c}.
691
692 @item Variable tracking
693
694 This pass computes where the variables are stored at each
695 position in code and generates notes describing the variable locations
696 to RTL code.  The location lists are then generated according to these
697 notes to debug information if the debugging information format supports
698 location lists.
699
700 @item Delayed branch scheduling
701
702 This optional pass attempts to find instructions that can go into the
703 delay slots of other instructions, usually jumps and calls.  The
704 source file name is @file{reorg.c}.
705
706 @item Branch shortening
707
708 On many RISC machines, branch instructions have a limited range.
709 Thus, longer sequences of instructions must be used for long branches.
710 In this pass, the compiler figures out what how far each instruction
711 will be from each other instruction, and therefore whether the usual
712 instructions, or the longer sequences, must be used for each branch.
713
714 @item Register-to-stack conversion
715
716 Conversion from usage of some hard registers to usage of a register
717 stack may be done at this point.  Currently, this is supported only
718 for the floating-point registers of the Intel 80387 coprocessor.   The
719 source file name is @file{reg-stack.c}.
720
721 @item Final
722
723 This pass outputs the assembler code for the function.  The source files
724 are @file{final.c} plus @file{insn-output.c}; the latter is generated
725 automatically from the machine description by the tool @file{genoutput}.
726 The header file @file{conditions.h} is used for communication between
727 these files.  If mudflap is enabled, the queue of deferred declarations
728 and any addressed constants (e.g., string literals) is processed by
729 @code{mudflap_finish_file} into a synthetic constructor function
730 containing calls into the mudflap runtime.
731
732 @item Debugging information output
733
734 This is run after final because it must output the stack slot offsets
735 for pseudo registers that did not get hard registers.  Source files
736 are @file{dbxout.c} for DBX symbol table format, @file{sdbout.c} for
737 SDB symbol table format, @file{dwarfout.c} for DWARF symbol table
738 format, files @file{dwarf2out.c} and @file{dwarf2asm.c} for DWARF2
739 symbol table format, and @file{vmsdbgout.c} for VMS debug symbol table
740 format.
741
742 @end itemize