home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / info / gcc.i18 (.txt) < prev    next >
GNU Info File  |  1993-06-12  |  51KB  |  900 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.47 from the input
  2. file gcc.tex.
  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 "Protect
  11. Your Freedom--Fight `Look And Feel'" are included exactly as in the
  12. original, and provided that the entire resulting derived work is
  13. distributed under the terms of a permission notice identical to this
  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 "Protect Your Freedom--Fight `Look And Feel'", and this
  18. permission notice, may be included in translations approved by the Free
  19. Software Foundation instead of in the original English.
  20. File: gcc.info,  Node: Instruction Output,  Next: Dispatch Tables,  Prev: Macros for Initialization,  Up: Assembler Format
  21. Output of Assembler Instructions
  22. --------------------------------
  23. `REGISTER_NAMES'
  24.      A C initializer containing the assembler's names for the machine
  25.      registers, each one as a C string constant.  This is what
  26.      translates register numbers in the compiler into assembler
  27.      language.
  28. `ADDITIONAL_REGISTER_NAMES'
  29.      If defined, a C initializer for an array of structures containing
  30.      a name and a register number.  This macro defines additional names
  31.      for hard registers, thus allowing the `asm' option in declarations
  32.      to refer to registers using alternate names.
  33. `ASM_OUTPUT_OPCODE (STREAM, PTR)'
  34.      Define this macro if you are using an unusual assembler that
  35.      requires different names for the machine instructions.
  36.      The definition is a C statement or statements which output an
  37.      assembler instruction opcode to the stdio stream STREAM.  The
  38.      macro-operand PTR is a variable of type `char *' which points to
  39.      the opcode name in its "internal" form--the form that is written
  40.      in the machine description.  The definition should output the
  41.      opcode name to STREAM, performing any translation you desire, and
  42.      increment the variable PTR to point at the end of the opcode so
  43.      that it will not be output twice.
  44.      In fact, your macro definition may process less than the entire
  45.      opcode name, or more than the opcode name; but if you want to
  46.      process text that includes `%'-sequences to substitute operands,
  47.      you must take care of the substitution yourself.  Just be sure to
  48.      increment PTR over whatever text should not be output normally.
  49.      If you need to look at the operand values, they can be found as the
  50.      elements of `recog_operand'.
  51.      If the macro definition does nothing, the instruction is output in
  52.      the usual way.
  53. `FINAL_PRESCAN_INSN (INSN, OPVEC, NOPERANDS)'
  54.      If defined, a C statement to be executed just prior to the output
  55.      of assembler code for INSN, to modify the extracted operands so
  56.      they will be output differently.
  57.      Here the argument OPVEC is the vector containing the operands
  58.      extracted from INSN, and NOPERANDS is the number of elements of
  59.      the vector which contain meaningful data for this insn. The
  60.      contents of this vector are what will be used to convert the insn
  61.      template into assembler code, so you can change the assembler
  62.      output by changing the contents of the vector.
  63.      This macro is useful when various assembler syntaxes share a single
  64.      file of instruction patterns; by defining this macro differently,
  65.      you can cause a large class of instructions to be output
  66.      differently (such as with rearranged operands).  Naturally,
  67.      variations in assembler syntax affecting individual insn patterns
  68.      ought to be handled by writing conditional output routines in
  69.      those patterns.
  70.      If this macro is not defined, it is equivalent to a null statement.
  71. `PRINT_OPERAND (STREAM, X, CODE)'
  72.      A C compound statement to output to stdio stream STREAM the
  73.      assembler syntax for an instruction operand X.  X is an RTL
  74.      expression.
  75.      CODE is a value that can be used to specify one of several ways of
  76.      printing the operand.  It is used when identical operands must be
  77.      printed differently depending on the context.  CODE comes from the
  78.      `%' specification that was used to request printing of the
  79.      operand.  If the specification was just `%DIGIT' then CODE is 0;
  80.      if the specification was `%LTR DIGIT' then CODE is the ASCII code
  81.      for LTR.
  82.      If X is a register, this macro should print the register's name.
  83.      The names can be found in an array `reg_names' whose type is `char
  84.      *[]'.  `reg_names' is initialized from `REGISTER_NAMES'.
  85.      When the machine description has a specification `%PUNCT' (a `%'
  86.      followed by a punctuation character), this macro is called with a
  87.      null pointer for X and the punctuation character for CODE.
  88. `PRINT_OPERAND_PUNCT_VALID_P (CODE)'
  89.      A C expression which evaluates to true if CODE is a valid
  90.      punctuation character for use in the `PRINT_OPERAND' macro.  If
  91.      `PRINT_OPERAND_PUNCT_VALID_P' is not defined, it means that no
  92.      punctuation characters (except for the standard one, `%') are used
  93.      in this way.
  94. `PRINT_OPERAND_ADDRESS (STREAM, X)'
  95.      A C compound statement to output to stdio stream STREAM the
  96.      assembler syntax for an instruction operand that is a memory
  97.      reference whose address is X.  X is an RTL expression.
  98.      On some machines, the syntax for a symbolic address depends on the
  99.      section that the address refers to.  On these machines, define the
  100.      macro `ENCODE_SECTION_INFO' to store the information into the
  101.      `symbol_ref', and then check for it here.  *Note Assembler
  102.      Format::.
  103. `DBR_OUTPUT_SEQEND(FILE)'
  104.      A C statement, to be executed after all slot-filler instructions
  105.      have been output.  If necessary, call `dbr_sequence_length' to
  106.      determine the number of slots filled in a sequence (zero if not
  107.      currently outputting a sequence), to decide how many no-ops to
  108.      output, or whatever.
  109.      Don't define this macro if it has nothing to do, but it is helpful
  110.      in reading assembly output if the extent of the delay sequence is
  111.      made explicit (e.g. with white space).
  112.      Note that output routines for instructions with delay slots must be
  113.      prepared to deal with not being output as part of a sequence (i.e.
  114.      when the scheduling pass is not run, or when no slot fillers could
  115.      be found.)  The variable `final_sequence' is null when not
  116.      processing a sequence, otherwise it contains the `sequence' rtx
  117.      being output.
  118. `REGISTER_PREFIX'
  119. `LOCAL_LABEL_PREFIX'
  120. `USER_LABEL_PREFIX'
  121. `IMMEDIATE_PREFIX'
  122.      If defined, C string expressions to be used for the `%R', `%L',
  123.      `%U', and `%I' options of `asm_fprintf' (see `final.c').  These
  124.      are useful when a single `md' file must support multiple assembler
  125.      formats.  In that case, the various `tm.h' files can define these
  126.      macros differently.
  127. `ASM_OUTPUT_REG_PUSH (STREAM, REGNO)'
  128.      A C expression to output to STREAM some assembler code which will
  129.      push hard register number REGNO onto the stack. The code need not
  130.      be optimal, since this macro is used only when profiling.
  131. `ASM_OUTPUT_REG_POP (STREAM, REGNO)'
  132.      A C expression to output to STREAM some assembler code which will
  133.      pop hard register number REGNO off of the stack. The code need not
  134.      be optimal, since this macro is used only when profiling.
  135. File: gcc.info,  Node: Dispatch Tables,  Next: Alignment Output,  Prev: Instruction Output,  Up: Assembler Format
  136. Output of Dispatch Tables
  137. -------------------------
  138. `ASM_OUTPUT_ADDR_DIFF_ELT (STREAM, VALUE, REL)'
  139.      This macro should be provided on machines where the addresses in a
  140.      dispatch table are relative to the table's own address.
  141.      The definition should be a C statement to output to the stdio
  142.      stream STREAM an assembler pseudo-instruction to generate a
  143.      difference between two labels.  VALUE and REL are the numbers of
  144.      two internal labels.  The definitions of these labels are output
  145.      using `ASM_OUTPUT_INTERNAL_LABEL', and they must be printed in the
  146.      same way here.  For example,
  147.           fprintf (STREAM, "\t.word L%d-L%d\n",
  148.                    VALUE, REL)
  149. `ASM_OUTPUT_ADDR_VEC_ELT (STREAM, VALUE)'
  150.      This macro should be provided on machines where the addresses in a
  151.      dispatch table are absolute.
  152.      The definition should be a C statement to output to the stdio
  153.      stream STREAM an assembler pseudo-instruction to generate a
  154.      reference to a label.  VALUE is the number of an internal label
  155.      whose definition is output using `ASM_OUTPUT_INTERNAL_LABEL'. For
  156.      example,
  157.           fprintf (STREAM, "\t.word L%d\n", VALUE)
  158. `ASM_OUTPUT_CASE_LABEL (STREAM, PREFIX, NUM, TABLE)'
  159.      Define this if the label before a jump-table needs to be output
  160.      specially.  The first three arguments are the same as for
  161.      `ASM_OUTPUT_INTERNAL_LABEL'; the fourth argument is the jump-table
  162.      which follows (a `jump_insn' containing an `addr_vec' or
  163.      `addr_diff_vec').
  164.      This feature is used on system V to output a `swbeg' statement for
  165.      the table.
  166.      If this macro is not defined, these labels are output with
  167.      `ASM_OUTPUT_INTERNAL_LABEL'.
  168. `ASM_OUTPUT_CASE_END (STREAM, NUM, TABLE)'
  169.      Define this if something special must be output at the end of a
  170.      jump-table.  The definition should be a C statement to be executed
  171.      after the assembler code for the table is written.  It should write
  172.      the appropriate code to stdio stream STREAM.  The argument TABLE
  173.      is the jump-table insn, and NUM is the label-number of the
  174.      preceding label.
  175.      If this macro is not defined, nothing special is output at the end
  176.      of the jump-table.
  177. File: gcc.info,  Node: Alignment Output,  Prev: Dispatch Tables,  Up: Assembler Format
  178. Assembler Commands for Alignment
  179. --------------------------------
  180. `ASM_OUTPUT_ALIGN_CODE (FILE)'
  181.      A C expression to output text to align the location counter in the
  182.      way that is desirable at a point in the code that is reached only
  183.      by jumping.
  184.      This macro need not be defined if you don't want any special
  185.      alignment to be done at such a time.  Most machine descriptions do
  186.      not currently define the macro.
  187. `ASM_OUTPUT_LOOP_ALIGN (FILE)'
  188.      A C expression to output text to align the location counter in the
  189.      way that is desirable at the beginning of a loop.
  190.      This macro need not be defined if you don't want any special
  191.      alignment to be done at such a time.  Most machine descriptions do
  192.      not currently define the macro.
  193. `ASM_OUTPUT_SKIP (STREAM, NBYTES)'
  194.      A C statement to output to the stdio stream STREAM an assembler
  195.      instruction to advance the location counter by NBYTES bytes. Those
  196.      bytes should be zero when loaded.  NBYTES will be a C expression
  197.      of type `int'.
  198. `ASM_NO_SKIP_IN_TEXT'
  199.      Define this macro if `ASM_OUTPUT_SKIP' should not be used in the
  200.      text section because it fails put zeros in the bytes that are
  201.      skipped. This is true on many Unix systems, where the pseudo--op
  202.      to skip bytes produces no-op instructions rather than zeros when
  203.      used in the text section.
  204. `ASM_OUTPUT_ALIGN (STREAM, POWER)'
  205.      A C statement to output to the stdio stream STREAM an assembler
  206.      command to advance the location counter to a multiple of 2 to the
  207.      POWER bytes.  POWER will be a C expression of type `int'.
  208. File: gcc.info,  Node: Debugging Info,  Next: Cross-compilation,  Prev: Assembler Format,  Up: Target Macros
  209. Controlling Debugging Information Format
  210. ========================================
  211. * Menu:
  212. * All Debuggers::      Macros that affect all debugging formats uniformly.
  213. * DBX Options::        Macros enabling specific options in DBX format.
  214. * DBX Hooks::          Hook macros for varying DBX format.
  215. * File Names and DBX:: Macros controlling output of file names in DBX format.
  216. * SDB and DWARF::      Macros for SDB (COFF) and DWARF formats.
  217. File: gcc.info,  Node: All Debuggers,  Next: DBX Options,  Up: Debugging Info
  218. Macros Affecting All Debugging Formats
  219. --------------------------------------
  220. `DBX_REGISTER_NUMBER (REGNO)'
  221.      A C expression that returns the DBX register number for the
  222.      compiler register number REGNO.  In simple cases, the value of this
  223.      expression may be REGNO itself.  But sometimes there are some
  224.      registers that the compiler knows about and DBX does not, or vice
  225.      versa.  In such cases, some register may need to have one number in
  226.      the compiler and another for DBX.
  227.      If two registers have consecutive numbers inside GNU CC, and they
  228.      can be used as a pair to hold a multiword value, then they *must*
  229.      have consecutive numbers after renumbering with
  230.      `DBX_REGISTER_NUMBER'. Otherwise, debuggers will be unable to
  231.      access such a pair, because they expect register pairs to be
  232.      consecutive in their own numbering scheme.
  233.      If you find yourself defining `DBX_REGISTER_NUMBER' in way that
  234.      does not preserve register pairs, then what you must do instead is
  235.      redefine the actual register numbering scheme.
  236. `DEBUGGER_AUTO_OFFSET (X)'
  237.      A C expression that returns the integer offset value for an
  238.      automatic variable having address X (an RTL expression).  The
  239.      default computation assumes that X is based on the frame-pointer
  240.      and gives the offset from the frame-pointer.  This is required for
  241.      targets that produce debugging output for DBX or COFF-style
  242.      debugging output for SDB and allow the frame-pointer to be
  243.      eliminated when the `-g' options is used.
  244. `DEBUGGER_ARG_OFFSET (OFFSET, X)'
  245.      A C expression that returns the integer offset value for an
  246.      argument having address X (an RTL expression).  The nominal offset
  247.      is OFFSET.
  248. File: gcc.info,  Node: DBX Options,  Next: DBX Hooks,  Prev: All Debuggers,  Up: Debugging Info
  249. Specific Options for DBX Output
  250. -------------------------------
  251. `DBX_DEBUGGING_INFO'
  252.      Define this macro if GNU CC should produce debugging output for DBX
  253.      in response to the `-g' option.
  254. `XCOFF_DEBUGGING_INFO'
  255.      Define this macro if GNU CC should produce XCOFF format debugging
  256.      output in response to the `-g' option.  This is a variant of DBX
  257.      format.
  258. `DEFAULT_GDB_EXTENSIONS'
  259.      Define this macro to control whether GNU CC should by default
  260.      generate GDB's extended version of DBX debugging information
  261.      (assuming DBX-format debugging information is enabled at all).  If
  262.      you don't define the macro, the default is 1: always generate the
  263.      extended information if there is any occasion to.
  264. `DEBUG_SYMS_TEXT'
  265.      Define this macro if all `.stabs' commands should be output while
  266.      in the text section.
  267. `ASM_STABS_OP'
  268.      A C string constant naming the assembler pseudo op to use instead
  269.      of `.stabs' to define an ordinary debugging symbol.  If you don't
  270.      define this macro, `.stabs' is used.  This macro applies only to
  271.      DBX debugging information format.
  272. `ASM_STABD_OP'
  273.      A C string constant naming the assembler pseudo op to use instead
  274.      of `.stabd' to define a debugging symbol whose value is the current
  275.      location.  If you don't define this macro, `.stabd' is used. This
  276.      macro applies only to DBX debugging information format.
  277. `ASM_STABN_OP'
  278.      A C string constant naming the assembler pseudo op to use instead
  279.      of `.stabn' to define a debugging symbol with no name.  If you
  280.      don't define this macro, `.stabn' is used.  This macro applies
  281.      only to DBX debugging information format.
  282. `DBX_NO_XREFS'
  283.      Define this macro if DBX on your system does not support the
  284.      construct `xsTAGNAME'.  On some systems, this construct is used to
  285.      describe a forward reference to a structure named TAGNAME. On
  286.      other systems, this construct is not supported at all.
  287. `DBX_CONTIN_LENGTH'
  288.      A symbol name in DBX-format debugging information is normally
  289.      continued (split into two separate `.stabs' directives) when it
  290.      exceeds a certain length (by default, 80 characters).  On some
  291.      operating systems, DBX requires this splitting; on others,
  292.      splitting must not be done.  You can inhibit splitting by defining
  293.      this macro with the value zero.  You can override the default
  294.      splitting-length by defining this macro as an expression for the
  295.      length you desire.
  296. `DBX_CONTIN_CHAR'
  297.      Normally continuation is indicated by adding a `\' character to
  298.      the end of a `.stabs' string when a continuation follows.  To use
  299.      a different character instead, define this macro as a character
  300.      constant for the character you want to use.  Do not define this
  301.      macro if backslash is correct for your system.
  302. `DBX_STATIC_STAB_DATA_SECTION'
  303.      Define this macro if it is necessary to go to the data section
  304.      before outputting the `.stabs' pseudo-op for a non-global static
  305.      variable.
  306. `DBX_TYPE_DECL_STABS_CODE'
  307.      The value to use in the "code" field of the `.stabs' directive for
  308.      a typedef.  The default is `N_LSYM'.
  309. `DBX_STATIC_CONST_VAR_CODE'
  310.      The value to use in the "code" field of the `.stabs' directive for
  311.      a static variable located in the text section.  DBX format does not
  312.      provide any "right" way to do this.  The default is `N_FUN'.
  313. `DBX_REGPARM_STABS_CODE'
  314.      The value to use in the "code" field of the `.stabs' directive for
  315.      a parameter passed in registers.  DBX format does not provide any
  316.      "right" way to do this.  The default is `N_RSYM'.
  317. `DBX_REGPARM_STABS_LETTER'
  318.      The letter to use in DBX symbol data to identify a symbol as a
  319.      parameter passed in registers.  DBX format does not customarily
  320.      provide any way to do this.  The default is `'P''.
  321. `DBX_MEMPARM_STABS_LETTER'
  322.      The letter to use in DBX symbol data to identify a symbol as a
  323.      stack parameter.  The default is `'p''.
  324. `DBX_FUNCTION_FIRST'
  325.      Define this macro if the DBX information for a function and its
  326.      arguments should precede the assembler code for the function. 
  327.      Normally, in DBX format, the debugging information entirely
  328.      follows the assembler code.
  329. `DBX_LBRAC_FIRST'
  330.      Define this macro if the `N_LBRAC' symbol for a block should
  331.      precede the debugging information for variables and functions
  332.      defined in that block.  Normally, in DBX format, the `N_LBRAC'
  333.      symbol comes first.
  334. File: gcc.info,  Node: DBX Hooks,  Next: File Names and DBX,  Prev: DBX Options,  Up: Debugging Info
  335. Open-Ended Hooks for DBX Format
  336. -------------------------------
  337. `DBX_OUTPUT_LBRAC (STREAM, NAME)'
  338.      Define this macro to say how to output to STREAM the debugging
  339.      information for the start of a scope level for variable names.  The
  340.      argument NAME is the name of an assembler symbol (for use with
  341.      `assemble_name') whose value is the address where the scope begins.
  342. `DBX_OUTPUT_RBRAC (STREAM, NAME)'
  343.      Like `DBX_OUTPUT_LBRAC', but for the end of a scope level.
  344. `DBX_OUTPUT_ENUM (STREAM, TYPE)'
  345.      Define this macro if the target machine requires special handling
  346.      to output an enumeration type.  The definition should be a C
  347.      statement (sans semicolon) to output the appropriate information
  348.      to STREAM for the type TYPE.
  349. `DBX_OUTPUT_FUNCTION_END (STREAM, FUNCTION)'
  350.      Define this macro if the target machine requires special output at
  351.      the end of the debugging information for a function.  The
  352.      definition should be a C statement (sans semicolon) to output the
  353.      appropriate information to STREAM.  FUNCTION is the
  354.      `FUNCTION_DECL' node for the function.
  355. `DBX_OUTPUT_STANDARD_TYPES (SYMS)'
  356.      Define this macro if you need to control the order of output of the
  357.      standard data types at the beginning of compilation.  The argument
  358.      SYMS is a `tree' which is a chain of all the predefined global
  359.      symbols, including names of data types.
  360.      Normally, DBX output starts with definitions of the types for
  361.      integers and characters, followed by all the other predefined
  362.      types of the particular language in no particular order.
  363.      On some machines, it is necessary to output different particular
  364.      types first.  To do this, define `DBX_OUTPUT_STANDARD_TYPES' to
  365.      output those symbols in the necessary order.  Any predefined types
  366.      that you don't explicitly output will be output afterward in no
  367.      particular order.
  368.      Be careful not to define this macro so that it works only for C. 
  369.      There are no global variables to access most of the built-in
  370.      types, because another language may have another set of types. 
  371.      The way to output a particular type is to look through SYMS to see
  372.      if you can find it. Here is an example:
  373.           {
  374.             tree decl;
  375.             for (decl = syms; decl; decl = TREE_CHAIN (decl))
  376.               if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)), "long int"))
  377.                 dbxout_symbol (decl);
  378.             ...
  379.           }
  380.      This does nothing if the expected type does not exist.
  381.      See the function `init_decl_processing' in source file `c-decl.c'
  382.      to find the names to use for all the built-in C types.
  383.      Here is another way of finding a particular type:
  384.           {
  385.             tree decl;
  386.             for (decl = syms; decl; decl = TREE_CHAIN (decl))
  387.               if (TREE_CODE (decl) == TYPE_DECL
  388.                   && TREE_CODE (TREE_TYPE (decl)) == INTEGER_CST
  389.                   && TYPE_PRECISION (TREE_TYPE (decl)) == 16
  390.                   && TYPE_UNSIGNED (TREE_TYPE (decl)))
  391.                 /* This must be `unsigned short'.  */
  392.                 dbxout_symbol (decl);
  393.             ...
  394.           }
  395. File: gcc.info,  Node: File Names and DBX,  Next: SDB and DWARF,  Prev: DBX Hooks,  Up: Debugging Info
  396. File Names in DBX Format
  397. ------------------------
  398. `DBX_WORKING_DIRECTORY'
  399.      Define this if DBX wants to have the current directory recorded in
  400.      each object file.
  401.      Note that the working directory is always recorded if GDB
  402.      extensions are enabled.
  403. `DBX_OUTPUT_MAIN_SOURCE_FILENAME (STREAM, NAME)'
  404.      A C statement to output DBX debugging information to the stdio
  405.      stream STREAM which indicates that file NAME is the main source
  406.      file--the file specified as the input file for compilation. This
  407.      macro is called only once, at the beginning of compilation.
  408.      This macro need not be defined if the standard form of output for
  409.      DBX debugging information is appropriate.
  410. `DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (STREAM, NAME)'
  411.      A C statement to output DBX debugging information to the stdio
  412.      stream STREAM which indicates that the current directory during
  413.      compilation is named NAME.
  414.      This macro need not be defined if the standard form of output for
  415.      DBX debugging information is appropriate.
  416. `DBX_OUTPUT_MAIN_SOURCE_FILE_END (STREAM, NAME)'
  417.      A C statement to output DBX debugging information at the end of
  418.      compilation of the main source file NAME.
  419.      If you don't define this macro, nothing special is output at the
  420.      end of compilation, which is correct for most machines.
  421. `DBX_OUTPUT_SOURCE_FILENAME (STREAM, NAME)'
  422.      A C statement to output DBX debugging information to the stdio
  423.      stream STREAM which indicates that file NAME is the current source
  424.      file.  This output is generated each time input shifts to a
  425.      different source file as a result of `#include', the end of an
  426.      included file, or a `#line' command.
  427.      This macro need not be defined if the standard form of output for
  428.      DBX debugging information is appropriate.
  429. File: gcc.info,  Node: SDB and DWARF,  Prev: File Names and DBX,  Up: Debugging Info
  430. Macros for SDB and DWARF Output
  431. -------------------------------
  432. `SDB_DEBUGGING_INFO'
  433.      Define this macro if GNU CC should produce COFF-style debugging
  434.      output for SDB in response to the `-g' option.
  435. `DWARF_DEBUGGING_INFO'
  436.      Define this macro if GNU CC should produce dwarf format debugging
  437.      output in response to the `-g' option.
  438. `PUT_SDB_...'
  439.      Define these macros to override the assembler syntax for the
  440.      special SDB assembler directives.  See `sdbout.c' for a list of
  441.      these macros and their arguments.  If the standard syntax is used,
  442.      you need not define them yourself.
  443. `SDB_DELIM'
  444.      Some assemblers do not support a semicolon as a delimiter, even
  445.      between SDB assembler directives.  In that case, define this macro
  446.      to be the delimiter to use (usually `\n').  It is not necessary to
  447.      define a new set of `PUT_SDB_OP' macros if this is the only change
  448.      required.
  449. `SDB_GENERATE_FAKE'
  450.      Define this macro to override the usual method of constructing a
  451.      dummy name for anonymous structure and union types.  See
  452.      `sdbout.c' for more information.
  453. `SDB_ALLOW_UNKNOWN_REFERENCES'
  454.      Define this macro to allow references to unknown structure, union,
  455.      or enumeration tags to be emitted.  Standard COFF does not allow
  456.      handling of unknown references, MIPS ECOFF has support for it.
  457. `SDB_ALLOW_FORWARD_REFERENCES'
  458.      Define this macro to allow references to structure, union, or
  459.      enumeration tags that have not yet been seen to be handled.  Some
  460.      assemblers choke if forward tags are used, while some require it.
  461. File: gcc.info,  Node: Cross-compilation,  Next: Misc,  Prev: Debugging Info,  Up: Target Macros
  462. Cross Compilation and Floating Point Format
  463. ===========================================
  464.    While all modern machines use 2's complement representation for
  465. integers, there are a variety of representations for floating point
  466. numbers.  This means that in a cross-compiler the representation of
  467. floating point numbers in the compiled program may be different from
  468. that used in the machine doing the compilation.
  469.    Because different representation systems may offer different amounts
  470. of range and precision, the cross compiler cannot safely use the host
  471. machine's floating point arithmetic.  Therefore, floating point
  472. constants must be represented in the target machine's format.  This
  473. means that the cross compiler cannot use `atof' to parse a floating
  474. point constant; it must have its own special routine to use instead. 
  475. Also, constant folding must emulate the target machine's arithmetic (or
  476. must not be done at all).
  477.    The macros in the following table should be defined only if you are
  478. cross compiling between different floating point formats.
  479.    Otherwise, don't define them. Then default definitions will be set
  480. up which use `double' as the data type, `==' to test for equality, etc.
  481.    You don't need to worry about how many times you use an operand of
  482. any of these macros.  The compiler never uses operands which have side
  483. effects.
  484. `REAL_VALUE_TYPE'
  485.      A macro for the C data type to be used to hold a floating point
  486.      value in the target machine's format.  Typically this would be a
  487.      `struct' containing an array of `int'.
  488. `REAL_VALUES_EQUAL (X, Y)'
  489.      A macro for a C expression which compares for equality the two
  490.      values, X and Y, both of type `REAL_VALUE_TYPE'.
  491. `REAL_VALUES_LESS (X, Y)'
  492.      A macro for a C expression which tests whether X is less than Y,
  493.      both values being of type `REAL_VALUE_TYPE' and interpreted as
  494.      floating point numbers in the target machine's representation.
  495. `REAL_VALUE_LDEXP (X, SCALE)'
  496.      A macro for a C expression which performs the standard library
  497.      function `ldexp', but using the target machine's floating point
  498.      representation.  Both X and the value of the expression have type
  499.      `REAL_VALUE_TYPE'.  The second argument, SCALE, is an integer.
  500. `REAL_VALUE_FIX (X)'
  501.      A macro whose definition is a C expression to convert the
  502.      target-machine floating point value X to a signed integer.  X has
  503.      type `REAL_VALUE_TYPE'.
  504. `REAL_VALUE_UNSIGNED_FIX (X)'
  505.      A macro whose definition is a C expression to convert the
  506.      target-machine floating point value X to an unsigned integer.  X
  507.      has type `REAL_VALUE_TYPE'.
  508. `REAL_VALUE_FIX_TRUNCATE (X)'
  509.      A macro whose definition is a C expression to convert the
  510.      target-machine floating point value X to a signed integer,
  511.      rounding toward 0. X has type `REAL_VALUE_TYPE'.
  512. `REAL_VALUE_UNSIGNED_FIX_TRUNCATE (X)'
  513.      A macro whose definition is a C expression to convert the
  514.      target-machine floating point value X to an unsigned integer,
  515.      rounding toward 0. X has type `REAL_VALUE_TYPE'.
  516. `REAL_VALUE_ATOF (STRING)'
  517.      A macro for a C expression which converts STRING, an expression of
  518.      type `char *', into a floating point number in the target
  519.      machine's representation.  The value has type `REAL_VALUE_TYPE'.
  520. `REAL_INFINITY'
  521.      Define this macro if infinity is a possible floating point value,
  522.      and therefore division by 0 is legitimate.
  523. `REAL_VALUE_ISINF (X)'
  524.      A macro for a C expression which determines whether X, a floating
  525.      point value, is infinity.  The value has type `int'. By default,
  526.      this is defined to call `isinf'.
  527. `REAL_VALUE_ISNAN (X)'
  528.      A macro for a C expression which determines whether X, a floating
  529.      point value, is a "nan" (not-a-number).  The value has type `int'.
  530.       By default, this is defined to call `isnan'.
  531.    Define the following additional macros if you want to make floating
  532. point constant folding work while cross compiling.  If you don't define
  533. them, cross compilation is still possible, but constant folding will
  534. not happen for floating point values.
  535. `REAL_ARITHMETIC (OUTPUT, CODE, X, Y)'
  536.      A macro for a C statement which calculates an arithmetic operation
  537.      of the two floating point values X and Y, both of type
  538.      `REAL_VALUE_TYPE' in the target machine's representation, to
  539.      produce a result of the same type and representation which is
  540.      stored in OUTPUT (which will be a variable).
  541.      The operation to be performed is specified by CODE, a tree code
  542.      which will always be one of the following: `PLUS_EXPR',
  543.      `MINUS_EXPR', `MULT_EXPR', `RDIV_EXPR', `MAX_EXPR', `MIN_EXPR'.
  544.      The expansion of this macro is responsible for checking for
  545.      overflow. If overflow happens, the macro expansion should execute
  546.      the statement `return 0;', which indicates the inability to
  547.      perform the arithmetic operation requested.
  548. `REAL_VALUE_NEGATE (X)'
  549.      A macro for a C expression which returns the negative of the
  550.      floating point value X.  Both X and the value of the expression
  551.      have type `REAL_VALUE_TYPE' and are in the target machine's
  552.      floating point representation.
  553.      There is no way for this macro to report overflow, since overflow
  554.      can't happen in the negation operation.
  555. `REAL_VALUE_TRUNCATE (MODE, X)'
  556.      A macro for a C expression which converts the floating point value
  557.      X to mode MODE.
  558.      Both X and the value of the expression have type `REAL_VALUE_TYPE'
  559.      and are in the target machine's floating point representation. 
  560.      However, the value should have an appropriate bit pattern to be
  561.      output properly as a floating constant whose precision accords
  562.      with mode MODE.
  563.      There is no way for this macro to report overflow.
  564. `REAL_VALUE_TO_INT (LOW, HIGH, X)'
  565.      A macro for a C expression which converts a floating point value X
  566.      into a double-precision integer which is then stored into LOW and
  567.      HIGH, two variables of type INT.
  568. `REAL_VALUE_FROM_INT (X, LOW, HIGH)'
  569.      A macro for a C expression which converts a double-precision
  570.      integer found in LOW and HIGH, two variables of type INT, into a
  571.      floating point value which is then stored into X.
  572. File: gcc.info,  Node: Misc,  Prev: Cross-compilation,  Up: Target Macros
  573. Miscellaneous Parameters
  574. ========================
  575. `PREDICATE_CODES'
  576.      Optionally define this if you have added predicates to
  577.      `MACHINE.c'.  This macro is called within an initializer of an
  578.      array of structures.  The first field in the structure is the name
  579.      of a predicate and the second field is an array of rtl codes.  For
  580.      each predicate, list all rtl codes that can be in expressions
  581.      matched by the predicate.  The list should have a trailing comma. 
  582.      Here is an example of two entries in the list for a typical RISC
  583.      machine:
  584.           #define PREDICATE_CODES \
  585.             {"gen_reg_rtx_operand", {SUBREG, REG}},  \
  586.             {"reg_or_short_cint_operand", {SUBREG, REG, CONST_INT}},
  587.      Defining this macro does not affect the generated code (however,
  588.      incorrect definitions that omit an rtl code that may be matched by
  589.      the predicate can cause the compiler to malfunction).  Instead, it
  590.      allows the table built by `genrecog' to be more compact and
  591.      efficient, thus speeding up the compiler.  The most important
  592.      predicates to include in the list specified by this macro are
  593.      thoses used in the most insn patterns.
  594. `CASE_VECTOR_MODE'
  595.      An alias for a machine mode name.  This is the machine mode that
  596.      elements of a jump-table should have.
  597. `CASE_VECTOR_PC_RELATIVE'
  598.      Define this macro if jump-tables should contain relative addresses.
  599. `CASE_DROPS_THROUGH'
  600.      Define this if control falls through a `case' insn when the index
  601.      value is out of range.  This means the specified default-label is
  602.      actually ignored by the `case' insn proper.
  603. `CASE_VALUES_THRESHOLD'
  604.      Define this to be the smallest number of different values for
  605.      which it is best to use a jump-table instead of a tree of
  606.      conditional branches. The default is four for machines with a
  607.      `casesi' instruction and five otherwise.  This is best for most
  608.      machines.
  609. `BYTE_LOADS_ZERO_EXTEND'
  610.      Define this macro if an instruction to load a value narrower than a
  611.      word from memory into a register also zero-extends the value to
  612.      the whole register.
  613. `BYTE_LOADS_SIGN_EXTEND'
  614.      Define this macro if an instruction to load a value narrower than a
  615.      word from memory into a register also sign-extends the value to
  616.      the whole register.
  617. `IMPLICIT_FIX_EXPR'
  618.      An alias for a tree code that should be used by default for
  619.      conversion of floating point values to fixed point.  Normally,
  620.      `FIX_ROUND_EXPR' is used.
  621. `FIXUNS_TRUNC_LIKE_FIX_TRUNC'
  622.      Define this macro if the same instructions that convert a floating
  623.      point number to a signed fixed point number also convert validly
  624.      to an unsigned one.
  625. `EASY_DIV_EXPR'
  626.      An alias for a tree code that is the easiest kind of division to
  627.      compile code for in the general case.  It may be `TRUNC_DIV_EXPR',
  628.      `FLOOR_DIV_EXPR', `CEIL_DIV_EXPR' or `ROUND_DIV_EXPR'.  These four
  629.      division operators differ in how they round the result to an
  630.      integer.  `EASY_DIV_EXPR' is used when it is permissible to use
  631.      any of those kinds of division and the choice should be made on
  632.      the basis of efficiency.
  633. `MOVE_MAX'
  634.      The maximum number of bytes that a single instruction can move
  635.      quickly from memory to memory.
  636. `SHIFT_COUNT_TRUNCATED'
  637.      Defining this macro causes the compiler to omit a sign-extend,
  638.      zero-extend, or bitwise `and' instruction that truncates the count
  639.      of a shift operation to a width equal to the number of bits needed
  640.      to represent the size of the object being shifted.  On machines
  641.      that have instructions that act on bitfields at variable
  642.      positions, which may include `bit test' instructions, defining
  643.      `SHIFT_COUNT_TRUNCATED' also enables deletion of truncations of
  644.      the values that serve as arguments to bitfield instructions.
  645.      If both types of instructions truncate the count (for shifts) and
  646.      position (for bitfield operations), or if no variable-position
  647.      bitfield instructions exist, you should define this macro.
  648.      However, on some machines, such as the 80386 and the 680x0,
  649.      truncation only applies to shift operations and not the (real or
  650.      pretended) bitfield operations.  Do not define
  651.      `SHIFT_COUNT_TRUNCATED' on such machines.  Instead, add patterns
  652.      to the `md' file that include the implied truncation of the shift
  653.      instructions.
  654. `TRULY_NOOP_TRUNCATION (OUTPREC, INPREC)'
  655.      A C expression which is nonzero if on this machine it is safe to
  656.      "convert" an integer of INPREC bits to one of OUTPREC bits (where
  657.      OUTPREC is smaller than INPREC) by merely operating on it as if it
  658.      had only OUTPREC bits.
  659.      On many machines, this expression can be 1.
  660.      It is reported that suboptimal code can result when
  661.      `TRULY_NOOP_TRUNCATION' returns 1 for a pair of sizes for modes for
  662.      which `MODES_TIEABLE_P' is 0.  If this is the case, making
  663.      `TRULY_NOOP_TRUNCATION' return 0 in such cases may improve things.
  664. `STORE_FLAG_VALUE'
  665.      A C expression describing the value returned by a comparison
  666.      operator with an integral mode and stored by a store-flag
  667.      instruction (`sCOND') when the condition is true.  This
  668.      description must apply to *all* the `sCOND' patterns and all the
  669.      comparison operators whose results have a `MODE_INT' mode.
  670.      A value of 1 or -1 means that the instruction implementing the
  671.      comparison operator returns exactly 1 or -1 when the comparison is
  672.      true and 0 when the comparison is false.  Otherwise, the value
  673.      indicates which bits of the result are guaranteed to be 1 when the
  674.      comparison is true.  This value is interpreted in the mode of the
  675.      comparison operation, which is given by the mode of the first
  676.      operand in the `sCOND' pattern.  Either the low bit or the sign
  677.      bit of `STORE_FLAG_VALUE' be on.  Presently, only those bits are
  678.      used by the compiler.
  679.      If `STORE_FLAG_VALUE' is neither 1 or -1, the compiler will
  680.      generate code that depends only on the specified bits.  It can also
  681.      replace comparison operators with equivalent operations if they
  682.      cause the required bits to be set, even if the remaining bits are
  683.      undefined. For example, on a machine whose comparison operators
  684.      return an `SImode' value and where `STORE_FLAG_VALUE' is defined as
  685.      `0x80000000', saying that just the sign bit is relevant, the
  686.      expression
  687.           (ne:SI (and:SI X (const_int POWER-OF-2)) (const_int 0))
  688.      can be converted to
  689.           (ashift:SI X (const_int N))
  690.      where N is the appropriate shift count to move the bit being
  691.      tested into the sign bit.
  692.      There is no way to describe a machine that always sets the
  693.      low-order bit for a true value, but does not guarantee the value
  694.      of any other bits, but we do not know of any machine that has such
  695.      an instruction.  If you are trying to port GNU CC to such a
  696.      machine, include an instruction to perform a logical-and of the
  697.      result with 1 in the pattern for the comparison operators and let
  698.      us know (*note Bug Reporting::.).
  699.      Often, a machine will have multiple instructions that obtain a
  700.      value from a comparison (or the condition codes).  Here are rules
  701.      to guide the choice of value for `STORE_FLAG_VALUE', and hence the
  702.      instructions to be used:
  703.         * Use the shortest sequence that yields a valid definition for
  704.           `STORE_FLAG_VALUE'.  It is more efficient for the compiler to
  705.           "normalize" the value (convert it to, e.g., 1 or 0) than for
  706.           the comparison operators to do so because there may be
  707.           opportunities to combine the normalization with other
  708.           operations.
  709.         * For equal-length sequences, use a value of 1 or -1, with -1
  710.           being slightly preferred on machines with expensive jumps and
  711.           1 preferred on other machines.
  712.         * As a second choice, choose a value of `0x80000001' if
  713.           instructions exist that set both the sign and low-order bits
  714.           but do not define the others.
  715.         * Otherwise, use a value of `0x80000000'.
  716.      You need not define `STORE_FLAG_VALUE' if the machine has no
  717.      store-flag instructions.
  718. `FLOAT_STORE_FLAG_VALUE'
  719.      A C expression that gives a non-zero floating point value that is
  720.      returned when comparison operators with floating-point results are
  721.      true. Define this macro on machine that have comparison operations
  722.      that return floating-point values.  If there are no such
  723.      operations, do not define this macro.
  724. `Pmode'
  725.      An alias for the machine mode for pointers.  Normally the
  726.      definition can be
  727.           #define Pmode SImode
  728. `FUNCTION_MODE'
  729.      An alias for the machine mode used for memory references to
  730.      functions being called, in `call' RTL expressions.  On most
  731.      machines this should be `QImode'.
  732. `INTEGRATE_THRESHOLD (DECL)'
  733.      A C expression for the maximum number of instructions above which
  734.      the function DECL should not be inlined.  DECL is a
  735.      `FUNCTION_DECL' node.
  736.      The default definition of this macro is 64 plus 8 times the number
  737.      of arguments that the function accepts.  Some people think a larger
  738.      threshold should be used on RISC machines.
  739. `SCCS_DIRECTIVE'
  740.      Define this if the preprocessor should ignore `#sccs' directives
  741.      and print no error message.
  742. `HANDLE_PRAGMA (STREAM)'
  743.      Define this macro if you want to implement any pragmas.  If
  744.      defined, it should be a C statement to be executed when `#pragma'
  745.      is seen.  The argument STREAM is the stdio input stream from which
  746.      the source text can be read.
  747.      It is generally a bad idea to implement new uses of `#pragma'.  The
  748.      only reason to define this macro is for compatibility with other
  749.      compilers that do support `#pragma' for the sake of any user
  750.      programs which already use it.
  751. `DOLLARS_IN_IDENTIFIERS'
  752.      Define this macro to control use of the character `$' in identifier
  753.      names.  The value should be 0, 1, or 2.  0 means `$' is not allowed
  754.      by default; 1 means it is allowed by default if `-traditional' is
  755.      used; 2 means it is allowed by default provided `-ansi' is not
  756.      used. 1 is the default; there is no need to define this macro in
  757.      that case.
  758. `NO_DOLLAR_IN_LABEL'
  759.      Define this macro if the assembler does not accept the character
  760.      `$' in label names.  By default constructors and destructors in
  761.      G++ have `$' in the identifiers.  If this macro is defined, `.' is
  762.      used instead.
  763. `DEFAULT_MAIN_RETURN'
  764.      Define this macro if the target system expects every program's
  765.      `main' function to return a standard "success" value by default
  766.      (if no other value is explicitly returned).
  767.      The definition should be a C statement (sans semicolon) to
  768.      generate the appropriate rtl instructions.  It is used only when
  769.      compiling the end of `main'.
  770. `HAVE_ATEXIT'
  771.      Define this if the target system supports the function `atexit'
  772.      from the ANSI C standard.  If this is not defined, and
  773.      `INIT_SECTION_ASM_OP' is not defined, a default `exit' function
  774.      will be provided to support C++.
  775. `EXIT_BODY'
  776.      Define this if your `exit' function needs to do something besides
  777.      calling an external function `_cleanup' before terminating with
  778.      `_exit'.  The `EXIT_BODY' macro is only needed if netiher
  779.      `HAVE_ATEXIT' nor `INIT_SECTION_ASM_OP' are defined.
  780. File: gcc.info,  Node: Config,  Next: Index,  Prev: Target Macros,  Up: Top
  781. The Configuration File
  782. **********************
  783.    The configuration file `xm-MACHINE.h' contains macro definitions
  784. that describe the machine and system on which the compiler is running,
  785. unlike the definitions in `MACHINE.h', which describe the machine for
  786. which the compiler is producing output.  Most of the values in
  787. `xm-MACHINE.h' are actually the same on all machines that GNU CC runs
  788. on, so large parts of all configuration files are identical.  But there
  789. are some macros that vary:
  790. `USG'
  791.      Define this macro if the host system is System V.
  792. `VMS'
  793.      Define this macro if the host system is VMS.
  794. `FAILURE_EXIT_CODE'
  795.      A C expression for the status code to be returned when the compiler
  796.      exits after serious errors.
  797. `SUCCESS_EXIT_CODE'
  798.      A C expression for the status code to be returned when the compiler
  799.      exits without serious errors.
  800. `HOST_WORDS_BIG_ENDIAN'
  801.      Defined if the host machine stores words of multi-word values in
  802.      big-endian order.  (GNU CC does not depend on the host byte
  803.      ordering within a word.)
  804. `HOST_FLOAT_FORMAT'
  805.      A numeric code distinguishing the floating point format for the
  806.      host machine.  See `TARGET_FLOAT_FORMAT' in *Note Storage Layout::
  807.      for the alternatives and default.
  808. `HOST_BITS_PER_CHAR'
  809.      A C expression for the number of bits in `char' on the host
  810.      machine.
  811. `HOST_BITS_PER_SHORT'
  812.      A C expression for the number of bits in `short' on the host
  813.      machine.
  814. `HOST_BITS_PER_INT'
  815.      A C expression for the number of bits in `int' on the host machine.
  816. `HOST_BITS_PER_LONG'
  817.      A C expression for the number of bits in `long' on the host
  818.      machine.
  819. `ONLY_INT_FIELDS'
  820.      Define this macro to indicate that the host compiler only supports
  821.      `int' bit fields, rather than other integral types, including
  822.      `enum', as do most C compilers.
  823. `EXECUTABLE_SUFFIX'
  824.      Define this macro if the host system uses a naming convention for
  825.      executable files that involves a common suffix (such as, in some
  826.      systems, `.exe') that must be mentioned explicitly when you run
  827.      the program.
  828. `OBSTACK_CHUNK_SIZE'
  829.      A C expression for the size of ordinary obstack chunks. If you
  830.      don't define this, a usually-reasonable default is used.
  831. `OBSTACK_CHUNK_ALLOC'
  832.      The function used to allocate obstack chunks. If you don't define
  833.      this, `xmalloc' is used.
  834. `OBSTACK_CHUNK_FREE'
  835.      The function used to free obstack chunks. If you don't define
  836.      this, `free' is used.
  837. `USE_C_ALLOCA'
  838.      Define this macro to indicate that the compiler is running with the
  839.      `alloca' implemented in C.  This version of `alloca' can be found
  840.      in the file `alloca.c'; to use it, you must also alter the
  841.      `Makefile' variable `ALLOCA'.  (This is done automatically for the
  842.      systems on which we know it is needed.)
  843.      If you do define this macro, you should probably do it as follows:
  844.           #ifndef __GNUC__
  845.           #define USE_C_ALLOCA
  846.           #else
  847.           #define alloca __builtin_alloca
  848.           #endif
  849.      so that when the compiler is compiled with GNU CC it uses the more
  850.      efficient built-in `alloca' function.
  851. `FUNCTION_CONVERSION_BUG'
  852.      Define this macro to indicate that the host compiler does not
  853.      properly handle converting a function value to a
  854.      pointer-to-function when it is used in an expression.
  855. `HAVE_VPRINTF'
  856.      Define this if the library function `vprintf' is available on your
  857.      system.
  858. `MULTIBYTE_CHARS'
  859.      Define this macro to enable support for multibyte characters in the
  860.      input to GNU CC.  This requires that the host system support the
  861.      ANSI C library functions for converting multibyte characters to
  862.      wide characters.
  863. `HAVE_PUTENV'
  864.      Define this if the library function `putenv' is available on your
  865.      system.
  866. `NO_SYS_SIGLIST'
  867.      Define this if your system *does not* provide the variable
  868.      `sys_siglist'.
  869. `USE_PROTOTYPES'
  870.      Define this to be 1 if you know that the host compiler supports
  871.      prototypes, even if it doesn't define __STDC__, or define it to be
  872.      0 if you do not want any prototypes used in compiling GNU CC.  If
  873.      `USE_PROTOTYPES' is not defined, it will be determined
  874.      automatically whether your compiler supports prototypes by
  875.      checking if `__STDC__' is defined.
  876. `NO_MD_PROTOTYPES'
  877.      Define this if you wish suppression of prototypes generated from
  878.      the machine description file, but to use other prototypes within
  879.      GNU CC.  If `USE_PROTOTYPES' is defined to be 0, or the host
  880.      compiler does not support prototypes, this macro has no effect.
  881. `MD_CALL_PROTOTYPES'
  882.      Define this if you wish to generate prototypes for the `gen_call'
  883.      or `gen_call_value' functions generated from the machine
  884.      description file.  If `USE_PROTOTYPES' is defined to be 0, or the
  885.      host compiler does not support prototypes, or `NO_MD_PROTOTYPES'
  886.      is defined, this macro has no effect.  As soon as all of the
  887.      machine descriptions are modified to have the appropriate number
  888.      of arguments, this macro will be removed.
  889.      Some systems do provide this variable, but with a different name
  890.      such as `_sys_siglist'.  On these systems, you can define
  891.      `sys_siglist' as a macro which expands into the name actually
  892.      provided.
  893. `NO_STAB_H'
  894.      Define this if your system does not have the include file
  895.      `stab.h'.  If `USG' is defined, `NO_STAB_H' is assumed.
  896.    In addition, configuration files for system V define `bcopy',
  897. `bzero' and `bcmp' as aliases.  Some files define `alloca' as a macro
  898. when compiled with GNU CC, in order to take advantage of the benefit of
  899. GNU CC's built-in `alloca'.
  900.