home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / gcc222.lha / info / gcc.info-14 (.txt) < prev    next >
GNU Info File  |  1992-07-19  |  49KB  |  835 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: Register Classes,  Next: Stack and Calling,  Prev: Registers,  Up: Target Macros
  21. Register Classes
  22. ================
  23.    On many machines, the numbered registers are not all equivalent. For
  24. example, certain registers may not be allowed for indexed addressing;
  25. certain registers may not be allowed in some instructions.  These
  26. machine restrictions are described to the compiler using "register
  27. classes".
  28.    You define a number of register classes, giving each one a name and
  29. saying which of the registers belong to it.  Then you can specify
  30. register classes that are allowed as operands to particular instruction
  31. patterns.
  32.    In general, each register will belong to several classes.  In fact,
  33. one class must be named `ALL_REGS' and contain all the registers. 
  34. Another class must be named `NO_REGS' and contain no registers.  Often
  35. the union of two classes will be another class; however, this is not
  36. required.
  37.    One of the classes must be named `GENERAL_REGS'.  There is nothing
  38. terribly special about the name, but the operand constraint letters `r'
  39. and `g' specify this class.  If `GENERAL_REGS' is the same as
  40. `ALL_REGS', just define it as a macro which expands to `ALL_REGS'.
  41.    Order the classes so that if class X is contained in class Y then X
  42. has a lower class number than Y.
  43.    The way classes other than `GENERAL_REGS' are specified in operand
  44. constraints is through machine-dependent operand constraint letters.
  45. You can define such letters to correspond to various classes, then use
  46. them in operand constraints.
  47.    You should define a class for the union of two classes whenever some
  48. instruction allows both classes.  For example, if an instruction allows
  49. either a floating point (coprocessor) register or a general register
  50. for a certain operand, you should define a class `FLOAT_OR_GENERAL_REGS'
  51. which includes both of them.  Otherwise you will get suboptimal code.
  52.    You must also specify certain redundant information about the
  53. register classes: for each class, which classes contain it and which
  54. ones are contained in it; for each pair of classes, the largest class
  55. contained in their union.
  56.    When a value occupying several consecutive registers is expected in a
  57. certain class, all the registers used must belong to that class.
  58. Therefore, register classes cannot be used to enforce a requirement for
  59. a register pair to start with an even-numbered register.  The way to
  60. specify this requirement is with `HARD_REGNO_MODE_OK'.
  61.    Register classes used for input-operands of bitwise-and or shift
  62. instructions have a special requirement: each such class must have, for
  63. each fixed-point machine mode, a subclass whose registers can transfer
  64. that mode to or from memory.  For example, on some machines, the
  65. operations for single-byte values (`QImode') are limited to certain
  66. registers.  When this is so, each register class that is used in a
  67. bitwise-and or shift instruction must have a subclass consisting of
  68. registers from which single-byte values can be loaded or stored.  This
  69. is so that `PREFERRED_RELOAD_CLASS' can always have a possible value to
  70. return.
  71. `enum reg_class'
  72.      An enumeral type that must be defined with all the register class
  73.      names as enumeral values.  `NO_REGS' must be first.  `ALL_REGS'
  74.      must be the last register class, followed by one more enumeral
  75.      value, `LIM_REG_CLASSES', which is not a register class but rather
  76.      tells how many classes there are.
  77.      Each register class has a number, which is the value of casting
  78.      the class name to type `int'.  The number serves as an index in
  79.      many of the tables described below.
  80. `N_REG_CLASSES'
  81.      The number of distinct register classes, defined as follows:
  82.           #define N_REG_CLASSES (int) LIM_REG_CLASSES
  83. `REG_CLASS_NAMES'
  84.      An initializer containing the names of the register classes as C
  85.      string constants.  These names are used in writing some of the
  86.      debugging dumps.
  87. `REG_CLASS_CONTENTS'
  88.      An initializer containing the contents of the register classes, as
  89.      integers which are bit masks.  The Nth integer specifies the
  90.      contents of class N.  The way the integer MASK is interpreted is
  91.      that register R is in the class if `MASK & (1 << R)' is 1.
  92.      When the machine has more than 32 registers, an integer does not
  93.      suffice. Then the integers are replaced by sub-initializers,
  94.      braced groupings containing several integers.  Each
  95.      sub-initializer must be suitable as an initializer for the type
  96.      `HARD_REG_SET' which is defined in `hard-reg-set.h'.
  97. `REGNO_REG_CLASS (REGNO)'
  98.      A C expression whose value is a register class containing hard
  99.      register REGNO.  In general there is more that one such class;
  100.      choose a class which is "minimal", meaning that no smaller class
  101.      also contains the register.
  102. `BASE_REG_CLASS'
  103.      A macro whose definition is the name of the class to which a valid
  104.      base register must belong.  A base register is one used in an
  105.      address which is the register value plus a displacement.
  106. `INDEX_REG_CLASS'
  107.      A macro whose definition is the name of the class to which a valid
  108.      index register must belong.  An index register is one used in an
  109.      address where its value is either multiplied by a scale factor or
  110.      added to another register (as well as added to a displacement).
  111. `REG_CLASS_FROM_LETTER (CHAR)'
  112.      A C expression which defines the machine-dependent operand
  113.      constraint letters for register classes.  If CHAR is such a
  114.      letter, the value should be the register class corresponding to
  115.      it.  Otherwise, the value should be `NO_REGS'.  The register
  116.      letter `r', corresponding to class `GENERAL_REGS', will not be
  117.      passed to this macro; you do not need to handle it.
  118. `REGNO_OK_FOR_BASE_P (NUM)'
  119.      A C expression which is nonzero if register number NUM is suitable
  120.      for use as a base register in operand addresses.  It may be either
  121.      a suitable hard register or a pseudo register that has been
  122.      allocated such a hard register.
  123. `REGNO_OK_FOR_INDEX_P (NUM)'
  124.      A C expression which is nonzero if register number NUM is suitable
  125.      for use as an index register in operand addresses.  It may be
  126.      either a suitable hard register or a pseudo register that has been
  127.      allocated such a hard register.
  128.      The difference between an index register and a base register is
  129.      that the index register may be scaled.  If an address involves the
  130.      sum of two registers, neither one of them scaled, then either one
  131.      may be labeled the "base" and the other the "index"; but whichever
  132.      labeling is used must fit the machine's constraints of which
  133.      registers may serve in each capacity.  The compiler will try both
  134.      labelings, looking for one that is valid, and will reload one or
  135.      both registers only if neither labeling works.
  136. `PREFERRED_RELOAD_CLASS (X, CLASS)'
  137.      A C expression that places additional restrictions on the register
  138.      class to use when it is necessary to copy value X into a register
  139.      in class CLASS.  The value is a register class; perhaps CLASS, or
  140.      perhaps another, smaller class.  On many machines, the definition
  141.           #define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS
  142.      is safe.
  143.      Sometimes returning a more restrictive class makes better code. 
  144.      For example, on the 68000, when X is an integer constant that is
  145.      in range for a `moveq' instruction, the value of this macro is
  146.      always `DATA_REGS' as long as CLASS includes the data registers.
  147.      Requiring a data register guarantees that a `moveq' will be used.
  148.      If X is a `const_double', by returning `NO_REGS' you can force X
  149.      into a memory constant.  This is useful on certain machines where
  150.      immediate floating values cannot be loaded into certain kinds of
  151.      registers.
  152. `LIMIT_RELOAD_CLASS (MODE, CLASS)'
  153.      A C expression that places additional restrictions on the register
  154.      class to use when it is necessary to be able to hold a value of
  155.      mode MODE in a reload register for which class CLASS would
  156.      ordinarily be used.
  157.      Unlike `PREFERRED_RELOAD_CLASS', this macro should be used when
  158.      there are certain modes that simply can't go in certain reload
  159.      classes.
  160.      The value is a register class; perhaps CLASS, or perhaps another,
  161.      smaller class.
  162.      Don't define this macro unless the target machine has limitations
  163.      which require the macro to do something nontrivial.
  164. `SECONDARY_RELOAD_CLASS (CLASS, MODE, X)'
  165. `SECONDARY_INPUT_RELOAD_CLASS (CLASS, MODE, X)'
  166. `SECONDARY_OUTPUT_RELOAD_CLASS (CLASS, MODE, X)'
  167.      Many machines have some registers that cannot be copied directly
  168.      to or from memory or even from other types of registers.  An
  169.      example is the `MQ' register, which on most machines, can only be
  170.      copied to or from general registers, but not memory.  Some
  171.      machines allow copying all registers to and from memory, but
  172.      require a scratch register for stores to some memory locations
  173.      (e.g., those with symbolic address on the RT, and those with
  174.      certain symbolic address on the Sparc when compiling PIC).  In
  175.      some cases, both an intermediate and a scratch register are
  176.      required.
  177.      You should define these macros to indicate to the reload phase
  178.      that it may need to allocate at least one register for a reload in
  179.      addition to the register to contain the data.  Specifically, if
  180.      copying X to a register CLASS in MODE requires an intermediate
  181.      register, you should define `SECONDARY_INPUT_RELOAD_CLASS' to
  182.      return the largest register class all of whose registers can be
  183.      used as intermediate registers or scratch registers.
  184.      If copying a register CLASS in MODE to X requires an intermediate
  185.      or scratch register, you should define
  186.      `SECONDARY_OUTPUT_RELOAD_CLASS' to return the largest register
  187.      class required.  If the requirements for input and output reloads
  188.      are the same, the macro `SECONDARY_RELOAD_CLASS' should be used
  189.      instead of defining both macros identically.
  190.      The values returned by these macros are often `GENERAL_REGS'.
  191.      Return `NO_REGS' if no spare register is needed; i.e., if X can be
  192.      directly copied to or from a register of CLASS in MODE without
  193.      requiring a scratch register.  Do not define this macro if it
  194.      would always return `NO_REGS'.
  195.      If a scratch register is required (either with or without an
  196.      intermediate register), you should define patterns for
  197.      `reload_inM' or `reload_outM', as required (*note Standard
  198.      Names::..  These patterns, which will normally be implemented with
  199.      a `define_expand', should be similar to the `movM' patterns,
  200.      except that operand 2 is the scratch register.
  201.      Define constraints for the reload register and scratch register
  202.      that contain a single register class.  If the original reload
  203.      register (whose class is CLASS) can meet the constraint given in
  204.      the pattern, the value returned by these macros is used for the
  205.      class of the scratch register.  Otherwise, two additional reload
  206.      registers are required. Their classes are obtained from the
  207.      constraints in the insn pattern.
  208.      X might be a pseudo-register or a `subreg' of a pseudo-register,
  209.      which could either be in a hard register or in memory. Use
  210.      `true_regnum' to find out; it will return -1 if the pseudo is in
  211.      memory and the hard register number if it is in a register.
  212.      These macros should not be used in the case where a particular
  213.      class of registers can only be copied to memory and not to another
  214.      class of registers.  In that case, secondary reload registers are
  215.      not needed and would not be helpful.  Instead, a stack location
  216.      must be used to perform the copy and the `movM' pattern should use
  217.      memory as a intermediate storage.  This case often occurs between
  218.      floating-point and general registers.
  219. `SMALL_REGISTER_CLASSES'
  220.      Normally the compiler will avoid choosing spill registers from
  221.      registers that have been explicitly mentioned in the rtl (these
  222.      registers are normally those used to pass parameters and return
  223.      values).  However, some machines have so few registers of certain
  224.      classes that there would not be enough registers to use as spill
  225.      registers if this were done.
  226.      On those machines, you should define `SMALL_REGISTER_CLASSES'.
  227.      When it is defined, the compiler allows registers explicitly used
  228.      in the rtl to be used as spill registers but prevents the compiler
  229.      from extending the lifetime of these registers.
  230.      Defining this macro is always safe, but unnecessarily defining
  231.      this macro will reduce the amount of optimizations that can be
  232.      performed in some cases.  If this macro is not defined but needs
  233.      to be, the compiler will run out of reload registers and print a
  234.      fatal error message.
  235.      For most machines, this macro should not be defined.
  236. `CLASS_MAX_NREGS (CLASS, MODE)'
  237.      A C expression for the maximum number of consecutive registers of
  238.      class CLASS needed to hold a value of mode MODE.
  239.      This is closely related to the macro `HARD_REGNO_NREGS'. In fact,
  240.      the value of the macro `CLASS_MAX_NREGS (CLASS, MODE)' should be
  241.      the maximum value of `HARD_REGNO_NREGS (REGNO, MODE)' for all
  242.      REGNO values in the class CLASS.
  243.      This macro helps control the handling of multiple-word values in
  244.      the reload pass.
  245.    Three other special macros describe which operands fit which
  246. constraint letters.
  247. `CONST_OK_FOR_LETTER_P (VALUE, C)'
  248.      A C expression that defines the machine-dependent operand
  249.      constraint letters that specify particular ranges of integer
  250.      values.  If C is one of those letters, the expression should check
  251.      that VALUE, an integer, is in the appropriate range and return 1
  252.      if so, 0 otherwise.  If C is not one of those letters, the value
  253.      should be 0 regardless of VALUE.
  254. `CONST_DOUBLE_OK_FOR_LETTER_P (VALUE, C)'
  255.      A C expression that defines the machine-dependent operand
  256.      constraint letters that specify particular ranges of
  257.      `const_double' values.
  258.      If C is one of those letters, the expression should check that
  259.      VALUE, an RTX of code `const_double', is in the appropriate range
  260.      and return 1 if so, 0 otherwise.  If C is not one of those
  261.      letters, the value should be 0 regardless of VALUE.
  262.      `const_double' is used for all floating-point constants and for
  263.      `DImode' fixed-point constants.  A given letter can accept either
  264.      or both kinds of values.  It can use `GET_MODE' to distinguish
  265.      between these kinds.
  266. `EXTRA_CONSTRAINT (VALUE, C)'
  267.      A C expression that defines the optional machine-dependent
  268.      constraint letters that can be used to segregate specific types of
  269.      operands, usually memory references, for the target machine. 
  270.      Normally this macro will not be defined.  If it is required for a
  271.      particular target machine, it should return 1 if VALUE corresponds
  272.      to the operand type represented by the constraint letter C.  If C
  273.      is not defined as an extra constraint, the value returned should
  274.      be 0 regardless of VALUE.
  275.      For example, on the ROMP, load instructions cannot have their
  276.      output in r0 if the memory reference contains a symbolic address. 
  277.      Constraint letter `Q' is defined as representing a memory address
  278.      that does *not* contain a symbolic address.  An alternative is
  279.      specified with a `Q' constraint on the input and `r' on the
  280.      output.  The next alternative specifies `m' on the input and a
  281.      register class that does not include r0 on the output.
  282. File: gcc.info,  Node: Stack and Calling,  Next: Varargs,  Prev: Register Classes,  Up: Target Macros
  283. Describing Stack Layout and Calling Conventions
  284. ===============================================
  285. * Menu:
  286. * Frame Layout::
  287. * Frame Registers::
  288. * Elimination::
  289. * Stack Arguments::
  290. * Register Arguments::
  291. * Scalar Return::
  292. * Aggregate Return::
  293. * Caller Saves::
  294. * Function Entry::
  295. * Profiling::
  296. File: gcc.info,  Node: Frame Layout,  Next: Frame Registers,  Up: Stack and Calling
  297. Basic Stack Layout
  298. ------------------
  299. `STACK_GROWS_DOWNWARD'
  300.      Define this macro if pushing a word onto the stack moves the stack
  301.      pointer to a smaller address.
  302.      When we say, "define this macro if ...," it means that the
  303.      compiler checks this macro only with `#ifdef' so the precise
  304.      definition used does not matter.
  305. `FRAME_GROWS_DOWNWARD'
  306.      Define this macro if the addresses of local variable slots are at
  307.      negative offsets from the frame pointer.
  308. `ARGS_GROW_DOWNWARD'
  309.      Define this macro if successive arguments to a function occupy
  310.      decreasing addresses on the stack.
  311. `STARTING_FRAME_OFFSET'
  312.      Offset from the frame pointer to the first local variable slot to
  313.      be allocated.
  314.      If `FRAME_GROWS_DOWNWARD', the next slot's offset is found by
  315.      subtracting the length of the first slot from
  316.      `STARTING_FRAME_OFFSET'. Otherwise, it is found by adding the
  317.      length of the first slot to the value `STARTING_FRAME_OFFSET'.
  318. `STACK_POINTER_OFFSET'
  319.      Offset from the stack pointer register to the first location at
  320.      which outgoing arguments are placed.  If not specified, the
  321.      default value of zero is used.  This is the proper value for most
  322.      machines.
  323.      If `ARGS_GROW_DOWNWARD', this is the offset to the location above
  324.      the first location at which outgoing arguments are placed.
  325. `FIRST_PARM_OFFSET (FUNDECL)'
  326.      Offset from the argument pointer register to the first argument's
  327.      address.  On some machines it may depend on the data type of the
  328.      function.
  329.      If `ARGS_GROW_DOWNWARD', this is the offset to the location above
  330.      the first argument's address.
  331. `STACK_DYNAMIC_OFFSET (FUNDECL)'
  332.      Offset from the stack pointer register to an item dynamically
  333.      allocated on the stack, e.g., by `alloca'.
  334.      The default value for this macro is `STACK_POINTER_OFFSET' plus the
  335.      length of the outgoing arguments.  The default is correct for most
  336.      machines.  See `function.c' for details.
  337. `DYNAMIC_CHAIN_ADDRESS (FRAMEADDR)'
  338.      A C expression whose value is RTL representing the address in a
  339.      stack frame where the pointer to the caller's frame is stored. 
  340.      Assume that FRAMEADDR is an RTL expression for the address of the
  341.      stack frame itself.
  342.      If you don't define this macro, the default is to return the value
  343.      of FRAMEADDR--that is, the stack frame address is also the address
  344.      of the stack word that points to the previous frame.
  345. File: gcc.info,  Node: Frame Registers,  Next: Elimination,  Prev: Frame Layout,  Up: Stack and Calling
  346. Registers That Address the Stack Frame
  347. --------------------------------------
  348. `STACK_POINTER_REGNUM'
  349.      The register number of the stack pointer register, which must also
  350.      be a fixed register according to `FIXED_REGISTERS'.  On most
  351.      machines, the hardware determines which register this is.
  352. `FRAME_POINTER_REGNUM'
  353.      The register number of the frame pointer register, which is used to
  354.      access automatic variables in the stack frame.  On some machines,
  355.      the hardware determines which register this is.  On other
  356.      machines, you can choose any register you wish for this purpose.
  357. `ARG_POINTER_REGNUM'
  358.      The register number of the arg pointer register, which is used to
  359.      access the function's argument list.  On some machines, this is
  360.      the same as the frame pointer register.  On some machines, the
  361.      hardware determines which register this is.  On other machines,
  362.      you can choose any register you wish for this purpose.  If this is
  363.      not the same register as the frame pointer register, then you must
  364.      mark it as a fixed register according to `FIXED_REGISTERS', or
  365.      arrange to be able to eliminate it (*note Elimination::.).
  366. `STATIC_CHAIN_REGNUM'
  367. `STATIC_CHAIN_INCOMING_REGNUM'
  368.      Register numbers used for passing a function's static chain
  369.      pointer.  If register windows are used,
  370.      `STATIC_CHAIN_INCOMING_REGNUM' is the register number as seen by
  371.      the called function, while `STATIC_CHAIN_REGNUM' is the register
  372.      number as seen by the calling function.  If these registers are
  373.      the same, `STATIC_CHAIN_INCOMING_REGNUM' need not be defined.
  374.      The static chain register need not be a fixed register.
  375.      If the static chain is passed in memory, these macros should not be
  376.      defined; instead, the next two macros should be defined.
  377. `STATIC_CHAIN'
  378. `STATIC_CHAIN_INCOMING'
  379.      If the static chain is passed in memory, these macros provide rtx
  380.      giving `mem' expressions that denote where they are stored.
  381.      `STATIC_CHAIN' and `STATIC_CHAIN_INCOMING' give the locations as
  382.      seen by the calling and called functions, respectively.  Often the
  383.      former will be at an offset from the stack pointer and the latter
  384.      at an offset from the frame pointer.
  385.      The variables `stack_pointer_rtx', `frame_pointer_rtx', and
  386.      `arg_pointer_rtx' will have been initialized prior to the use of
  387.      these macros and should be used to refer to those items.
  388.      If the static chain is passed in a register, the two previous
  389.      macros should be defined instead.
  390. File: gcc.info,  Node: Elimination,  Next: Stack Arguments,  Prev: Frame Registers,  Up: Stack and Calling
  391. Eliminating Frame Pointer and Arg Pointer
  392. -----------------------------------------
  393. `FRAME_POINTER_REQUIRED'
  394.      A C expression which is nonzero if a function must have and use a
  395.      frame pointer.  This expression is evaluated  in the reload pass. 
  396.      If its value is nonzero the function will have a frame pointer.
  397.      The expression can in principle examine the current function and
  398.      decide according to the facts, but on most machines the constant 0
  399.      or the constant 1 suffices.  Use 0 when the machine allows code to
  400.      be generated with no frame pointer, and doing so saves some time
  401.      or space.  Use 1 when there is no possible advantage to avoiding a
  402.      frame pointer.
  403.      In certain cases, the compiler does not know how to produce valid
  404.      code without a frame pointer.  The compiler recognizes those cases
  405.      and automatically gives the function a frame pointer regardless of
  406.      what `FRAME_POINTER_REQUIRED' says.  You don't need to worry about
  407.      them.
  408.      In a function that does not require a frame pointer, the frame
  409.      pointer register can be allocated for ordinary usage, unless you
  410.      mark it as a fixed register.  See `FIXED_REGISTERS' for more
  411.      information.
  412.      This macro is ignored and need not be defined if `ELIMINABLE_REGS'
  413.      is defined.
  414. `INITIAL_FRAME_POINTER_OFFSET (DEPTH-VAR)'
  415.      A C statement to store in the variable DEPTH-VAR the difference
  416.      between the frame pointer and the stack pointer values immediately
  417.      after the function prologue.  The value would be computed from
  418.      information such as the result of `get_frame_size ()' and the
  419.      tables of registers `regs_ever_live' and `call_used_regs'.
  420.      If `ELIMINABLE_REGS' is defined, this macro will be not be used and
  421.      need not be defined.  Otherwise, it must be defined even if
  422.      `FRAME_POINTER_REQUIRED' is defined to always be true; in that
  423.      case, you may set DEPTH-VAR to anything.
  424. `ELIMINABLE_REGS'
  425.      If defined, this macro specifies a table of register pairs used to
  426.      eliminate unneeded registers that point into the stack frame.  If
  427.      it is not defined, the only elimination attempted by the compiler
  428.      is to replace references to the frame pointer with references to
  429.      the stack pointer.
  430.      The definition of this macro is a list of structure
  431.      initializations, each of which specifies an original and
  432.      replacement register.
  433.      On some machines, the position of the argument pointer is not
  434.      known until the compilation is completed.  In such a case, a
  435.      separate hard register must be used for the argument pointer. 
  436.      This register can be eliminated by replacing it with either the
  437.      frame pointer or the argument pointer, depending on whether or not
  438.      the frame pointer has been eliminated.
  439.      In this case, you might specify:
  440.           #define ELIMINABLE_REGS  \
  441.           {{ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
  442.            {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM}, \
  443.            {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}}
  444.      Note that the elimination of the argument pointer with the stack
  445.      pointer is specified first since that is the preferred elimination.
  446. `CAN_ELIMINATE (FROM-REG, TO-REG)'
  447.      A C expression that returns non-zero if the compiler is allowed to
  448.      try to replace register number FROM-REG with register number
  449.      TO-REG.  This macro need only be defined if `ELIMINABLE_REGS' is
  450.      defined, and will usually be the constant 1, since most of the
  451.      cases preventing register elimination are things that the compiler
  452.      already knows about.
  453. `INITIAL_ELIMINATION_OFFSET (FROM-REG, TO-REG, OFFSET-VAR)'
  454.      This macro is similar to `INITIAL_FRAME_POINTER_OFFSET'.  It
  455.      specifies the initial difference between the specified pair of
  456.      registers.  This macro must be defined if `ELIMINABLE_REGS' is
  457.      defined.
  458. `LONGJMP_RESTORE_FROM_STACK'
  459.      Define this macro if the `longjmp' function restores registers from
  460.      the stack frames, rather than from those saved specifically by
  461.      `setjmp'.  Certain quantities must not be kept in registers across
  462.      a call to `setjmp' on such machines.
  463. File: gcc.info,  Node: Stack Arguments,  Next: Register Arguments,  Prev: Elimination,  Up: Stack and Calling
  464. Passing Function Arguments on the Stack
  465. ---------------------------------------
  466.    The macros in this section control how arguments are passed on the
  467. stack.  See the following section for other macros that control passing
  468. certain arguments in registers.
  469. `PROMOTE_PROTOTYPES'
  470.      Define this macro if an argument declared as `char' or `short' in
  471.      a prototype should actually be passed as an `int'.  In addition to
  472.      avoiding errors in certain cases of mismatch, it also makes for
  473.      better code on certain machines.
  474. `PUSH_ROUNDING (NPUSHED)'
  475.      A C expression that is the number of bytes actually pushed onto the
  476.      stack when an instruction attempts to push NPUSHED bytes.
  477.      If the target machine does not have a push instruction, do not
  478.      define this macro.  That directs GNU CC to use an alternate
  479.      strategy: to allocate the entire argument block and then store the
  480.      arguments into it.
  481.      On some machines, the definition
  482.           #define PUSH_ROUNDING(BYTES) (BYTES)
  483.      will suffice.  But on other machines, instructions that appear to
  484.      push one byte actually push two bytes in an attempt to maintain
  485.      alignment.  Then the definition should be
  486.           #define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
  487. `ACCUMULATE_OUTGOING_ARGS'
  488.      If defined, the maximum amount of space required for outgoing
  489.      arguments will be computed and placed into the variable
  490.      `current_function_outgoing_args_size'.  No space will be pushed
  491.      onto the stack for each call; instead, the function prologue should
  492.      increase the stack frame size by this amount.
  493.      It is not proper to define both `PUSH_ROUNDING' and
  494.      `ACCUMULATE_OUTGOING_ARGS'.
  495. `REG_PARM_STACK_SPACE (FNDECL)'
  496.      Define this macro if functions should assume that stack space has
  497.      been allocated for arguments even when their values are passed in
  498.      registers.
  499.      The value of this macro is the size, in bytes, of the area
  500.      reserved for ! arguments passed in registers for the function
  501.      represented by FNDECL.
  502.      This space can either be allocated by the caller or be a part of
  503.      the machine-dependent stack frame: `OUTGOING_REG_PARM_STACK_SPACE'
  504.      says which.
  505. `MAYBE_REG_PARM_STACK_SPACE'
  506. `FINAL_REG_PARM_STACK_SPACE (CONST_SIZE, VAR_SIZE)'
  507.      Define these macros in addition to the one above if functions might
  508.      allocate stack space for arguments even when their values are
  509.      passed in registers.  These should be used when the stack space
  510.      allocated for arguments in registers is not a simple constant
  511.      independent of the function declaration.
  512.      The value of the first macro is the size, in bytes, of the area
  513.      that we should initially assume would be reserved for arguments
  514.      passed in registers.
  515.      The value of the second macro is the actual size, in bytes, of the
  516.      area that will be reserved for arguments passed in registers. 
  517.      This takes two arguments: an integer representing the number of
  518.      bytes of fixed sized arguments on the stack, and a tree
  519.      representing the number of bytes of variable sized arguments on
  520.      the stack.
  521.      When these macros are defined, `REG_PARM_STACK_SPACE' will only be
  522.      called for libcall functions, the current function, or for a
  523.      function being called when it is known that such stack space must
  524.      be allocated. In each case this value can be easily computed.
  525.      When deciding whether a called function needs such stack space,
  526.      and how much space to reserve, GNU CC uses these two macros
  527.      instead of `REG_PARM_STACK_SPACE'.
  528. `OUTGOING_REG_PARM_STACK_SPACE'
  529.      Define this if it is the responsibility of the caller to allocate
  530.      the area reserved for arguments passed in registers.
  531.      If `ACCUMULATE_OUTGOING_ARGS' is defined, this macro controls
  532.      whether the space for these arguments counts in the value of
  533.      `current_function_outgoing_args_size'.
  534. `STACK_PARMS_IN_REG_PARM_AREA'
  535.      Define this macro if `REG_PARM_STACK_SPACE' is defined but stack
  536.      parameters don't skip the area specified by `REG_PARM_STACK_SPACE'.
  537.      Normally, when a parameter is not passed in registers, it is
  538.      placed on the stack beyond the `REG_PARM_STACK_SPACE' area. 
  539.      Defining this macro suppresses this behavior and causes the
  540.      parameter to be passed on the stack in its natural location.
  541. `RETURN_POPS_ARGS (FUNTYPE, STACK-SIZE)'
  542.      A C expression that should indicate the number of bytes of its own
  543.      arguments that a function pops on returning, or 0 if the function
  544.      pops no arguments and the caller must therefore pop them all after
  545.      the function returns.
  546.      FUNTYPE is a C variable whose value is a tree node that describes
  547.      the function in question.  Normally it is a node of type
  548.      `FUNCTION_TYPE' that describes the data type of the function. From
  549.      this it is possible to obtain the data types of the value and
  550.      arguments (if known).
  551.      When a call to a library function is being considered, FUNTYPE
  552.      will contain an identifier node for the library function.  Thus, if
  553.      you need to distinguish among various library functions, you can
  554.      do so by their names.  Note that "library function" in this
  555.      context means a function used to perform arithmetic, whose name is
  556.      known specially in the compiler and was not mentioned in the C
  557.      code being compiled.
  558.      STACK-SIZE is the number of bytes of arguments passed on the
  559.      stack.  If a variable number of bytes is passed, it is zero, and
  560.      argument popping will always be the responsibility of the calling
  561.      function.
  562.      On the Vax, all functions always pop their arguments, so the
  563.      definition of this macro is STACK-SIZE.  On the 68000, using the
  564.      standard calling convention, no functions pop their arguments, so
  565.      the value of the macro is always 0 in this case.  But an
  566.      alternative calling convention is available in which functions
  567.      that take a fixed number of arguments pop them but other functions
  568.      (such as `printf') pop nothing (the caller pops all).  When this
  569.      convention is in use, FUNTYPE is examined to determine whether a
  570.      function takes a fixed number of arguments.
  571. File: gcc.info,  Node: Register Arguments,  Next: Scalar Return,  Prev: Stack Arguments,  Up: Stack and Calling
  572. Passing Arguments in Registers
  573. ------------------------------
  574.    This section describes the macros which let you control how various
  575. types of arguments are passed in registers or how they are arranged in
  576. the stack.
  577. `FUNCTION_ARG (CUM, MODE, TYPE, NAMED)'
  578.      A C expression that controls whether a function argument is passed
  579.      in a register, and which register.
  580.      The arguments are CUM, which summarizes all the previous
  581.      arguments; MODE, the machine mode of the argument; TYPE, the data
  582.      type of the argument as a tree node or 0 if that is not known
  583.      (which happens for C support library functions); and NAMED, which
  584.      is 1 for an ordinary argument and 0 for nameless arguments that
  585.      correspond to `...' in the called function's prototype.
  586.      The value of the expression should either be a `reg' RTX for the
  587.      hard register in which to pass the argument, or zero to pass the
  588.      argument on the stack.
  589.      For machines like the Vax and 68000, where normally all arguments
  590.      are pushed, zero suffices as a definition.
  591.      The usual way to make the ANSI library `stdarg.h' work on a machine
  592.      where some arguments are usually passed in registers, is to cause
  593.      nameless arguments to be passed on the stack instead.  This is done
  594.      by making `FUNCTION_ARG' return 0 whenever NAMED is 0.
  595.      You may use the macro `MUST_PASS_IN_STACK (MODE, TYPE)' in the
  596.      definition of this macro to determine if this argument is of a
  597.      type that must be passed in the stack.  If `REG_PARM_STACK_SPACE'
  598.      is not defined and `FUNCTION_ARG' returns non-zero for such an
  599.      argument, the compiler will abort.  If `REG_PARM_STACK_SPACE' is
  600.      defined, the argument will be computed in the stack and then
  601.      loaded into a register.
  602. `FUNCTION_INCOMING_ARG (CUM, MODE, TYPE, NAMED)'
  603.      Define this macro if the target machine has "register windows", so
  604.      that the register in which a function sees an arguments is not
  605.      necessarily the same as the one in which the caller passed the
  606.      argument.
  607.      For such machines, `FUNCTION_ARG' computes the register in which
  608.      the caller passes the value, and `FUNCTION_INCOMING_ARG' should be
  609.      defined in a similar fashion to tell the function being called
  610.      where the arguments will arrive.
  611.      If `FUNCTION_INCOMING_ARG' is not defined, `FUNCTION_ARG' serves
  612.      both purposes.
  613. `FUNCTION_ARG_PARTIAL_NREGS (CUM, MODE, TYPE, NAMED)'
  614.      A C expression for the number of words, at the beginning of an
  615.      argument, must be put in registers.  The value must be zero for
  616.      arguments that are passed entirely in registers or that are
  617.      entirely pushed on the stack.
  618.      On some machines, certain arguments must be passed partially in
  619.      registers and partially in memory.  On these machines, typically
  620.      the first N words of arguments are passed in registers, and the
  621.      rest on the stack.  If a multi-word argument (a `double' or a
  622.      structure) crosses that boundary, its first few words must be
  623.      passed in registers and the rest must be pushed.  This macro tells
  624.      the compiler when this occurs, and how many of the words should go
  625.      in registers.
  626.      `FUNCTION_ARG' for these arguments should return the first
  627.      register to be used by the caller for this argument; likewise
  628.      `FUNCTION_INCOMING_ARG', for the called function.
  629. `FUNCTION_ARG_PASS_BY_REFERENCE (CUM, MODE, TYPE, NAMED)'
  630.      A C expression that indicates when an argument must be passed by
  631.      reference. If nonzero for an argument, a copy of that argument is
  632.      made in memory and a pointer to the argument is passed instead of
  633.      the argument itself. The pointer is passed in whatever way is
  634.      appropriate for passing a pointer to that type.
  635.      On machines where `REG_PARM_STACK_SPACE' is not defined, a suitable
  636.      definition of this macro might be
  637.           #define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED)  \
  638.             MUST_PASS_IN_STACK (MODE, TYPE)
  639. `CUMULATIVE_ARGS'
  640.      A C type for declaring a variable that is used as the first
  641.      argument of `FUNCTION_ARG' and other related values.  For some
  642.      target machines, the type `int' suffices and can hold the number
  643.      of bytes of argument so far.
  644.      There is no need to record in `CUMULATIVE_ARGS' anything about the
  645.      arguments that have been passed on the stack.  The compiler has
  646.      other variables to keep track of that.  For target machines on
  647.      which all arguments are passed on the stack, there is no need to
  648.      store anything in `CUMULATIVE_ARGS'; however, the data structure
  649.      must exist and should not be empty, so use `int'.
  650. `INIT_CUMULATIVE_ARGS (CUM, FNTYPE, LIBNAME)'
  651.      A C statement (sans semicolon) for initializing the variable CUM
  652.      for the state at the beginning of the argument list.  The variable
  653.      has type `CUMULATIVE_ARGS'.  The value of FNTYPE is the tree node
  654.      for the data type of the function which will receive the args, or 0
  655.      if the args are to a compiler support library function.
  656.      When processing a call to a compiler support library function,
  657.      LIBNAME identifies which one.  It is a `symbol_ref' rtx which
  658.      contains the name of the function, as a string.  LIBNAME is 0 when
  659.      an ordinary C function call is being processed.  Thus, each time
  660.      this macro is called, either LIBNAME or FNTYPE is nonzero, but
  661.      never both of them at once.
  662. `INIT_CUMULATIVE_INCOMING_ARGS (CUM, FNTYPE, LIBNAME)'
  663.      Like `INIT_CUMULATIVE_ARGS' but overrides it for the purposes of
  664.      finding the arguments for the function being compiled.  If this
  665.      macro is undefined, `INIT_CUMULATIVE_ARGS' is used instead.
  666.      The argument LIBNAME exists for symmetry with
  667.      `INIT_CUMULATIVE_ARGS'.  The value passed for LIBNAME is always 0,
  668.      since library routines with special calling conventions are never
  669.      compiled with GNU CC.
  670. `FUNCTION_ARG_ADVANCE (CUM, MODE, TYPE, NAMED)'
  671.      A C statement (sans semicolon) to update the summarizer variable
  672.      CUM to advance past an argument in the argument list.  The values
  673.      MODE, TYPE and NAMED describe that argument. Once this is done,
  674.      the variable CUM is suitable for analyzing the *following*
  675.      argument with `FUNCTION_ARG', etc.
  676.      This macro need not do anything if the argument in question was
  677.      passed on the stack.  The compiler knows how to track the amount
  678.      of stack space used for arguments without any special help.
  679. `FUNCTION_ARG_PADDING (MODE, TYPE)'
  680.      If defined, a C expression which determines whether, and in which
  681.      direction, to pad out an argument with extra space.  The value
  682.      should be of type `enum direction': either `upward' to pad above
  683.      the argument, `downward' to pad below, or `none' to inhibit
  684.      padding.
  685.      This macro does not control the *amount* of padding; that is
  686.      always just enough to reach the next multiple of
  687.      `FUNCTION_ARG_BOUNDARY'.
  688.      This macro has a default definition which is right for most
  689.      systems. For little-endian machines, the default is to pad upward.
  690.       For big-endian machines, the default is to pad downward for an
  691.      argument of constant size shorter than an `int', and upward
  692.      otherwise.
  693. `FUNCTION_ARG_BOUNDARY (MODE, TYPE)'
  694.      If defined, a C expression that gives the alignment boundary, in
  695.      bits, of an argument with the specified mode and type.  If it is
  696.      not defined, `PARM_BOUNDARY' is used for all arguments.
  697. `FUNCTION_ARG_REGNO_P (REGNO)'
  698.      A C expression that is nonzero if REGNO is the number of a hard
  699.      register in which function arguments are sometimes passed.  This
  700.      does *not* include implicit arguments such as the static chain and
  701.      the structure-value address.  On many machines, no registers can be
  702.      used for this purpose since all function arguments are pushed on
  703.      the stack.
  704. File: gcc.info,  Node: Scalar Return,  Next: Aggregate Return,  Prev: Register Arguments,  Up: Stack and Calling
  705. How Scalar Function Values Are Returned
  706. ---------------------------------------
  707.    This section discusses the macros that control returning scalars as
  708. values--values that can fit in registers.
  709. `TRADITIONAL_RETURN_FLOAT'
  710.      Define this macro if `-traditional' should not cause functions
  711.      declared to return `float' to convert the value to `double'.
  712. `FUNCTION_VALUE (VALTYPE, FUNC)'
  713.      A C expression to create an RTX representing the place where a
  714.      function returns a value of data type VALTYPE.  VALTYPE is a tree
  715.      node representing a data type.  Write `TYPE_MODE (VALTYPE)' to get
  716.      the machine mode used to represent that type. On many machines,
  717.      only the mode is relevant.  (Actually, on most machines, scalar
  718.      values are returned in the same place regardless of mode).
  719.      If the precise function being called is known, FUNC is a tree node
  720.      (`FUNCTION_DECL') for it; otherwise, FUNC is a null pointer.  This
  721.      makes it possible to use a different value-returning convention
  722.      for specific functions when all their calls are known.
  723.      `FUNCTION_VALUE' is not used for return vales with aggregate data
  724.      types, because these are returned in another way.  See
  725.      `STRUCT_VALUE_REGNUM' and related macros, below.
  726. `FUNCTION_OUTGOING_VALUE (VALTYPE, FUNC)'
  727.      Define this macro if the target machine has "register windows" so
  728.      that the register in which a function returns its value is not the
  729.      same as the one in which the caller sees the value.
  730.      For such machines, `FUNCTION_VALUE' computes the register in which
  731.      the caller will see the value, and `FUNCTION_OUTGOING_VALUE'
  732.      should be defined in a similar fashion to tell the function where
  733.      to put the value.
  734.      If `FUNCTION_OUTGOING_VALUE' is not defined, `FUNCTION_VALUE'
  735.      serves both purposes.
  736.      `FUNCTION_OUTGOING_VALUE' is not used for return vales with
  737.      aggregate data types, because these are returned in another way. 
  738.      See `STRUCT_VALUE_REGNUM' and related macros, below.
  739. `LIBCALL_VALUE (MODE)'
  740.      A C expression to create an RTX representing the place where a
  741.      library function returns a value of mode MODE.  If the precise
  742.      function being called is known, FUNC is a tree node
  743.      (`FUNCTION_DECL') for it; otherwise, FUNC is a null pointer.  This
  744.      makes it possible to use a different value-returning convention
  745.      for specific functions when all their calls are known.
  746.      Note that "library function" in this context means a compiler
  747.      support routine, used to perform arithmetic, whose name is known
  748.      specially by the compiler and was not mentioned in the C code being
  749.      compiled.
  750.      The definition of `LIBRARY_VALUE' need not be concerned aggregate
  751.      data types, because none of the library functions returns such
  752.      types.
  753. `FUNCTION_VALUE_REGNO_P (REGNO)'
  754.      A C expression that is nonzero if REGNO is the number of a hard
  755.      register in which the values of called function may come back.
  756.      A register whose use for returning values is limited to serving as
  757.      the second of a pair (for a value of type `double', say) need not
  758.      be recognized by this macro.  So for most machines, this definition
  759.      suffices:
  760.           #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
  761.      If the machine has register windows, so that the caller and the
  762.      called function use different registers for the return value, this
  763.      macro should recognize only the caller's register numbers.
  764. File: gcc.info,  Node: Aggregate Return,  Next: Caller Saves,  Prev: Scalar Return,  Up: Stack and Calling
  765. How Large Values Are Returned
  766. -----------------------------
  767.    When a function value's mode is `BLKmode' (and in some other cases),
  768. the value is not returned according to `FUNCTION_VALUE' (*note Scalar
  769. Return::.).  Instead, the caller passes the address of a block of
  770. memory in which the value should be stored.  This address is called the
  771. "structure value address".
  772.    This section describes how to control returning structure values in
  773. memory.
  774. `RETURN_IN_MEMORY (TYPE)'
  775.      A C expression which can inhibit the returning of certain function
  776.      values in registers, based on the type of value.  A nonzero value
  777.      says to return the function value in memory, just as large
  778.      structures are always returned.  Here TYPE will be a C expression
  779.      of type `tree', representing the data type of the value.
  780.      Note that values of mode `BLKmode' are returned in memory
  781.      regardless of this macro.  Also, the option `-fpcc-struct-return'
  782.      takes effect regardless of this macro.  On most systems, it is
  783.      possible to leave the macro undefined; this causes a default
  784.      definition to be used, whose value is the constant 0.
  785. `STRUCT_VALUE_REGNUM'
  786.      If the structure value address is passed in a register, then
  787.      `STRUCT_VALUE_REGNUM' should be the number of that register.
  788. `STRUCT_VALUE'
  789.      If the structure value address is not passed in a register, define
  790.      `STRUCT_VALUE' as an expression returning an RTX for the place
  791.      where the address is passed.  If it returns 0, the address is
  792.      passed as an "invisible" first argument.
  793. `STRUCT_VALUE_INCOMING_REGNUM'
  794.      On some architectures the place where the structure value address
  795.      is found by the called function is not the same place that the
  796.      caller put it.  This can be due to register windows, or it could
  797.      be because the function prologue moves it to a different place.
  798.      If the incoming location of the structure value address is in a
  799.      register, define this macro as the register number.
  800. `STRUCT_VALUE_INCOMING'
  801.      If the incoming location is not a register, define
  802.      `STRUCT_VALUE_INCOMING' as an expression for an RTX for where the
  803.      called function should find the value.  If it should find the
  804.      value on the stack, define this to create a `mem' which refers to
  805.      the frame pointer.  A definition of 0 means that the address is
  806.      passed as an "invisible" first argument.
  807. `PCC_STATIC_STRUCT_RETURN'
  808.      Define this macro if the usual system convention on the target
  809.      machine for returning structures and unions is for the called
  810.      function to return the address of a static variable containing the
  811.      value.  GNU CC does not normally use this convention, even if it
  812.      is the usual one, but does use it if `-fpcc-struct-value' is
  813.      specified.
  814.      Do not define this if the usual system convention is for the
  815.      caller to pass an address to the subroutine.
  816. File: gcc.info,  Node: Caller Saves,  Next: Function Entry,  Prev: Aggregate Return,  Up: Stack and Calling
  817. Caller-Saves Register Allocation
  818. --------------------------------
  819.    If you enable it, GNU CC can save registers around function calls. 
  820. This makes it possible to use call-clobbered registers to hold
  821. variables that must live across calls.
  822. `DEFAULT_CALLER_SAVES'
  823.      Define this macro if function calls on the target machine do not
  824.      preserve any registers; in other words, if `CALL_USED_REGISTERS'
  825.      has 1 for all registers.  This macro enables `-fcaller-saves' by
  826.      default. Eventually that option will be enabled by default on all
  827.      machines and both the option and this macro will be eliminated.
  828. `CALLER_SAVE_PROFITABLE (REFS, CALLS)'
  829.      A C expression to determine whether it is worthwhile to consider
  830.      placing a pseudo-register in a call-clobbered hard register and
  831.      saving and restoring it around each function call.  The expression
  832.      should be 1 when this is worth doing, and 0 otherwise.
  833.      If you don't define this macro, a default is used which is good on
  834.      most machines: `4 * CALLS < REFS'.
  835.