home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / gcc222.lha / info / gcc.info-16 (.txt) < prev    next >
GNU Info File  |  1992-07-19  |  51KB  |  881 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: Costs,  Next: Sections,  Prev: Condition Code,  Up: Target Macros
  21. Describing Relative Costs of Operations
  22. =======================================
  23.    These macros let you describe the relative speed of various
  24. operations on the target machine.
  25. `CONST_COSTS (X, CODE, OUTER_CODE)'
  26.      A part of a C `switch' statement that describes the relative costs
  27.      of constant RTL expressions.  It must contain `case' labels for
  28.      expression codes `const_int', `const', `symbol_ref', `label_ref'
  29.      and `const_double'.  Each case must ultimately reach a `return'
  30.      statement to return the relative cost of the use of that kind of
  31.      constant value in an expression.  The cost may depend on the
  32.      precise value of the constant, which is available for examination
  33.      in X, and the rtx code of the expression in which it is contained,
  34.      found in OUTER_CODE.
  35.      CODE is the expression code--redundant, since it can be obtained
  36.      with `GET_CODE (X)'.
  37. `RTX_COSTS (X, CODE, OUTER_CODE)'
  38.      Like `CONST_COSTS' but applies to nonconstant RTL expressions.
  39.      This can be used, for example, to indicate how costly a multiply
  40.      instruction is.  In writing this macro, you can use the construct
  41.      `COSTS_N_INSNS (N)' to specify a cost equal to N fast
  42.      instructions.  OUTER_CODE is the code of the expression in which X
  43.      is contained.
  44.      This macro is optional; do not define it if the default cost
  45.      assumptions are adequate for the target machine.
  46. `ADDRESS_COST (ADDRESS)'
  47.      An expression giving the cost of an addressing mode that contains
  48.      ADDRESS.  If not defined, the cost is computed from the ADDRESS
  49.      expression and the `CONST_COSTS' values.
  50.      For most CISC machines, the default cost is a good approximation
  51.      of the true cost of the addressing mode.  However, on RISC
  52.      machines, all instructions normally have the same length and
  53.      execution time.  Hence all addresses will have equal costs.
  54.      In cases where more than one form of an address is known, the form
  55.      with the lowest cost will be used.  If multiple forms have the
  56.      same, lowest, cost, the one that is the most complex will be used.
  57.      For example, suppose an address that is equal to the sum of a
  58.      register and a constant is used twice in the same basic block. 
  59.      When this macro is not defined, the address will be computed in a
  60.      register and memory references will be indirect through that
  61.      register.  On machines where the cost of the addressing mode
  62.      containing the sum is no higher than that of a simple indirect
  63.      reference, this will produce an additional instruction and
  64.      possibly require an additional register.  Proper specification of
  65.      this macro eliminates this overhead for such machines.
  66.      Similar use of this macro is made in strength reduction of loops.
  67.      ADDRESS need not be valid as an address.  In such a case, the cost
  68.      is not relevant and can be any value; invalid addresses need not be
  69.      assigned a different cost.
  70.      On machines where an address involving more than one register is as
  71.      cheap as an address computation involving only one register,
  72.      defining `ADDRESS_COST' to reflect this can cause two registers to
  73.      be live over a region of code where only one would have been if
  74.      `ADDRESS_COST' were not defined in that manner.  This effect should
  75.      be considered in the definition of this macro.  Equivalent costs
  76.      should probably only be given to addresses with different numbers
  77.      of registers on machines with lots of registers.
  78.      This macro will normally either not be defined or be defined as a
  79.      constant.
  80. `REGISTER_MOVE_COST (FROM, TO)'
  81.      A C expression for the cost of moving data from a register in class
  82.      FROM to one in class TO.  The classes are expressed using the
  83.      enumeration values such as `GENERAL_REGS'.  A value of 2 is the
  84.      default; other values are interpreted relative to that.
  85.      It is not required that the cost always equal 2 when FROM is the
  86.      same as TO; on some machines it is expensive to move between
  87.      registers if they are not general registers.
  88.      If reload sees an insn consisting of a single `set' between two
  89.      hard registers, and if `REGISTER_MOVE_COST' applied to their
  90.      classes returns a value of 2, reload does not check to ensure that
  91.      the constraints of the insn are met.  Setting a cost of other than
  92.      2 will allow reload to verify that the constraints are met.  You
  93.      should do this if the `movM' pattern's constraints do not allow
  94.      such copying.
  95. `MEMORY_MOVE_COST (M)'
  96.      A C expression for the cost of moving data of mode M between a
  97.      register and memory.  A value of 2 is the default; this cost is
  98.      relative to those in `REGISTER_MOVE_COST'.
  99.      If moving between registers and memory is more expensive than
  100.      between two registers, you should define this macro to express the
  101.      relative cost.
  102. `BRANCH_COST'
  103.      A C expression for the cost of a branch instruction.  A value of 1
  104.      is the default; other values are interpreted relative to that.
  105.    Here are additional macros which do not specify precise relative
  106. costs, but only that certain actions are more expensive than GNU CC
  107. would ordinarily expect.
  108. `SLOW_BYTE_ACCESS'
  109.      Define this macro as a C expression which is nonzero if accessing
  110.      less than a word of memory (i.e. a `char' or a `short') is no
  111.      faster than accessing a word of memory, i.e., if such access
  112.      require more than one instruction or if there is no difference in
  113.      cost between byte and (aligned) word loads.
  114.      When this macro is not defined, the compiler will access a field by
  115.      finding the smallest containing object; when it is defined, a
  116.      fullword load will be used if alignment permits.  Unless bytes
  117.      accesses are faster than word accesses, using word accesses is
  118.      preferable since it may eliminate subsequent memory access if
  119.      subsequent accesses occur to other fields in the same word of the
  120.      structure, but to different bytes.
  121. `SLOW_ZERO_EXTEND'
  122.      Define this macro if zero-extension (of a `char' or `short' to an
  123.      `int') can be done faster if the destination is a register that is
  124.      known to be zero.
  125.      If you define this macro, you must have instruction patterns that
  126.      recognize RTL structures like this:
  127.           (set (strict_low_part (subreg:QI (reg:SI ...) 0)) ...)
  128.      and likewise for `HImode'.
  129. `SLOW_UNALIGNED_ACCESS'
  130.      Define this macro to be the value 1 if unaligned accesses have a
  131.      cost many times greater than aligned accesses, for example if they
  132.      are emulated in a trap handler.
  133.      When this macro is non-zero, the compiler will act as if
  134.      `STRICT_ALIGNMENT' were non-zero when generating code for block
  135.      moves.  This can cause significantly more instructions to be
  136.      produced. Therefore, do not set this macro non-zero if unaligned
  137.      accesses only add a cycle or two to the time for a memory access.
  138.      If the value of this macro is always zero, it need not be defined.
  139. `DONT_REDUCE_ADDR'
  140.      Define this macro to inhibit strength reduction of memory
  141.      addresses. (On some machines, such strength reduction seems to do
  142.      harm rather than good.)
  143. `MOVE_RATIO'
  144.      The number of scalar move insns which should be generated instead
  145.      of a string move insn or a library call.  Increasing the value
  146.      will always make code faster, but eventually incurs high cost in
  147.      increased code size.
  148.      If you don't define this, a reasonable default is used.
  149. `NO_FUNCTION_CSE'
  150.      Define this macro if it is as good or better to call a constant
  151.      function address than to call an address kept in a register.
  152. `NO_RECURSIVE_FUNCTION_CSE'
  153.      Define this macro if it is as good or better for a function to call
  154.      itself with an explicit address than to call an address kept in a
  155.      register.
  156. File: gcc.info,  Node: Sections,  Next: PIC,  Prev: Costs,  Up: Target Macros
  157. Dividing the Output into Sections (Texts, Data, ...)
  158. ====================================================
  159.    An object file is divided into sections containing different types of
  160. data.  In the most common case, there are three sections: the "text
  161. section", which holds instructions and read-only data; the "data
  162. section", which holds initialized writable data; and the "bss section",
  163. which holds uninitialized data.  Some systems have other kinds of
  164. sections.
  165.    The compiler must tell the assembler when to switch sections.  These
  166. macros control what commands to output to tell the assembler this.  You
  167. can also define additional sections.
  168. `TEXT_SECTION_ASM_OP'
  169.      A C string constant for the assembler operation that should precede
  170.      instructions and read-only data.  Normally `".text"' is right.
  171. `DATA_SECTION_ASM_OP'
  172.      A C string constant for the assembler operation to identify the
  173.      following data as writable initialized data.  Normally `".data"'
  174.      is right.
  175. `SHARED_SECTION_ASM_OP'
  176.      If defined, a C string constant for the assembler operation to
  177.      identify the following data as shared data.  If not defined,
  178.      `DATA_SECTION_ASM_OP' will be used.
  179. `INIT_SECTION_ASM_OP'
  180.      If defined, a C string constant for the assembler operation to
  181.      identify the following data as initialization code.  If not
  182.      defined, GNU CC will assume such a section does not exist.
  183. `EXTRA_SECTIONS'
  184.      A list of names for sections other than the standard two, which are
  185.      `in_text' and `in_data'.  You need not define this macro on a
  186.      system with no other sections (that GCC needs to use).
  187. `EXTRA_SECTION_FUNCTIONS'
  188.      One or more functions to be defined in `varasm.c'.  These
  189.      functions should do jobs analogous to those of `text_section' and
  190.      `data_section', for your additional sections.  Do not define this
  191.      macro if you do not define `EXTRA_SECTIONS'.
  192. `READONLY_DATA_SECTION'
  193.      On most machines, read-only variables, constants, and jump tables
  194.      are placed in the text section.  If this is not the case on your
  195.      machine, this macro should be defined to be the name of a function
  196.      (either `data_section' or a function defined in `EXTRA_SECTIONS')
  197.      that switches to the section to be used for read-only items.
  198.      If these items should be placed in the text section, this macro
  199.      should not be defined.
  200. `SELECT_SECTION (EXP, RELOC)'
  201.      A C statement or statements to switch to the appropriate section
  202.      for output of EXP.  You can assume that EXP is either a `VAR_DECL'
  203.      node or a constant of some sort.  RELOC indicates whether the
  204.      initial value of EXP requires link-time relocations.  Select the
  205.      section by calling `text_section' or one of the alternatives for
  206.      other sections.
  207.      Do not define this macro if you put all read-only variables and
  208.      constants in the read-only data section (usually the text section).
  209. `SELECT_RTX_SECTION (MODE, RTX)'
  210.      A C statement or statements to switch to the appropriate section
  211.      for output of RTX in mode MODE.  You can assume that RTX is some
  212.      kind of constant in RTL.  The argument MODE is redundant except in
  213.      the case of a `const_int' rtx.  Select the section by calling
  214.      `text_section' or one of the alternatives for other sections.
  215.      Do not define this macro if you put all constants in the read-only
  216.      data section.
  217. `JUMP_TABLES_IN_TEXT_SECTION'
  218.      Define this macro if jump tables (for `tablejump' insns) should be
  219.      output in the text section, along with the assembler instructions.
  220.      Otherwise, the readonly data section is used.
  221.      This macro is irrelevant if there is no separate readonly data
  222.      section.
  223. `ENCODE_SECTION_INFO (DECL)'
  224.      Define this macro if references to a symbol must be treated
  225.      differently depending on something about the variable or function
  226.      named by the symbol (such as what section it is in).
  227.      The macro definition, if any, is executed immediately after the
  228.      rtl for DECL has been created and stored in `DECL_RTL (DECL)'. The
  229.      value of the rtl will be a `mem' whose address is a `symbol_ref'.
  230.      The usual thing for this macro to do is to record a flag in the
  231.      `symbol_ref' (such as `SYMBOL_REF_FLAG') or to store a modified
  232.      name string in the `symbol_ref' (if one bit is not enough
  233.      information).
  234. File: gcc.info,  Node: PIC,  Next: Assembler Format,  Prev: Sections,  Up: Target Macros
  235. Position Independent Code
  236. =========================
  237.    This section describes macros that help implement generation of
  238. position independent code.  Simply defining these macros is not enough
  239. to generate valid PIC; you must also add support to the macros
  240. `GO_IF_LEGITIMATE_ADDRESS' and `LEGITIMIZE_ADDRESS', and
  241. `PRINT_OPERAND_ADDRESS' as well.  You must modify the definition of
  242. `movsi' to do something appropriate when the source operand contains a
  243. symbolic address.  You may also need to alter the handling of switch
  244. statements so that they use relative addresses.
  245. `PIC_OFFSET_TABLE_REGNUM'
  246.      The register number of the register used to address a table of
  247.      static data addresses in memory.  In some cases this register is
  248.      defined by a processor's "application binary interface" (ABI). 
  249.      When this macro is defined, RTL is generated for this register
  250.      once, as with the stack pointer and frame pointer registers.  If
  251.      this macro is not defined, it is up to the machine-dependent files
  252.      to allocate such a register (if necessary).
  253. `FINALIZE_PIC'
  254.      By generating position-independent code, when two different
  255.      programs (A and B) share a common library (libC.a), the text of
  256.      the library can be shared whether or not the library is linked at
  257.      the same address for both programs.  In some of these
  258.      environments, position-independent code requires not only the use
  259.      of different addressing modes, but also special code to enable the
  260.      use of these addressing modes.
  261.      The `FINALIZE_PIC' macro serves as a hook to emit these special
  262.      codes once the function is being compiled into assembly code, but
  263.      not before.  (It is not done before, because in the case of
  264.      compiling an inline function, it would lead to multiple PIC
  265.      prologues being included in functions which used inline functions
  266.      and were compiled to assembly language.)
  267. File: gcc.info,  Node: Assembler Format,  Next: Debugging Info,  Prev: PIC,  Up: Target Macros
  268. Defining the Output Assembler Language
  269. ======================================
  270.    This section describes macros whose principal purpose is to describe
  271. how to write instructions in assembler language--rather than what the
  272. instructions do.
  273. * Menu:
  274. * File Framework::       Structural information for the assembler file.
  275. * Data Output::          Output of constants (numbers, strings, addresses).
  276. * Uninitialized Data::   Output of uninitialized variables.
  277. * Label Output::         Output and generation of labels.
  278. * Constructor Output::     Output of initialization and termination routines.
  279. * Instruction Output::   Output of actual instructions.
  280. * Dispatch Tables::      Output of jump tables.
  281. * Alignment Output::     Pseudo ops for alignment and skipping data.
  282. File: gcc.info,  Node: File Framework,  Next: Data Output,  Up: Assembler Format
  283. The Overall Framework of an Assembler File
  284. ------------------------------------------
  285. `ASM_FILE_START (STREAM)'
  286.      A C expression which outputs to the stdio stream STREAM some
  287.      appropriate text to go at the start of an assembler file.
  288.      Normally this macro is defined to output a line containing
  289.      `#NO_APP', which is a comment that has no effect on most
  290.      assemblers but tells the GNU assembler that it can save time by not
  291.      checking for certain assembler constructs.
  292.      On systems that use SDB, it is necessary to output certain
  293.      commands; see `attasm.h'.
  294. `ASM_FILE_END (STREAM)'
  295.      A C expression which outputs to the stdio stream STREAM some
  296.      appropriate text to go at the end of an assembler file.
  297.      If this macro is not defined, the default is to output nothing
  298.      special at the end of the file.  Most systems don't require any
  299.      definition.
  300.      On systems that use SDB, it is necessary to output certain
  301.      commands; see `attasm.h'.
  302. `ASM_IDENTIFY_GCC (FILE)'
  303.      A C statement to output assembler commands which will identify the
  304.      object file as having been compiled with GNU CC (or another GNU
  305.      compiler).
  306.      If you don't define this macro, the string `gcc_compiled.:' is
  307.      output.  This string is calculated to define a symbol which, on
  308.      BSD systems, will never be defined for any other reason. GDB
  309.      checks for the presence of this symbol when reading the symbol
  310.      table of an executable.
  311.      On non-BSD systems, you must arrange communication with GDB in
  312.      some other fashion.  If GDB is not used on your system, you can
  313.      define this macro with an empty body.
  314. `ASM_COMMENT_START'
  315.      A C string constant describing how to begin a comment in the target
  316.      assembler language.  The compiler assumes that the comment will
  317.      end at the end of the line.
  318. `ASM_APP_ON'
  319.      A C string constant for text to be output before each `asm'
  320.      statement or group of consecutive ones.  Normally this is
  321.      `"#APP"', which is a comment that has no effect on most assemblers
  322.      but tells the GNU assembler that it must check the lines that
  323.      follow for all valid assembler constructs.
  324. `ASM_APP_OFF'
  325.      A C string constant for text to be output after each `asm'
  326.      statement or group of consecutive ones.  Normally this is
  327.      `"#NO_APP"', which tells the GNU assembler to resume making the
  328.      time-saving assumptions that are valid for ordinary compiler
  329.      output.
  330. `ASM_OUTPUT_SOURCE_FILENAME (STREAM, NAME)'
  331.      A C statement to output COFF information or DWARF debugging
  332.      information which indicates that filename NAME is the current
  333.      source file to the stdio stream STREAM.
  334.      This macro need not be defined if the standard form of output for
  335.      the file format in use is appropriate.
  336. `ASM_OUTPUT_SOURCE_LINE (STREAM, LINE)'
  337.      A C statement to output DBX or SDB debugging information before
  338.      code for line number LINE of the current source file to the stdio
  339.      stream STREAM.
  340.      This macro need not be defined if the standard form of debugging
  341.      information for the debugger in use is appropriate.
  342. `ASM_OUTPUT_IDENT (STREAM, STRING)'
  343.      A C statement to output something to the assembler file to handle a
  344.      `#ident' directive containing the text STRING.  If this macro is
  345.      not defined, nothing is output for a `#ident' directive.
  346. `OBJC_PROLOGUE'
  347.      A C statement to output any assembler statements which are
  348.      required to precede any Objective C object definitions or message
  349.      sending.  The statement is executed only when compiling an
  350.      Objective C program.
  351. File: gcc.info,  Node: Data Output,  Next: Uninitialized Data,  Prev: File Framework,  Up: Assembler Format
  352. Output of Data
  353. --------------
  354. `ASM_OUTPUT_LONG_DOUBLE (STREAM, VALUE)'
  355. `ASM_OUTPUT_DOUBLE (STREAM, VALUE)'
  356. `ASM_OUTPUT_FLOAT (STREAM, VALUE)'
  357.      A C statement to output to the stdio stream STREAM an assembler
  358.      instruction to assemble a floating-point constant of `TFmode',
  359.      `DFmode' or `SFmode', respectively, whose value is VALUE.  VALUE
  360.      will be a C expression of type `REAL_VALUE__TYPE', usually
  361.      `double'.
  362. `ASM_OUTPUT_QUADRUPLE_INT (STREAM, EXP)'
  363. `ASM_OUTPUT_DOUBLE_INT (STREAM, EXP)'
  364. `ASM_OUTPUT_INT (STREAM, EXP)'
  365. `ASM_OUTPUT_SHORT (STREAM, EXP)'
  366. `ASM_OUTPUT_CHAR (STREAM, EXP)'
  367.      A C statement to output to the stdio stream STREAM an assembler
  368.      instruction to assemble an integer of 16, 8, 4, 2 or 1 bytes,
  369.      respectively, whose value is VALUE.  The argument EXP will be an
  370.      RTL expression which represents a constant value.  Use
  371.      `output_addr_const (STREAM, EXP)' to output this value as an
  372.      assembler expression.
  373.      For sizes larger than `UNITS_PER_WORD', if the action of a macro
  374.      would be identical to repeatedly calling the macro corresponding to
  375.      a size of `UNITS_PER_WORD', once for each word, you need not define
  376.      the macro.
  377. `ASM_OUTPUT_BYTE (STREAM, VALUE)'
  378.      A C statement to output to the stdio stream STREAM an assembler
  379.      instruction to assemble a single byte containing the number VALUE.
  380. `ASM_BYTE_OP'
  381.      A C string constant giving the pseudo-op to use for a sequence of
  382.      single-byte constants.  If this macro is not defined, the default
  383.      is `"byte"'.
  384. `ASM_OUTPUT_ASCII (STREAM, PTR, LEN)'
  385.      A C statement to output to the stdio stream STREAM an assembler
  386.      instruction to assemble a string constant containing the LEN bytes
  387.      at PTR.  PTR will be a C expression of type `char *' and LEN a C
  388.      expression of type `int'.
  389.      If the assembler has a `.ascii' pseudo-op as found in the Berkeley
  390.      Unix assembler, do not define the macro `ASM_OUTPUT_ASCII'.
  391. `ASM_OUTPUT_POOL_PROLOGUE (FILE FUNNAME FUNDECL SIZE)'
  392.      A C statement to output assembler commands to define the start of
  393.      the constant pool for a function.  FUNNAME is a string giving the
  394.      name of the function.  Should the return type of the function be
  395.      required, it can be obtained via FUNDECL.  SIZE is the size, in
  396.      bytes, of the constant pool that will be written immediately after
  397.      this call.
  398.      If no constant-pool prefix is required, the usual case, this macro
  399.      need not be defined.
  400. `ASM_OUTPUT_SPECIAL_POOL_ENTRY (FILE, X, MODE, ALIGN, LABELNO, JUMPTO)'
  401.      A C statement (with or without semicolon) to output a constant in
  402.      the constant pool, if it needs special treatment.  (This macro
  403.      need not do anything for RTL expressions that can be output
  404.      normally.)
  405.      The argument FILE is the standard I/O stream to output the
  406.      assembler code on.  X is the RTL expression for the constant to
  407.      output, and MODE is the machine mode (in case X is a `const_int').
  408.       ALIGN is the required alignment for the value X; you should
  409.      output an assembler directive to force this much alignment.
  410.      The argument LABELNO is a number to use in an internal label for
  411.      the address of this pool entry.  The definition of this macro is
  412.      responsible for outputting the label definition at the proper
  413.      place. Here is how to do this:
  414.           ASM_OUTPUT_INTERNAL_LABEL (FILE, "LC", LABELNO);
  415.      When you output a pool entry specially, you should end with a
  416.      `goto' to the label JUMPTO.  This will prevent the same pool entry
  417.      from being output a second time in the usual manner.
  418.      You need not define this macro if it would do nothing.
  419. `ASM_OPEN_PAREN'
  420. `ASM_CLOSE_PAREN'
  421.      These macros are defined as C string constant, describing the
  422.      syntax in the assembler for grouping arithmetic expressions.  The
  423.      following definitions are correct for most assemblers:
  424.           #define ASM_OPEN_PAREN "("
  425.           #define ASM_CLOSE_PAREN ")"
  426. File: gcc.info,  Node: Uninitialized Data,  Next: Label Output,  Prev: Data Output,  Up: Assembler Format
  427. Output of Uninitialized Variables
  428. ---------------------------------
  429.    Each of the macros in this section is used to do the whole job of
  430. outputting a single uninitialized variable.
  431. `ASM_OUTPUT_COMMON (STREAM, NAME, SIZE, ROUNDED)'
  432.      A C statement (sans semicolon) to output to the stdio stream
  433.      STREAM the assembler definition of a common-label named NAME whose
  434.      size is SIZE bytes.  The variable ROUNDED is the size rounded up
  435.      to whatever alignment the caller wants.
  436.      Use the expression `assemble_name (STREAM, NAME)' to output the
  437.      name itself; before and after that, output the additional
  438.      assembler syntax for defining the name, and a newline.
  439.      This macro controls how the assembler definitions of uninitialized
  440.      global variables are output.
  441. `ASM_OUTPUT_ALIGNED_COMMON (STREAM, NAME, SIZE, ALIGNMENT)'
  442.      Like `ASM_OUTPUT_COMMON' except takes the required alignment as a
  443.      separate, explicit argument.  If you define this macro, it is used
  444.      in place of `ASM_OUTPUT_COMMON', and gives you more flexibility in
  445.      handling the required alignment of the variable.
  446. `ASM_OUTPUT_SHARED_COMMON (STREAM, NAME, SIZE, ROUNDED)'
  447.      If defined, it is similar to `ASM_OUTPUT_COMMON', except that it
  448.      is used when NAME is shared.  If not defined, `ASM_OUTPUT_COMMON'
  449.      will be used.
  450. `ASM_OUTPUT_LOCAL (STREAM, NAME, SIZE, ROUNDED)'
  451.      A C statement (sans semicolon) to output to the stdio stream
  452.      STREAM the assembler definition of a local-common-label named NAME
  453.      whose size is SIZE bytes.  The variable ROUNDED is the size
  454.      rounded up to whatever alignment the caller wants.
  455.      Use the expression `assemble_name (STREAM, NAME)' to output the
  456.      name itself; before and after that, output the additional
  457.      assembler syntax for defining the name, and a newline.
  458.      This macro controls how the assembler definitions of uninitialized
  459.      static variables are output.
  460. `ASM_OUTPUT_ALIGNED_LOCAL (STREAM, NAME, SIZE, ALIGNMENT)'
  461.      Like `ASM_OUTPUT_LOCAL' except takes the required alignment as a
  462.      separate, explicit argument.  If you define this macro, it is used
  463.      in place of `ASM_OUTPUT_LOCAL', and gives you more flexibility in
  464.      handling the required alignment of the variable.
  465. `ASM_OUTPUT_SHARED_LOCAL (STREAM, NAME, SIZE, ROUNDED)'
  466.      If defined, it is similar to `ASM_OUTPUT_LOCAL', except that it is
  467.      used when NAME is shared.  If not defined, `ASM_OUTPUT_LOCAL' will
  468.      be used.
  469. File: gcc.info,  Node: Label Output,  Next: Constructor Output,  Prev: Uninitialized Data,  Up: Assembler Format
  470. Output and Generation of Labels
  471. -------------------------------
  472. `ASM_OUTPUT_LABEL (STREAM, NAME)'
  473.      A C statement (sans semicolon) to output to the stdio stream
  474.      STREAM the assembler definition of a label named NAME. Use the
  475.      expression `assemble_name (STREAM, NAME)' to output the name
  476.      itself; before and after that, output the additional assembler
  477.      syntax for defining the name, and a newline.
  478. `ASM_DECLARE_FUNCTION_NAME (STREAM, NAME, DECL)'
  479.      A C statement (sans semicolon) to output to the stdio stream
  480.      STREAM any text necessary for declaring the name NAME of a
  481.      function which is being defined.  This macro is responsible for
  482.      outputting the label definition (perhaps using
  483.      `ASM_OUTPUT_LABEL').  The argument DECL is the `FUNCTION_DECL'
  484.      tree node representing the function.
  485.      If this macro is not defined, then the function name is defined in
  486.      the usual manner as a label (by means of `ASM_OUTPUT_LABEL').
  487. `ASM_DECLARE_FUNCTION_SIZE (STREAM, NAME, DECL)'
  488.      A C statement (sans semicolon) to output to the stdio stream
  489.      STREAM any text necessary for declaring the size of a function
  490.      which is being defined.  The argument NAME is the name of the
  491.      function.  The argument DECL is the `FUNCTION_DECL' tree node
  492.      representing the function.
  493.      If this macro is not defined, then the function size is not
  494.      defined.
  495. `ASM_DECLARE_OBJECT_NAME (STREAM, NAME, DECL)'
  496.      A C statement (sans semicolon) to output to the stdio stream
  497.      STREAM any text necessary for declaring the name NAME of an
  498.      initialized variable which is being defined.  This macro must
  499.      output the label definition (perhaps using `ASM_OUTPUT_LABEL'). 
  500.      The argument DECL is the `VAR_DECL' tree node representing the
  501.      variable.
  502.      If this macro is not defined, then the variable name is defined in
  503.      the usual manner as a label (by means of `ASM_OUTPUT_LABEL').
  504. `ASM_GLOBALIZE_LABEL (STREAM, NAME)'
  505.      A C statement (sans semicolon) to output to the stdio stream
  506.      STREAM some commands that will make the label NAME global; that
  507.      is, available for reference from other files.  Use the expression
  508.      `assemble_name (STREAM, NAME)' to output the name itself; before
  509.      and after that, output the additional assembler syntax for making
  510.      that name global, and a newline.
  511. `ASM_OUTPUT_EXTERNAL (STREAM, DECL, NAME)'
  512.      A C statement (sans semicolon) to output to the stdio stream
  513.      STREAM any text necessary for declaring the name of an external
  514.      symbol named NAME which is referenced in this compilation but not
  515.      defined.  The value of DECL is the tree node for the declaration.
  516.      This macro need not be defined if it does not need to output
  517.      anything. The GNU assembler and most Unix assemblers don't require
  518.      anything.
  519. `ASM_OUTPUT_EXTERNAL_LIBCALL (STREAM, SYMREF)'
  520.      A C statement (sans semicolon) to output on STREAM an assembler
  521.      pseudo-op to declare a library function name external.  The name
  522.      of the library function is given by SYMREF, which has type `rtx'
  523.      and is a `symbol_ref'.
  524.      This macro need not be defined if it does not need to output
  525.      anything. The GNU assembler and most Unix assemblers don't require
  526.      anything.
  527. `ASM_OUTPUT_LABELREF (STREAM, NAME)'
  528.      A C statement (sans semicolon) to output to the stdio stream
  529.      STREAM a reference in assembler syntax to a label named NAME. 
  530.      This should add `_' to the front of the name, if that is customary
  531.      on your operating system, as it is in most Berkeley Unix systems. 
  532.      This macro is used in `assemble_name'.
  533. `ASM_OUTPUT_LABELREF_AS_INT (FILE, LABEL)'
  534.      Define this macro for systems that use the program `collect2'. The
  535.      definition should be a C statement to output a word containing a
  536.      reference to the label LABEL.
  537. `ASM_OUTPUT_INTERNAL_LABEL (STREAM, PREFIX, NUM)'
  538.      A C statement to output to the stdio stream STREAM a label whose
  539.      name is made from the string PREFIX and the number NUM.
  540.      It is absolutely essential that these labels be distinct from the
  541.      labels used for user-level functions and variables.  Otherwise,
  542.      certain programs will have name conflicts with internal labels.
  543.      It is desirable to exclude internal labels from the symbol table
  544.      of the object file.  Most assemblers have a naming convention for
  545.      labels that should be excluded; on many systems, the letter `L' at
  546.      the beginning of a label has this effect.  You should find out what
  547.      convention your system uses, and follow it.
  548.      The usual definition of this macro is as follows:
  549.           fprintf (STREAM, "L%s%d:\n", PREFIX, NUM)
  550. `ASM_GENERATE_INTERNAL_LABEL (STRING, PREFIX, NUM)'
  551.      A C statement to store into the string STRING a label whose name
  552.      is made from the string PREFIX and the number NUM.
  553.      This string, when output subsequently by `assemble_name', should
  554.      produce the same output that `ASM_OUTPUT_INTERNAL_LABEL' would
  555.      produce with the same PREFIX and NUM.
  556.      If the string begins with `*', then `assemble_name' will output
  557.      the rest of the string unchanged.  It is often convenient for
  558.      `ASM_GENERATE_INTERNAL_LABEL' to use `*' in this way.  If the
  559.      string doesn't start with `*', then `ASM_OUTPUT_LABELREF' gets to
  560.      output the string, and may change it.  (Of course,
  561.      `ASM_OUTPUT_LABELREF' is also part of your machine description, so
  562.      you should know what it does on your machine.)
  563. `ASM_FORMAT_PRIVATE_NAME (OUTVAR, NAME, NUMBER)'
  564.      A C expression to assign to OUTVAR (which is a variable of type
  565.      `char *') a newly allocated string made from the string NAME and
  566.      the number NUMBER, with some suitable punctuation added.  Use
  567.      `alloca' to get space for the string.
  568.      This string will be used as the argument to `ASM_OUTPUT_LABELREF'
  569.      to produce an assembler label for an internal static variable whose
  570.      name is NAME.  Therefore, the string must be such as to result in
  571.      valid assembler code.  The argument NUMBER is different each time
  572.      this macro is executed; it prevents conflicts between
  573.      similarly-named internal static variables in different scopes.
  574.      Ideally this string should not be a valid C identifier, to prevent
  575.      any conflict with the user's own symbols.  Most assemblers allow
  576.      periods or percent signs in assembler symbols; putting at least
  577.      one of these between the name and the number will suffice.
  578. `OBJC_GEN_METHOD_LABEL (BUF, IS_INST, CLASS_NAME, CAT_NAME, SEL_NAME)'
  579.      Define this macro to override the default assembler names used for
  580.      Objective C methods.
  581.      The default name is a unique method number followed by the name of
  582.      the class (e.g. `_1_Foo').  For methods in categories, the name of
  583.      the category is also included in the assembler name (e.g.
  584.      `_1_Foo_Bar').
  585.      These names are safe on most systems, but make debugging difficult
  586.      since the method's selector is not present in the name. 
  587.      Therefore, particular systems define other ways of computing names.
  588.      BUF is an expression of type `char *' which gives you a buffer in
  589.      which to store the name; its length is as long as CLASS_NAME,
  590.      CAT_NAME and SEL_NAME put together, plus 50 characters extra.
  591.      The argument IS_INST specifies whether the method is an instance
  592.      method or a class method; CLASS_NAME is the name of the class;
  593.      CAT_NAME is the name of the category (or NULL if the method is not
  594.      in a category); and SEL_NAME is the name of the selector.
  595.      On systems where the assembler can handle quoted names, you can
  596.      use this macro to provide more human-readable names.
  597. File: gcc.info,  Node: Constructor Output,  Next: Instruction Output,  Prev: Label Output,  Up: Assembler Format
  598. Output of Initialization Routines
  599. ---------------------------------
  600.    The compiled code for certain languages includes "constructors"
  601. (also called "initialization routines")--functions to initialize data
  602. in the program when the program is started.  These functions need to be
  603. called before the program is "started"--that is to say, before `main'
  604. is called.
  605.    Compiling some languages generates "destructors" (also called
  606. "termination routines") that should be called when the program
  607. terminates.
  608.    To make the initialization and termination functions work, the
  609. compiler must output something in the assembler code to cause those
  610. functions to be called at the appropriate time.  When you port the
  611. compiler to a new system, you need to specify what assembler code is
  612. needed to do this.
  613.    Here are the two macros you should define if necessary:
  614. `ASM_OUTPUT_CONSTRUCTOR (STREAM, NAME)'
  615.      Define this macro as a C statement to output on the stream STREAM
  616.      the assembler code to arrange to call the function named NAME at
  617.      initialization time.
  618.      Assume that NAME is the name of a C function generated
  619.      automatically by the compiler.  This function takes no arguments. 
  620.      Use the function `assemble_name' to output the name NAME; this
  621.      performs any system-specific syntactic transformations such as
  622.      adding an underscore.
  623.      If you don't define this macro, nothing special is output to
  624.      arrange to call the function.  This is correct when the function
  625.      will be called in some other manner--for example, by means of the
  626.      `collect' program, which looks through the symbol table to find
  627.      these functions by their names.  If you want to use `collect',
  628.      then you need to arrange for it to be built and installed and used
  629.      on your system.
  630. `ASM_OUTPUT_DESTRUCTOR (STREAM, NAME)'
  631.      This is like `ASM_OUTPUT_CONSTRUCTOR' but used for termination
  632.      functions rather than initialization functions.
  633.    If your system uses `collect2' as the means of processing
  634. constructors, then that program normally uses `nm' to scan an object
  635. file for constructor functions to be called.  On certain kinds of
  636. systems, you can define these macros to make `collect2' work faster
  637. (and, in some cases, make it work at all):
  638. `OBJECT_FORMAT_COFF'
  639.      Define this macro if the system uses COFF (Common Object File
  640.      Format) object files, so that `collect2' can assume this format
  641.      and scan object files directly for dynamic constructor/destructor
  642.      functions.
  643. `OBJECT_FORMAT_ROSE'
  644.      Define this macro if the system uses ROSE format object files, so
  645.      that `collect2' can assume this format and scan object files
  646.      directly for dynamic constructor/destructor functions.
  647.    These macros are effective only in a native compiler; `collect2' as
  648. part of a cross compiler always uses `nm'.
  649. `REAL_NM_FILE_NAME'
  650.      Define this macro as a C string constant containing the file name
  651.      to use to execute `nm'.  The default is to search the path
  652.      normally for `nm'.
  653. File: gcc.info,  Node: Instruction Output,  Next: Dispatch Tables,  Prev: Constructor Output,  Up: Assembler Format
  654. Output of Assembler Instructions
  655. --------------------------------
  656. `REGISTER_NAMES'
  657.      A C initializer containing the assembler's names for the machine
  658.      registers, each one as a C string constant.  This is what
  659.      translates register numbers in the compiler into assembler
  660.      language.
  661. `ADDITIONAL_REGISTER_NAMES'
  662.      If defined, a C initializer for an array of structures containing
  663.      a name and a register number.  This macro defines additional names
  664.      for hard registers, thus allowing the `asm' option in declarations
  665.      to refer to registers using alternate names.
  666. `ASM_OUTPUT_OPCODE (STREAM, PTR)'
  667.      Define this macro if you are using an unusual assembler that
  668.      requires different names for the machine instructions.
  669.      The definition is a C statement or statements which output an
  670.      assembler instruction opcode to the stdio stream STREAM.  The
  671.      macro-operand PTR is a variable of type `char *' which points to
  672.      the opcode name in its "internal" form--the form that is written
  673.      in the machine description.  The definition should output the
  674.      opcode name to STREAM, performing any translation you desire, and
  675.      increment the variable PTR to point at the end of the opcode so
  676.      that it will not be output twice.
  677.      In fact, your macro definition may process less than the entire
  678.      opcode name, or more than the opcode name; but if you want to
  679.      process text that includes `%'-sequences to substitute operands,
  680.      you must take care of the substitution yourself.  Just be sure to
  681.      increment PTR over whatever text should not be output normally.
  682.      If you need to look at the operand values, they can be found as the
  683.      elements of `recog_operand'.
  684.      If the macro definition does nothing, the instruction is output in
  685.      the usual way.
  686. `FINAL_PRESCAN_INSN (INSN, OPVEC, NOPERANDS)'
  687.      If defined, a C statement to be executed just prior to the output
  688.      of assembler code for INSN, to modify the extracted operands so
  689.      they will be output differently.
  690.      Here the argument OPVEC is the vector containing the operands
  691.      extracted from INSN, and NOPERANDS is the number of elements of
  692.      the vector which contain meaningful data for this insn. The
  693.      contents of this vector are what will be used to convert the insn
  694.      template into assembler code, so you can change the assembler
  695.      output by changing the contents of the vector.
  696.      This macro is useful when various assembler syntaxes share a single
  697.      file of instruction patterns; by defining this macro differently,
  698.      you can cause a large class of instructions to be output
  699.      differently (such as with rearranged operands).  Naturally,
  700.      variations in assembler syntax affecting individual insn patterns
  701.      ought to be handled by writing conditional output routines in
  702.      those patterns.
  703.      If this macro is not defined, it is equivalent to a null statement.
  704. `PRINT_OPERAND (STREAM, X, CODE)'
  705.      A C compound statement to output to stdio stream STREAM the
  706.      assembler syntax for an instruction operand X.  X is an RTL
  707.      expression.
  708.      CODE is a value that can be used to specify one of several ways of
  709.      printing the operand.  It is used when identical operands must be
  710.      printed differently depending on the context.  CODE comes from the
  711.      `%' specification that was used to request printing of the
  712.      operand.  If the specification was just `%DIGIT' then CODE is 0;
  713.      if the specification was `%LTR DIGIT' then CODE is the ASCII code
  714.      for LTR.
  715.      If X is a register, this macro should print the register's name.
  716.      The names can be found in an array `reg_names' whose type is `char
  717.      *[]'.  `reg_names' is initialized from `REGISTER_NAMES'.
  718.      When the machine description has a specification `%PUNCT' (a `%'
  719.      followed by a punctuation character), this macro is called with a
  720.      null pointer for X and the punctuation character for CODE.
  721. `PRINT_OPERAND_PUNCT_VALID_P (CODE)'
  722.      A C expression which evaluates to true if CODE is a valid
  723.      punctuation character for use in the `PRINT_OPERAND' macro.  If
  724.      `PRINT_OPERAND_PUNCT_VALID_P' is not defined, it means that no
  725.      punctuation characters (except for the standard one, `%') are used
  726.      in this way.
  727. `PRINT_OPERAND_ADDRESS (STREAM, X)'
  728.      A C compound statement to output to stdio stream STREAM the
  729.      assembler syntax for an instruction operand that is a memory
  730.      reference whose address is X.  X is an RTL expression.
  731.      On some machines, the syntax for a symbolic address depends on the
  732.      section that the address refers to.  On these machines, define the
  733.      macro `ENCODE_SECTION_INFO' to store the information into the
  734.      `symbol_ref', and then check for it here.  *Note Assembler
  735.      Format::.
  736. `DBR_OUTPUT_SEQEND(FILE)'
  737.      A C statement, to be executed after all slot-filler instructions
  738.      have been output.  If necessary, call `dbr_sequence_length' to
  739.      determine the number of slots filled in a sequence (zero if not
  740.      currently outputting a sequence), to decide how many no-ops to
  741.      output, or whatever.
  742.      Don't define this macro if it has nothing to do, but it is helpful
  743.      in reading assembly output if the extent of the delay sequence is
  744.      made explicit (e.g. with white space).
  745.      Note that output routines for instructions with delay slots must be
  746.      prepared to deal with not being output as part of a sequence (i.e.
  747.      when the scheduling pass is not run, or when no slot fillers could
  748.      be found.)  The variable `final_sequence' is null when not
  749.      processing a sequence, otherwise it contains the `sequence' rtx
  750.      being output.
  751. `REGISTER_PREFIX'
  752. `LOCAL_LABEL_PREFIX'
  753. `USER_LABEL_PREFIX'
  754. `IMMEDIATE_PREFIX'
  755.      If defined, C string expressions to be used for the `%R', `%L',
  756.      `%U', and `%I' options of `asm_fprintf' (see `final.c').  These
  757.      are useful when a single `md' file must support multiple assembler
  758.      formats.  In that case, the various `tm.h' files can define these
  759.      macros differently.
  760. `ASM_OUTPUT_REG_PUSH (STREAM, REGNO)'
  761.      A C expression to output to STREAM some assembler code which will
  762.      push hard register number REGNO onto the stack. The code need not
  763.      be optimal, since this macro is used only when profiling.
  764. `ASM_OUTPUT_REG_POP (STREAM, REGNO)'
  765.      A C expression to output to STREAM some assembler code which will
  766.      pop hard register number REGNO off of the stack. The code need not
  767.      be optimal, since this macro is used only when profiling.
  768. File: gcc.info,  Node: Dispatch Tables,  Next: Alignment Output,  Prev: Instruction Output,  Up: Assembler Format
  769. Output of Dispatch Tables
  770. -------------------------
  771. `ASM_OUTPUT_ADDR_DIFF_ELT (STREAM, VALUE, REL)'
  772.      This macro should be provided on machines where the addresses in a
  773.      dispatch table are relative to the table's own address.
  774.      The definition should be a C statement to output to the stdio
  775.      stream STREAM an assembler pseudo-instruction to generate a
  776.      difference between two labels.  VALUE and REL are the numbers of
  777.      two internal labels.  The definitions of these labels are output
  778.      using `ASM_OUTPUT_INTERNAL_LABEL', and they must be printed in the
  779.      same way here.  For example,
  780.           fprintf (STREAM, "\t.word L%d-L%d\n",
  781.                    VALUE, REL)
  782. `ASM_OUTPUT_ADDR_VEC_ELT (STREAM, VALUE)'
  783.      This macro should be provided on machines where the addresses in a
  784.      dispatch table are absolute.
  785.      The definition should be a C statement to output to the stdio
  786.      stream STREAM an assembler pseudo-instruction to generate a
  787.      reference to a label.  VALUE is the number of an internal label
  788.      whose definition is output using `ASM_OUTPUT_INTERNAL_LABEL'. For
  789.      example,
  790.           fprintf (STREAM, "\t.word L%d\n", VALUE)
  791. `ASM_OUTPUT_CASE_LABEL (STREAM, PREFIX, NUM, TABLE)'
  792.      Define this if the label before a jump-table needs to be output
  793.      specially.  The first three arguments are the same as for
  794.      `ASM_OUTPUT_INTERNAL_LABEL'; the fourth argument is the jump-table
  795.      which follows (a `jump_insn' containing an `addr_vec' or
  796.      `addr_diff_vec').
  797.      This feature is used on system V to output a `swbeg' statement for
  798.      the table.
  799.      If this macro is not defined, these labels are output with
  800.      `ASM_OUTPUT_INTERNAL_LABEL'.
  801. `ASM_OUTPUT_CASE_END (STREAM, NUM, TABLE)'
  802.      Define this if something special must be output at the end of a
  803.      jump-table.  The definition should be a C statement to be executed
  804.      after the assembler code for the table is written.  It should write
  805.      the appropriate code to stdio stream STREAM.  The argument TABLE
  806.      is the jump-table insn, and NUM is the label-number of the
  807.      preceding label.
  808.      If this macro is not defined, nothing special is output at the end
  809.      of the jump-table.
  810. File: gcc.info,  Node: Alignment Output,  Prev: Dispatch Tables,  Up: Assembler Format
  811. Assembler Commands for Alignment
  812. --------------------------------
  813. `ASM_OUTPUT_ALIGN_CODE (FILE)'
  814.      A C expression to output text to align the location counter in the
  815.      way that is desirable at a point in the code that is reached only
  816.      by jumping.
  817.      This macro need not be defined if you don't want any special
  818.      alignment to be done at such a time.  Most machine descriptions do
  819.      not currently define the macro.
  820. `ASM_OUTPUT_LOOP_ALIGN (FILE)'
  821.      A C expression to output text to align the location counter in the
  822.      way that is desirable at the beginning of a loop.
  823.      This macro need not be defined if you don't want any special
  824.      alignment to be done at such a time.  Most machine descriptions do
  825.      not currently define the macro.
  826. `ASM_OUTPUT_SKIP (STREAM, NBYTES)'
  827.      A C statement to output to the stdio stream STREAM an assembler
  828.      instruction to advance the location counter by NBYTES bytes. Those
  829.      bytes should be zero when loaded.  NBYTES will be a C expression
  830.      of type `int'.
  831. `ASM_NO_SKIP_IN_TEXT'
  832.      Define this macro if `ASM_OUTPUT_SKIP' should not be used in the
  833.      text section because it fails put zeros in the bytes that are
  834.      skipped. This is true on many Unix systems, where the pseudo--op
  835.      to skip bytes produces no-op instructions rather than zeros when
  836.      used in the text section.
  837. `ASM_OUTPUT_ALIGN (STREAM, POWER)'
  838.      A C statement to output to the stdio stream STREAM an assembler
  839.      command to advance the location counter to a multiple of 2 to the
  840.      POWER bytes.  POWER will be a C expression of type `int'.
  841. File: gcc.info,  Node: Debugging Info,  Next: Cross-compilation,  Prev: Assembler Format,  Up: Target Macros
  842. Controlling Debugging Information Format
  843. ========================================
  844. * Menu:
  845. * All Debuggers::      Macros that affect all debugging formats uniformly.
  846. * DBX Options::        Macros enabling specific options in DBX format.
  847. * DBX Hooks::          Hook macros for varying DBX format.
  848. * File Names and DBX:: Macros controlling output of file names in DBX format.
  849. * SDB and DWARF::      Macros for SDB (COFF) and DWARF formats.
  850. File: gcc.info,  Node: All Debuggers,  Next: DBX Options,  Up: Debugging Info
  851. Macros Affecting All Debugging Formats
  852. --------------------------------------
  853. `DBX_REGISTER_NUMBER (REGNO)'
  854.      A C expression that returns the DBX register number for the
  855.      compiler register number REGNO.  In simple cases, the value of this
  856.      expression may be REGNO itself.  But sometimes there are some
  857.      registers that the compiler knows about and DBX does not, or vice
  858.      versa.  In such cases, some register may need to have one number in
  859.      the compiler and another for DBX.
  860.      If two registers have consecutive numbers inside GNU CC, and they
  861.      can be used as a pair to hold a multiword value, then they *must*
  862.      have consecutive numbers after renumbering with
  863.      `DBX_REGISTER_NUMBER'. Otherwise, debuggers will be unable to
  864.      access such a pair, because they expect register pairs to be
  865.      consecutive in their own numbering scheme.
  866.      If you find yourself defining `DBX_REGISTER_NUMBER' in way that
  867.      does not preserve register pairs, then what you must do instead is
  868.      redefine the actual register numbering scheme.
  869. `DEBUGGER_AUTO_OFFSET (X)'
  870.      A C expression that returns the integer offset value for an
  871.      automatic variable having address X (an RTL expression).  The
  872.      default computation assumes that X is based on the frame-pointer
  873.      and gives the offset from the frame-pointer.  This is required for
  874.      targets that produce debugging output for DBX or COFF-style
  875.      debugging output for SDB and allow the frame-pointer to be
  876.      eliminated when the `-g' options is used.
  877. `DEBUGGER_ARG_OFFSET (OFFSET, X)'
  878.      A C expression that returns the integer offset value for an
  879.      argument having address X (an RTL expression).  The nominal offset
  880.      is OFFSET.
  881.