home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / tree.h < prev    next >
C/C++ Source or Header  |  1995-12-29  |  67KB  |  1,757 lines

  1. /* Front-end tree definitions for GNU compiler.
  2.    Copyright (C) 1989, 1993, 1994, 1995 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20.  
  21. #include "machmode.h"
  22.  
  23. #ifndef RTX_CODE
  24. struct rtx_def;
  25. #endif
  26.  
  27. /* Codes of tree nodes */
  28.  
  29. #define DEFTREECODE(SYM, STRING, TYPE, NARGS)   SYM,
  30.  
  31. enum tree_code {
  32. #include "tree.def"
  33.  
  34.   LAST_AND_UNUSED_TREE_CODE    /* A convenient way to get a value for
  35.                    NUM_TREE_CODE.  */
  36. };
  37.  
  38. #undef DEFTREECODE
  39.  
  40. /* Number of tree codes.  */
  41. #define NUM_TREE_CODES ((int)LAST_AND_UNUSED_TREE_CODE)
  42.  
  43. /* Indexed by enum tree_code, contains a character which is
  44.    `<' for a comparison expression, `1', for a unary arithmetic
  45.    expression, `2' for a binary arithmetic expression, `e' for
  46.    other types of expressions, `r' for a reference, `c' for a
  47.    constant, `d' for a decl, `t' for a type, `s' for a statement,
  48.    and `x' for anything else (TREE_LIST, IDENTIFIER, etc).  */
  49.  
  50. extern char **tree_code_type;
  51. #define TREE_CODE_CLASS(CODE)    (*tree_code_type[(int) (CODE)])
  52.  
  53. /* Number of argument-words in each kind of tree-node.  */
  54.  
  55. extern int *tree_code_length;
  56.  
  57. /* Names of tree components.  */
  58.  
  59. extern char **tree_code_name;
  60.  
  61. /* Codes that identify the various built in functions
  62.    so that expand_call can identify them quickly.  */
  63.  
  64. enum built_in_function
  65. {
  66.   NOT_BUILT_IN,
  67.   BUILT_IN_ALLOCA,
  68.   BUILT_IN_ABS,
  69.   BUILT_IN_FABS,
  70.   BUILT_IN_LABS,
  71.   BUILT_IN_FFS,
  72.   BUILT_IN_DIV,
  73.   BUILT_IN_LDIV,
  74.   BUILT_IN_FFLOOR,
  75.   BUILT_IN_FCEIL,
  76.   BUILT_IN_FMOD,
  77.   BUILT_IN_FREM,
  78.   BUILT_IN_MEMCPY,
  79.   BUILT_IN_MEMCMP,
  80.   BUILT_IN_MEMSET,
  81.   BUILT_IN_STRCPY,
  82.   BUILT_IN_STRCMP,
  83.   BUILT_IN_STRLEN,
  84.   BUILT_IN_FSQRT,
  85.   BUILT_IN_SIN,
  86.   BUILT_IN_COS,
  87.   BUILT_IN_GETEXP,
  88.   BUILT_IN_GETMAN,
  89.   BUILT_IN_SAVEREGS,
  90.   BUILT_IN_CLASSIFY_TYPE,
  91.   BUILT_IN_NEXT_ARG,
  92.   BUILT_IN_ARGS_INFO,
  93.   BUILT_IN_CONSTANT_P,
  94.   BUILT_IN_FRAME_ADDRESS,
  95.   BUILT_IN_RETURN_ADDRESS,
  96.   BUILT_IN_CALLER_RETURN_ADDRESS,
  97.   BUILT_IN_APPLY_ARGS,
  98.   BUILT_IN_APPLY,
  99.   BUILT_IN_RETURN,
  100.  
  101.   /* C++ extensions */
  102.   BUILT_IN_NEW,
  103.   BUILT_IN_VEC_NEW,
  104.   BUILT_IN_DELETE,
  105.   BUILT_IN_VEC_DELETE,
  106.  
  107.   /* Upper bound on non-language-specific builtins. */
  108.   END_BUILTINS
  109. };
  110.  
  111. /* The definition of tree nodes fills the next several pages.  */
  112.  
  113. /* A tree node can represent a data type, a variable, an expression
  114.    or a statement.  Each node has a TREE_CODE which says what kind of
  115.    thing it represents.  Some common codes are:
  116.    INTEGER_TYPE -- represents a type of integers.
  117.    ARRAY_TYPE -- represents a type of pointer.
  118.    VAR_DECL -- represents a declared variable.
  119.    INTEGER_CST -- represents a constant integer value.
  120.    PLUS_EXPR -- represents a sum (an expression).
  121.  
  122.    As for the contents of a tree node: there are some fields
  123.    that all nodes share.  Each TREE_CODE has various special-purpose
  124.    fields as well.  The fields of a node are never accessed directly,
  125.    always through accessor macros.  */
  126.  
  127. /* This type is used everywhere to refer to a tree node.  */
  128.  
  129. typedef union tree_node *tree;
  130.  
  131. /* Every kind of tree node starts with this structure,
  132.    so all nodes have these fields.
  133.  
  134.    See the accessor macros, defined below, for documentation of the fields.  */
  135.  
  136. struct tree_common
  137. {
  138.   union tree_node *chain;
  139.   union tree_node *type;
  140. #ifdef ONLY_INT_FIELDS
  141.   unsigned int code : 8;
  142. #else
  143.   enum tree_code code : 8;
  144. #endif
  145.  
  146.   unsigned side_effects_flag : 1;
  147.   unsigned constant_flag : 1;
  148.   unsigned permanent_flag : 1;
  149.   unsigned addressable_flag : 1;
  150.   unsigned volatile_flag : 1;
  151. #ifdef _WIN32
  152.   unsigned stdcall_flag : 1;
  153. #endif
  154.   unsigned readonly_flag : 1;
  155.   unsigned unsigned_flag : 1;
  156.   unsigned asm_written_flag: 1;
  157.  
  158.   unsigned used_flag : 1;
  159.   unsigned raises_flag : 1;
  160.   unsigned static_flag : 1;
  161.   unsigned public_flag : 1;
  162.   unsigned private_flag : 1;
  163.   unsigned protected_flag : 1;
  164.  
  165.   unsigned lang_flag_0 : 1;
  166.   unsigned lang_flag_1 : 1;
  167.   unsigned lang_flag_2 : 1;
  168.   unsigned lang_flag_3 : 1;
  169.   unsigned lang_flag_4 : 1;
  170.   unsigned lang_flag_5 : 1;
  171.   unsigned lang_flag_6 : 1;
  172.   /* There is room for two more flags.  */
  173. };
  174.  
  175. /* Define accessors for the fields that all tree nodes have
  176.    (though some fields are not used for all kinds of nodes).  */
  177.  
  178. /* The tree-code says what kind of node it is.
  179.    Codes are defined in tree.def.  */
  180. #define TREE_CODE(NODE) ((enum tree_code) (NODE)->common.code)
  181. #define TREE_SET_CODE(NODE, VALUE) ((NODE)->common.code = (int) (VALUE))
  182.  
  183. /* In all nodes that are expressions, this is the data type of the expression.
  184.    In POINTER_TYPE nodes, this is the type that the pointer points to.
  185.    In ARRAY_TYPE nodes, this is the type of the elements.  */
  186. #define TREE_TYPE(NODE) ((NODE)->common.type)
  187.  
  188. /* Nodes are chained together for many purposes.
  189.    Types are chained together to record them for being output to the debugger
  190.    (see the function `chain_type').
  191.    Decls in the same scope are chained together to record the contents
  192.    of the scope.
  193.    Statement nodes for successive statements used to be chained together.
  194.    Often lists of things are represented by TREE_LIST nodes that
  195.    are chained together.  */
  196.  
  197. #define TREE_CHAIN(NODE) ((NODE)->common.chain)
  198.  
  199. /* Given an expression as a tree, strip any NON_LVALUE_EXPRs and NOP_EXPRs
  200.    that don't change the machine mode.  */
  201.  
  202. #define STRIP_NOPS(EXP) \
  203.   while ((TREE_CODE (EXP) == NOP_EXPR                \
  204.       || TREE_CODE (EXP) == CONVERT_EXPR            \
  205.       || TREE_CODE (EXP) == NON_LVALUE_EXPR)        \
  206.      && (TYPE_MODE (TREE_TYPE (EXP))            \
  207.          == TYPE_MODE (TREE_TYPE (TREE_OPERAND (EXP, 0)))))    \
  208.     (EXP) = TREE_OPERAND (EXP, 0);
  209.  
  210. /* Like STRIP_NOPS, but don't alter the TREE_TYPE either.  */
  211.  
  212. #define STRIP_TYPE_NOPS(EXP) \
  213.   while ((TREE_CODE (EXP) == NOP_EXPR                \
  214.       || TREE_CODE (EXP) == CONVERT_EXPR            \
  215.       || TREE_CODE (EXP) == NON_LVALUE_EXPR)        \
  216.      && (TREE_TYPE (EXP)                    \
  217.          == TREE_TYPE (TREE_OPERAND (EXP, 0))))        \
  218.     (EXP) = TREE_OPERAND (EXP, 0);
  219.  
  220. /* Nonzero if TYPE represents an integral type.  Note that we do not
  221.    include COMPLEX types here.  */
  222.  
  223. #define INTEGRAL_TYPE_P(TYPE)  \
  224.   (TREE_CODE (TYPE) == INTEGER_TYPE || TREE_CODE (TYPE) == ENUMERAL_TYPE  \
  225.    || TREE_CODE (TYPE) == BOOLEAN_TYPE || TREE_CODE (TYPE) == CHAR_TYPE)
  226.  
  227. /* Nonzero if TYPE represents a floating-point type, including complex
  228.    floating-point types.  */
  229.  
  230. #define FLOAT_TYPE_P(TYPE)        \
  231.   (TREE_CODE (TYPE) == REAL_TYPE    \
  232.    || (TREE_CODE (TYPE) == COMPLEX_TYPE \
  233.        && TREE_CODE (TREE_TYPE (TYPE)) == REAL_TYPE))
  234.  
  235. /* Nonzero if TYPE represents an aggregate (multi-component) type. */
  236.  
  237. #define AGGREGATE_TYPE_P(TYPE) \
  238.   (TREE_CODE (TYPE) == ARRAY_TYPE || TREE_CODE (TYPE) == RECORD_TYPE \
  239.    || TREE_CODE (TYPE) == UNION_TYPE || TREE_CODE (TYPE) == QUAL_UNION_TYPE \
  240.    || TREE_CODE (TYPE) == SET_TYPE)
  241.  
  242. /* Nonzero if TYPE represents a pointer type.  */
  243.  
  244. #define POINTER_TYPE_P(TYPE) \
  245.   (TREE_CODE (TYPE) == POINTER_TYPE || TREE_CODE (TYPE) == REFERENCE_TYPE)
  246.  
  247. /* Define many boolean fields that all tree nodes have.  */
  248.  
  249. /* In VAR_DECL nodes, nonzero means address of this is needed.
  250.    So it cannot be in a register.
  251.    In a FUNCTION_DECL, nonzero means its address is needed.
  252.    So it must be compiled even if it is an inline function.
  253.    In CONSTRUCTOR nodes, it means object constructed must be in memory.
  254.    In LABEL_DECL nodes, it means a goto for this label has been seen 
  255.    from a place outside all binding contours that restore stack levels.
  256.    In ..._TYPE nodes, it means that objects of this type must
  257.    be fully addressable.  This means that pieces of this
  258.    object cannot go into register parameters, for example.
  259.    In IDENTIFIER_NODEs, this means that some extern decl for this name
  260.    had its address taken.  That matters for inline functions.  */
  261. #define TREE_ADDRESSABLE(NODE) ((NODE)->common.addressable_flag)
  262.  
  263. /* In a VAR_DECL, nonzero means allocate static storage.
  264.    In a FUNCTION_DECL, nonzero if function has been defined.
  265.    In a CONSTRUCTOR, nonzero means allocate static storage.  */
  266. #define TREE_STATIC(NODE) ((NODE)->common.static_flag)
  267.  
  268. /* In a CONVERT_EXPR, NOP_EXPR or COMPOUND_EXPR, this means the node was
  269.    made implicitly and should not lead to an "unused value" warning.  */
  270. #define TREE_NO_UNUSED_WARNING(NODE) ((NODE)->common.static_flag)
  271.  
  272. /* Nonzero for a TREE_LIST or TREE_VEC node means that the derivation
  273.    chain is via a `virtual' declaration.  */
  274. #define TREE_VIA_VIRTUAL(NODE) ((NODE)->common.static_flag)
  275.  
  276. /* In an INTEGER_CST, REAL_CST, or COMPLEX_CST, this means there was an
  277.    overflow in folding.  This is distinct from TREE_OVERFLOW because ANSI C
  278.    requires a diagnostic when overflows occur in constant expressions.  */
  279. #define TREE_CONSTANT_OVERFLOW(NODE) ((NODE)->common.static_flag)
  280.  
  281. /* In an IDENTIFIER_NODE, this means that assemble_name was called with
  282.    this string as an argument.  */
  283. #define TREE_SYMBOL_REFERENCED(NODE) ((NODE)->common.static_flag)
  284.  
  285. /* In an INTEGER_CST, REAL_CST, of COMPLEX_CST, this means there was an
  286.    overflow in folding, and no warning has been issued for this subexpression.
  287.    TREE_OVERFLOW implies TREE_CONSTANT_OVERFLOW, but not vice versa.  */
  288. #define TREE_OVERFLOW(NODE) ((NODE)->common.public_flag)
  289.  
  290. /* In a VAR_DECL or FUNCTION_DECL,
  291.    nonzero means name is to be accessible from outside this module.
  292.    In an identifier node, nonzero means an external declaration
  293.    accessible from outside this module was previously seen
  294.    for this name in an inner scope.  */
  295. #define TREE_PUBLIC(NODE) ((NODE)->common.public_flag)
  296.  
  297. /* Nonzero for TREE_LIST or TREE_VEC node means that the path to the
  298.    base class is via a `public' declaration, which preserves public
  299.    fields from the base class as public.  */
  300. #define TREE_VIA_PUBLIC(NODE) ((NODE)->common.public_flag)
  301.  
  302. /* Ditto, for `private' declarations.  */
  303. #define TREE_VIA_PRIVATE(NODE) ((NODE)->common.private_flag)
  304.  
  305. /* Nonzero for TREE_LIST node means that the path to the
  306.    base class is via a `protected' declaration, which preserves
  307.    protected fields from the base class as protected.
  308.    OVERLOADED.  */
  309. #define TREE_VIA_PROTECTED(NODE) ((NODE)->common.protected_flag)
  310.  
  311. /* In any expression, nonzero means it has side effects or reevaluation
  312.    of the whole expression could produce a different value.
  313.    This is set if any subexpression is a function call, a side effect
  314.    or a reference to a volatile variable.
  315.    In a ..._DECL, this is set only if the declaration said `volatile'.  */
  316. #define TREE_SIDE_EFFECTS(NODE) ((NODE)->common.side_effects_flag)
  317.  
  318. /* Nonzero means this expression is volatile in the C sense:
  319.    its address should be of type `volatile WHATEVER *'.
  320.    In other words, the declared item is volatile qualified.
  321.    This is used in _DECL nodes and _REF nodes.
  322.  
  323.    In a ..._TYPE node, means this type is volatile-qualified.
  324.    But use TYPE_VOLATILE instead of this macro when the node is a type,
  325.    because eventually we may make that a different bit.
  326.  
  327.    If this bit is set in an expression, so is TREE_SIDE_EFFECTS.  */
  328. #define TREE_THIS_VOLATILE(NODE) ((NODE)->common.volatile_flag)
  329.  
  330. /* In a VAR_DECL, PARM_DECL or FIELD_DECL, or any kind of ..._REF node,
  331.    nonzero means it may not be the lhs of an assignment.
  332.    In a ..._TYPE node, means this type is const-qualified
  333.    (but the macro TYPE_READONLY should be used instead of this macro
  334.    when the node is a type).  */
  335. #define TREE_READONLY(NODE) ((NODE)->common.readonly_flag)
  336.  
  337. #ifdef _WIN32
  338. /* Nonzero means this function uses the stdcall calling conventions */
  339. #define TYPE_STDCALL(NODE) ((NODE)->common.stdcall_flag)
  340. #endif /* _WIN32 */
  341.  
  342. /* Value of expression is constant.
  343.    Always appears in all ..._CST nodes.
  344.    May also appear in an arithmetic expression, an ADDR_EXPR or a CONSTRUCTOR
  345.    if the value is constant.  */
  346. #define TREE_CONSTANT(NODE) ((NODE)->common.constant_flag)
  347.  
  348. /* Nonzero means permanent node;
  349.    node will continue to exist for the entire compiler run.
  350.    Otherwise it will be recycled at the end of the function.  */
  351. #define TREE_PERMANENT(NODE) ((NODE)->common.permanent_flag)
  352.  
  353. /* In INTEGER_TYPE or ENUMERAL_TYPE nodes, means an unsigned type.
  354.    In FIELD_DECL nodes, means an unsigned bit field.
  355.    The same bit is used in functions as DECL_BUILT_IN_NONANSI.  */
  356. #define TREE_UNSIGNED(NODE) ((NODE)->common.unsigned_flag)
  357.  
  358. /* Nonzero in a VAR_DECL means assembler code has been written.
  359.    Nonzero in a FUNCTION_DECL means that the function has been compiled.
  360.    This is interesting in an inline function, since it might not need
  361.    to be compiled separately.
  362.    Nonzero in a RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE or ENUMERAL_TYPE
  363.    if the sdb debugging info for the type has been written.
  364.    In a BLOCK node, nonzero if reorder_blocks has already seen this block.  */
  365. #define TREE_ASM_WRITTEN(NODE) ((NODE)->common.asm_written_flag)
  366.  
  367. /* Nonzero in a _DECL if the name is used in its scope.
  368.    Nonzero in an expr node means inhibit warning if value is unused.
  369.    In IDENTIFIER_NODEs, this means that some extern decl for this name
  370.    was used.  */
  371. #define TREE_USED(NODE) ((NODE)->common.used_flag)
  372.  
  373. /* Nonzero for a tree node whose evaluation could result
  374.    in the raising of an exception.  Not implemented yet.  */
  375. #define TREE_RAISES(NODE) ((NODE)->common.raises_flag)
  376.  
  377. /* Used in classes in C++.  */
  378. #define TREE_PRIVATE(NODE) ((NODE)->common.private_flag)
  379. /* Used in classes in C++.
  380.    In a BLOCK node, this is BLOCK_HANDLER_BLOCK.  */
  381. #define TREE_PROTECTED(NODE) ((NODE)->common.protected_flag)
  382.  
  383. /* These flags are available for each language front end to use internally.  */
  384. #define TREE_LANG_FLAG_0(NODE) ((NODE)->common.lang_flag_0)
  385. #define TREE_LANG_FLAG_1(NODE) ((NODE)->common.lang_flag_1)
  386. #define TREE_LANG_FLAG_2(NODE) ((NODE)->common.lang_flag_2)
  387. #define TREE_LANG_FLAG_3(NODE) ((NODE)->common.lang_flag_3)
  388. #define TREE_LANG_FLAG_4(NODE) ((NODE)->common.lang_flag_4)
  389. #define TREE_LANG_FLAG_5(NODE) ((NODE)->common.lang_flag_5)
  390. #define TREE_LANG_FLAG_6(NODE) ((NODE)->common.lang_flag_6)
  391.  
  392. /* Define additional fields and accessors for nodes representing constants.  */
  393.  
  394. /* In an INTEGER_CST node.  These two together make a 2-word integer.
  395.    If the data type is signed, the value is sign-extended to 2 words
  396.    even though not all of them may really be in use.
  397.    In an unsigned constant shorter than 2 words, the extra bits are 0.  */
  398. #define TREE_INT_CST_LOW(NODE) ((NODE)->int_cst.int_cst_low)
  399. #define TREE_INT_CST_HIGH(NODE) ((NODE)->int_cst.int_cst_high)
  400.  
  401. #define INT_CST_LT(A, B)  \
  402. (TREE_INT_CST_HIGH (A) < TREE_INT_CST_HIGH (B)            \
  403.  || (TREE_INT_CST_HIGH (A) == TREE_INT_CST_HIGH (B)        \
  404.      && ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (A)        \
  405.      < (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (B))))
  406.  
  407. #define INT_CST_LT_UNSIGNED(A, B)  \
  408. (((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (A)    \
  409.   < (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (B))    \
  410.  || (((unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (A)    \
  411.       == (unsigned HOST_WIDE_INT ) TREE_INT_CST_HIGH (B)) \
  412.      && (((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (A)    \
  413.       < (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (B)))))
  414.  
  415. struct tree_int_cst
  416. {
  417.   char common[sizeof (struct tree_common)];
  418.   HOST_WIDE_INT int_cst_low;
  419.   HOST_WIDE_INT int_cst_high;
  420. };
  421.  
  422. /* In REAL_CST, STRING_CST, COMPLEX_CST nodes, and CONSTRUCTOR nodes,
  423.    and generally in all kinds of constants that could
  424.    be given labels (rather than being immediate).  */
  425.  
  426. #define TREE_CST_RTL(NODE) ((NODE)->real_cst.rtl)
  427.  
  428. /* In a REAL_CST node.  */
  429. /* We can represent a real value as either a `double' or a string.
  430.    Strings don't allow for any optimization, but they do allow
  431.    for cross-compilation.  */
  432.  
  433. #define TREE_REAL_CST(NODE) ((NODE)->real_cst.real_cst)
  434.  
  435. #include "real.h"
  436.  
  437. struct tree_real_cst
  438. {
  439.   char common[sizeof (struct tree_common)];
  440.   struct rtx_def *rtl;    /* acts as link to register transfer language
  441.                    (rtl) info */
  442.   REAL_VALUE_TYPE real_cst;
  443. };
  444.  
  445. /* In a STRING_CST */
  446. #define TREE_STRING_LENGTH(NODE) ((NODE)->string.length)
  447. #define TREE_STRING_POINTER(NODE) ((NODE)->string.pointer)
  448.  
  449. struct tree_string
  450. {
  451.   char common[sizeof (struct tree_common)];
  452.   struct rtx_def *rtl;    /* acts as link to register transfer language
  453.                    (rtl) info */
  454.   int length;
  455.   char *pointer;
  456. };
  457.  
  458. /* In a COMPLEX_CST node.  */
  459. #define TREE_REALPART(NODE) ((NODE)->complex.real)
  460. #define TREE_IMAGPART(NODE) ((NODE)->complex.imag)
  461.  
  462. struct tree_complex
  463. {
  464.   char common[sizeof (struct tree_common)];
  465.   struct rtx_def *rtl;    /* acts as link to register transfer language
  466.                    (rtl) info */
  467.   union tree_node *real;
  468.   union tree_node *imag;
  469. };
  470.  
  471. /* Define fields and accessors for some special-purpose tree nodes.  */
  472.  
  473. #define IDENTIFIER_LENGTH(NODE) ((NODE)->identifier.length)
  474. #define IDENTIFIER_POINTER(NODE) ((NODE)->identifier.pointer)
  475.  
  476. struct tree_identifier
  477. {
  478.   char common[sizeof (struct tree_common)];
  479.   int length;
  480.   char *pointer;
  481. };
  482.  
  483. /* In a TREE_LIST node.  */
  484. #define TREE_PURPOSE(NODE) ((NODE)->list.purpose)
  485. #define TREE_VALUE(NODE) ((NODE)->list.value)
  486.  
  487. struct tree_list
  488. {
  489.   char common[sizeof (struct tree_common)];
  490.   union tree_node *purpose;
  491.   union tree_node *value;
  492. };
  493.  
  494. /* In a TREE_VEC node.  */
  495. #define TREE_VEC_LENGTH(NODE) ((NODE)->vec.length)
  496. #define TREE_VEC_ELT(NODE,I) ((NODE)->vec.a[I])
  497. #define TREE_VEC_END(NODE) (&((NODE)->vec.a[(NODE)->vec.length]))
  498.  
  499. struct tree_vec
  500. {
  501.   char common[sizeof (struct tree_common)];
  502.   int length;
  503.   union tree_node *a[1];
  504. };
  505.  
  506. /* Define fields and accessors for some nodes that represent expressions.  */
  507.  
  508. /* In a SAVE_EXPR node.  */
  509. #define SAVE_EXPR_CONTEXT(NODE) TREE_OPERAND(NODE, 1)
  510. #define SAVE_EXPR_RTL(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[2])
  511.  
  512. /* In a RTL_EXPR node.  */
  513. #define RTL_EXPR_SEQUENCE(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[0])
  514. #define RTL_EXPR_RTL(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[1])
  515.  
  516. /* In a CALL_EXPR node.  */
  517. #define CALL_EXPR_RTL(NODE) (*(struct rtx_def **) &(NODE)->exp.operands[2])
  518.  
  519. /* In a CONSTRUCTOR node.  */
  520. #define CONSTRUCTOR_ELTS(NODE) TREE_OPERAND (NODE, 1)
  521.  
  522. /* In ordinary expression nodes.  */
  523. #define TREE_OPERAND(NODE, I) ((NODE)->exp.operands[I])
  524. #define TREE_COMPLEXITY(NODE) ((NODE)->exp.complexity)
  525.  
  526. struct tree_exp
  527. {
  528.   char common[sizeof (struct tree_common)];
  529.   int complexity;
  530.   union tree_node *operands[1];
  531. };
  532.  
  533. /* In a BLOCK node.  */
  534. #define BLOCK_VARS(NODE) ((NODE)->block.vars)
  535. #define BLOCK_TYPE_TAGS(NODE) ((NODE)->block.type_tags)
  536. #define BLOCK_SUBBLOCKS(NODE) ((NODE)->block.subblocks)
  537. #define BLOCK_SUPERCONTEXT(NODE) ((NODE)->block.supercontext)
  538. /* Note: when changing this, make sure to find the places
  539.    that use chainon or nreverse.  */
  540. #define BLOCK_CHAIN(NODE) TREE_CHAIN (NODE)
  541. #define BLOCK_ABSTRACT_ORIGIN(NODE) ((NODE)->block.abstract_origin)
  542. #define BLOCK_ABSTRACT(NODE) ((NODE)->block.abstract_flag)
  543. #define BLOCK_END_NOTE(NODE) ((NODE)->block.end_note)
  544.  
  545. /* Nonzero means that this block is prepared to handle exceptions
  546.    listed in the BLOCK_VARS slot.  */
  547. #define BLOCK_HANDLER_BLOCK(NODE) ((NODE)->block.handler_block_flag)
  548.  
  549. struct tree_block
  550. {
  551.   char common[sizeof (struct tree_common)];
  552.  
  553.   unsigned handler_block_flag : 1;
  554.   unsigned abstract_flag : 1;
  555.  
  556.   union tree_node *vars;
  557.   union tree_node *type_tags;
  558.   union tree_node *subblocks;
  559.   union tree_node *supercontext;
  560.   union tree_node *abstract_origin;
  561.   struct rtx_def *end_note;
  562. };
  563.  
  564. /* Define fields and accessors for nodes representing data types.  */
  565.  
  566. /* See tree.def for documentation of the use of these fields.
  567.    Look at the documentation of the various ..._TYPE tree codes.  */
  568.  
  569. #define TYPE_UID(NODE) ((NODE)->type.uid)
  570. #define TYPE_SIZE(NODE) ((NODE)->type.size)
  571. #define TYPE_MODE(NODE) ((NODE)->type.mode)
  572. #define TYPE_VALUES(NODE) ((NODE)->type.values)
  573. #define TYPE_DOMAIN(NODE) ((NODE)->type.values)
  574. #define TYPE_FIELDS(NODE) ((NODE)->type.values)
  575. #define TYPE_METHODS(NODE) ((NODE)->type.maxval)
  576. #define TYPE_VFIELD(NODE) ((NODE)->type.minval)
  577. #define TYPE_ARG_TYPES(NODE) ((NODE)->type.values)
  578. #define TYPE_METHOD_BASETYPE(NODE) ((NODE)->type.maxval)
  579. #define TYPE_OFFSET_BASETYPE(NODE) ((NODE)->type.maxval)
  580. #define TYPE_POINTER_TO(NODE) ((NODE)->type.pointer_to)
  581. #define TYPE_REFERENCE_TO(NODE) ((NODE)->type.reference_to)
  582. #define TYPE_MIN_VALUE(NODE) ((NODE)->type.minval)
  583. #define TYPE_MAX_VALUE(NODE) ((NODE)->type.maxval)
  584. #define TYPE_PRECISION(NODE) ((NODE)->type.precision)
  585. #define TYPE_SYMTAB_ADDRESS(NODE) ((NODE)->type.symtab.address)
  586. #define TYPE_SYMTAB_POINTER(NODE) ((NODE)->type.symtab.pointer)
  587. #define TYPE_NAME(NODE) ((NODE)->type.name)
  588. #define TYPE_NEXT_VARIANT(NODE) ((NODE)->type.next_variant)
  589. #define TYPE_MAIN_VARIANT(NODE) ((NODE)->type.main_variant)
  590. #define TYPE_BINFO(NODE) ((NODE)->type.binfo)
  591. #define TYPE_NONCOPIED_PARTS(NODE) ((NODE)->type.noncopied_parts)
  592. #define TYPE_CONTEXT(NODE) ((NODE)->type.context)
  593. #define TYPE_OBSTACK(NODE) ((NODE)->type.obstack)
  594. #define TYPE_LANG_SPECIFIC(NODE) ((NODE)->type.lang_specific)
  595.  
  596. /* A TREE_LIST of IDENTIFIER nodes of the attributes that apply
  597.    to this type.  */
  598. #define TYPE_ATTRIBUTES(NODE) ((NODE)->type.attributes)
  599.  
  600. /* The alignment necessary for objects of this type.
  601.    The value is an int, measured in bits.  */
  602. #define TYPE_ALIGN(NODE) ((NODE)->type.align)
  603.  
  604. #define TYPE_STUB_DECL(NODE) (TREE_CHAIN (NODE))
  605.  
  606. /* In a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, it means the type
  607.    has BLKmode only because it lacks the alignment requirement for
  608.    its size.  */
  609. #define TYPE_NO_FORCE_BLK(NODE) ((NODE)->type.no_force_blk_flag)
  610.  
  611. /* Nonzero in a type considered volatile as a whole.  */
  612. #define TYPE_VOLATILE(NODE) ((NODE)->common.volatile_flag)
  613.  
  614. /* Means this type is const-qualified.  */
  615. #define TYPE_READONLY(NODE) ((NODE)->common.readonly_flag)
  616.  
  617. /* These flags are available for each language front end to use internally.  */
  618. #define TYPE_LANG_FLAG_0(NODE) ((NODE)->type.lang_flag_0)
  619. #define TYPE_LANG_FLAG_1(NODE) ((NODE)->type.lang_flag_1)
  620. #define TYPE_LANG_FLAG_2(NODE) ((NODE)->type.lang_flag_2)
  621. #define TYPE_LANG_FLAG_3(NODE) ((NODE)->type.lang_flag_3)
  622. #define TYPE_LANG_FLAG_4(NODE) ((NODE)->type.lang_flag_4)
  623. #define TYPE_LANG_FLAG_5(NODE) ((NODE)->type.lang_flag_5)
  624. #define TYPE_LANG_FLAG_6(NODE) ((NODE)->type.lang_flag_6)
  625.  
  626. /* If set in an ARRAY_TYPE, indicates a string type (for languages
  627.    that distinguish string from array of char).
  628.    If set in a SET_TYPE, indicates a bitstring type. */
  629. #define TYPE_STRING_FLAG(NODE) ((NODE)->type.string_flag)
  630.  
  631. /* Indicates that objects of this type must be initialized by calling a
  632.    function when they are created.  */
  633. #define TYPE_NEEDS_CONSTRUCTING(NODE) ((NODE)->type.needs_constructing_flag)
  634.  
  635. /* Indicates that objects of this type (a UNION_TYPE), should be passed
  636.    the same way that the first union alternative would be passed.  */
  637. #define TYPE_TRANSPARENT_UNION(NODE) ((NODE)->type.transparent_union_flag)
  638.  
  639. /* Indicated that objects of this type should be layed out in as
  640.    compact a way as possible.  */
  641. #define TYPE_PACKED(NODE) ((NODE)->type.packed_flag)
  642.  
  643. struct tree_type
  644. {
  645.   char common[sizeof (struct tree_common)];
  646.   union tree_node *values;
  647.   union tree_node *size;
  648.   union tree_node *attributes;
  649.   unsigned uid;
  650.  
  651.   unsigned char precision;
  652. #ifdef ONLY_INT_FIELDS
  653.   int mode : 8;
  654. #else
  655.   enum machine_mode mode : 8;
  656. #endif
  657.  
  658.   unsigned string_flag : 1;
  659.   unsigned no_force_blk_flag : 1;
  660.   unsigned needs_constructing_flag : 1;
  661.   unsigned transparent_union_flag : 1;
  662.   unsigned packed_flag : 1;
  663.   unsigned lang_flag_0 : 1;
  664.   unsigned lang_flag_1 : 1;
  665.   unsigned lang_flag_2 : 1;
  666.   unsigned lang_flag_3 : 1;
  667.   unsigned lang_flag_4 : 1;
  668.   unsigned lang_flag_5 : 1;
  669.   unsigned lang_flag_6 : 1;
  670.   /* room for 4 more bits */
  671.  
  672.   unsigned int align;
  673.   union tree_node *pointer_to;
  674.   union tree_node *reference_to;
  675.   union {int address; char *pointer; } symtab;
  676.   union tree_node *name;
  677.   union tree_node *minval;
  678.   union tree_node *maxval;
  679.   union tree_node *next_variant;
  680.   union tree_node *main_variant;
  681.   union tree_node *binfo;
  682.   union tree_node *noncopied_parts;
  683.   union tree_node *context;
  684.   struct obstack *obstack;
  685.   /* Points to a structure whose details depend on the language in use.  */
  686.   struct lang_type *lang_specific;
  687. };
  688.  
  689. /* Define accessor macros for information about type inheritance
  690.    and basetypes.
  691.  
  692.    A "basetype" means a particular usage of a data type for inheritance
  693.    in another type.  Each such basetype usage has its own "binfo"
  694.    object to describe it.  The binfo object is a TREE_VEC node.
  695.  
  696.    Inheritance is represented by the binfo nodes allocated for a
  697.    given type.  For example, given types C and D, such that D is
  698.    inherited by C, 3 binfo nodes will be allocated: one for describing
  699.    the binfo properties of C, similarly one for D, and one for
  700.    describing the binfo properties of D as a base type for C.
  701.    Thus, given a pointer to class C, one can get a pointer to the binfo
  702.    of D acting as a basetype for C by looking at C's binfo's basetypes.  */
  703.  
  704. /* The actual data type node being inherited in this basetype.  */
  705. #define BINFO_TYPE(NODE) TREE_TYPE (NODE)
  706.  
  707. /* The offset where this basetype appears in its containing type.
  708.    BINFO_OFFSET slot holds the offset (in bytes)
  709.    from the base of the complete object to the base of the part of the
  710.    object that is allocated on behalf of this `type'.
  711.    This is always 0 except when there is multiple inheritance.  */
  712.    
  713. #define BINFO_OFFSET(NODE) TREE_VEC_ELT ((NODE), 1)
  714. #define TYPE_BINFO_OFFSET(NODE) BINFO_OFFSET (TYPE_BINFO (NODE))
  715. #define BINFO_OFFSET_ZEROP(NODE) (BINFO_OFFSET (NODE) == integer_zero_node)
  716.  
  717. /* The virtual function table belonging to this basetype.  Virtual
  718.    function tables provide a mechanism for run-time method dispatching.
  719.    The entries of a virtual function table are language-dependent.  */
  720.  
  721. #define BINFO_VTABLE(NODE) TREE_VEC_ELT ((NODE), 2)
  722. #define TYPE_BINFO_VTABLE(NODE) BINFO_VTABLE (TYPE_BINFO (NODE))
  723.  
  724. /* The virtual functions in the virtual function table.  This is
  725.    a TREE_LIST that is used as an initial approximation for building
  726.    a virtual function table for this basetype.  */
  727. #define BINFO_VIRTUALS(NODE) TREE_VEC_ELT ((NODE), 3)
  728. #define TYPE_BINFO_VIRTUALS(NODE) BINFO_VIRTUALS (TYPE_BINFO (NODE))
  729.  
  730. /* A vector of additional binfos for the types inherited by this basetype.
  731.  
  732.    If this basetype describes type D as inherited in C,
  733.    and if the basetypes of D are E anf F,
  734.    then this vector contains binfos for inheritance of E and F by C.
  735.  
  736.    ??? This could probably be done by just allocating the
  737.    base types at the end of this TREE_VEC (instead of using
  738.    another TREE_VEC).  This would simplify the calculation
  739.    of how many basetypes a given type had.  */
  740. #define BINFO_BASETYPES(NODE) TREE_VEC_ELT ((NODE), 4)
  741. #define TYPE_BINFO_BASETYPES(NODE) TREE_VEC_ELT (TYPE_BINFO (NODE), 4)
  742.  
  743. /* For a BINFO record describing an inheritance, this yields a pointer
  744.    to the artificial FIELD_DECL node which contains the "virtual base
  745.    class pointer" for the given inheritance.  */
  746.  
  747. #define BINFO_VPTR_FIELD(NODE) TREE_VEC_ELT ((NODE), 5)
  748.  
  749. /* Accessor macro to get to the Nth basetype of this basetype.  */
  750. #define BINFO_BASETYPE(NODE,N) TREE_VEC_ELT (BINFO_BASETYPES (NODE), (N))
  751. #define TYPE_BINFO_BASETYPE(NODE,N) BINFO_TYPE (TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (NODE)), (N)))
  752.  
  753. /* Slot used to build a chain that represents a use of inheritance.
  754.    For example, if X is derived from Y, and Y is derived from Z,
  755.    then this field can be used to link the binfo node for X to
  756.    the binfo node for X's Y to represent the use of inheritance
  757.    from X to Y.  Similarly, this slot of the binfo node for X's Y
  758.    can point to the Z from which Y is inherited (in X's inheritance
  759.    hierarchy).  In this fashion, one can represent and traverse specific
  760.    uses of inheritance using the binfo nodes themselves (instead of
  761.    consing new space pointing to binfo nodes).
  762.    It is up to the language-dependent front-ends to maintain
  763.    this information as necessary.  */
  764. #define BINFO_INHERITANCE_CHAIN(NODE) TREE_VEC_ELT ((NODE), 0)
  765.  
  766. /* Define fields and accessors for nodes representing declared names.  */
  767.  
  768. /* This is the name of the object as written by the user.
  769.    It is an IDENTIFIER_NODE.  */
  770. #define DECL_NAME(NODE) ((NODE)->decl.name)
  771. /* This is the name of the object as the assembler will see it
  772.    (but before any translations made by ASM_OUTPUT_LABELREF).
  773.    Often this is the same as DECL_NAME.
  774.    It is an IDENTIFIER_NODE.  */
  775. #define DECL_ASSEMBLER_NAME(NODE) ((NODE)->decl.assembler_name)
  776. /* Records the section name in a section attribute.  Used to pass
  777.    the name from decl_attributes to make_function_rtl and make_decl_rtl.  */
  778. #define DECL_SECTION_NAME(NODE) ((NODE)->decl.section_name)
  779. /*  For FIELD_DECLs, this is the
  780.     RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE node that the field is
  781.     a member of.  For VAR_DECL, PARM_DECL, FUNCTION_DECL, LABEL_DECL,
  782.     and CONST_DECL nodes, this points to the FUNCTION_DECL for the
  783.     containing function, or else yields NULL_TREE if the given decl has "file scope".  */
  784. #define DECL_CONTEXT(NODE) ((NODE)->decl.context)
  785. #define DECL_FIELD_CONTEXT(NODE) ((NODE)->decl.context)
  786. /* In a DECL this is the field where configuration dependent machine
  787.    attributes are store */
  788. #define DECL_MACHINE_ATTRIBUTES(NODE) ((NODE)->decl.machine_attributes)
  789. /* In a FIELD_DECL, this is the field position, counting in bits,
  790.    of the bit closest to the beginning of the structure.  */
  791. #define DECL_FIELD_BITPOS(NODE) ((NODE)->decl.arguments)
  792. /* In a FIELD_DECL, this indicates whether the field was a bit-field and
  793.    if so, the type that was originally specified for it.
  794.    TREE_TYPE may have been modified (in finish_struct).  */
  795. #define DECL_BIT_FIELD_TYPE(NODE) ((NODE)->decl.result)
  796. /* In FUNCTION_DECL, a chain of ..._DECL nodes.  */
  797. /* VAR_DECL and PARM_DECL reserve the arguments slot
  798.    for language-specific uses.  */
  799. #define DECL_ARGUMENTS(NODE) ((NODE)->decl.arguments)
  800. /* In FUNCTION_DECL, holds the decl for the return value.  */
  801. #define DECL_RESULT(NODE) ((NODE)->decl.result)
  802. /* In PARM_DECL, holds the type as written (perhaps a function or array).  */
  803. #define DECL_ARG_TYPE_AS_WRITTEN(NODE) ((NODE)->decl.result)
  804. /* For a FUNCTION_DECL, holds the tree of BINDINGs.
  805.    For a VAR_DECL, holds the initial value.
  806.    For a PARM_DECL, not used--default
  807.    values for parameters are encoded in the type of the function,
  808.    not in the PARM_DECL slot.  */
  809. #define DECL_INITIAL(NODE) ((NODE)->decl.initial)
  810. /* For a PARM_DECL, records the data type used to pass the argument,
  811.    which may be different from the type seen in the program.  */
  812. #define DECL_ARG_TYPE(NODE) ((NODE)->decl.initial)   /* In PARM_DECL.  */
  813. /* For a FIELD_DECL in a QUAL_UNION_TYPE, records the expression, which
  814.    if nonzero, indicates that the field occupies the type.  */
  815. #define DECL_QUALIFIER(NODE) ((NODE)->decl.initial)
  816. /* These two fields describe where in the source code the declaration was.  */
  817. #define DECL_SOURCE_FILE(NODE) ((NODE)->decl.filename)
  818. #define DECL_SOURCE_LINE(NODE) ((NODE)->decl.linenum)
  819. /* Holds the size of the datum, as a tree expression.
  820.    Need not be constant.  */
  821. #define DECL_SIZE(NODE) ((NODE)->decl.size)
  822. /* Holds the alignment required for the datum.  */
  823. #define DECL_ALIGN(NODE) ((NODE)->decl.frame_size.u)
  824. /* Holds the machine mode corresponding to the declaration of a variable or
  825.    field.  Always equal to TYPE_MODE (TREE_TYPE (decl)) except for a
  826.    FIELD_DECL.  */
  827. #define DECL_MODE(NODE) ((NODE)->decl.mode)
  828. /* Holds the RTL expression for the value of a variable or function.  If
  829.    PROMOTED_MODE is defined, the mode of this expression may not be same
  830.    as DECL_MODE.  In that case, DECL_MODE contains the mode corresponding
  831.    to the variable's data type, while the mode
  832.    of DECL_RTL is the mode actually used to contain the data.  */
  833. #define DECL_RTL(NODE) ((NODE)->decl.rtl)
  834. /* For PARM_DECL, holds an RTL for the stack slot or register
  835.    where the data was actually passed.  */
  836. #define DECL_INCOMING_RTL(NODE) ((NODE)->decl.saved_insns.r)
  837. /* For FUNCTION_DECL, if it is inline, holds the saved insn chain.  */
  838. #define DECL_SAVED_INSNS(NODE) ((NODE)->decl.saved_insns.r)
  839. /* For FUNCTION_DECL, if it is inline,
  840.    holds the size of the stack frame, as an integer.  */
  841. #define DECL_FRAME_SIZE(NODE) ((NODE)->decl.frame_size.i)
  842. /* For FUNCTION_DECL, if it is built-in,
  843.    this identifies which built-in operation it is.  */
  844. #define DECL_FUNCTION_CODE(NODE) ((NODE)->decl.frame_size.f)
  845. #define DECL_SET_FUNCTION_CODE(NODE,VAL) ((NODE)->decl.frame_size.f = (VAL))
  846. /* For a FIELD_DECL, holds the size of the member as an integer.  */
  847. #define DECL_FIELD_SIZE(NODE) ((NODE)->decl.saved_insns.i)
  848.  
  849. /* The DECL_VINDEX is used for FUNCTION_DECLS in two different ways.
  850.    Before the struct containing the FUNCTION_DECL is laid out,
  851.    DECL_VINDEX may point to a FUNCTION_DECL in a base class which
  852.    is the FUNCTION_DECL which this FUNCTION_DECL will replace as a virtual
  853.    function.  When the class is laid out, this pointer is changed
  854.    to an INTEGER_CST node which is suitable for use as an index
  855.    into the virtual function table.  */
  856. #define DECL_VINDEX(NODE) ((NODE)->decl.vindex)
  857. /* For FIELD_DECLS, DECL_FCONTEXT is the *first* baseclass in
  858.    which this FIELD_DECL is defined.  This information is needed when
  859.    writing debugging information about vfield and vbase decls for C++.  */
  860. #define DECL_FCONTEXT(NODE) ((NODE)->decl.vindex)
  861.  
  862. /* Every ..._DECL node gets a unique number.  */
  863. #define DECL_UID(NODE) ((NODE)->decl.uid)
  864.  
  865. /* For any sort of a ..._DECL node, this points to the original (abstract)
  866.    decl node which this decl is an instance of, or else it is NULL indicating
  867.    that this decl is not an instance of some other decl.  */
  868. #define DECL_ABSTRACT_ORIGIN(NODE) ((NODE)->decl.abstract_origin)
  869.  
  870. /* Nonzero for any sort of ..._DECL node means this decl node represents
  871.    an inline instance of some original (abstract) decl from an inline function;
  872.    suppress any warnings about shadowing some other variable.  */
  873. #define DECL_FROM_INLINE(NODE) (DECL_ABSTRACT_ORIGIN (NODE) != (tree) 0)
  874.  
  875. /* Nonzero if a _DECL means that the name of this decl should be ignored
  876.    for symbolic debug purposes.  */
  877. #define DECL_IGNORED_P(NODE) ((NODE)->decl.ignored_flag)
  878.  
  879. /* Nonzero for a given ..._DECL node means that this node represents an
  880.    "abstract instance" of the given declaration (e.g. in the original
  881.    declaration of an inline function).  When generating symbolic debugging
  882.    information, we mustn't try to generate any address information for nodes
  883.    marked as "abstract instances" because we don't actually generate
  884.    any code or allocate any data space for such instances.  */
  885. #define DECL_ABSTRACT(NODE) ((NODE)->decl.abstract_flag)
  886.  
  887. /* Nonzero if a _DECL means that no warnings should be generated just
  888.    because this decl is unused.  */
  889. #define DECL_IN_SYSTEM_HEADER(NODE) ((NODE)->decl.in_system_header_flag)
  890.  
  891. /* Nonzero for a given ..._DECL node means that this node should be
  892.    put in .common, if possible.  If a DECL_INITIAL is given, and it
  893.    is not error_mark_node, then the decl cannot be put in .common.  */
  894. #define DECL_COMMON(NODE) ((NODE)->decl.common_flag)
  895.  
  896. /* Language-specific decl information.  */
  897. #define DECL_LANG_SPECIFIC(NODE) ((NODE)->decl.lang_specific)
  898.  
  899. /* In a VAR_DECL or FUNCTION_DECL,
  900.    nonzero means external reference:
  901.    do not allocate storage, and refer to a definition elsewhere.  */
  902. #define DECL_EXTERNAL(NODE) ((NODE)->decl.external_flag)
  903.  
  904. #if defined (NEXT_PDO)  && defined (_WIN32)
  905. /* In a FUNCTION_DECL, nonzero means that it uses the __stdcall 
  906.    calling convention as defined by Microsoft.  The callee (not 
  907.    the caller) pops the arguments off the stack. */
  908. #define DECL_STDCALL(NODE) ((NODE)->decl.stdcall_flag)
  909.  
  910. /* When something is declared using __declspec(dllimport) this
  911.    flag will be set to 1. */
  912. #define DECL_DLLIMPORT(NODE) ((NODE)->decl.dllimport_flag)
  913. #endif /* defined (NEXT_PDO)  && defined (_WIN32) */
  914.  
  915. /* In a TYPE_DECL
  916.    nonzero means the detail info about this type is not dumped into stabs.
  917.    Instead it will generate cross reference ('x') of names. 
  918.    This uses the same flag as DECL_EXTERNAL. */
  919. #define TYPE_DECL_SUPPRESS_DEBUG(NODE) ((NODE)->decl.external_flag)
  920.    
  921.  
  922. /* In VAR_DECL and PARM_DECL nodes, nonzero means declared `register'.
  923.    In LABEL_DECL nodes, nonzero means that an error message about
  924.    jumping into such a binding contour has been printed for this label.  */
  925. #define DECL_REGISTER(NODE) ((NODE)->decl.regdecl_flag)
  926. /* In a FIELD_DECL, indicates this field should be bit-packed.  */
  927. #define DECL_PACKED(NODE) ((NODE)->decl.regdecl_flag)
  928.  
  929. /* Nonzero in a ..._DECL means this variable is ref'd from a nested function.
  930.    For VAR_DECL nodes, PARM_DECL nodes, and FUNCTION_DECL nodes.
  931.  
  932.    For LABEL_DECL nodes, nonzero if nonlocal gotos to the label are permitted.
  933.  
  934.    Also set in some languages for variables, etc., outside the normal
  935.    lexical scope, such as class instance variables.  */
  936. #define DECL_NONLOCAL(NODE) ((NODE)->decl.nonlocal_flag)
  937.  
  938. /* Nonzero in a FUNCTION_DECL means this function can be substituted
  939.    where it is called.  */
  940. #define DECL_INLINE(NODE) ((NODE)->decl.inline_flag)
  941.  
  942. /* Nonzero in a FUNCTION_DECL means this is a built-in function
  943.    that is not specified by ansi C and that users are supposed to be allowed
  944.    to redefine for any purpose whatever.  */
  945. #define DECL_BUILT_IN_NONANSI(NODE) ((NODE)->common.unsigned_flag)
  946.  
  947. /* Nonzero in a FIELD_DECL means it is a bit field, and must be accessed
  948.    specially.  */
  949. #define DECL_BIT_FIELD(NODE) ((NODE)->decl.bit_field_flag)
  950. /* In a LABEL_DECL, nonzero means label was defined inside a binding
  951.    contour that restored a stack level and which is now exited.  */
  952. #define DECL_TOO_LATE(NODE) ((NODE)->decl.bit_field_flag)
  953. /* In a FUNCTION_DECL, nonzero means a built in function.  */
  954. #define DECL_BUILT_IN(NODE) ((NODE)->decl.bit_field_flag)
  955. /* In a VAR_DECL that's static,
  956.    nonzero if the space is in the text section.  */
  957. #define DECL_IN_TEXT_SECTION(NODE) ((NODE)->decl.bit_field_flag)
  958.  
  959. /* Used in VAR_DECLs to indicate that the variable is a vtable.
  960.    Used in FIELD_DECLs for vtable pointers.
  961.    Used in FUNCTION_DECLs to indicate that the function is virtual.  */
  962. #define DECL_VIRTUAL_P(NODE) ((NODE)->decl.virtual_flag)
  963.  
  964. /* Used to indicate that the linkage status of this DECL is not yet known,
  965.    so it should not be output now.  */
  966. #define DECL_DEFER_OUTPUT(NODE) ((NODE)->decl.defer_output)
  967.  
  968. /* Used in PARM_DECLs whose type are unions to indicate that the
  969.    argument should be passed in the same way that the first union
  970.    alternative would be passed.  */
  971. #define DECL_TRANSPARENT_UNION(NODE) ((NODE)->decl.transparent_union)
  972.  
  973. /* Used in FUNCTION_DECLs to indicate that they should be run automatically
  974.    at the beginning or end of execution.  */
  975. #define DECL_STATIC_CONSTRUCTOR(NODE) ((NODE)->decl.static_ctor_flag)
  976. #define DECL_STATIC_DESTRUCTOR(NODE) ((NODE)->decl.static_dtor_flag)
  977.  
  978. /* Used to indicate that this DECL represents a compiler-generated entity.  */
  979. #define DECL_ARTIFICIAL(NODE) ((NODE)->decl.artificial_flag)
  980.  
  981. /* Used to indicate that this DECL has weak linkage.  */
  982. #define DECL_WEAK(NODE) ((NODE)->decl.weak_flag)
  983.  
  984. #ifdef NEXT_SEMANTICS
  985. /* This specifies for a VAR_DECL or FIELD_DECL, if it is a offset type */
  986. #define DECL_RELATIVE(NODE) ((NODE)->decl.self_relative_flag)
  987. #define DECL_PRIVATE_EXTERN(NODE) ((NODE)->decl.private_extern_flag)
  988. #endif
  989.  
  990. /* Additional flags for language-specific uses.  */
  991. #define DECL_LANG_FLAG_0(NODE) ((NODE)->decl.lang_flag_0)
  992. #define DECL_LANG_FLAG_1(NODE) ((NODE)->decl.lang_flag_1)
  993. #define DECL_LANG_FLAG_2(NODE) ((NODE)->decl.lang_flag_2)
  994. #define DECL_LANG_FLAG_3(NODE) ((NODE)->decl.lang_flag_3)
  995. #define DECL_LANG_FLAG_4(NODE) ((NODE)->decl.lang_flag_4)
  996. #define DECL_LANG_FLAG_5(NODE) ((NODE)->decl.lang_flag_5)
  997. #define DECL_LANG_FLAG_6(NODE) ((NODE)->decl.lang_flag_6)
  998. #define DECL_LANG_FLAG_7(NODE) ((NODE)->decl.lang_flag_7)
  999.  
  1000. struct tree_decl
  1001. {
  1002.   char common[sizeof (struct tree_common)];
  1003.   char *filename;
  1004.   int linenum;
  1005.   union tree_node *size;
  1006.   unsigned int uid;
  1007. #ifdef ONLY_INT_FIELDS
  1008.   int mode : 8;
  1009. #else
  1010.   enum machine_mode mode : 8;
  1011. #endif
  1012.  
  1013.   unsigned external_flag : 1;
  1014.   unsigned nonlocal_flag : 1;
  1015.   unsigned regdecl_flag : 1;
  1016.   unsigned inline_flag : 1;
  1017.   unsigned bit_field_flag : 1;
  1018.   unsigned virtual_flag : 1;
  1019.   unsigned ignored_flag : 1;
  1020.   unsigned abstract_flag : 1;
  1021.  
  1022.   unsigned in_system_header_flag : 1;
  1023.   unsigned common_flag : 1;
  1024.   unsigned defer_output : 1;
  1025.   unsigned transparent_union : 1;
  1026.   unsigned static_ctor_flag : 1;
  1027.   unsigned static_dtor_flag : 1;
  1028.   unsigned artificial_flag : 1;
  1029.   unsigned weak_flag : 1;
  1030.   /* room for no more */
  1031.  
  1032. #ifdef NEXT_SEMANTICS
  1033.   unsigned self_relative_flag : 1;
  1034.   unsigned private_extern_flag : 1;
  1035.   /* room for six more */
  1036. #endif
  1037. #if defined (NEXT_PDO) && defined (_WIN32)
  1038.   /* This is set when the function declaration is for a function 
  1039.      that uses the __stdcall type as defined by Microsoft. */
  1040.   unsigned stdcall_flag : 1;
  1041.   /* This is set when something is declared __declspec(dllimport) */
  1042.   unsigned dllimport_flag : 1;
  1043.   /* room for four more */
  1044. #endif /* defined (NEXT_PDO) && defined (_WIN32) */
  1045.  
  1046.  
  1047.   unsigned lang_flag_0 : 1;
  1048.   unsigned lang_flag_1 : 1;
  1049.   unsigned lang_flag_2 : 1;
  1050.   unsigned lang_flag_3 : 1;
  1051.   unsigned lang_flag_4 : 1;
  1052.   unsigned lang_flag_5 : 1;
  1053.   unsigned lang_flag_6 : 1;
  1054.   unsigned lang_flag_7 : 1;
  1055.  
  1056.   union tree_node *name;
  1057.   union tree_node *context;
  1058.   union tree_node *arguments;
  1059.   union tree_node *result;
  1060.   union tree_node *initial;
  1061.   union tree_node *abstract_origin;
  1062.   union tree_node *assembler_name;
  1063.   union tree_node *section_name;
  1064.   union tree_node *machine_attributes;
  1065.   struct rtx_def *rtl;    /* acts as link to register transfer language
  1066.                    (rtl) info */
  1067.   /* For a FUNCTION_DECL, if inline, this is the size of frame needed.
  1068.      If built-in, this is the code for which built-in function.
  1069.      For other kinds of decls, this is DECL_ALIGN.  */
  1070.   union {
  1071.     int i;
  1072.     unsigned int u;
  1073.     enum built_in_function f;
  1074.   } frame_size;
  1075.   /* For FUNCTION_DECLs: points to insn that constitutes its definition
  1076.      on the permanent obstack.  For any other kind of decl, this is the
  1077.      alignment.  */
  1078.   union {
  1079.     struct rtx_def *r;
  1080.     int i;
  1081.   } saved_insns;
  1082.   union tree_node *vindex;
  1083.   /* Points to a structure whose details depend on the language in use.  */
  1084.   struct lang_decl *lang_specific;
  1085. };
  1086.  
  1087. /* Define the overall contents of a tree node.
  1088.    It may be any of the structures declared above
  1089.    for various types of node.  */
  1090.  
  1091. union tree_node
  1092. {
  1093.   struct tree_common common;
  1094.   struct tree_int_cst int_cst;
  1095.   struct tree_real_cst real_cst;
  1096.   struct tree_string string;
  1097.   struct tree_complex complex;
  1098.   struct tree_identifier identifier;
  1099.   struct tree_decl decl;
  1100.   struct tree_type type;
  1101.   struct tree_list list;
  1102.   struct tree_vec vec;
  1103.   struct tree_exp exp;
  1104.   struct tree_block block;
  1105.  };
  1106.  
  1107. /* Add prototype support.  */
  1108. #ifndef PROTO
  1109. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  1110. #define PROTO(ARGS) ARGS
  1111. #else
  1112. #define PROTO(ARGS) ()
  1113. #endif
  1114. #endif
  1115.  
  1116. #ifndef VPROTO
  1117. #ifdef __STDC__
  1118. #define PVPROTO(ARGS)        ARGS
  1119. #define VPROTO(ARGS)            ARGS
  1120. #define VA_START(va_list,var)  va_start(va_list,var)
  1121. #else
  1122. #define PVPROTO(ARGS)        ()
  1123. #define VPROTO(ARGS)            (va_alist) va_dcl
  1124. #define VA_START(va_list,var)  va_start(va_list)
  1125. #endif
  1126. #endif
  1127.  
  1128. #ifndef STDIO_PROTO
  1129. #ifdef BUFSIZ
  1130. #define STDIO_PROTO(ARGS) PROTO(ARGS)
  1131. #else
  1132. #define STDIO_PROTO(ARGS) ()
  1133. #endif
  1134. #endif
  1135.  
  1136. #define NULL_TREE (tree) NULL
  1137.  
  1138. /* Define a generic NULL if one hasn't already been defined.  */
  1139.  
  1140. #ifndef NULL
  1141. #define NULL 0
  1142. #endif
  1143.  
  1144. #ifndef GENERIC_PTR
  1145. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  1146. #define GENERIC_PTR void *
  1147. #else
  1148. #define GENERIC_PTR char *
  1149. #endif
  1150. #endif
  1151.  
  1152. #ifndef NULL_PTR
  1153. #define NULL_PTR ((GENERIC_PTR)0)
  1154. #endif
  1155.  
  1156. /* The following functions accept a wide integer argument.  Rather than
  1157.    having to cast on every function call, we use a macro instead, that is
  1158.    defined here and in rtl.h.  */
  1159.  
  1160. #ifndef exact_log2
  1161. #define exact_log2(N) exact_log2_wide ((HOST_WIDE_INT) (N))
  1162. #define floor_log2(N) floor_log2_wide ((HOST_WIDE_INT) (N))
  1163. #endif
  1164.  
  1165. #if 0
  1166. /* At present, don't prototype xrealloc, since all of the callers don't
  1167.    cast their pointers to char *, and all of the xrealloc's don't use
  1168.    void * yet.  */
  1169. extern char *xmalloc            PROTO((size_t));
  1170. extern char *xrealloc            PROTO((void *, size_t));
  1171. #else
  1172. extern char *xmalloc ();
  1173. extern char *xrealloc ();
  1174. #endif
  1175.  
  1176. extern char *oballoc            PROTO((int));
  1177. extern char *permalloc            PROTO((int));
  1178. extern char *savealloc            PROTO((int));
  1179. extern void free            PROTO((void *));
  1180.  
  1181. /* Lowest level primitive for allocating a node.
  1182.    The TREE_CODE is the only argument.  Contents are initialized
  1183.    to zero except for a few of the common fields.  */
  1184.  
  1185. extern tree make_node            PROTO((enum tree_code));
  1186.  
  1187. /* Make a copy of a node, with all the same contents except
  1188.    for TREE_PERMANENT.  (The copy is permanent
  1189.    iff nodes being made now are permanent.)  */
  1190.  
  1191. extern tree copy_node            PROTO((tree));
  1192.  
  1193. /* Make a copy of a chain of TREE_LIST nodes.  */
  1194.  
  1195. extern tree copy_list            PROTO((tree));
  1196.  
  1197. /* Make a TREE_VEC.  */
  1198.  
  1199. extern tree make_tree_vec        PROTO((int));
  1200.  
  1201. /* Return the (unique) IDENTIFIER_NODE node for a given name.
  1202.    The name is supplied as a char *.  */
  1203.  
  1204. extern tree get_identifier        PROTO((char *));
  1205.  
  1206. /* Construct various types of nodes.  */
  1207.  
  1208. #define build_int_2(LO,HI)  \
  1209.   build_int_2_wide ((HOST_WIDE_INT) (LO), (HOST_WIDE_INT) (HI))
  1210.  
  1211. extern tree build            PVPROTO((enum tree_code, tree, ...));
  1212. extern tree build_nt            PVPROTO((enum tree_code, ...));
  1213. extern tree build_parse_node        PVPROTO((enum tree_code, ...));
  1214.  
  1215. extern tree build_int_2_wide        PROTO((HOST_WIDE_INT, HOST_WIDE_INT));
  1216. extern tree build_real            PROTO((tree, REAL_VALUE_TYPE));
  1217. extern tree build_real_from_int_cst     PROTO((tree, tree));
  1218. extern tree build_complex        PROTO((tree, tree));
  1219. extern tree build_string        PROTO((int, char *));
  1220. extern tree build1            PROTO((enum tree_code, tree, tree));
  1221. extern tree build_tree_list        PROTO((tree, tree));
  1222. extern tree build_decl_list        PROTO((tree, tree));
  1223. extern tree build_decl            PROTO((enum tree_code, tree, tree));
  1224. extern tree build_block            PROTO((tree, tree, tree, tree, tree));
  1225.  
  1226. /* Construct various nodes representing data types.  */
  1227.  
  1228. extern tree make_signed_type        PROTO((int));
  1229. extern tree make_unsigned_type        PROTO((int));
  1230. extern tree signed_or_unsigned_type     PROTO((int, tree));
  1231. extern void fixup_unsigned_type        PROTO((tree));
  1232. extern tree build_pointer_type        PROTO((tree));
  1233. extern tree build_reference_type     PROTO((tree));
  1234. extern tree build_index_type        PROTO((tree));
  1235. extern tree build_index_2_type        PROTO((tree, tree));
  1236. extern tree build_array_type        PROTO((tree, tree));
  1237. extern tree build_function_type        PROTO((tree, tree));
  1238. extern tree build_method_type        PROTO((tree, tree));
  1239. extern tree build_offset_type        PROTO((tree, tree));
  1240. extern tree build_complex_type        PROTO((tree));
  1241. extern tree array_type_nelts        PROTO((tree));
  1242.  
  1243. extern tree value_member        PROTO((tree, tree));
  1244. extern tree purpose_member        PROTO((tree, tree));
  1245. extern tree binfo_member        PROTO((tree, tree));
  1246. extern int attribute_hash_list        PROTO((tree));
  1247. extern int attribute_list_equal        PROTO((tree, tree));
  1248. extern int attribute_list_contained    PROTO((tree, tree));
  1249. extern int tree_int_cst_equal        PROTO((tree, tree));
  1250. extern int tree_int_cst_lt        PROTO((tree, tree));
  1251. extern int tree_int_cst_sgn        PROTO((tree));
  1252. extern int index_type_equal        PROTO((tree, tree));
  1253.  
  1254. /* From expmed.c.  Since rtl.h is included after tree.h, we can't
  1255.    put the prototype here.  Rtl.h does declare the prototype if
  1256.    tree.h had been included.  */
  1257.  
  1258. extern tree make_tree ();
  1259.  
  1260. /* Return a type like TTYPE except that its TYPE_ATTRIBUTES
  1261.    is ATTRIBUTE.
  1262.  
  1263.    Such modified types already made are recorded so that duplicates
  1264.    are not made. */
  1265.  
  1266. extern tree build_type_attribute_variant PROTO((tree, tree));
  1267. extern tree build_decl_attribute_variant PROTO((tree, tree));
  1268.  
  1269. /* Return 1 if an attribute and its arguments are valid for a decl or type.  */
  1270.  
  1271. int valid_machine_attribute        PROTO((tree, tree, tree, tree));
  1272.  
  1273. /* Given a tree node and a string, return non-zero if the tree node is
  1274.    a valid attribute name for the string.  */
  1275.  
  1276. int is_attribute_p            PROTO((char *, tree));
  1277.  
  1278. /* Given an attribute name and a list of attributes, return the list element
  1279.    of the attribute or NULL_TREE if not found.  */
  1280.  
  1281. tree lookup_attribute            PROTO((char *, tree));
  1282.  
  1283. /* Given a type node TYPE, and CONSTP and VOLATILEP, return a type
  1284.    for the same kind of data as TYPE describes.
  1285.    Variants point to the "main variant" (which has neither CONST nor VOLATILE)
  1286.    via TYPE_MAIN_VARIANT, and it points to a chain of other variants
  1287.    so that duplicate variants are never made.
  1288.    Only main variants should ever appear as types of expressions.  */
  1289.  
  1290. extern tree build_type_variant        PROTO((tree, int, int));
  1291.  
  1292. /* Make a copy of a type node.  */
  1293.  
  1294. extern tree build_type_copy        PROTO((tree));
  1295.  
  1296. /* Given a ..._TYPE node, calculate the TYPE_SIZE, TYPE_SIZE_UNIT,
  1297.    TYPE_ALIGN and TYPE_MODE fields.
  1298.    If called more than once on one node, does nothing except
  1299.    for the first time.  */
  1300.  
  1301. extern void layout_type            PROTO((tree));
  1302.  
  1303. /* Given a hashcode and a ..._TYPE node (for which the hashcode was made),
  1304.    return a canonicalized ..._TYPE node, so that duplicates are not made.
  1305.    How the hash code is computed is up to the caller, as long as any two
  1306.    callers that could hash identical-looking type nodes agree.  */
  1307.  
  1308. extern tree type_hash_canon        PROTO((int, tree));
  1309.  
  1310. /* Given a VAR_DECL, PARM_DECL, RESULT_DECL or FIELD_DECL node,
  1311.    calculates the DECL_SIZE, DECL_SIZE_UNIT, DECL_ALIGN and DECL_MODE
  1312.    fields.  Call this only once for any given decl node.
  1313.  
  1314.    Second argument is the boundary that this field can be assumed to
  1315.    be starting at (in bits).  Zero means it can be assumed aligned
  1316.    on any boundary that may be needed.  */
  1317.  
  1318. extern void layout_decl            PROTO((tree, unsigned));
  1319.  
  1320. /* Return an expr equal to X but certainly not valid as an lvalue.  */
  1321.  
  1322. extern tree non_lvalue            PROTO((tree));
  1323. extern tree pedantic_non_lvalue        PROTO((tree));
  1324.  
  1325. extern tree convert            PROTO((tree, tree));
  1326. extern tree size_in_bytes        PROTO((tree));
  1327. extern int int_size_in_bytes        PROTO((tree));
  1328. extern tree size_binop            PROTO((enum tree_code, tree, tree));
  1329. extern tree size_int            PROTO((unsigned HOST_WIDE_INT));
  1330. extern tree round_up            PROTO((tree, int));
  1331. extern tree get_pending_sizes        PROTO((void));
  1332. extern void put_pending_sizes        PROTO((tree));
  1333.  
  1334. /* Type for sizes of data-type.  */
  1335.  
  1336. extern tree sizetype;
  1337.  
  1338. /* If nonzero, an upper limit on alignment of structure fields, in bits. */
  1339. extern int maximum_field_alignment;
  1340.  
  1341. /* If non-zero, the alignment of a bitstring or (power-)set value, in bits. */
  1342. extern int set_alignment;
  1343.  
  1344. /* Concatenate two lists (chains of TREE_LIST nodes) X and Y
  1345.    by making the last node in X point to Y.
  1346.    Returns X, except if X is 0 returns Y.  */
  1347.  
  1348. extern tree chainon            PROTO((tree, tree));
  1349.  
  1350. /* Make a new TREE_LIST node from specified PURPOSE, VALUE and CHAIN.  */
  1351.  
  1352. extern tree tree_cons            PROTO((tree, tree, tree));
  1353. extern tree perm_tree_cons        PROTO((tree, tree, tree));
  1354. extern tree temp_tree_cons        PROTO((tree, tree, tree));
  1355. extern tree saveable_tree_cons        PROTO((tree, tree, tree));
  1356. extern tree decl_tree_cons        PROTO((tree, tree, tree));
  1357.  
  1358. /* Return the last tree node in a chain.  */
  1359.  
  1360. extern tree tree_last            PROTO((tree));
  1361.  
  1362. /* Reverse the order of elements in a chain, and return the new head.  */
  1363.  
  1364. extern tree nreverse            PROTO((tree));
  1365.  
  1366. /* Returns the length of a chain of nodes
  1367.    (number of chain pointers to follow before reaching a null pointer).  */
  1368.  
  1369. extern int list_length            PROTO((tree));
  1370.  
  1371. /* integer_zerop (tree x) is nonzero if X is an integer constant of value 0 */
  1372.  
  1373. extern int integer_zerop        PROTO((tree));
  1374.  
  1375. /* integer_onep (tree x) is nonzero if X is an integer constant of value 1 */
  1376.  
  1377. extern int integer_onep            PROTO((tree));
  1378.  
  1379. /* integer_all_onesp (tree x) is nonzero if X is an integer constant
  1380.    all of whose significant bits are 1.  */
  1381.  
  1382. extern int integer_all_onesp        PROTO((tree));
  1383.  
  1384. /* integer_pow2p (tree x) is nonzero is X is an integer constant with
  1385.    exactly one bit 1.  */
  1386.  
  1387. extern int integer_pow2p        PROTO((tree));
  1388.  
  1389. /* staticp (tree x) is nonzero if X is a reference to data allocated
  1390.    at a fixed address in memory.  */
  1391.  
  1392. extern int staticp            PROTO((tree));
  1393.  
  1394. /* Gets an error if argument X is not an lvalue.
  1395.    Also returns 1 if X is an lvalue, 0 if not.  */
  1396.  
  1397. extern int lvalue_or_else        PROTO((tree, char *));
  1398.  
  1399. /* save_expr (EXP) returns an expression equivalent to EXP
  1400.    but it can be used multiple times within context CTX
  1401.    and only evaluate EXP once.  */
  1402.  
  1403. extern tree save_expr            PROTO((tree));
  1404.  
  1405. /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
  1406.    or offset that depends on a field within a record.
  1407.  
  1408.    Note that we only allow such expressions within simple arithmetic
  1409.    or a COND_EXPR.  */
  1410.  
  1411. extern int contains_placeholder_p    PROTO((tree));
  1412.  
  1413. /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
  1414.    return a tree with all occurrences of references to F in a
  1415.    PLACEHOLDER_EXPR replaced by R.   Note that we assume here that EXP
  1416.    contains only arithmetic expressions.  */
  1417.  
  1418. extern tree substitute_in_expr        PROTO((tree, tree, tree));
  1419.  
  1420. /* Given a type T, a FIELD_DECL F, and a replacement value R,
  1421.    return a new type with all size expressions that contain F
  1422.    updated by replacing the reference to F with R.  */
  1423.  
  1424. extern tree substitute_in_type        PROTO((tree, tree, tree));
  1425.  
  1426. /* variable_size (EXP) is like save_expr (EXP) except that it
  1427.    is for the special case of something that is part of a
  1428.    variable size for a data type.  It makes special arrangements
  1429.    to compute the value at the right time when the data type
  1430.    belongs to a function parameter.  */
  1431.  
  1432. extern tree variable_size        PROTO((tree));
  1433.  
  1434. /* stabilize_reference (EXP) returns an reference equivalent to EXP
  1435.    but it can be used multiple times
  1436.    and only evaluate the subexpressions once.  */
  1437.  
  1438. extern tree stabilize_reference        PROTO((tree));
  1439.  
  1440. /* Subroutine of stabilize_reference; this is called for subtrees of
  1441.    references.  Any expression with side-effects must be put in a SAVE_EXPR
  1442.    to ensure that it is only evaluated once.  */
  1443.  
  1444. extern tree stabilize_reference_1    PROTO((tree));
  1445.  
  1446. /* Return EXP, stripped of any conversions to wider types
  1447.    in such a way that the result of converting to type FOR_TYPE
  1448.    is the same as if EXP were converted to FOR_TYPE.
  1449.    If FOR_TYPE is 0, it signifies EXP's type.  */
  1450.  
  1451. extern tree get_unwidened        PROTO((tree, tree));
  1452.  
  1453. /* Return OP or a simpler expression for a narrower value
  1454.    which can be sign-extended or zero-extended to give back OP.
  1455.    Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
  1456.    or 0 if the value should be sign-extended.  */
  1457.  
  1458. extern tree get_narrower        PROTO((tree, int *));
  1459.  
  1460. /* Given MODE and UNSIGNEDP, return a suitable type-tree
  1461.    with that mode.
  1462.    The definition of this resides in language-specific code
  1463.    as the repertoire of available types may vary.  */
  1464.  
  1465. extern tree type_for_mode        PROTO((enum machine_mode, int));
  1466.  
  1467. /* Given PRECISION and UNSIGNEDP, return a suitable type-tree
  1468.    for an integer type with at least that precision.
  1469.    The definition of this resides in language-specific code
  1470.    as the repertoire of available types may vary.  */
  1471.  
  1472. extern tree type_for_size        PROTO((unsigned, int));
  1473.  
  1474. /* Given an integer type T, return a type like T but unsigned.
  1475.    If T is unsigned, the value is T.
  1476.    The definition of this resides in language-specific code
  1477.    as the repertoire of available types may vary.  */
  1478.  
  1479. extern tree unsigned_type        PROTO((tree));
  1480.  
  1481. /* Given an integer type T, return a type like T but signed.
  1482.    If T is signed, the value is T.
  1483.    The definition of this resides in language-specific code
  1484.    as the repertoire of available types may vary.  */
  1485.  
  1486. extern tree signed_type            PROTO((tree));
  1487.  
  1488. /* This function must be defined in the language-specific files.
  1489.    expand_expr calls it to build the cleanup-expression for a TARGET_EXPR.
  1490.    This is defined in a language-specific file.  */
  1491.  
  1492. extern tree maybe_build_cleanup        PROTO((tree));
  1493.  
  1494. /* Given an expression EXP that may be a COMPONENT_REF or an ARRAY_REF,
  1495.    look for nested component-refs or array-refs at constant positions
  1496.    and find the ultimate containing object, which is returned.  */
  1497.  
  1498. extern tree get_inner_reference        PROTO((tree, int *, int *, tree *, enum machine_mode *, int *, int *));
  1499.  
  1500. /* Return the FUNCTION_DECL which provides this _DECL with its context,
  1501.    or zero if none.  */
  1502. extern tree decl_function_context     PROTO((tree));
  1503.  
  1504. /* Return the RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE which provides
  1505.    this _DECL with its context, or zero if none.  */
  1506. extern tree decl_type_context        PROTO((tree));
  1507.  
  1508. /* Given the FUNCTION_DECL for the current function,
  1509.    return zero if it is ok for this function to be inline.
  1510.    Otherwise return a warning message with a single %s
  1511.    for the function's name.  */
  1512.  
  1513. extern char *function_cannot_inline_p     PROTO((tree));
  1514.  
  1515. /* Return 1 if EXPR is the real constant zero.  */
  1516. extern int real_zerop PROTO((tree));
  1517.  
  1518. /* Declare commonly used variables for tree structure.  */
  1519.  
  1520. /* An integer constant with value 0 */
  1521. extern tree integer_zero_node;
  1522.  
  1523. /* An integer constant with value 1 */
  1524. extern tree integer_one_node;
  1525.  
  1526. /* An integer constant with value 0 whose type is sizetype.  */
  1527. extern tree size_zero_node;
  1528.  
  1529. /* An integer constant with value 1 whose type is sizetype.  */
  1530. extern tree size_one_node;
  1531.  
  1532. /* A constant of type pointer-to-int and value 0 */
  1533. extern tree null_pointer_node;
  1534.  
  1535. /* A node of type ERROR_MARK.  */
  1536. extern tree error_mark_node;
  1537.  
  1538. /* The type node for the void type.  */
  1539. extern tree void_type_node;
  1540.  
  1541. /* The type node for the ordinary (signed) integer type.  */
  1542. extern tree integer_type_node;
  1543.  
  1544. /* The type node for the unsigned integer type.  */
  1545. extern tree unsigned_type_node;
  1546.  
  1547. /* The type node for the ordinary character type.  */
  1548. extern tree char_type_node;
  1549.  
  1550. /* Points to the name of the input file from which the current input
  1551.    being parsed originally came (before it went into cpp).  */
  1552. extern char *input_filename;
  1553.  
  1554. /* Current line number in input file.  */
  1555. extern int lineno;
  1556.  
  1557. /* Nonzero for -pedantic switch: warn about anything
  1558.    that standard C forbids.  */
  1559. extern int pedantic;
  1560.  
  1561. /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
  1562.    Zero means allow extended lvalues.  */
  1563.  
  1564. extern int pedantic_lvalues;
  1565.  
  1566. /* Nonzero means can safely call expand_expr now;
  1567.    otherwise layout_type puts variable sizes onto `pending_sizes' instead.  */
  1568.  
  1569. extern int immediate_size_expand;
  1570.  
  1571. /* Points to the FUNCTION_DECL of the function whose body we are reading. */
  1572.  
  1573. extern tree current_function_decl;
  1574.  
  1575. /* Nonzero if function being compiled can call setjmp.  */
  1576.  
  1577. extern int current_function_calls_setjmp;
  1578.  
  1579. /* Nonzero if function being compiled can call longjmp.  */
  1580.  
  1581. extern int current_function_calls_longjmp;
  1582.  
  1583. /* Nonzero means all ..._TYPE nodes should be allocated permanently.  */
  1584.  
  1585. extern int all_types_permanent;
  1586.  
  1587. /* Pointer to function to compute the name to use to print a declaration.  */
  1588.  
  1589. extern char *(*decl_printable_name) ();
  1590.  
  1591. /* Pointer to function to finish handling an incomplete decl at the
  1592.    end of compilation.  */
  1593.  
  1594. extern void (*incomplete_decl_finalize_hook) ();
  1595.  
  1596. /* In tree.c */
  1597. extern char *perm_calloc            PROTO((int, long));
  1598. extern tree get_set_constructor_bits        PROTO((tree, char*, int));
  1599. extern tree get_set_constructor_bytes        PROTO((tree,
  1600.                                unsigned char*, int));
  1601.  
  1602. /* In stmt.c */
  1603.  
  1604. extern void expand_fixups            PROTO((struct rtx_def *));
  1605. extern tree expand_start_stmt_expr        PROTO((void));
  1606. extern tree expand_end_stmt_expr        PROTO((tree));
  1607. extern void expand_expr_stmt            PROTO((tree));
  1608. extern int warn_if_unused_value            PROTO((tree));
  1609. extern void expand_decl_init            PROTO((tree));
  1610. extern void clear_last_expr            PROTO((void));
  1611. extern void expand_label            PROTO((tree));
  1612. extern void expand_goto                PROTO((tree));
  1613. extern void expand_asm                PROTO((tree));
  1614. extern void expand_start_cond            PROTO((tree, int));
  1615. extern void expand_end_cond            PROTO((void));
  1616. extern void expand_start_else            PROTO((void));
  1617. extern void expand_start_elseif            PROTO((tree));
  1618. extern struct nesting *expand_start_loop     PROTO((int));
  1619. extern struct nesting *expand_start_loop_continue_elsewhere     PROTO((int));
  1620. extern void expand_loop_continue_here        PROTO((void));
  1621. extern void expand_end_loop            PROTO((void));
  1622. extern int expand_continue_loop            PROTO((struct nesting *));
  1623. extern int expand_exit_loop            PROTO((struct nesting *));
  1624. extern int expand_exit_loop_if_false        PROTO((struct nesting *,
  1625.                                tree));
  1626. extern int expand_exit_something        PROTO((void));
  1627.  
  1628. extern void expand_null_return            PROTO((void));
  1629. extern void expand_return            PROTO((tree));
  1630. extern void expand_start_bindings        PROTO((int));
  1631. extern void expand_end_bindings            PROTO((tree, int, int));
  1632. extern tree last_cleanup_this_contour        PROTO((void));
  1633. extern void expand_start_case            PROTO((int, tree, tree,
  1634.                                char *));
  1635. extern void expand_end_case            PROTO((tree));
  1636. extern int pushcase                PROTO((tree,
  1637.                                tree (*) (tree, tree),
  1638.                                tree, tree *));
  1639. extern int pushcase_range            PROTO((tree, tree,
  1640.                                tree (*) (tree, tree),
  1641.                                tree, tree *));
  1642.  
  1643. /* In fold-const.c */
  1644.  
  1645. /* Fold constants as much as possible in an expression.
  1646.    Returns the simplified expression.
  1647.    Acts only on the top level of the expression;
  1648.    if the argument itself cannot be simplified, its
  1649.    subexpressions are not changed.  */
  1650.  
  1651. extern tree fold        PROTO((tree));
  1652.  
  1653. extern int force_fit_type    PROTO((tree, int));
  1654. extern int add_double        PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1655.                        HOST_WIDE_INT, HOST_WIDE_INT,
  1656.                        HOST_WIDE_INT *, HOST_WIDE_INT *));
  1657. extern int neg_double        PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1658.                        HOST_WIDE_INT *, HOST_WIDE_INT *));
  1659. extern int mul_double        PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1660.                        HOST_WIDE_INT, HOST_WIDE_INT,
  1661.                        HOST_WIDE_INT *, HOST_WIDE_INT *));
  1662. extern void lshift_double    PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1663.                        HOST_WIDE_INT, int, HOST_WIDE_INT *,
  1664.                        HOST_WIDE_INT *, int));
  1665. extern void rshift_double    PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1666.                        HOST_WIDE_INT, int,
  1667.                        HOST_WIDE_INT *, HOST_WIDE_INT *, int));
  1668. extern void lrotate_double    PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1669.                        HOST_WIDE_INT, int, HOST_WIDE_INT *,
  1670.                        HOST_WIDE_INT *));
  1671. extern void rrotate_double    PROTO((HOST_WIDE_INT, HOST_WIDE_INT,
  1672.                        HOST_WIDE_INT, int, HOST_WIDE_INT *,
  1673.                        HOST_WIDE_INT *));
  1674. extern int operand_equal_p    PROTO((tree, tree, int));
  1675. extern tree invert_truthvalue    PROTO((tree));
  1676.  
  1677. /* The language front-end must define these functions.  */
  1678.  
  1679. /* Function of no arguments for initializing lexical scanning.  */
  1680. extern void init_lex                PROTO((void));
  1681. /* Function of no arguments for initializing the symbol table.  */
  1682. extern void init_decl_processing        PROTO((void));
  1683.  
  1684. /* Functions called with no arguments at the beginning and end or processing
  1685.    the input source file.  */
  1686. extern void lang_init                PROTO((void));
  1687. extern void lang_finish                PROTO((void));
  1688.  
  1689. /* Function to identify which front-end produced the output file. */
  1690. extern char *lang_identify            PROTO((void));
  1691.  
  1692. /* Function to replace the DECL_LANG_SPECIFIC field of a DECL with a copy.  */
  1693. extern void copy_lang_decl            PROTO((tree));
  1694.  
  1695. /* Function called with no arguments to parse and compile the input.  */
  1696. extern int yyparse                PROTO((void));
  1697. /* Function called with option as argument
  1698.    to decode options starting with -f or -W or +.
  1699.    It should return nonzero if it handles the option.  */
  1700. extern int lang_decode_option            PROTO((char *));
  1701.  
  1702. /* Functions for processing symbol declarations.  */
  1703. /* Function to enter a new lexical scope.
  1704.    Takes one argument: always zero when called from outside the front end.  */
  1705. extern void pushlevel                PROTO((int));
  1706. /* Function to exit a lexical scope.  It returns a BINDING for that scope.
  1707.    Takes three arguments:
  1708.      KEEP -- nonzero if there were declarations in this scope.
  1709.      REVERSE -- reverse the order of decls before returning them.
  1710.      FUNCTIONBODY -- nonzero if this level is the body of a function.  */
  1711. extern tree poplevel                PROTO((int, int, int));
  1712. /* Set the BLOCK node for the current scope level.  */
  1713. extern void set_block                PROTO((tree));
  1714. /* Function to add a decl to the current scope level.
  1715.    Takes one argument, a decl to add.
  1716.    Returns that decl, or, if the same symbol is already declared, may
  1717.    return a different decl for that name.  */
  1718. extern tree pushdecl                PROTO((tree));
  1719. /* Function to return the chain of decls so far in the current scope level.  */
  1720. extern tree getdecls                PROTO((void));
  1721. /* Function to return the chain of structure tags in the current scope level.  */
  1722. extern tree gettags                PROTO((void));
  1723.  
  1724. extern tree build_range_type PROTO((tree, tree, tree));
  1725.  
  1726. /* Call when starting to parse a declaration:
  1727.    make expressions in the declaration last the length of the function.
  1728.    Returns an argument that should be passed to resume_momentary later.  */
  1729. extern int suspend_momentary PROTO((void));
  1730.  
  1731. extern int allocation_temporary_p PROTO((void));
  1732.  
  1733. /* Call when finished parsing a declaration:
  1734.    restore the treatment of node-allocation that was
  1735.    in effect before the suspension.
  1736.    YES should be the value previously returned by suspend_momentary.  */
  1737. extern void resume_momentary PROTO((int));
  1738.  
  1739. /* Called after finishing a record, union or enumeral type.  */
  1740. extern void rest_of_type_compilation PROTO((tree, int));
  1741.  
  1742. /* Save the current set of obstacks, but don't change them.  */
  1743. extern void push_obstacks_nochange PROTO((void));
  1744.  
  1745. extern void permanent_allocation PROTO((int));
  1746.  
  1747. extern void push_momentary PROTO((void));
  1748.  
  1749. extern void clear_momentary PROTO((void));
  1750.  
  1751. extern void pop_momentary PROTO((void));
  1752.  
  1753. extern void end_temporary_allocation PROTO((void));
  1754.  
  1755. /* Pop the obstack selection stack.  */
  1756. extern void pop_obstacks PROTO((void));
  1757.