home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / gcc222.lha / info / gcc.info-7 (.txt) < prev    next >
GNU Info File  |  1992-07-19  |  47KB  |  798 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.47 from the input
  2. file gcc.texi.
  3.    This file documents the use and the internals of the GNU compiler.
  4.    Copyright (C) 1988, 1989, 1992 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the sections entitled "GNU General Public License" and "Boycott"
  11. are included exactly as in the original, and provided that the entire
  12. resulting derived work is distributed under the terms of a permission
  13. notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that the sections entitled "GNU General Public
  17. License" and "Boycott", and this permission notice, may be included in
  18. translations approved by the Free Software Foundation instead of in the
  19. original English.
  20. File: gcc.info,  Node: VMS Misc,  Prev: Global Declarations,  Up: VMS
  21. Other VMS Issues
  22. ================
  23.    GNU CC automatically arranges for `main' to return 1 by default if
  24. you fail to specify an explicit return value.  This will be interpreted
  25. by VMS as a status code indicating a normal successful completion.
  26. Version 1 of GNU CC did not provide this default.
  27.    GNU CC on VMS works only with the GNU assembler, GAS.  You need
  28. version 1.37 or later of GAS in order to produce value debugging
  29. information for the VMS debugger.  Use the ordinary VMS linker with the
  30. object files produced by GAS.
  31.    Under previous versions of GNU CC, the generated code would
  32. occasionally give strange results when linked to the sharable `VAXCRTL'
  33. library. Now this should work.
  34.    A caveat for use of `const' global variables: the `const' modifier
  35. must be specified in every external declaration of the variable in all
  36. of the source files that use that variable.  Otherwise the linker will
  37. issue warnings about conflicting attributes for the variable.  Your
  38. program will still work despite the warnings, but the variable will be
  39. placed in writable storage.
  40.    The VMS linker does not distinguish between upper and lower case
  41. letters in function and variable names.  However, usual practice in C
  42. is to distinguish case.  Normally GNU CC (by means of the assembler GAS)
  43. implements usual C behavior by augmenting each name that is not all
  44. lower-case.  A name is augmented by truncating it to at most 23
  45. characters and then adding more characters at the end which encode the
  46. case pattern the rest.
  47.    Name augmentation yields bad results for programs that use
  48. precompiled libraries (such as Xlib) which were generated by another
  49. compiler.  You can use the compiler option `/NOCASE_HACK' to inhibit
  50. augmentation; it makes external C functions and variables
  51. case-independent as is usual on VMS.  Alternatively, you could write
  52. all references to the functions and variables in such libraries using
  53. lower case; this will work on VMS, but is not portable to other systems.
  54.    Function and variable names are handled somewhat differently with GNU
  55. C++.  The GNU C++ compiler performs "name mangling" on function names,
  56. which means that it adds information to the function name to describe
  57. the data types of the arguments that the function takes. One result of
  58. this is that the name of a function can become very long. Since the VMS
  59. linker only recognizes the first 31 characters in a name, special
  60. action is taken to ensure that each function and variable has a unique
  61. name that can be represented in 31 characters.
  62.    If the name (plus a name augmentation, if required) is less than 32
  63. characters in length, then no special action is performed. If the name
  64. is longer than 31 characters, the assembler (GAS) will generate a hash
  65. string based upon the function name, truncate the function name to 23
  66. characters, and append the hash string to the truncated name.  If the
  67. `/VERBOSE' compiler option is used, the assembler will print both the
  68. full and truncated names of each symbol that is truncated.
  69.    The `/NOCASE_HACK' compiler option should not be used when you are
  70. compiling programs that use libg++. libg++ has several instances of
  71. objects (i.e.  `Filebuf' and `filebuf') which become indistinguishable
  72. in a case-insensitive environment.  This leads to cases where you need
  73. to inhibit augmentation selectively (if you were using libg++ and Xlib
  74. in the same program, for example).  There is no special feature for
  75. doing this, but you can get the result by defining a macro for each
  76. mixed case symbol for which you wish to inhibit augmentation.  The
  77. macro should expand into the lower case equivalent of itself.  For
  78. example:
  79.      #define StuDlyCapS studlycaps
  80.    These macro definitions can be placed in a header file to minimize
  81. the number of changes to your source code.
  82. File: gcc.info,  Node: Portability,  Next: Interface,  Prev: VMS,  Up: Top
  83. GNU CC and Portability
  84. **********************
  85.    The main goal of GNU CC was to make a good, fast compiler for
  86. machines in the class that the GNU system aims to run on: 32-bit
  87. machines that address 8-bit bytes and have several general registers. 
  88. Elegance, theoretical power and simplicity are only secondary.
  89.    GNU CC gets most of the information about the target machine from a
  90. machine description which gives an algebraic formula for each of the
  91. machine's instructions.  This is a very clean way to describe the
  92. target.  But when the compiler needs information that is difficult to
  93. express in this fashion, I have not hesitated to define an ad-hoc
  94. parameter to the machine description.  The purpose of portability is to
  95. reduce the total work needed on the compiler; it was not of interest
  96. for its own sake.
  97.    GNU CC does not contain machine dependent code, but it does contain
  98. code that depends on machine parameters such as endianness (whether the
  99. most significant byte has the highest or lowest address of the bytes in
  100. a word) and the availability of autoincrement addressing.  In the
  101. RTL-generation pass, it is often necessary to have multiple strategies
  102. for generating code for a particular kind of syntax tree, strategies
  103. that are usable for different combinations of parameters.  Often I have
  104. not tried to address all possible cases, but only the common ones or
  105. only the ones that I have encountered. As a result, a new target may
  106. require additional strategies.  You will know if this happens because
  107. the compiler will call `abort'.  Fortunately, the new strategies can be
  108. added in a machine-independent fashion, and will affect only the target
  109. machines that need them.
  110. File: gcc.info,  Node: Interface,  Next: Passes,  Prev: Portability,  Up: Top
  111. Interfacing to GNU CC Output
  112. ****************************
  113.    GNU CC is normally configured to use the same function calling
  114. convention normally in use on the target system.  This is done with the
  115. machine-description macros described (*note Target Macros::.).
  116.    However, returning of structure and union values is done differently
  117. on some target machines.  As a result, functions compiled with PCC
  118. returning such types cannot be called from code compiled with GNU CC,
  119. and vice versa.  This does not cause trouble often because few Unix
  120. library routines return structures or unions.
  121.    GNU CC code returns structures and unions that are 1, 2, 4 or 8 bytes
  122. long in the same registers used for `int' or `double' return values. 
  123. (GNU CC typically allocates variables of such types in registers also.)
  124.  Structures and unions of other sizes are returned by storing them into
  125. an address passed by the caller (usually in a register).  The
  126. machine-description macros `STRUCT_VALUE' and `STRUCT_INCOMING_VALUE'
  127. tell GNU CC where to pass this address.
  128.    By contrast, PCC on most target machines returns structures and
  129. unions of any size by copying the data into an area of static storage,
  130. and then returning the address of that storage as if it were a pointer
  131. value. The caller must copy the data from that memory area to the place
  132. where the value is wanted.  This is slower than the method used by GNU
  133. CC, and fails to be reentrant.
  134.    On some target machines, such as RISC machines and the 80386, the
  135. standard system convention is to pass to the subroutine the address of
  136. where to return the value.  On these machines, GNU CC has been
  137. configured to be compatible with the standard compiler, when this method
  138. is used.  It may not be compatible for structures of 1, 2, 4 or 8 bytes.
  139.    GNU CC uses the system's standard convention for passing arguments. 
  140. On some machines, the first few arguments are passed in registers; in
  141. others, all are passed on the stack.  It would be possible to use
  142. registers for argument passing on any machine, and this would probably
  143. result in a significant speedup.  But the result would be complete
  144. incompatibility with code that follows the standard convention.  So this
  145. change is practical only if you are switching to GNU CC as the sole C
  146. compiler for the system.  We may implement register argument passing on
  147. certain machines once we have a complete GNU system so that we can
  148. compile the libraries with GNU CC.
  149.    On some machines (particularly the Sparc), certain types of arguments
  150. are passed "by invisible reference".  This means that the value is
  151. stored in memory, and the address of the memory location is passed to
  152. the subroutine.
  153.    If you use `longjmp', beware of automatic variables.  ANSI C says
  154. that automatic variables that are not declared `volatile' have undefined
  155. values after a `longjmp'.  And this is all GNU CC promises to do,
  156. because it is very difficult to restore register variables correctly,
  157. and one of GNU CC's features is that it can put variables in registers
  158. without your asking it to.
  159.    If you want a variable to be unaltered by `longjmp', and you don't
  160. want to write `volatile' because old C compilers don't accept it, just
  161. take the address of the variable.  If a variable's address is ever
  162. taken, even if just to compute it and ignore it, then the variable
  163. cannot go in a register:
  164.      {
  165.        int careful;
  166.        &careful;
  167.        ...
  168.      }
  169.    Code compiled with GNU CC may call certain library routines.  Most of
  170. them handle arithmetic for which there are no instructions.  This
  171. includes multiply and divide on some machines, and floating point
  172. operations on any machine for which floating point support is disabled
  173. with `-msoft-float'.  Some standard parts of the C library, such as
  174. `bcopy' or `memcpy', are also called automatically.  The usual function
  175. call interface is used for calling the library routines.
  176.    These library routines should be defined in the library `libgcc.a',
  177. which GNU CC automatically searches whenever it links a program.  On
  178. machines that have multiply and divide instructions, if hardware
  179. floating point is in use, normally `libgcc.a' is not needed, but it is
  180. searched just in case.
  181.    Each arithmetic function is defined in `libgcc1.c' to use the
  182. corresponding C arithmetic operator.  As long as the file is compiled
  183. with another C compiler, which supports all the C arithmetic operators,
  184. this file will work portably.  However, `libgcc1.c' does not work if
  185. compiled with GNU CC, because each arithmetic function would compile
  186. into a call to itself!
  187. File: gcc.info,  Node: Passes,  Next: RTL,  Prev: Interface,  Up: Top
  188. Passes and Files of the Compiler
  189. ********************************
  190.    The overall control structure of the compiler is in `toplev.c'.  This
  191. file is responsible for initialization, decoding arguments, opening and
  192. closing files, and sequencing the passes.
  193.    The parsing pass is invoked only once, to parse the entire input. 
  194. The RTL intermediate code for a function is generated as the function
  195. is parsed, a statement at a time.  Each statement is read in as a
  196. syntax tree and then converted to RTL; then the storage for the tree
  197. for the statement is reclaimed.  Storage for types (and the expressions
  198. for their sizes), declarations, and a representation of the binding
  199. contours and how they nest, remain until the function is finished being
  200. compiled; these are all needed to output the debugging information.
  201.    Each time the parsing pass reads a complete function definition or
  202. top-level declaration, it calls the function `rest_of_compilation' or
  203. `rest_of_decl_compilation' in `toplev.c', which are responsible for all
  204. further processing necessary, ending with output of the assembler
  205. language.  All other compiler passes run, in sequence, within
  206. `rest_of_compilation'. When that function returns from compiling a
  207. function definition, the storage used for that function definition's
  208. compilation is entirely freed, unless it is an inline function (*note
  209. Inline::.).
  210.    Here is a list of all the passes of the compiler and their source
  211. files. Also included is a description of where debugging dumps can be
  212. requested with `-d' options.
  213.    * Parsing.  This pass reads the entire text of a function definition,
  214.      constructing partial syntax trees.  This and RTL generation are no
  215.      longer truly separate passes (formerly they were), but it is
  216.      easier to think of them as separate.
  217.      The tree representation does not entirely follow C syntax, because
  218.      it is intended to support other languages as well.
  219.      Language-specific data type analysis is also done in this pass,
  220.      and every tree node that represents an expression has a data type
  221.      attached. Variables are represented as declaration nodes.
  222.      Constant folding and some arithmetic simplifications are also done
  223.      during this pass.
  224.      The language-independent source files for parsing are
  225.      `stor-layout.c', `fold-const.c', and `tree.c'. There are also
  226.      header files `tree.h' and `tree.def' which define the format of
  227.      the tree representation.
  228.      The source files for parsing C are `c-parse.y', `c-decl.c',
  229.      `c-typeck.c', `c-convert.c', `c-lang.c', and `c-aux-info.c' along
  230.      with header files `c-lex.h', and `c-tree.h'.
  231.      The source files for parsing C++ are `cp-parse.y', `cp-class.c',
  232.      `cp-cvt.c',
  233.      `cp-decl.c', `cp-decl.c', `cp-decl2.c', `cp-dem.c', `cp-except.c',
  234.      `cp-expr.c', `cp-init.c', `cp-lex.c', `cp-method.c', `cp-ptree.c',
  235.      `cp-search.c', `cp-tree.c', `cp-type2.c', and `cp-typeck.c', along
  236.      with header files `cp-tree.def', `cp-tree.h', and `cp-decl.h'.
  237.      The special source files for parsing Objective C are
  238.      `objc-parse.y', `objc-actions.c', `objc-tree.def', and
  239.      `objc-actions.h'.  Certain C-specific files are used for this as
  240.      well.
  241.      The file `c-common.c' is also used for all of the above languages.
  242.    * RTL generation.  This is the conversion of syntax tree into RTL
  243.      code. It is actually done statement-by-statement during parsing,
  244.      but for most purposes it can be thought of as a separate pass.
  245.      This is where the bulk of target-parameter-dependent code is found,
  246.      since often it is necessary for strategies to apply only when
  247.      certain standard kinds of instructions are available.  The purpose
  248.      of named instruction patterns is to provide this information to
  249.      the RTL generation pass.
  250.      Optimization is done in this pass for `if'-conditions that are
  251.      comparisons, boolean operations or conditional expressions.  Tail
  252.      recursion is detected at this time also.  Decisions are made about
  253.      how best to arrange loops and how to output `switch' statements.
  254.      The source files for RTL generation include `stmt.c',
  255.      `function.c', `expr.c', `calls.c', `explow.c', `expmed.c',
  256.      `optabs.c' and `emit-rtl.c'.  Also, the file `insn-emit.c',
  257.      generated from the machine description by the program `genemit',
  258.      is used in this pass.  The header file `expr.h' is used for
  259.      communication within this pass.
  260.      The header files `insn-flags.h' and `insn-codes.h', generated from
  261.      the machine description by the programs `genflags' and `gencodes',
  262.      tell this pass which standard names are available for use and
  263.      which patterns correspond to them.
  264.      Aside from debugging information output, none of the following
  265.      passes refers to the tree structure representation of the function
  266.      (only part of which is saved).
  267.      The decision of whether the function can and should be expanded
  268.      inline in its subsequent callers is made at the end of rtl
  269.      generation.  The function must meet certain criteria, currently
  270.      related to the size of the function and the types and number of
  271.      parameters it has.  Note that this function may contain loops,
  272.      recursive calls to itself (tail-recursive functions can be
  273.      inlined!), gotos, in short, all constructs supported by GNU CC. 
  274.      The file `integrate.c' contains the code to save a function's rtl
  275.      for later inlining and to inline that rtl when the function is
  276.      called.  The header file `integrate.h' is also used for this
  277.      purpose.
  278.      The option `-dr' causes a debugging dump of the RTL code after
  279.      this pass.  This dump file's name is made by appending `.rtl' to
  280.      the input file name.
  281.    * Jump optimization.  This pass simplifies jumps to the following
  282.      instruction, jumps across jumps, and jumps to jumps.  It deletes
  283.      unreferenced labels and unreachable code, except that unreachable
  284.      code that contains a loop is not recognized as unreachable in this
  285.      pass. (Such loops are deleted later in the basic block analysis.) 
  286.      It also converts some code originally written with jumps into
  287.      sequences of instructions that directly set values from the
  288.      results of comparisons, if the machine has such instructions.
  289.      Jump optimization is performed two or three times.  The first time
  290.      is immediately following RTL generation.  The second time is after
  291.      CSE, but only if CSE says repeated jump optimization is needed. 
  292.      The last time is right before the final pass.  That time,
  293.      cross-jumping and deletion of no-op move instructions are done
  294.      together with the optimizations described above.
  295.      The source file of this pass is `jump.c'.
  296.      The option `-dj' causes a debugging dump of the RTL code after
  297.      this pass is run for the first time.  This dump file's name is
  298.      made by appending `.jump' to the input file name.
  299.    * Register scan.  This pass finds the first and last use of each
  300.      register, as a guide for common subexpression elimination.  Its
  301.      source is in `regclass.c'.
  302.    * Jump threading.  This pass detects a condition jump that branches
  303.      to an identical or inverse test.  Such jumps can be `threaded'
  304.      through the second conditional test.  The source code for this
  305.      pass is in `jump.c'.  This optimization is only performed if
  306.      `-fthread-jumps' is enabled.
  307.    * Common subexpression elimination.  This pass also does constant
  308.      propagation.  Its source file is `cse.c'.  If constant propagation
  309.      causes conditional jumps to become unconditional or to become
  310.      no-ops, jump optimization is run again when CSE is finished.
  311.      The option `-ds' causes a debugging dump of the RTL code after
  312.      this pass.  This dump file's name is made by appending `.cse' to
  313.      the input file name.
  314.    * Loop optimization.  This pass moves constant expressions out of
  315.      loops, and optionally does strength-reduction and loop unrolling
  316.      as well. Its source files are `loop.c' and `unroll.c', plus the
  317.      header `loop.h' used for communication between them.  Loop
  318.      unrolling uses some functions in `integrate.c' and the header
  319.      `integrate.h'.
  320.      The option `-dL' causes a debugging dump of the RTL code after
  321.      this pass.  This dump file's name is made by appending `.loop' to
  322.      the input file name.
  323.    * If `-frerun-cse-after-loop' was enabled, a second common
  324.      subexpression elimination pass is performed after the loop
  325.      optimization pass.  Jump threading is also done again at this time
  326.      if it was specified.
  327.      The option `-dt' causes a debugging dump of the RTL code after
  328.      this pass.  This dump file's name is made by appending `.cse2' to
  329.      the input file name.
  330.    * Stupid register allocation is performed at this point in a
  331.      nonoptimizing compilation.  It does a little data flow analysis as
  332.      well.  When stupid register allocation is in use, the next pass
  333.      executed is the reloading pass; the others in between are skipped.
  334.      The source file is `stupid.c'.
  335.    * Data flow analysis (`flow.c').  This pass divides the program into
  336.      basic blocks (and in the process deletes unreachable loops); then
  337.      it computes which pseudo-registers are live at each point in the
  338.      program, and makes the first instruction that uses a value point at
  339.      the instruction that computed the value.
  340.      This pass also deletes computations whose results are never used,
  341.      and combines memory references with add or subtract instructions
  342.      to make autoincrement or autodecrement addressing.
  343.      The option `-df' causes a debugging dump of the RTL code after
  344.      this pass.  This dump file's name is made by appending `.flow' to
  345.      the input file name.  If stupid register allocation is in use, this
  346.      dump file reflects the full results of such allocation.
  347.    * Instruction combination (`combine.c').  This pass attempts to
  348.      combine groups of two or three instructions that are related by
  349.      data flow into single instructions.  It combines the RTL
  350.      expressions for the instructions by substitution, simplifies the
  351.      result using algebra, and then attempts to match the result
  352.      against the machine description.
  353.      The option `-dc' causes a debugging dump of the RTL code after
  354.      this pass.  This dump file's name is made by appending `.combine'
  355.      to the input file name.
  356.    * Instruction scheduling (`sched.c').  This pass looks for
  357.      instructions whose output will not be available by the time that
  358.      it is used in subsequent instructions.  (Memory loads and floating
  359.      point instructions often have this behavior on RISC machines).  It
  360.      re-orders instructions within a basic block to try to separate the
  361.      definition and use of items that otherwise would cause pipeline
  362.      stalls.
  363.      Instruction scheduling is performed twice.  The first time is
  364.      immediately after instruction combination and the second is
  365.      immediately after reload.
  366.      The option `-dS' causes a debugging dump of the RTL code after this
  367.      pass is run for the first time.  The dump file's name is made by
  368.      appending `.sched' to the input file name.
  369.    * Register class preferencing.  The RTL code is scanned to find out
  370.      which register class is best for each pseudo register.  The source
  371.      file is `regclass.c'.
  372.    * Local register allocation (`local-alloc.c').  This pass allocates
  373.      hard registers to pseudo registers that are used only within one
  374.      basic block.  Because the basic block is linear, it can use fast
  375.      and powerful techniques to do a very good job.
  376.      The option `-dl' causes a debugging dump of the RTL code after
  377.      this pass.  This dump file's name is made by appending `.lreg' to
  378.      the input file name.
  379.    * Global register allocation (`global-alloc.c').  This pass
  380.      allocates hard registers for the remaining pseudo registers (those
  381.      whose life spans are not contained in one basic block).
  382.    * Reloading.  This pass renumbers pseudo registers with the hardware
  383.      registers numbers they were allocated.  Pseudo registers that did
  384.      not get hard registers are replaced with stack slots.  Then it
  385.      finds instructions that are invalid because a value has failed to
  386.      end up in a register, or has ended up in a register of the wrong
  387.      kind.  It fixes up these instructions by reloading the
  388.      problematical values temporarily into registers.  Additional
  389.      instructions are generated to do the copying.
  390.      The reload pass also optionally eliminates the frame pointer and
  391.      inserts instructions to save and restore call-clobbered registers
  392.      around calls.
  393.      Source files are `reload.c' and `reload1.c', plus the header
  394.      `reload.h' used for communication between them.
  395.      The option `-dg' causes a debugging dump of the RTL code after
  396.      this pass.  This dump file's name is made by appending `.greg' to
  397.      the input file name.
  398.    * Instruction scheduling is repeated here to try to avoid pipeline
  399.      stalls due to memory loads generated for spilled pseudo registers.
  400.      The option `-dR' causes a debugging dump of the RTL code after
  401.      this pass.  This dump file's name is made by appending `.sched2'
  402.      to the input file name.
  403.    * Jump optimization is repeated, this time including cross-jumping
  404.      and deletion of no-op move instructions.
  405.      The option `-dJ' causes a debugging dump of the RTL code after
  406.      this pass.  This dump file's name is made by appending `.jump2' to
  407.      the input file name.
  408.    * Delayed branch scheduling.  This optional pass attempts to find
  409.      instructions that can go into the delay slots of other
  410.      instructions, usually jumps and calls.  The source file name is
  411.      `reorg.c'.
  412.      The option `-dd' causes a debugging dump of the RTL code after
  413.      this pass.  This dump file's name is made by appending `.dbr' to
  414.      the input file name.
  415.    * Conversion from usage of some hard registers to usage of a register
  416.      stack may be done at this point.  Currently, this is supported only
  417.      for the floating-point registers of the Intel 80387 coprocessor.  
  418.      The source file name is `reg-stack.c'.
  419.      The options `-dk' causes a debugging dump of the RTL code after
  420.      this pass.  This dump file's name is made by appending `.stack' to
  421.      the input file name.
  422.    * Final.  This pass outputs the assembler code for the function.  It
  423.      is also responsible for identifying spurious test and compare
  424.      instructions.  Machine-specific peephole optimizations are
  425.      performed at the same time.  The function entry and exit sequences
  426.      are generated directly as assembler code in this pass; they never
  427.      exist as RTL.
  428.      The source files are `final.c' plus `insn-output.c'; the latter is
  429.      generated automatically from the machine description by the tool
  430.      `genoutput'.  The header file `conditions.h' is used for
  431.      communication between these files.
  432.    * Debugging information output.  This is run after final because it
  433.      must output the stack slot offsets for pseudo registers that did
  434.      not get hard registers.  Source files are `dbxout.c' for DBX
  435.      symbol table format, `sdbout.c' for SDB symbol table format, and
  436.      `dwarfout.c' for DWARF symbol table format.
  437.    Some additional files are used by all or many passes:
  438.    * Every pass uses `machmode.def' and `machmode.h' which define the
  439.      machine modes.
  440.    * Several passes use `real.h', which defines the default
  441.      representation of floating point constants and how to operate on
  442.      them.
  443.    * All the passes that work with RTL use the header files `rtl.h' and
  444.      `rtl.def', and subroutines in file `rtl.c'.  The tools `gen*' also
  445.      use these files to read and work with the machine description RTL.
  446.    * Several passes refer to the header file `insn-config.h' which
  447.      contains a few parameters (C macro definitions) generated
  448.      automatically from the machine description RTL by the tool
  449.      `genconfig'.
  450.    * Several passes use the instruction recognizer, which consists of
  451.      `recog.c' and `recog.h', plus the files `insn-recog.c' and
  452.      `insn-extract.c' that are generated automatically from the machine
  453.      description by the tools `genrecog' and `genextract'.
  454.    * Several passes use the header files `regs.h' which defines the
  455.      information recorded about pseudo register usage, and
  456.      `basic-block.h' which defines the information recorded about basic
  457.      blocks.
  458.    * `hard-reg-set.h' defines the type `HARD_REG_SET', a bit-vector
  459.      with a bit for each hard register, and some macros to manipulate
  460.      it. This type is just `int' if the machine has few enough hard
  461.      registers; otherwise it is an array of `int' and some of the
  462.      macros expand into loops.
  463.    * Several passes use instruction attributes.  A definition of the
  464.      attributes defined for a particular machine is in file
  465.      `insn-attr.h', which is generated from the machine description by
  466.      the program `genattr'.  The file `insn-attrtab.c' contains
  467.      subroutines to obtain the attribute values for insns.  It is
  468.      generated from the machine description by the program `genattrtab'.
  469. File: gcc.info,  Node: RTL,  Next: Machine Desc,  Prev: Passes,  Up: Top
  470. RTL Representation
  471. ******************
  472.    Most of the work of the compiler is done on an intermediate
  473. representation called register transfer language.  In this language,
  474. the instructions to be output are described, pretty much one by one, in
  475. an algebraic form that describes what the instruction does.
  476.    RTL is inspired by Lisp lists.  It has both an internal form, made
  477. up of structures that point at other structures, and a textual form
  478. that is used in the machine description and in printed debugging dumps.
  479.  The textual form uses nested parentheses to indicate the pointers in
  480. the internal form.
  481. * Menu:
  482. * RTL Objects::       Expressions vs vectors vs strings vs integers.
  483. * Accessors::         Macros to access expression operands or vector elts.
  484. * Flags::             Other flags in an RTL expression.
  485. * Machine Modes::     Describing the size and format of a datum.
  486. * Constants::         Expressions with constant values.
  487. * Regs and Memory::   Expressions representing register contents or memory.
  488. * Arithmetic::        Expressions representing arithmetic on other expressions.
  489. * Comparisons::       Expressions representing comparison of expressions.
  490. * Bit Fields::        Expressions representing bit-fields in memory or reg.
  491. * Conversions::       Extending, truncating, floating or fixing.
  492. * RTL Declarations::  Declaring volatility, constancy, etc.
  493. * Side Effects::      Expressions for storing in registers, etc.
  494. * Incdec::            Embedded side-effects for autoincrement addressing.
  495. * Assembler::         Representing `asm' with operands.
  496. * Insns::             Expression types for entire insns.
  497. * Calls::             RTL representation of function call insns.
  498. * Sharing::           Some expressions are unique; others *must* be copied.
  499. File: gcc.info,  Node: RTL Objects,  Next: Accessors,  Prev: RTL,  Up: RTL
  500. RTL Object Types
  501. ================
  502.    RTL uses four kinds of objects: expressions, integers, strings and
  503. vectors. Expressions are the most important ones.  An RTL expression
  504. ("RTX", for short) is a C structure, but it is usually referred to with
  505. a pointer; a type that is given the typedef name `rtx'.
  506.    An integer is simply an `int'; their written form uses decimal
  507. digits.
  508.    A string is a sequence of characters.  In core it is represented as a
  509. `char *' in usual C fashion, and it is written in C syntax as well.
  510. However, strings in RTL may never be null.  If you write an empty
  511. string in a machine description, it is represented in core as a null
  512. pointer rather than as a pointer to a null character.  In certain
  513. contexts, these null pointers instead of strings are valid.  Within RTL
  514. code, strings are most commonly found inside `symbol_ref' expressions,
  515. but they appear in other contexts in the RTL expressions that make up
  516. machine descriptions.
  517.    A vector contains an arbitrary number of pointers to expressions. 
  518. The number of elements in the vector is explicitly present in the
  519. vector. The written form of a vector consists of square brackets
  520. (`[...]') surrounding the elements, in sequence and with whitespace
  521. separating them.  Vectors of length zero are not created; null pointers
  522. are used instead.
  523.    Expressions are classified by "expression codes" (also called RTX
  524. codes).  The expression code is a name defined in `rtl.def', which is
  525. also (in upper case) a C enumeration constant.  The possible expression
  526. codes and their meanings are machine-independent.  The code of an RTX
  527. can be extracted with the macro `GET_CODE (X)' and altered with
  528. `PUT_CODE (X, NEWCODE)'.
  529.    The expression code determines how many operands the expression
  530. contains, and what kinds of objects they are.  In RTL, unlike Lisp, you
  531. cannot tell by looking at an operand what kind of object it is. 
  532. Instead, you must know from its context--from the expression code of
  533. the containing expression. For example, in an expression of code
  534. `subreg', the first operand is to be regarded as an expression and the
  535. second operand as an integer.  In an expression of code `plus', there
  536. are two operands, both of which are to be regarded as expressions.  In
  537. a `symbol_ref' expression, there is one operand, which is to be
  538. regarded as a string.
  539.    Expressions are written as parentheses containing the name of the
  540. expression type, its flags and machine mode if any, and then the
  541. operands of the expression (separated by spaces).
  542.    Expression code names in the `md' file are written in lower case,
  543. but when they appear in C code they are written in upper case.  In this
  544. manual, they are shown as follows: `const_int'.
  545.    In a few contexts a null pointer is valid where an expression is
  546. normally wanted.  The written form of this is `(nil)'.
  547. File: gcc.info,  Node: Accessors,  Next: Flags,  Prev: RTL Objects,  Up: RTL
  548. Access to Operands
  549. ==================
  550.    For each expression type `rtl.def' specifies the number of contained
  551. objects and their kinds, with four possibilities: `e' for expression
  552. (actually a pointer to an expression), `i' for integer, `s' for string,
  553. and `E' for vector of expressions.  The sequence of letters for an
  554. expression code is called its "format".  Thus, the format of `subreg'
  555. is `ei'.
  556.    A few other format characters are used occasionally:
  557.      `u' is equivalent to `e' except that it is printed differently in
  558.      debugging dumps.  It is used for pointers to insns.
  559.      `n' is equivalent to `i' except that it is printed differently in
  560.      debugging dumps.  It is used for the line number or code number of
  561.      a `note' insn.
  562.      `S' indicates a string which is optional.  In the RTL objects in
  563.      core, `S' is equivalent to `s', but when the object is read, from
  564.      an `md' file, the string value of this operand may be omitted. An
  565.      omitted string is taken to be the null string.
  566.      `V' indicates a vector which is optional.  In the RTL objects in
  567.      core, `V' is equivalent to `E', but when the object is read from
  568.      an `md' file, the vector value of this operand may be omitted. An
  569.      omitted vector is effectively the same as a vector of no elements.
  570.      `0' means a slot whose contents do not fit any normal category.
  571.      `0' slots are not printed at all in dumps, and are often used in
  572.      special ways by small parts of the compiler.
  573.    There are macros to get the number of operands, the format, and the
  574. class of an expression code:
  575. `GET_RTX_LENGTH (CODE)'
  576.      Number of operands of an RTX of code CODE.
  577. `GET_RTX_FORMAT (CODE)'
  578.      The format of an RTX of code CODE, as a C string.
  579. `GET_RTX_CLASS (CODE)'
  580.      A single character representing the type of RTX operation that code
  581.      CODE performs.
  582.      The following classes are defined:
  583.     `o'
  584.           An RTX code that represents an actual object, such as `reg' or
  585.           `mem'.  `subreg' is not in this class.
  586.     `<'
  587.           An RTX code for a comparison.  The codes in this class are
  588.           `NE', `EQ', `LE', `LT', `GE', `GT', `LEU', `LTU', `GEU',
  589.           `GTU'.
  590.     `1'
  591.           An RTX code for a unary arithmetic operation, such as `neg'.
  592.     `c'
  593.           An RTX code for a commutative binary operation, other than
  594.           `NE' and `EQ' (which have class `<').
  595.     `2'
  596.           An RTX code for a noncommutative binary operation, such as
  597.           `MINUS'.
  598.     `b'
  599.           An RTX code for a bitfield operation (`ZERO_EXTRACT' and
  600.           `SIGN_EXTRACT').
  601.     `3'
  602.           An RTX code for other three input operations, such as
  603.           `IF_THEN_ELSE'.
  604.     `i'
  605.           An RTX code for a machine insn (`INSN', `JUMP_INSN', and
  606.           `CALL_INSN').
  607.     `m'
  608.           An RTX code for something that matches in insns, such as
  609.           `MATCH_DUP'.
  610.     `x'
  611.           All other RTX codes.
  612.    Operands of expressions are accessed using the macros `XEXP', `XINT'
  613. and `XSTR'.  Each of these macros takes two arguments: an
  614. expression-pointer (RTX) and an operand number (counting from zero).
  615. Thus,
  616.      XEXP (X, 2)
  617. accesses operand 2 of expression X, as an expression.
  618.      XINT (X, 2)
  619. accesses the same operand as an integer.  `XSTR', used in the same
  620. fashion, would access it as a string.
  621.    Any operand can be accessed as an integer, as an expression or as a
  622. string. You must choose the correct method of access for the kind of
  623. value actually stored in the operand.  You would do this based on the
  624. expression code of the containing expression.  That is also how you
  625. would know how many operands there are.
  626.    For example, if X is a `subreg' expression, you know that it has two
  627. operands which can be correctly accessed as `XEXP (X, 0)' and `XINT (X,
  628. 1)'.  If you did `XINT (X, 0)', you would get the address of the
  629. expression operand but cast as an integer; that might occasionally be
  630. useful, but it would be cleaner to write `(int) XEXP (X, 0)'.  `XEXP
  631. (X, 1)' would also compile without error, and would return the second,
  632. integer operand cast as an expression pointer, which would probably
  633. result in a crash when accessed.  Nothing stops you from writing `XEXP
  634. (X, 28)' either, but this will access memory past the end of the
  635. expression with unpredictable results.
  636.    Access to operands which are vectors is more complicated.  You can
  637. use the macro `XVEC' to get the vector-pointer itself, or the macros
  638. `XVECEXP' and `XVECLEN' to access the elements and length of a vector.
  639. `XVEC (EXP, IDX)'
  640.      Access the vector-pointer which is operand number IDX in EXP.
  641. `XVECLEN (EXP, IDX)'
  642.      Access the length (number of elements) in the vector which is in
  643.      operand number IDX in EXP.  This value is an `int'.
  644. `XVECEXP (EXP, IDX, ELTNUM)'
  645.      Access element number ELTNUM in the vector which is in operand
  646.      number IDX in EXP.  This value is an RTX.
  647.      It is up to you to make sure that ELTNUM is not negative and is
  648.      less than `XVECLEN (EXP, IDX)'.
  649.    All the macros defined in this section expand into lvalues and
  650. therefore can be used to assign the operands, lengths and vector
  651. elements as well as to access them.
  652. File: gcc.info,  Node: Flags,  Next: Machine Modes,  Prev: Accessors,  Up: RTL
  653. Flags in an RTL Expression
  654. ==========================
  655.    RTL expressions contain several flags (one-bit bit-fields) that are
  656. used in certain types of expression.  Most often they are accessed with
  657. the following macros:
  658. `MEM_VOLATILE_P (X)'
  659.      In `mem' expressions, nonzero for volatile memory references.
  660.      Stored in the `volatil' field and printed as `/v'.
  661. `MEM_IN_STRUCT_P (X)'
  662.      In `mem' expressions, nonzero for reference to an entire
  663.      structure, union or array, or to a component of one.  Zero for
  664.      references to a scalar variable or through a pointer to a scalar.
  665.      Stored in the `in_struct' field and printed as `/s'.
  666. `REG_LOOP_TEST_P'
  667.      In `reg' expressions, nonzero if this register's entire life is
  668.      contained in the exit test code for some loop.  Stored in the
  669.      `in_struct' field and printed as `/s'.
  670. `REG_USERVAR_P (X)'
  671.      In a `reg', nonzero if it corresponds to a variable present in the
  672.      user's source code.  Zero for temporaries generated internally by
  673.      the compiler.  Stored in the `volatil' field and printed as `/v'.
  674. `REG_FUNCTION_VALUE_P (X)'
  675.      Nonzero in a `reg' if it is the place in which this function's
  676.      value is going to be returned.  (This happens only in a hard
  677.      register.)  Stored in the `integrated' field and printed as `/i'.
  678.      The same hard register may be used also for collecting the values
  679.      of functions called by this one, but `REG_FUNCTION_VALUE_P' is zero
  680.      in this kind of use.
  681. `RTX_UNCHANGING_P (X)'
  682.      Nonzero in a `reg' or `mem' if the value is not changed. (This
  683.      flag is not set for memory references via pointers to constants.
  684.      Such pointers only guarantee that the object will not be changed
  685.      explicitly by the current function.  The object might be changed by
  686.      other functions or by aliasing.)  Stored in the `unchanging' field
  687.      and printed as `/u'.
  688. `RTX_INTEGRATED_P (INSN)'
  689.      Nonzero in an insn if it resulted from an in-line function call.
  690.      Stored in the `integrated' field and printed as `/i'.  This may be
  691.      deleted; nothing currently depends on it.
  692. `SYMBOL_REF_USED (X)'
  693.      In a `symbol_ref', indicates that X has been used.  This is
  694.      normally only used to ensure that X is only declared external
  695.      once.  Stored in the `used' field.
  696. `SYMBOL_REF_FLAG (X)'
  697.      In a `symbol_ref', this is used as a flag for machine-specific
  698.      purposes. Stored in the `volatil' field and printed as `/v'.
  699. `LABEL_OUTSIDE_LOOP_P'
  700.      In `label_ref' expressions, nonzero if this is a reference to a
  701.      label that is outside the innermost loop containing the reference
  702.      to the label.  Stored in the `in_struct' field and printed as `/s'.
  703. `INSN_DELETED_P (INSN)'
  704.      In an insn, nonzero if the insn has been deleted.  Stored in the
  705.      `volatil' field and printed as `/v'.
  706. `INSN_ANNULLED_BRANCH_P (INSN)'
  707.      In an `insn' in the delay slot of a branch insn, indicates that an
  708.      annulling branch should be used.  See the discussion under
  709.      `sequence' below.  Stored in the `unchanging' field and printed as
  710.      `/u'.
  711. `INSN_FROM_TARGET_P (INSN)'
  712.      In an `insn' in a delay slot of a branch, indicates that the insn
  713.      is from the target of the branch.  If the branch insn has
  714.      `INSN_ANNULLED_BRANCH_P' set, this insn should only be executed if
  715.      the branch is taken.  For annulled branches with this bit clear,
  716.      the insn should be executed only if the branch is not taken. 
  717.      Stored in the `in_struct' field and printed as `/s'.
  718. `CONSTANT_POOL_ADDRESS_P (X)'
  719.      Nonzero in a `symbol_ref' if it refers to part of the current
  720.      function's "constants pool".  These are addresses close to the
  721.      beginning of the function, and GNU CC assumes they can be addressed
  722.      directly (perhaps with the help of base registers).  Stored in the
  723.      `unchanging' field and printed as `/u'.
  724. `CONST_CALL_P (X)'
  725.      In a `call_insn', indicates that the insn represents a call to a
  726.      const function.  Stored in the `unchanging' field and printed as
  727.      `/u'.
  728. `LABEL_PRESERVE_P (X)'
  729.      In a `code_label', indicates that the label can never be deleted.
  730.      Labels referenced by a a non-local goto will have this bit set. 
  731.      Stored in the `in_struct' field and printed as `/s'.
  732. `SCHED_GROUP_P (INSN)'
  733.      During instruction scheduling, in an insn, indicates that the
  734.      previous insn must be scheduled together with this insn.  This is
  735.      used to ensure that certain groups of instructions will not be
  736.      split up by the instruction scheduling pass, for example, `use'
  737.      insns before a `call_insn' may not be separated from the
  738.      `call_insn'.  Stored in the `in_struct' field and printed as `/s'.
  739.    These are the fields which the above macros refer to:
  740. `used'
  741.      Normally, this flag is used only momentarily, at the end of RTL
  742.      generation for a function, to count the number of times an
  743.      expression appears in insns.  Expressions that appear more than
  744.      once are copied, according to the rules for shared structure
  745.      (*note Sharing::.).
  746.      In a `symbol_ref', it indicates that an external declaration for
  747.      the symbol has already been written.
  748.      In a `reg', it is used by the leaf register renumbering code to
  749.      ensure that each register is only renumbered once.
  750. `volatil'
  751.      This flag is used in `mem',`symbol_ref' and `reg' expressions and
  752.      in insns.  In RTL dump files, it is printed as `/v'.
  753.      In a `mem' expression, it is 1 if the memory reference is volatile.
  754.      Volatile memory references may not be deleted, reordered or
  755.      combined.
  756.      In a `symbol_ref' expression, it is used for machine-specific
  757.      purposes.
  758.      In a `reg' expression, it is 1 if the value is a user-level
  759.      variable. 0 indicates an internal compiler temporary.
  760.      In an insn, 1 means the insn has been deleted.
  761. `in_struct'
  762.      In `mem' expressions, it is 1 if the memory datum referred to is
  763.      all or part of a structure or array; 0 if it is (or might be) a
  764.      scalar variable.  A reference through a C pointer has 0 because
  765.      the pointer might point to a scalar variable.  This information
  766.      allows the compiler to determine something about possible cases of
  767.      aliasing.
  768.      In an insn in the delay slot of a branch, 1 means that this insn
  769.      is from the target of the branch.
  770.      During instruction scheduling, in an insn, 1 means that this insn
  771.      must be scheduled as part of a group together with the previous
  772.      insn.
  773.      In `reg' expressions, it is 1 if the register has its entire life
  774.      contained within the test expression of some loopl.
  775.      In `label_ref' expressions, 1 means that the referenced label is
  776.      outside the innermost loop containing the insn in which the
  777.      `label_ref' was found.
  778.      In `code_label' expressions, it is 1 if the label may never be
  779.      deleted. This is used for labels which are the target of non-local
  780.      gotos.
  781.      In an RTL dump, this flag is represented as `/s'.
  782. `unchanging'
  783.      In `reg' and `mem' expressions, 1 means that the value of the
  784.      expression never changes.
  785.      In an insn, 1 means that this is an annulling branch.
  786.      In a `symbol_ref' expression, 1 means that this symbol addresses
  787.      something in the per-function constants pool.
  788.      In a `call_insn', 1 means that this instruction is a call to a
  789.      const function.
  790.      In an RTL dump, this flag is represented as `/u'.
  791. `integrated'
  792.      In some kinds of expressions, including insns, this flag means the
  793.      rtl was produced by procedure integration.
  794.      In a `reg' expression, this flag indicates the register containing
  795.      the value to be returned by the current function.  On machines
  796.      that pass parameters in registers, the same register number may be
  797.      used for parameters as well, but this flag is not set on such uses.
  798.