home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / cplus-dbxout.c < prev    next >
C/C++ Source or Header  |  1991-06-04  |  59KB  |  1,995 lines

  1. /* Output dbx-format symbol table information from GNU compiler.
  2.    Copyright (C) 1987, 1988 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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* Hack! */
  22. #define N_CATCH 0
  23.  
  24. /* Output dbx-format symbol table data.
  25.    This consists of many symbol table entries, each of them
  26.    a .stabs assembler pseudo-op with four operands:
  27.    a "name" which is really a description of one symbol and its type,
  28.    a "code", which is a symbol defined in stab.h whose name starts with N_,
  29.    an unused operand always 0,
  30.    and a "value" which is an address or an offset.
  31.    The name is enclosed in doublequote characters.
  32.  
  33.    Each function, variable, typedef, and structure tag
  34.    has a symbol table entry to define it.
  35.    The beginning and end of each level of name scoping within
  36.    a function are also marked by special symbol table entries.
  37.  
  38.    The "name" consists of the symbol name, a colon, a kind-of-symbol letter,
  39.    and a data type number.  The data type number may be followed by
  40.    "=" and a type definition; normally this will happen the first time
  41.    the type number is mentioned.  The type definition may refer to
  42.    other types by number, and those type numbers may be followed
  43.    by "=" and nested definitions.
  44.  
  45.    This can make the "name" quite long.
  46.    When a name is more than 80 characters, we split the .stabs pseudo-op
  47.    into two .stabs pseudo-ops, both sharing the same "code" and "value".
  48.    The first one is marked as continued with a double-backslash at the
  49.    end of its "name".
  50.  
  51.    The kind-of-symbol letter distinguished function names from global
  52.    variables from file-scope variables from parameters from auto
  53.    variables in memory from typedef names from register variables.
  54.    See `dbxout_symbol'.
  55.  
  56.    The "code" is mostly redundant with the kind-of-symbol letter
  57.    that goes in the "name", but not entirely: for symbols located
  58.    in static storage, the "code" says which segment the address is in,
  59.    which controls how it is relocated.
  60.  
  61.    The "value" for a symbol in static storage
  62.    is the core address of the symbol (actually, the assembler
  63.    label for the symbol).  For a symbol located in a stack slot
  64.    it is the stack offset; for one in a register, the register number.
  65.    For a typedef symbol, it is zero.
  66.  
  67.    If DEBUG_SYMS_TEXT is defined, all debugging symbols must be
  68.    output while in the text section.
  69.  
  70.    For more on data type definitions, see `dbxout_type'.  */
  71.  
  72. #include "config.h"
  73. #include "tree.h"
  74. #include "cplus-tree.h"
  75. #include "rtl.h"
  76. #include "flags.h"
  77. #include <stdio.h>
  78. #include <sys/param.h>
  79. #include "regs.h"
  80.  
  81. #if 0
  82. /************* THIS IS FROM CPLUS-TREE.H ************/
  83.  
  84. /* Nonzero for FIELD_DECL node means that this FIELD_DECL is
  85.    a member of an anonymous union construct.  */
  86. #define DECL_ANON_UNION_ELEM(NODE) ((NODE)->decl.regdecl_flag) /* overloaded! */
  87.  
  88. /* Nonzero for FIELD_DECL means that this field is a
  89.    virtual baseclass field.  Used for printing debugging information.  */
  90. #define DECL_VBASE_P(NODE) ((NODE)->decl.external_flag)
  91.  
  92. /* DECL_FCONTEXT is the *first* baseclass in which this FIELD_DECL
  93.    is defined.  This only applies to vfield and vbase decls.  */
  94. #define DECL_FCONTEXT(NODE) ((tree)DECL_LANG_SPECIFIC(NODE))
  95.  
  96. /* The DECL_VINDEX is used for FUNCTION_DECLS in two different ways.
  97.    Before the struct containing the FUNCTION_DECL is laid out,
  98.    DECL_VINDEX may point to a FUNCTION_DECL in a base class which
  99.    is the FUNCTION_DECL which this FUNCTION_DECL will replace as a virtual
  100.    function.  When the class is laid out, this pointer is changed
  101.    to an INT_CST node which is suitable for use as an index
  102.    into the virtual function table.  */
  103. #define DECL_VINDEX(NODE) (DECL_LANG_SPECIFIC(NODE)->vindex)
  104.  
  105. /* When appearing in an INDIRECT_REF, it means that the tree structure
  106.    underneath is actually a call to a constructor.  This is needed
  107.    when the constructor must initialize local storage (which can
  108.    be automatically destroyed), rather than allowing it to allocate
  109.    space from the heap.
  110.  
  111.    When appearing in a SAVE_EXPR, it means that underneath
  112.    is a call to a constructor.
  113.  
  114.    When appearing in a CONSTRUCTOR, it means that it was
  115.    a GNU C constructor expression.
  116.  
  117.    When appearing in a FIELD_DECL, it means that this field
  118.    has been duly initialized in its constructor.  */
  119. #define TREE_HAS_CONSTRUCTOR(NODE) (TREE_LANG_FLAG_4(NODE))
  120.  
  121. /* Nonzero for _TYPE means that the _TYPE defines a destructor.  */
  122. #define TYPE_HAS_DESTRUCTOR(NODE) (TYPE_LANG_FLAG_2(NODE))
  123.  
  124. /* Nonzero in FUNCTION_DECL means it is really an operator.
  125.    Just used to communicate formatting information to dbxout.c.  */
  126. #define DECL_OPERATOR(NODE) (DECL_LANG_SPECIFIC(NODE)->decl_flags.operator_attr)
  127.  
  128. /* For a FUNCTION_DECL: the name of the function before being overloaded.  */
  129. #define DECL_ORIGINAL_NAME(NODE) (DECL_LANG_SPECIFIC(NODE)->original_name)
  130.  
  131. /* List of lists of member functions defined in this class.  */
  132. #define CLASSTYPE_METHOD_VEC(NODE) ((NODE)->type.minval)
  133.  
  134. /* When a class becomes a non-leftmost baseclass in a multiple
  135.    inheritance hierarchy, the number of bytes that subobjects
  136.    of this type are offset from the begining of the containing record.
  137.    This is an INTEGER_CST which holds the value of
  138.    DECL_OFFSET (TYPE_NAME (NODE)).
  139.  
  140.    Note that for virtual base classes, the offset is only meaningful
  141.    for the construction and initialization of virtual baseclass pointers
  142.    and virtual function table entries.  Otherwise, the offset of a
  143.    virtual baseclass is irrelevant, since it is accessed through a
  144.    pointer, and not via a delta.  */
  145. #define CLASSTYPE_OFFSET(NODE) (TYPE_LANG_SPECIFIC (NODE)->offset)
  146.  
  147. /* The virtual function table pointer field.  */
  148. #define CLASSTYPE_VFIELD(NODE) (TYPE_LANG_SPECIFIC(NODE)->vfield)
  149.  
  150. /* The number of virtual functions defined for this
  151.    _CLASSTYPE node.  */
  152. #define CLASSTYPE_VSIZE(NODE) (TYPE_LANG_SPECIFIC(NODE)->vsize)
  153.  
  154. /* Define NO_DOLLAR_IN_LABEL in your favorite tm file if your assembler
  155.    doesn't allow '$' in symbol names.  */
  156. #ifndef NO_DOLLAR_IN_LABEL
  157.  
  158. #define JOINER '$'
  159.  
  160. #else    /* NO_DOLLAR_IN_LABEL */
  161.  
  162. #define JOINER '.'
  163.  
  164. #endif    /* NO_DOLLAR_IN_LABEL */
  165.  
  166. /* For anonymous aggregate types, we need some sort of name to
  167.    hold on to.  In practice, this should not appear, but it should
  168.    not be harmful if it does.  */
  169. #define ANON_AGGRNAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[0] == JOINER)
  170. #define ANON_PARMNAME_FORMAT "_%d"
  171. #define ANON_PARMNAME_P(ID_NODE) (IDENTIFIER_POINTER (ID_NODE)[0] == '_' \
  172.                   && IDENTIFIER_POINTER (ID_NODE)[1] <= '9')
  173.  
  174. /* Number of chars to skip in "__exception_".  */
  175. #define EXCEPTION_NAME_LENGTH 12
  176.  
  177. extern int flag_minimal_debug;
  178.  
  179. /***************** END OF CPLUS-TREE.H DEPENDENCIES **************/
  180. #endif
  181.  
  182. /* Emulate getwd on USG systems.  */
  183.  
  184. #ifdef USG
  185. #define getwd(addr) getcwd (addr, MAXPATHLEN)
  186. #endif
  187.  
  188. /* Typical USG systems don't have stab.h, and they also have
  189.    no use for DBX-format debugging info.  */
  190.  
  191. #ifdef DBX_DEBUGGING_INFO
  192.  
  193. #ifdef DEBUG_SYMS_TEXT
  194. #define FORCE_TEXT text_section ();
  195. #else
  196. #define FORCE_TEXT
  197. #endif
  198.  
  199. #ifdef USG
  200. #include "stab.h"  /* If doing DBX on sysV, use our own stab.h.  */
  201. #else
  202. #include <stab.h>  /* On BSD, use the system's stab.h.  */
  203. #endif /* not USG */
  204.  
  205. #ifdef __GNU_STAB__
  206. #define STAB_CODE_TYPE enum __stab_debug_code
  207. #else
  208. #define STAB_CODE_TYPE int
  209. #endif
  210.  
  211. /* 1 if PARM is passed to this function in memory.  */
  212.  
  213. #define PARM_PASSED_IN_MEMORY(PARM) \
  214.  (DECL_INCOMING_RTL (PARM) && GET_CODE (DECL_INCOMING_RTL (PARM)) == MEM)
  215.  
  216. /* A C expression for the integer offset value of an automatic variable
  217.    (N_LSYM) having address X (an RTX).  */
  218. #ifndef DEBUGGER_AUTO_OFFSET
  219. #define DEBUGGER_AUTO_OFFSET(X) \
  220.   (GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0)
  221. #endif
  222.  
  223. /* A C expression for the integer offset value of an argument (N_PSYM)
  224.    having address X (an RTX).  The nominal offset is OFFSET.  */
  225. #ifndef DEBUGGER_ARG_OFFSET
  226. #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET)
  227. #endif
  228.  
  229. /* Stream for writing to assembler file.  */
  230.  
  231. static FILE *asmfile;
  232.  
  233. /* Last source file name mentioned in a NOTE insn.  */
  234.  
  235. static char *lastfile;
  236.  
  237. enum typestatus {TYPE_UNSEEN, TYPE_XREF, TYPE_DEFINED};
  238.  
  239. /* Vector recording the status of describing C data types.
  240.    When we first notice a data type (a tree node),
  241.    we assign it a number using next_type_number.
  242.    That is its index in this vector.
  243.    The vector element says whether we have yet output
  244.    the definition of the type.  TYPE_XREF says we have
  245.    output it as a cross-reference only.  */
  246.  
  247. enum typestatus *typevec;
  248.  
  249. /* Number of elements of space allocated in `typevec'.  */
  250.  
  251. static int typevec_len;
  252.  
  253. /* In dbx output, each type gets a unique number.
  254.    This is the number for the next type output.
  255.    The number, once assigned, is in the TYPE_SYMTAB_ADDRESS field.  */
  256.  
  257. static int next_type_number;
  258.  
  259. /* In dbx output, we must assign symbol-blocks id numbers
  260.    in the order in which their beginnings are encountered.
  261.    We output debugging info that refers to the beginning and
  262.    end of the ranges of code in each block
  263.    with assembler labels LBBn and LBEn, where n is the block number.
  264.    The labels are generated in final, which assigns numbers to the
  265.    blocks in the same way.  */
  266.  
  267. static int next_block_number;
  268.  
  269. /* These variables are for dbxout_symbol to communicate to
  270.    dbxout_finish_symbol.
  271.    current_sym_code is the symbol-type-code, a symbol N_... define in stab.h.
  272.    current_sym_value and current_sym_addr are two ways to address the
  273.    value to store in the symtab entry.
  274.    current_sym_addr if nonzero represents the value as an rtx.
  275.    If that is zero, current_sym_value is used.  This is used
  276.    when the value is an offset (such as for auto variables,
  277.    register variables and parms).  */
  278.  
  279. static STAB_CODE_TYPE current_sym_code;
  280. static int current_sym_value;
  281. static rtx current_sym_addr;
  282.  
  283. /* Number of chars of symbol-description generated so far for the
  284.    current symbol.  Used by CHARS and CONTIN.  */
  285.  
  286. static int current_sym_nchars;
  287.  
  288. /* Report having output N chars of the current symbol-description.  */
  289.  
  290. #define CHARS(N) (current_sym_nchars += (N))
  291.  
  292. /* Break the current symbol-description, generating a continuation,
  293.    if it has become long.  */
  294.  
  295. #ifndef DBX_CONTIN_LENGTH
  296. #define DBX_CONTIN_LENGTH 80
  297. #endif
  298.  
  299. #if DBX_CONTIN_LENGTH > 0
  300. #define CONTIN  \
  301.   do {if (current_sym_nchars > DBX_CONTIN_LENGTH) dbxout_continue ();} while (0)
  302. #else
  303. #define CONTIN
  304. #endif
  305.  
  306. void dbxout_types ();
  307. void dbxout_tags ();
  308. void dbxout_args ();
  309. void dbxout_symbol ();
  310. static void dbxout_type_name ();
  311. static void dbxout_type ();
  312. static void dbxout_prepare_symbol ();
  313. static void dbxout_finish_symbol ();
  314. static void dbxout_continue ();
  315. static void print_int_cst_octal ();
  316. static void print_octal ();
  317.  
  318. /* At the beginning of compilation, start writing the symbol table.
  319.    Initialize `typevec' and output the standard data types of C.  */
  320.  
  321. void
  322. dbxout_init (asm_file, input_file_name)
  323.      FILE *asm_file;
  324.      char *input_file_name;
  325. {
  326.   char ltext_label_name[100];
  327.  
  328.   asmfile = asm_file;
  329.  
  330.   typevec_len = 100;
  331.   typevec = (enum typestatus *) xmalloc (typevec_len * sizeof typevec[0]);
  332.   bzero (typevec, typevec_len * sizeof typevec[0]);
  333.  
  334.   /* Convert Ltext into the appropriate format for local labels in case
  335.      the system doesn't insert underscores in front of user generated
  336.      labels.  */
  337.   ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
  338.  
  339.   /* Put the current working directory in an N_SO symbol.  */
  340.   {
  341.     static char wd[MAXPATHLEN];
  342.     static enum {not_gotten, gotten, error_getting} wd_status = not_gotten;
  343.  
  344.     if (wd_status == not_gotten)
  345.       {
  346.     if (getwd (wd))
  347.       wd_status = gotten;
  348.     else
  349.       wd_status = error_getting;
  350.       }
  351.  
  352.     if (wd_status == gotten)
  353.       {
  354. #ifdef ASM_OUTPUT_MAIN_SOURCE_DIRECTORY
  355.     ASM_OUTPUT_MAIN_SOURCE_DIRECTORY (file, filename);
  356. #else /* no ASM_OUTPUT_MAIN_SOURCE_DIRECTORY */
  357.     fprintf (asmfile, "\t.stabs \"%s/\",%d,0,0,%s\n", wd, N_SO,
  358.          <ext_label_name[1]);
  359. #endif /* no ASM_OUTPUT_MAIN_SOURCE_DIRECTORY */
  360.       }
  361.   }
  362.  
  363. #ifdef ASM_OUTPUT_MAIN_SOURCE_FILENAME
  364.   /* This should NOT be ASM_OUTPUT_SOURCE_FILENAME. That 
  365.      would give us an N_SOL, and we want an N_SO.  */
  366.   ASM_OUTPUT_MAIN_SOURCE_FILENAME (file, filename);
  367. #else /* no ASM_OUTPUT_MAIN_SOURCE_FILENAME */
  368.   /* Used to put `Ltext:' before the reference, but that loses on sun 4.  */
  369.   fprintf (asmfile, ".stabs \"%s\",%d,0,0,%s\n", input_file_name, N_SO,
  370.        <ext_label_name[1]);
  371.   text_section ();
  372.   ASM_OUTPUT_INTERNAL_LABEL (asmfile, "Ltext", 0);
  373. #endif /* no ASM_OUTPUT_MAIN_SOURCE_FILENAME */
  374.  
  375.   lastfile = input_file_name;
  376.  
  377.   next_type_number = 1;
  378.   next_block_number = 2;
  379.  
  380.   /* Make sure that types `int' and `char' have numbers 1 and 2.
  381.      Definitions of other integer types will refer to those numbers.
  382.      (Actually it should no longer matter what their numbers are.
  383.      Also, if any types with tags have been defined,
  384.      dbxout_symbol will output them first, so the numbers won't be 1 and 2.
  385.      That happens in C++.  So it's a good thing it should no longer matter.)  */
  386.  
  387.   dbxout_symbol (TYPE_NAME (integer_type_node), 0);
  388.   dbxout_symbol (TYPE_NAME (char_type_node), 0);
  389.  
  390.   /* Get all permanent types not yet gotten, and output them.  */
  391.  
  392.   dbxout_types (get_permanent_types ());
  393. }
  394.  
  395. /* Output debugging info to FILE to switch to sourcefile FILENAME.  */
  396.  
  397. void
  398. dbxout_source_file (file, filename)
  399.      FILE *file;
  400.      char *filename;
  401. {
  402.   char ltext_label_name[100];
  403.  
  404.   if (filename && (lastfile == 0 || strcmp (filename, lastfile)))
  405.     {
  406. #ifdef ASM_OUTPUT_SOURCE_FILENAME
  407.       ASM_OUTPUT_SOURCE_FILENAME (file, filename);
  408. #else
  409.       ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
  410.       fprintf (file, "\t.stabs \"%s\",%d,0,0,%s\n",
  411.            filename, N_SOL, <ext_label_name[1]);
  412. #endif
  413.       lastfile = filename;
  414.     }
  415. }
  416.  
  417. /* At the end of compilation, finish writing the symbol table.
  418.    Unless you define ASM_OUTPUT_MAIN_SOURCE_FILE_END, the default is
  419.    to do nothing. */
  420.  
  421. void
  422. dbxout_finish (file, filename)
  423.      FILE *file;
  424.      char *filename;
  425. {
  426. #ifdef ASM_OUTPUT_MAIN_SOURCE_FILE_END
  427.   ASM_OUTPUT_MAIN_SOURCE_FILE_END (file, filename);
  428. #endif /* ASM_OUTPUT_MAIN_SOURCE_FILE_END */
  429. }
  430.  
  431. /* Continue a symbol-description that gets too big.
  432.    End one symbol table entry with a double-backslash
  433.    and start a new one, eventually producing something like
  434.    .stabs "start......\\",code,0,value
  435.    .stabs "...rest",code,0,value   */
  436.  
  437. static void
  438. dbxout_continue ()
  439. {
  440. #ifdef DBX_CONTIN_CHAR
  441.   fprintf (asmfile, "%c", DBX_CONTIN_CHAR);
  442. #else
  443.   fprintf (asmfile, "\\\\");
  444. #endif
  445.   dbxout_finish_symbol (0);
  446.   fprintf (asmfile, ".stabs \"");
  447.   current_sym_nchars = 0;
  448. }
  449.  
  450. static void
  451. dbxout_type_fields (type)
  452.      tree type;
  453. {
  454.   tree tem;
  455.   for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
  456.     {
  457.       /* Output the name, type, position (in bits), size (in bits)
  458.      of each field.  */
  459.       if (DECL_ANON_UNION_ELEM (tem))
  460.     dbxout_type_fields (TREE_TYPE (tem));
  461.       /* Omit here local type decls until we know how to support them.  */
  462.       else if (TREE_CODE (tem) == TYPE_DECL)
  463.     continue;
  464.       /* Omit here the nameless fields that are used to skip bits.  */
  465.       else if (DECL_NAME (tem) != 0 && TREE_CODE (tem) != CONST_DECL)
  466.     {
  467.       /* Continue the line if necessary,
  468.          but not before the first field.  */
  469.       if (tem != TYPE_FIELDS (type))
  470.         CONTIN;
  471.  
  472.       if (use_gdb_dbx_extensions
  473.           && flag_minimal_debug
  474.           && TREE_CODE (tem) == FIELD_DECL
  475.           && (DECL_VIRTUAL_P (tem) || DECL_VBASE_P (tem)))
  476.         {
  477.           CHARS (3 + TYPE_NAME_LENGTH (DECL_FCONTEXT (tem)));
  478.           fprintf (asmfile, "$v%c",
  479.                DECL_VIRTUAL_P (tem) ? 'f' : 'b');
  480.           dbxout_type (DECL_FCONTEXT (tem), 0);
  481.           fprintf (asmfile, ":");
  482.           dbxout_type (TREE_TYPE (tem), 0);
  483.           fprintf (asmfile, ",%d;",
  484.                TREE_INT_CST_LOW (DECL_FIELD_BITPOS (tem)));
  485.           continue;
  486.         }
  487.  
  488.       fprintf (asmfile, "%s:", IDENTIFIER_POINTER (DECL_NAME (tem)));
  489.       CHARS (2 + IDENTIFIER_LENGTH (DECL_NAME (tem)));
  490.  
  491.       if (use_gdb_dbx_extensions)
  492.         {
  493.           putc ('/', asmfile);
  494. #ifdef TREE_PRIVATE
  495.           putc ((TREE_PRIVATE (tem) ? '0'
  496.              : TREE_PROTECTED (tem) ? '1' : '2'),
  497.             asmfile);
  498. #endif
  499.           CHARS (2);
  500.         }
  501.  
  502.       dbxout_type (TREE_TYPE (tem), 0);
  503.       if (TREE_CODE (tem) == VAR_DECL)
  504.         {
  505.           if (TREE_STATIC (tem) && use_gdb_dbx_extensions)
  506.         {
  507.           char *name = DECL_ASSEMBLER_NAME (tem);
  508.  
  509.           /* Adding 1 here only works on systems
  510.              which flush an initial underscore from
  511.              the .stabs entry.  This loses for static names
  512.              which have an initial leading '_' on systems which
  513.              don't use leading underscores.  */
  514.           if (name[0] == '_')
  515.             name += 1;
  516.  
  517.           fprintf (asmfile, ":%s;", name);
  518.           CHARS (strlen (name));
  519.         }
  520.           else
  521.         {
  522.           /* If TEM is non-static, GDB won't understand it.  */
  523.           fprintf (asmfile, ",0,0;");
  524.         }
  525.         }
  526.       else
  527.         {
  528.           fprintf (asmfile, ",%d,%d;",
  529.                TREE_INT_CST_LOW (DECL_FIELD_BITPOS (tem)),
  530.                TREE_INT_CST_LOW (DECL_SIZE (tem)));
  531.         }
  532.       CHARS (23);
  533.     }
  534.     }
  535. }
  536.  
  537. static void
  538. dbxout_type_method_1 (decl, debug_name)
  539.      tree decl;
  540.      char *debug_name;
  541. {
  542.   tree firstarg = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)));
  543.   char c1 = 'A', c2;
  544.  
  545.   if (DECL_STATIC_FUNCTION_P (decl))
  546.     c2 = '?';
  547.   else
  548.     {
  549.       /* A for normal functions.
  550.      B for `const' member functions.
  551.      C for `volatile' member functions.
  552.      D for `const volatile' member functions.  */
  553.       if (TYPE_READONLY (TREE_TYPE (firstarg)))
  554.     c1 += 1;
  555.       if (TYPE_VOLATILE (TREE_TYPE (firstarg)))
  556.     c1 += 2;
  557.  
  558.       if (DECL_VIRTUAL_P (decl))
  559.     c2 = '*';
  560.       else
  561.     c2 = '.';
  562.     }
  563.  
  564.   fprintf (asmfile, ":%s;%c%c%c", debug_name,
  565.        TREE_PRIVATE (decl) ? '0' : TREE_PROTECTED (decl) ? '1' : '2', c1, c2);
  566.   CHARS (IDENTIFIER_LENGTH (DECL_NAME (decl)) + 6
  567.      - (debug_name - IDENTIFIER_POINTER (DECL_NAME (decl))));
  568.   if (DECL_VIRTUAL_P (decl))
  569.     {
  570.       fprintf (asmfile, "%d;",
  571.            TREE_INT_CST_LOW (DECL_VINDEX (decl)));
  572.       dbxout_type (DECL_VCONTEXT (decl), 0);
  573.       fprintf (asmfile, ";");
  574.       CHARS (8);
  575.     }
  576. }
  577.  
  578. static void
  579. dbxout_type_methods (type)
  580.      register tree type;
  581. {
  582.   /* C++: put out the method names and their parameter lists */
  583.   /* We do constructors, destructor, if any, followed by the method names.  */
  584.   register tree tem;
  585.   register tree method_vec = CLASSTYPE_METHOD_VEC (type);
  586.   register tree *methods = 0;
  587.   register tree *end = 0;
  588.   register int type_identifier_length
  589.     = IDENTIFIER_LENGTH (DECL_NAME (TYPE_NAME (type)));
  590.  
  591.   if (TREE_CODE (type) == RECORD_TYPE
  592.       && (TYPE_HAS_DESTRUCTOR (type) | TYPE_HAS_CONSTRUCTOR (type)))
  593.     {
  594.       tree dtor;
  595.  
  596.       methods = &TREE_VEC_ELT (method_vec, 0);
  597.       end = TREE_VEC_END (method_vec);
  598.       /* Destructors lie in a special place.  */
  599.       if (TYPE_HAS_DESTRUCTOR (type))
  600.     {
  601.       dtor = TREE_VEC_ELT (method_vec, 0);
  602.       tem = TREE_CHAIN (dtor);
  603.     }
  604.       else
  605.     {
  606.       dtor = NULL_TREE;
  607.       tem = *methods;
  608.     }
  609.  
  610.       CHARS (2);
  611.  
  612.       if (tem)
  613.     {
  614.       if (DECL_OPERATOR (tem))
  615.         /* Operators do not belong here.  This is for
  616.            constructors and destructors only.  */
  617.         abort ();
  618.       else
  619.         {
  620.           fprintf (asmfile, "%s::", IDENTIFIER_POINTER (DECL_ORIGINAL_NAME (tem)));
  621.           CHARS (IDENTIFIER_LENGTH (DECL_ORIGINAL_NAME (tem)) + 3);
  622.         }
  623.  
  624.       while (tem)
  625.         {
  626.           /* Output the name of the field (after overloading), as
  627.          well as the name of the field before overloading, along
  628.          with its parameter list.  */
  629.           char c;
  630.           char *debug_name = IDENTIFIER_POINTER (DECL_NAME (tem));
  631.           int old_minimal_debug = flag_minimal_debug;
  632.  
  633.           CONTIN;
  634.  
  635.           if (tem == dtor)
  636.         /* Always output destructors with full information.  */
  637.         flag_minimal_debug = 0;
  638.  
  639.           dbxout_type (TREE_TYPE (tem), 0);
  640.           flag_minimal_debug = old_minimal_debug;
  641.  
  642.           if (flag_minimal_debug && tem != dtor)
  643.         {
  644.           /* Cut down on debugging information by not outputting
  645.              the parts of the name we can just as easily
  646.              have the debugger figure out.  */
  647.  
  648.           /* Get past '__'.  */
  649.           debug_name += 2;
  650.           /* Get past const and volatile qualifiers.  */
  651.           while (*debug_name == 'C' || *debug_name == 'V')
  652.             debug_name++;
  653.           /* Get past numeric type length prefix.  */
  654.           while (*debug_name >= '0' && *debug_name <= '9')
  655.             debug_name++;
  656.           /* Get past type of `this'.  */
  657.           debug_name += type_identifier_length;
  658.         }
  659.           dbxout_type_method_1 (tem, debug_name);
  660.  
  661.           if (tem == dtor)
  662.         break;
  663.           tem = TREE_CHAIN (tem);
  664.           if (tem == NULL_TREE)
  665.         tem = dtor;
  666.         }
  667.       putc (';', asmfile);
  668.     }
  669.       if (methods != end)
  670.     methods++;
  671.     }
  672.   else if (method_vec != NULL_TREE)
  673.     {
  674.       methods = &TREE_VEC_ELT (method_vec, 1);
  675.       end = TREE_VEC_END (method_vec);
  676.     }
  677.  
  678.   for (; methods != end; methods++)
  679.     {
  680.       tem = *methods;
  681.  
  682.       if (tem)
  683.     {
  684.       if (DECL_OPERATOR (tem))
  685.         {
  686.           char *name1 = operator_name_string (DECL_NAME (tem));
  687.           fprintf (asmfile, "op$::%s.", name1);
  688.           CHARS (strlen (name1) + 6);
  689.         }
  690.       else
  691.         {
  692.           tree name = DECL_ORIGINAL_NAME (tem);
  693.           fprintf (asmfile, "%s::", IDENTIFIER_POINTER (name));
  694.           CHARS (IDENTIFIER_LENGTH (name) + 3);
  695.         }
  696.  
  697.       for (; tem; tem = TREE_CHAIN (tem))
  698.         /* Output the name of the field (after overloading), as
  699.            well as the name of the field before overloading, along
  700.            with its parameter list */
  701.         {
  702.           /* @@ */
  703.           char c;
  704.           char *debug_name = IDENTIFIER_POINTER (DECL_NAME (tem));
  705.  
  706.           CONTIN;
  707.  
  708.           dbxout_type (TREE_TYPE (tem), 0);
  709.           if (flag_minimal_debug)
  710.         {
  711.           debug_name += IDENTIFIER_LENGTH (DECL_ORIGINAL_NAME (tem)) + 2;
  712.           /* Get past const and volatile qualifiers.  */
  713.           while (*debug_name == 'C' || *debug_name == 'V')
  714.             debug_name++;
  715.           while (*debug_name >= '0' && *debug_name <= '9')
  716.             debug_name++;
  717.           debug_name += type_identifier_length;
  718.         }
  719.           dbxout_type_method_1 (tem, debug_name);
  720.         }
  721.       putc (';', asmfile);
  722.       CHARS (1);
  723.     }
  724.     }
  725. }
  726.  
  727. /* Output a reference to a type.  If the type has not yet been
  728.    described in the dbx output, output its definition now.
  729.    For a type already defined, just refer to its definition
  730.    using the type number.
  731.  
  732.    If FULL is nonzero, and the type has been described only with
  733.    a forward-reference, output the definition now.
  734.    If FULL is zero in this case, just refer to the forward-reference
  735.    using the number previously allocated.  */
  736.  
  737. static void
  738. dbxout_type (type, full)
  739.      tree type;
  740.      int full;
  741. {
  742.   register tree tem;
  743.  
  744.   /* If there was an input error and we don't really have a type,
  745.      avoid crashing and write something that is at least valid
  746.      by assuming `int'.  */
  747.   if (type == error_mark_node)
  748.     type = integer_type_node;
  749.   else
  750.     type = TYPE_MAIN_VARIANT (type);
  751.  
  752.   if (TYPE_SYMTAB_ADDRESS (type) == 0)
  753.     {
  754.       /* Type has no dbx number assigned.  Assign next available number.  */
  755.       TYPE_SYMTAB_ADDRESS (type) = next_type_number++;
  756.  
  757.       /* Make sure type vector is long enough to record about this type.  */
  758.  
  759.       if (next_type_number == typevec_len)
  760.     {
  761.       typevec = (enum typestatus *) xrealloc (typevec, typevec_len * 2 * sizeof typevec[0]);
  762.       bzero (typevec + typevec_len, typevec_len * sizeof typevec[0]);
  763.       typevec_len *= 2;
  764.     }
  765.     }
  766.  
  767.   /* Output the number of this type, to refer to it.  */
  768.   fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (type));
  769.   CHARS (3);
  770.  
  771.   /* If this type's definition has been output or is now being output,
  772.      that is all.  */
  773.  
  774.   switch (typevec[TYPE_SYMTAB_ADDRESS (type)])
  775.     {
  776.     case TYPE_UNSEEN:
  777.       break;
  778.     case TYPE_XREF:
  779.       if (! full)
  780.     return;
  781.       break;
  782.     case TYPE_DEFINED:
  783.       return;
  784.     }
  785.  
  786. #ifdef DBX_NO_XREFS
  787.   /* For systems where dbx output does not allow the `=xsNAME:' syntax,
  788.      leave the type-number completely undefined rather than output
  789.      a cross-reference.  */
  790.   if (TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
  791.       || TREE_CODE (type) == ENUMERAL_TYPE)
  792.  
  793.     if ((TYPE_NAME (type) != 0 && !full)
  794.     || TYPE_SIZE (type) == 0)
  795.       {
  796.     typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  797.     return;
  798.       }
  799. #endif
  800.  
  801.   /* Output a definition now.  */
  802.  
  803.   fprintf (asmfile, "=");
  804.   CHARS (1);
  805.  
  806.   /* Mark it as defined, so that if it is self-referent
  807.      we will not get into an infinite recursion of definitions.  */
  808.  
  809.   typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_DEFINED;
  810.  
  811.   switch (TREE_CODE (type))
  812.     {
  813.     case VOID_TYPE:
  814.     case LANG_TYPE:
  815.       /* For a void type, just define it as itself; ie, "5=5".
  816.      This makes us consider it defined
  817.      without saying what it is.  The debugger will make it
  818.      a void type when the reference is seen, and nothing will
  819.      ever override that default.  */
  820.       fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (type));
  821.       CHARS (3);
  822.       break;
  823.  
  824.     case INTEGER_TYPE:
  825.       if (type == char_type_node && ! TREE_UNSIGNED (type))
  826.     /* Output the type `char' as a subrange of itself!
  827.        I don't understand this definition, just copied it
  828.        from the output of pcc.  */
  829.     fprintf (asmfile, "r2;0;127;");
  830. #ifdef WINNING_GDB
  831.       else if (TYPE_PRECISION (type) > BITS_PER_WORD)
  832.     {
  833.       fprintf (asmfile, "r1;");
  834.       print_int_cst_octal (TYPE_MIN_VALUE (type));
  835.       fprintf (asmfile, ";");
  836.       print_int_cst_octal (TYPE_MAX_VALUE (type));
  837.       fprintf (asmfile, ";");
  838.     }
  839. #endif
  840.       else
  841.     /* Output other integer types as subranges of `int'.  */
  842.     fprintf (asmfile, "r1;%d;%d;",
  843.          TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)),
  844.          TREE_INT_CST_LOW (TYPE_MAX_VALUE (type)));
  845.       CHARS (25);
  846.       break;
  847.  
  848.     case REAL_TYPE:
  849.       /* This must be magic.  */
  850.       fprintf (asmfile, "r1;%d;0;",
  851.            TREE_INT_CST_LOW (size_in_bytes (type)));
  852.       CHARS (16);
  853.       break;
  854.  
  855.     case ARRAY_TYPE:
  856.       /* Output "a" followed by a range type definition
  857.      for the index type of the array
  858.      followed by a reference to the target-type.
  859.      ar1;0;N;M for an array of type M and size N.  */
  860.       fprintf (asmfile, "ar1;0;%d;",
  861.            (TYPE_DOMAIN (type)
  862.         ? TREE_INT_CST_LOW (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
  863.             : -1));
  864.       CHARS (17);
  865.       dbxout_type (TREE_TYPE (type), 0);
  866.       break;
  867.  
  868.     case RECORD_TYPE:
  869.     case UNION_TYPE:
  870.       {
  871.     int i, n_baseclasses = 0;
  872.  
  873.     if (TYPE_BASETYPES (type))
  874.       n_baseclasses = TREE_VEC_LENGTH (TYPE_BASETYPES (type));
  875.  
  876.     /* Output a structure type.  */
  877.     if ((TYPE_NAME (type) != 0 && !full)
  878.         || TYPE_SIZE (type) == 0)
  879.       {
  880.         /* If the type is just a cross reference, output one
  881.            and mark the type as partially described.
  882.            If it later becomes defined, we will output
  883.            its real definition.
  884.            If the type has a name, don't nest its definition within
  885.            another type's definition; instead, output an xref
  886.            and let the definition come when the name is defined.  */
  887.         fprintf (asmfile, (TREE_CODE (type) == RECORD_TYPE) ? "xs" : "xu");
  888.         CHARS (3);
  889. #if 0                /* This assertion is legitimately false in C++.  */
  890.         /* We shouldn't be outputting a reference to a type before its
  891.            definition unless the type has a tag name.
  892.            A typedef name without a tag name should be impossible.  */
  893.         if (TREE_CODE (TYPE_NAME (type)) != IDENTIFIER_NODE)
  894.           abort ();
  895. #endif
  896.         dbxout_type_name (type);
  897.         fprintf (asmfile, ":");
  898.         typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  899.         break;
  900.       }
  901.     tem = size_in_bytes (type);
  902.     if (TREE_CODE (tem) != INTEGER_CST)
  903.       abort ();
  904.     fprintf (asmfile, (TREE_CODE (type) == RECORD_TYPE) ? "s%d" : "u%d",
  905.          TREE_INT_CST_LOW (tem));
  906.  
  907.     if (use_gdb_dbx_extensions)
  908.       {
  909.         if (n_baseclasses)
  910.           {
  911.         fprintf (asmfile, "!%d,", n_baseclasses);
  912.         CHARS (8);
  913.           }
  914.       }
  915.     for (i = 0; i < n_baseclasses; i++)
  916.       {
  917.         tree basetype = TREE_VEC_ELT (TYPE_BASETYPES (type), i);
  918.         if (use_gdb_dbx_extensions)
  919.           {
  920.         putc (CLASSTYPE_VIA_VIRTUAL (type, i) ? '1'
  921.               : '0',
  922.               asmfile);
  923.         putc (CLASSTYPE_VIA_PUBLIC (type, i) ? '2'
  924.               : '0',
  925.               asmfile);
  926.         fprintf (asmfile, "%d,",
  927.              TREE_INT_CST_LOW (CLASSTYPE_OFFSET (basetype)) * BITS_PER_UNIT);
  928.         CHARS (15);
  929.         dbxout_type (basetype, 0);
  930.         putc (';', asmfile);
  931.           }
  932.         else
  933.           {
  934.         /* Print out the base class information with fields
  935.            which have the same names at the types they hold.  */
  936.         dbxout_type_name (basetype);
  937.         putc (':', asmfile);
  938.         dbxout_type (basetype, full);
  939.         fprintf (asmfile, ",%d,%d;",
  940.              TREE_INT_CST_LOW (CLASSTYPE_OFFSET (basetype)) * BITS_PER_UNIT,
  941.              TREE_INT_CST_LOW (DECL_SIZE (basetype)) * BITS_PER_UNIT);
  942.         CHARS (20);
  943.           }
  944.       }
  945.       }
  946.  
  947.       CHARS (11);
  948.  
  949.       /* Write out the field declarations.  */
  950.       dbxout_type_fields (type);
  951.       if (use_gdb_dbx_extensions)
  952.     dbxout_type_methods (type);
  953.       putc (';', asmfile);
  954.  
  955.       if (use_gdb_dbx_extensions && TREE_CODE (type) == RECORD_TYPE)
  956.     {
  957.       /* Tell GDB+ that it may keep reading.  */
  958.       putc ('~', asmfile);
  959.       if (TYPE_HAS_DESTRUCTOR (type) && TYPE_HAS_CONSTRUCTOR (type))
  960.         putc ('=', asmfile);
  961.       else if (TYPE_HAS_DESTRUCTOR (type))
  962.         putc ('-', asmfile);
  963.       else if (TYPE_HAS_CONSTRUCTOR (type))
  964.         putc ('+', asmfile);
  965.  
  966.       if (CLASSTYPE_VSIZE (type))
  967.         {
  968.           putc ('%', asmfile);
  969.           dbxout_type (DECL_FCONTEXT (CLASSTYPE_VFIELD (type)), 0);
  970.           fprintf (asmfile, ";");
  971.         }
  972.       else
  973.         {
  974.           putc (';', asmfile);
  975.           CHARS (3);
  976.         }
  977.     }
  978.       break;
  979.  
  980.     case ENUMERAL_TYPE:
  981.       if ((TYPE_NAME (type) != 0
  982.        && !full
  983.        && ((TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  984.         && ! ANON_AGGRNAME_P (DECL_NAME (TYPE_NAME (type))))
  985.            || (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
  986.            && ! ANON_AGGRNAME_P (TYPE_NAME (type)))))
  987.       || TYPE_SIZE (type) == 0)
  988.     {
  989.       fprintf (asmfile, "xe");
  990.       CHARS (3);
  991.       dbxout_type_name (type);
  992.       typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  993.       fprintf (asmfile, ":");
  994.       return;
  995.     }
  996.       putc ('e', asmfile);
  997.       CHARS (1);
  998.       for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem))
  999.     {
  1000.       fprintf (asmfile, "%s:%d,", IDENTIFIER_POINTER (TREE_PURPOSE (tem)),
  1001.            TREE_INT_CST_LOW (TREE_VALUE (tem)));
  1002.       CHARS (11 + IDENTIFIER_LENGTH (TREE_PURPOSE (tem)));
  1003.       if (TREE_CHAIN (tem) != 0)
  1004.         CONTIN;
  1005.     }
  1006.       putc (';', asmfile);
  1007.       CHARS (1);
  1008.       break;
  1009.  
  1010.     case POINTER_TYPE:
  1011.       putc ('*', asmfile);
  1012.       CHARS (1);
  1013.       dbxout_type (TREE_TYPE (type), 0);
  1014.       break;
  1015.  
  1016.     case METHOD_TYPE:
  1017.       if (use_gdb_dbx_extensions)
  1018.     {
  1019.       putc ('#', asmfile);
  1020.       CHARS (1);
  1021.       if (flag_minimal_debug)
  1022.         {
  1023.           putc ('#', asmfile);
  1024.           dbxout_type (TREE_TYPE (type), 0);
  1025.           putc (';', asmfile);
  1026.           CHARS (1);
  1027.         }
  1028.       else
  1029.         {
  1030.           dbxout_type (TYPE_METHOD_BASETYPE (type), 0);
  1031.           putc (',', asmfile);
  1032.           CHARS (1);
  1033.           dbxout_type (TREE_TYPE (type), 0);
  1034.           dbxout_args (TYPE_ARG_TYPES (type));
  1035.           putc (';', asmfile);
  1036.           CHARS (1);
  1037.         }
  1038.     }
  1039.       else
  1040.     {
  1041.       /* Treat it as a function type.  */
  1042.       dbxout_type (TREE_TYPE (type), 0);
  1043.     }
  1044.       break;
  1045.  
  1046.     case OFFSET_TYPE:
  1047.       if (use_gdb_dbx_extensions)
  1048.     {
  1049.       putc ('@', asmfile);
  1050.       CHARS (1);
  1051.       dbxout_type (TYPE_OFFSET_BASETYPE (type), 0);
  1052.       putc (',', asmfile);
  1053.       CHARS (1);
  1054.       dbxout_type (TREE_TYPE (type), 0);
  1055.     }
  1056.       else
  1057.     {
  1058.       /* Should print as an int, because it is really
  1059.          just an offset.  */
  1060.       dbxout_type (integer_type_node, 0);
  1061.     }
  1062.       break;
  1063.  
  1064.     case REFERENCE_TYPE:
  1065.       putc (use_gdb_dbx_extensions ? '&' : '*', asmfile);
  1066.       CHARS (1);
  1067.       dbxout_type (TREE_TYPE (type), 0);
  1068.       break;
  1069.  
  1070.     case FUNCTION_TYPE:
  1071.       putc ('f', asmfile);
  1072.       CHARS (1);
  1073.       dbxout_type (TREE_TYPE (type), 0);
  1074.       break;
  1075.  
  1076.     default:
  1077.       abort ();
  1078.     }
  1079. }
  1080.  
  1081. /* Print the value of integer constant C, in octal,
  1082.    handling double precision.  */
  1083.  
  1084. static void
  1085. print_int_cst_octal (c)
  1086.      tree c;
  1087. {
  1088.   unsigned int high = TREE_INT_CST_HIGH (c);
  1089.   unsigned int low = TREE_INT_CST_LOW (c);
  1090.   int excess = (3 - (HOST_BITS_PER_INT % 3));
  1091.  
  1092.   fprintf (asmfile, "0");
  1093.  
  1094.   if (excess == 3)
  1095.     {
  1096.       print_octal (high, HOST_BITS_PER_INT / 3);
  1097.       print_octal (low, HOST_BITS_PER_INT / 3);
  1098.     }
  1099.   else
  1100.     {
  1101.       unsigned int beg = high >> excess;
  1102.       unsigned int middle
  1103.     = ((high & ((1 << excess) - 1)) << (3 - excess)
  1104.        | (low >> (HOST_BITS_PER_INT / 3 * 3)));
  1105.       unsigned int end = low & ((1 << (HOST_BITS_PER_INT / 3 * 3)) - 1);
  1106.       fprintf (asmfile, "%o%01o", beg, middle);
  1107.       print_octal (end, HOST_BITS_PER_INT / 3);
  1108.     }
  1109. }
  1110.  
  1111. static void
  1112. print_octal (value, digits)
  1113.      unsigned int value;
  1114.      int digits;
  1115. {
  1116.   int i;
  1117.  
  1118.   for (i = digits - 1; i >= 0; i--)
  1119.     fprintf (asmfile, "%01o", ((value >> (3 * i)) & 7));
  1120. }
  1121.  
  1122. /* Output the name of type TYPE, with no punctuation.
  1123.    Such names can be set up either by typedef declarations
  1124.    or by struct, enum and union tags.  */
  1125.  
  1126. static void
  1127. dbxout_type_name (type)
  1128.      register tree type;
  1129. {
  1130.   tree t;
  1131.   if (TYPE_NAME (type) == 0)
  1132.     abort ();
  1133.   if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  1134.     {
  1135.       t = TYPE_NAME (type);
  1136.     }
  1137.   else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
  1138.     {
  1139.       t = DECL_NAME (TYPE_NAME (type));
  1140.     }
  1141.   else
  1142.     abort ();
  1143.  
  1144.   fprintf (asmfile, "%s", IDENTIFIER_POINTER (t));
  1145.   CHARS (IDENTIFIER_LENGTH (t));
  1146. }
  1147.  
  1148. /* Output a .stabs for the symbol defined by DECL,
  1149.    which must be a ..._DECL node in the normal namespace.
  1150.    It may be a CONST_DECL, a FUNCTION_DECL, a PARM_DECL or a VAR_DECL.
  1151.    LOCAL is nonzero if the scope is less than the entire file.  */
  1152.  
  1153. void
  1154. dbxout_symbol (decl, local)
  1155.      tree decl;
  1156.      int local;
  1157. {
  1158.   int letter = 0;
  1159.   tree type = TREE_TYPE (decl);
  1160.   tree context = NULL_TREE;
  1161.   int regno = -1;
  1162.   char *name;
  1163.  
  1164.   /* If global, first output all types and all
  1165.      struct, enum and union tags that have been created
  1166.      and not yet output.  */
  1167.  
  1168.   if (local == 0)
  1169.     {
  1170.       dbxout_tags (gettags ());
  1171.       dbxout_types (get_permanent_types ());
  1172.     }
  1173.  
  1174.   /* Cast avoids warning in old compilers.  */
  1175.   current_sym_code = (STAB_CODE_TYPE) 0;
  1176.   current_sym_value = 0;
  1177.   current_sym_addr = 0;
  1178.  
  1179.   /* The output will always start with the symbol name,
  1180.      so count that always in the length-output-so-far.  */
  1181.  
  1182.   if (DECL_NAME (decl) == 0)
  1183.     return;
  1184.  
  1185.   dbxout_prepare_symbol (decl);
  1186.  
  1187.   current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (decl));
  1188.  
  1189.   switch (TREE_CODE (decl))
  1190.     {
  1191.     case CONST_DECL:
  1192.       /* Enum values are defined by defining the enum type.  */
  1193.       break;
  1194.  
  1195.     case FUNCTION_DECL:
  1196.       if (DECL_RTL (decl) == 0)
  1197.     return;
  1198.       if (TREE_EXTERNAL (decl))
  1199.     break;
  1200.       /* Don't mention a nested function under its parent.  */
  1201.       context = decl_function_context (decl);
  1202.       if (context == current_function_decl)
  1203.     break;
  1204.       if (GET_CODE (DECL_RTL (decl)) != MEM
  1205.       || GET_CODE (XEXP (DECL_RTL (decl), 0)) != SYMBOL_REF)
  1206.     break;
  1207.       FORCE_TEXT;
  1208.       fprintf (asmfile, ".stabs \"%s:%c",
  1209.            IDENTIFIER_POINTER (DECL_NAME (decl)),
  1210.            TREE_PUBLIC (decl) ? 'F' : 'f');
  1211.  
  1212.       current_sym_code = N_FUN;
  1213.       current_sym_addr = XEXP (DECL_RTL (decl), 0);
  1214.  
  1215.       if (TREE_TYPE (TREE_TYPE (decl)))
  1216.     dbxout_type (TREE_TYPE (TREE_TYPE (decl)), 0);
  1217.       else
  1218.     dbxout_type (void_type_node, 0);
  1219.  
  1220.       /* For a nested function, when that function is compiled,
  1221.      mention the containing function name
  1222.      as well as (since dbx wants it) our own assembler-name.  */
  1223.       if (context != 0)
  1224.     fprintf (asmfile, ",%s,%s",
  1225.          DECL_ASSEMBLER_NAME (decl),
  1226.          IDENTIFIER_POINTER (DECL_NAME (context)));
  1227.  
  1228.       dbxout_finish_symbol (decl);
  1229.       break;
  1230.  
  1231.     case TYPE_DECL:
  1232. #if 0
  1233.       /* This seems all wrong.  Outputting most kinds of types gives no name
  1234.      at all.  A true definition gives no name; a cross-ref for a
  1235.      structure can give the tag name, but not a type name.
  1236.      It seems that no typedef name is defined by outputting a type.  */
  1237.  
  1238.       /* If this typedef name was defined by outputting the type,
  1239.      don't duplicate it.  */
  1240.       if (typevec[TYPE_SYMTAB_ADDRESS (type)] == TYPE_DEFINED
  1241.       && TYPE_NAME (TREE_TYPE (decl)) == decl)
  1242.     return;
  1243. #endif
  1244.       /* Don't output the same typedef twice.
  1245.          And don't output what language-specific stuff doesn't want output.  */
  1246.       if (TREE_ASM_WRITTEN (decl)
  1247.       || lang_output_debug_info (TREE_TYPE (decl)) == 0)
  1248.     return;
  1249.  
  1250.       /* Output typedef name.  */
  1251.       FORCE_TEXT;
  1252.       fprintf (asmfile, ".stabs \"%s:t",
  1253.            IDENTIFIER_POINTER (DECL_NAME (decl)));
  1254.  
  1255.       current_sym_code = N_LSYM;
  1256.  
  1257.       dbxout_type (TREE_TYPE (decl), 1);
  1258.       dbxout_finish_symbol (decl);
  1259.  
  1260.       /* Prevent duplicate output of a typedef.  */
  1261.       TREE_ASM_WRITTEN (decl) = 1;
  1262.       break;
  1263.       
  1264.     case PARM_DECL:
  1265.       /* Parm decls go in their own separate chains
  1266.      and are output by dbxout_reg_parms and dbxout_parms.  */
  1267.       abort ();
  1268.  
  1269.     case RESULT_DECL:
  1270.       /* Named return value, treat like a VAR_DECL.  */
  1271.     case VAR_DECL:
  1272.       if (DECL_RTL (decl) == 0)
  1273.     return;
  1274.       /* Don't mention a variable that is external.
  1275.      Let the file that defines it describe it.  */
  1276.       if (TREE_EXTERNAL (decl))
  1277.     break;
  1278.  
  1279.       /* If the variable is really a constant, inform dbx of such.  */
  1280.       if (TREE_STATIC (decl) && TREE_READONLY (decl)
  1281.       && DECL_INITIAL (decl) != 0
  1282.       && ! TREE_ASM_WRITTEN (decl)
  1283.       && (DECL_FIELD_CONTEXT (decl) == NULL_TREE
  1284.           || TREE_CODE (DECL_FIELD_CONTEXT (decl)) == BLOCK))
  1285.     {
  1286.       if (TREE_PUBLIC (decl) == 0)
  1287.         {
  1288.           /* The sun4 assembler does not grok this.  */
  1289.           char *name = IDENTIFIER_POINTER (DECL_NAME (decl));
  1290.           if (TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE
  1291.           || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
  1292.         {
  1293.           int ival = TREE_INT_CST_LOW (DECL_INITIAL (decl));
  1294.           fprintf (asmfile, ".stabs \"%s:c=i%d\",0x%x,0,0,0\n",
  1295.                name, ival, N_LSYM);
  1296.           return;
  1297.         }
  1298.           else if (TREE_CODE (TREE_TYPE (decl)) == REAL_TYPE)
  1299.         {
  1300.           /* don't know how to do this yet.  */
  1301.         }
  1302.           break;
  1303.         }
  1304.       /* else it is something we handle like a normal variable.  */
  1305.     }
  1306.  
  1307.       /* Don't mention a variable at all
  1308.      if it was completely optimized into nothingness.
  1309.  
  1310.      If DECL was from an inline function, then it's rtl
  1311.      is not identically the rtl that was used in this
  1312.      particular compilation.  */
  1313.       if (GET_CODE (DECL_RTL (decl)) == REG)
  1314.     {
  1315.       regno = REGNO (DECL_RTL (decl));
  1316.       if (regno >= FIRST_PSEUDO_REGISTER)
  1317.         regno = reg_renumber[REGNO (DECL_RTL (decl))];
  1318.       if (regno < 0)
  1319.         break;
  1320.     }
  1321.  
  1322.       /* The kind-of-variable letter depends on where
  1323.      the variable is and on the scope of its name:
  1324.      G and N_GSYM for static storage and global scope,
  1325.      S for static storage and file scope,
  1326.      V for static storage and local scope,
  1327.         for those two, use N_LCSYM if data is in bss segment,
  1328.         N_STSYM if in data segment, N_FUN otherwise.
  1329.         (We used N_FUN originally, then changed to N_STSYM
  1330.         to please GDB.  However, it seems that confused ld.
  1331.         Now GDB has been fixed to like N_FUN, says Kingdon.)
  1332.      no letter at all, and N_LSYM, for auto variable,
  1333.      r and N_RSYM for register variable.  */
  1334.  
  1335.       if (GET_CODE (DECL_RTL (decl)) == MEM
  1336.       && GET_CODE (XEXP (DECL_RTL (decl), 0)) == SYMBOL_REF)
  1337.     {
  1338.       if (TREE_PUBLIC (decl))
  1339.         {
  1340.           letter = 'G';
  1341.           current_sym_code = N_GSYM;
  1342.         }
  1343.       else
  1344.         {
  1345.           current_sym_addr = XEXP (DECL_RTL (decl), 0);
  1346.  
  1347.           letter = TREE_PERMANENT (decl) ? 'S' : 'V';
  1348.  
  1349.           if (!DECL_INITIAL (decl))
  1350.         current_sym_code = N_LCSYM;
  1351.           else if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl))
  1352.         /* This is not quite right, but it's the closest
  1353.            of all the codes that Unix defines.  */
  1354.         current_sym_code = N_FUN;
  1355.           else
  1356.         {
  1357. /* Ultrix `as' seems to need this.  */
  1358. #ifdef DBX_STATIC_STAB_DATA_SECTION
  1359.           data_section ();
  1360. #endif
  1361.           current_sym_code = N_STSYM;
  1362.         }
  1363.         }
  1364.     }
  1365.       else if (regno >= 0)
  1366.     {
  1367.       letter = 'r';
  1368.       current_sym_code = N_RSYM;
  1369.       current_sym_value = DBX_REGISTER_NUMBER (regno);
  1370.     }
  1371.       else if (GET_CODE (DECL_RTL (decl)) == MEM
  1372.            && (GET_CODE (XEXP (DECL_RTL (decl), 0)) == MEM
  1373.            || (GET_CODE (XEXP (DECL_RTL (decl), 0)) == REG
  1374.                && REGNO (XEXP (DECL_RTL (decl), 0)) != FRAME_POINTER_REGNUM)))
  1375.     /* If the value is indirect by memory or by a register
  1376.        that isn't the frame pointer
  1377.        then it means the object is variable-sized and address through
  1378.        that register or stack slot.  DBX has no way to represent this
  1379.        so all we can do is output the variable as a pointer.
  1380.        If it's not a parameter, ignore it.
  1381.        (VAR_DECLs like this can be made by integrate.c.)  */
  1382.     {
  1383.       if (GET_CODE (XEXP (DECL_RTL (decl), 0)) == REG)
  1384.         {
  1385.           letter = 'r';
  1386.           current_sym_code = N_RSYM;
  1387.           current_sym_value = DBX_REGISTER_NUMBER (REGNO (XEXP (DECL_RTL (decl), 0)));
  1388.         }
  1389.       else
  1390.         {
  1391.           current_sym_code = N_LSYM;
  1392.           /* DECL_RTL looks like (MEM (MEM (PLUS (REG...) (CONST_INT...)))).
  1393.          We want the value of that CONST_INT.  */
  1394.           current_sym_value
  1395.         = DEBUGGER_AUTO_OFFSET (XEXP (XEXP (DECL_RTL (decl), 0), 0));
  1396.         }
  1397.  
  1398.       /* Effectively do build_pointer_type, but don't cache this type,
  1399.          since it might be temporary whereas the type it points to
  1400.          might have been saved for inlining.  */
  1401.       type = make_node (POINTER_TYPE);
  1402.       TREE_TYPE (type) = TREE_TYPE (decl);
  1403.     }
  1404.       else if (GET_CODE (DECL_RTL (decl)) == MEM
  1405.            && GET_CODE (XEXP (DECL_RTL (decl), 0)) == REG)
  1406.     {
  1407.       current_sym_code = N_LSYM;
  1408.       current_sym_value = DEBUGGER_AUTO_OFFSET (XEXP (DECL_RTL (decl), 0));
  1409.     }
  1410.       else if (GET_CODE (DECL_RTL (decl)) == MEM
  1411.            && GET_CODE (XEXP (DECL_RTL (decl), 0)) == PLUS
  1412.            && GET_CODE (XEXP (XEXP (DECL_RTL (decl), 0), 1)) == CONST_INT)
  1413.     {
  1414.       current_sym_code = N_LSYM;
  1415.       /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...)))
  1416.          We want the value of that CONST_INT.  */
  1417.       current_sym_value = DEBUGGER_AUTO_OFFSET (XEXP (DECL_RTL (decl), 0));
  1418.     }
  1419.       else
  1420.     /* Address might be a MEM, when DECL is a variable-sized object.
  1421.        Or it might be const0_rtx, meaning previous passes
  1422.        want us to ignore this variable.  */
  1423.     break;
  1424.  
  1425.       /* Ok, start a symtab entry and output the variable name.  */
  1426.       FORCE_TEXT;
  1427.       /* One slight hitch: if this is a VAR_DECL which is a static
  1428.      class member, we must put out the mangled name instead of the
  1429.      DECL_NAME.  */
  1430.       {
  1431.     char *name;
  1432.     /* Note also that static member (variable) names DO NOT begin
  1433.        with underscores in .stabs directives.  */
  1434.     if (DECL_LANG_SPECIFIC (decl))
  1435.       {
  1436.         name = DECL_ASSEMBLER_NAME (decl);
  1437.  
  1438.         /* Adding 1 here only works on systems
  1439.            which flush an initial underscore.  */
  1440.         if (name[0] == '_')
  1441.           name += 1;
  1442.       }
  1443.     else
  1444.       name = IDENTIFIER_POINTER (DECL_NAME (decl));
  1445.     fprintf (asmfile, ".stabs \"%s:", name);
  1446.       }
  1447.       if (letter) putc (letter, asmfile);
  1448.       dbxout_type (type, 0);
  1449.       dbxout_finish_symbol (decl);
  1450.       break;
  1451.     }
  1452. }
  1453.  
  1454. static void
  1455. dbxout_prepare_symbol (decl)
  1456.      tree decl;
  1457. {
  1458. #ifdef WINNING_GDB
  1459.   char *filename = DECL_SOURCE_FILE (decl);
  1460.  
  1461.   dbxout_source_file (asmfile, filename);
  1462. #endif
  1463. }
  1464.  
  1465. static void
  1466. dbxout_finish_symbol (sym)
  1467.      tree sym;
  1468. {
  1469.   int line = 0;
  1470. #ifdef WINNING_GDB
  1471.   if (sym != 0)
  1472.     line = DECL_SOURCE_LINE (sym);
  1473. #endif
  1474.   fprintf (asmfile, "\",%d,0,%d,", current_sym_code, line);
  1475.   if (current_sym_addr)
  1476.     output_addr_const (asmfile, current_sym_addr);
  1477.   else
  1478.     fprintf (asmfile, "%d", current_sym_value);
  1479.   putc ('\n', asmfile);
  1480. }
  1481.  
  1482. /* Output definitions of all the decls in a chain.  */
  1483.  
  1484. static void
  1485. dbxout_syms (syms)
  1486.      tree syms;
  1487. {
  1488.   while (syms)
  1489.     {
  1490.       dbxout_symbol (syms, 1);
  1491.       syms = TREE_CHAIN (syms);
  1492.     }
  1493. }
  1494.  
  1495. /* The following two functions output definitions of function parameters.
  1496.    Each parameter gets a definition locating it in the parameter list.
  1497.    Each parameter that is a register variable gets a second definition
  1498.    locating it in the register.
  1499.  
  1500.    Printing or argument lists in gdb uses the definitions that
  1501.    locate in the parameter list.  But reference to the variable in
  1502.    expressions uses preferentially the definition as a register.  */
  1503.  
  1504. /* Output definitions, referring to storage in the parmlist,
  1505.    of all the parms in PARMS, which is a chain of PARM_DECL nodes.  */
  1506.  
  1507. static void
  1508. dbxout_parms (parms)
  1509.      tree parms;
  1510. {
  1511.   for (; parms; parms = TREE_CHAIN (parms))
  1512.     if (DECL_NAME (parms))
  1513.       {
  1514.     int regno = -1;
  1515.  
  1516.     dbxout_prepare_symbol (parms);
  1517.  
  1518.     /* Report parms that live in registers during the function
  1519.        but were passed in memory.  */
  1520.     if (GET_CODE (DECL_RTL (parms)) == REG)
  1521.       regno = REGNO (DECL_RTL (parms));
  1522.     if (regno >= FIRST_PSEUDO_REGISTER)
  1523.       regno = reg_renumber[regno];
  1524.  
  1525.     if (PARM_PASSED_IN_MEMORY (parms))
  1526.       {
  1527.         rtx addr = XEXP (DECL_INCOMING_RTL (parms), 0);
  1528.  
  1529.         /* ??? Here we assume that the parm address is indexed
  1530.            off the frame pointer or arg pointer.
  1531.            If that is not true, we produce meaningless results,
  1532.            but do not crash.  */
  1533.         if (GET_CODE (addr) == PLUS
  1534.         && GET_CODE (XEXP (addr, 1)) == CONST_INT)
  1535.           current_sym_value = INTVAL (XEXP (addr, 1));
  1536.         else
  1537.           current_sym_value = 0;
  1538.  
  1539.         current_sym_code = N_PSYM;
  1540.         current_sym_addr = 0;
  1541.  
  1542.         FORCE_TEXT;
  1543.         if (DECL_NAME (parms))
  1544.           {
  1545.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  1546.  
  1547.         fprintf (asmfile, ".stabs \"%s:p",
  1548.              IDENTIFIER_POINTER (DECL_NAME (parms)));
  1549.           }
  1550.         else
  1551.           {
  1552.         current_sym_nchars = 8;
  1553.         fprintf (asmfile, ".stabs \"(anon):p");
  1554.           }
  1555.  
  1556.         if (regno >= 0)
  1557.           dbxout_type (DECL_ARG_TYPE (parms), 0);
  1558.         else
  1559.           {
  1560.         int original_value = current_sym_value;
  1561.  
  1562.         /* This is the case where the parm is passed as an int or double
  1563.            and it is converted to a char, short or float and stored back
  1564.            in the parmlist.  In this case, describe the parm
  1565.            with the variable's declared type, and adjust the address
  1566.            if the least significant bytes (which we are using) are not
  1567.            the first ones.  */
  1568. #if BYTES_BIG_ENDIAN
  1569.         if (TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  1570.           current_sym_value += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  1571.                     - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  1572. #endif
  1573.  
  1574.         if (GET_CODE (DECL_RTL (parms)) == MEM
  1575.             && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  1576.             && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
  1577.             && INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == current_sym_value)
  1578.           dbxout_type (TREE_TYPE (parms), 0);
  1579.         else
  1580.           {
  1581.             current_sym_value = original_value;
  1582.             dbxout_type (DECL_ARG_TYPE (parms), 0);
  1583.           }
  1584.           }
  1585.         current_sym_value = DEBUGGER_ARG_OFFSET (current_sym_value, addr);
  1586.         dbxout_finish_symbol (parms);
  1587.       }
  1588.     else if (regno >= 0)
  1589.       {
  1590.         /* Parm was passed in registers and lives in registers. 
  1591.            Output a "regparm" symbol for the register it lives in.  */
  1592.  
  1593.         current_sym_code = N_RSYM;
  1594.         current_sym_value = DBX_REGISTER_NUMBER (regno);
  1595.         current_sym_addr = 0;
  1596.  
  1597.         FORCE_TEXT;
  1598.         if (DECL_NAME (parms))
  1599.           {
  1600.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  1601.         fprintf (asmfile, ".stabs \"%s:P",
  1602.              IDENTIFIER_POINTER (DECL_NAME (parms)));
  1603.           }
  1604.         else
  1605.           {
  1606.         current_sym_nchars = 8;
  1607.         fprintf (asmfile, ".stabs \"(anon):P");
  1608.           }
  1609.  
  1610.         dbxout_type (DECL_ARG_TYPE (parms), 0);
  1611.         dbxout_finish_symbol (parms);
  1612.       }
  1613.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  1614.          && XEXP (DECL_RTL (parms), 0) != const0_rtx)
  1615.       {
  1616.         /* Parm was passed in registers but lives on the stack.  */
  1617.         rtx parmreg = DECL_RTL (parms);
  1618.  
  1619.         current_sym_code = N_PSYM;
  1620.         /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))),
  1621.            in which case we want the value of that CONST_INT, or
  1622.            (MEM (REG ...)), in which case we use a value of zero.  */
  1623.         if (GET_CODE (XEXP (parmreg, 0)) == REG)
  1624.           current_sym_value = 0;
  1625.         else
  1626.           {
  1627.         /* Passed by reference.  */
  1628.         if (GET_CODE (parmreg) == MEM
  1629.             && GET_CODE (XEXP (parmreg, 0)) == MEM)
  1630.           parmreg = XEXP (parmreg, 0);
  1631.         current_sym_value = INTVAL (XEXP (XEXP (parmreg, 0), 1));
  1632.           }
  1633.         current_sym_addr = 0;
  1634.  
  1635.         FORCE_TEXT;
  1636.         if (DECL_NAME (parms))
  1637.           {
  1638.         current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  1639.  
  1640.         fprintf (asmfile, ".stabs \"%s:p",
  1641.              IDENTIFIER_POINTER (DECL_NAME (parms)));
  1642.           }
  1643.         else
  1644.           {
  1645.         current_sym_nchars = 8;
  1646.         fprintf (asmfile, ".stabs \"(anon):p");
  1647.           }
  1648.  
  1649.         current_sym_value
  1650.           = DEBUGGER_ARG_OFFSET (current_sym_value,
  1651.                      XEXP (DECL_RTL (parms), 0));
  1652.         dbxout_type (TREE_TYPE (parms), 0);
  1653.         dbxout_finish_symbol (parms);
  1654.       }
  1655.       }
  1656. }
  1657.  
  1658. /* Output definitions for the places where parms live during the function,
  1659.    when different from where they were passed, when the parms were passed
  1660.    in memory.
  1661.  
  1662.    It is not useful to do this for parms passed in registers
  1663.    that live during the function in different registers, because it is
  1664.    impossible to look in the passed register for the passed value,
  1665.    so we use the within-the-function register to begin with.
  1666.  
  1667.    PARMS is a chain of PARM_DECL nodes.  */
  1668.  
  1669. static void
  1670. dbxout_reg_parms (parms)
  1671.      tree parms;
  1672. {
  1673.   for (; parms; parms = TREE_CHAIN (parms))
  1674.     if (DECL_NAME (parms))
  1675.       {
  1676.     int regno = -1;
  1677.     int parm_passed_in_memory;
  1678.  
  1679.     dbxout_prepare_symbol (parms);
  1680.  
  1681.     /* Report parms that live in registers during the function
  1682.        but were passed in memory.  */
  1683.     if (GET_CODE (DECL_RTL (parms)) == REG)
  1684.       regno = REGNO (DECL_RTL (parms));
  1685.     if (regno >= FIRST_PSEUDO_REGISTER)
  1686.       regno = reg_renumber[regno];
  1687.  
  1688.     parm_passed_in_memory = PARM_PASSED_IN_MEMORY (parms);
  1689.  
  1690. #ifdef FUNCTION_ARG_PASS_BY_REFERENCE
  1691.     /* This implements debug info compatible with Sun's &^#$* calling convention.
  1692.        If the argument is (MEM (REG X)) and X is not SP or FP, then it is the
  1693.        register which points to the passed argument.
  1694.        
  1695.        GDB knows (for now) that an aggregate passed in a register is really
  1696.        an invisible reference.  This lossage cannot be supported once we have
  1697.        BLKmode registers.  */
  1698.     if (GET_CODE (DECL_RTL (parms)) == MEM
  1699.         && GET_CODE (XEXP (DECL_RTL (parms), 0)) == REG
  1700.         && REGNO (XEXP (DECL_RTL (parms), 0)) != STACK_POINTER_REGNUM
  1701.         && REGNO (XEXP (DECL_RTL (parms), 0)) != FRAME_POINTER_REGNUM)
  1702.       {
  1703.         regno = REGNO (XEXP (DECL_RTL (parms), 0));
  1704.         parm_passed_in_memory = 1;
  1705.       }
  1706. #endif
  1707.  
  1708.     if (regno >= 0 && parm_passed_in_memory)
  1709.       {
  1710.         current_sym_code = N_RSYM;
  1711.         current_sym_value = DBX_REGISTER_NUMBER (regno);
  1712.         current_sym_addr = 0;
  1713.  
  1714.         FORCE_TEXT;
  1715.         if (DECL_NAME (parms))
  1716.           {
  1717.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  1718.         fprintf (asmfile, ".stabs \"%s:r",
  1719.              IDENTIFIER_POINTER (DECL_NAME (parms)));
  1720.           }
  1721.         else
  1722.           {
  1723.         current_sym_nchars = 8;
  1724.         fprintf (asmfile, ".stabs \"(anon):r");
  1725.           }
  1726.         dbxout_type (TREE_TYPE (parms), 0);
  1727.         dbxout_finish_symbol (parms);
  1728.       }
  1729.     /* Report parms that live in memory but not where they were passed.  */
  1730.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  1731.          && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  1732.          && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
  1733.          && PARM_PASSED_IN_MEMORY (parms)
  1734.          && ! rtx_equal_p (DECL_RTL (parms), DECL_INCOMING_RTL (parms)))
  1735.       {
  1736. #if 0                /* ??? It is not clear yet what should replace this.  */
  1737.         int offset = DECL_OFFSET (parms) / BITS_PER_UNIT;
  1738.         /* A parm declared char is really passed as an int,
  1739.            so it occupies the least significant bytes.
  1740.            On a big-endian machine those are not the low-numbered ones.  */
  1741. #if BYTES_BIG_ENDIAN
  1742.         if (offset != -1 && TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  1743.           offset += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  1744.              - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  1745. #endif
  1746.         if (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) != offset) {...}
  1747. #endif
  1748.         current_sym_code = N_LSYM;
  1749.         current_sym_value = DEBUGGER_AUTO_OFFSET (XEXP (DECL_RTL (parms), 0));
  1750.         current_sym_addr = 0;
  1751.         FORCE_TEXT;
  1752.         if (DECL_NAME (parms))
  1753.           {
  1754.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  1755.         fprintf (asmfile, ".stabs \"%s:",
  1756.              IDENTIFIER_POINTER (DECL_NAME (parms)));
  1757.           }
  1758.         else
  1759.           {
  1760.         current_sym_nchars = 8;
  1761.         fprintf (asmfile, ".stabs \"(anon):");
  1762.           }
  1763.         dbxout_type (TREE_TYPE (parms), 0);
  1764.         dbxout_finish_symbol (parms);
  1765.       }
  1766.       }
  1767. }
  1768.  
  1769. /* Given a chain of ..._TYPE nodes (as come in a parameter list),
  1770.    output definitions of those names, in raw form */
  1771.  
  1772. void
  1773. dbxout_args (args)
  1774.      tree args;
  1775. {
  1776.   while (args)
  1777.     {
  1778.       putc (',', asmfile);
  1779.       dbxout_type (TREE_VALUE (args), 0);
  1780.       CHARS (1);
  1781.       args = TREE_CHAIN (args);
  1782.     }
  1783. }
  1784.  
  1785. /* Given a chain of ..._TYPE nodes,
  1786.    find those which have typedef names and output those names.
  1787.    This is to ensure those types get output.  */
  1788.  
  1789. void
  1790. dbxout_types (types)
  1791.      register tree types;
  1792. {
  1793.   while (types)
  1794.     {
  1795.       if (TYPE_NAME (types)
  1796.       && TREE_CODE (TYPE_NAME (types)) == TYPE_DECL
  1797.       && ! TREE_ASM_WRITTEN (TYPE_NAME (types)))
  1798.     dbxout_symbol (TYPE_NAME (types), 1);
  1799.       types = TREE_CHAIN (types);
  1800.     }
  1801. }
  1802.  
  1803. /* Output the tags (struct, union and enum definitions with names) for a block,
  1804.    given a list of them (a chain of TREE_LIST nodes) in TAGS.
  1805.    We must check to include those that have been mentioned already with
  1806.    only a cross-reference.  */
  1807.  
  1808. void
  1809. dbxout_tags (tags)
  1810.      tree tags;
  1811. {
  1812.   register tree link;
  1813.   for (link = tags; link; link = TREE_CHAIN (link))
  1814.     {
  1815.       register tree type;
  1816.       if (TREE_PURPOSE (link) != 0
  1817.       && ! TREE_ASM_WRITTEN (link)
  1818.       && TREE_VALUE (link)
  1819.       && (type = TYPE_MAIN_VARIANT (TREE_VALUE (link)))
  1820.       && TYPE_SIZE (type) != 0
  1821.       && lang_output_debug_info (type))
  1822.     {
  1823.       TREE_ASM_WRITTEN (link) = 1;
  1824.       current_sym_code = N_LSYM;
  1825.       current_sym_value = 0;
  1826.       current_sym_addr = 0;
  1827.       current_sym_nchars = 2 + IDENTIFIER_LENGTH (TREE_PURPOSE (link));
  1828.  
  1829.       FORCE_TEXT;
  1830.       fprintf (asmfile, ".stabs \"%s:T",
  1831.            ANON_AGGRNAME_P (TREE_PURPOSE (link))
  1832.            ? "" : IDENTIFIER_POINTER (TREE_PURPOSE (link)));
  1833.  
  1834.       /* If there is a typedecl for this type with the same name
  1835.          as the tag, output an abbreviated form for that typedecl.  */
  1836.       if (use_gdb_dbx_extensions
  1837.           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  1838.           && DECL_NAME (TYPE_NAME (type)) == TREE_PURPOSE (link))
  1839.         {
  1840.           putc ('t', asmfile);
  1841.           TREE_ASM_WRITTEN (TYPE_NAME (type)) = 1;
  1842.         }
  1843.       dbxout_type (type, 1);
  1844.       dbxout_finish_symbol (0);
  1845.  
  1846. /* Change by Bryan Boreham, Kewill, Fri Sep 22 16:57:42 1989.
  1847.    Added to make sure all fully-output structs have typedefs.    */
  1848.  
  1849.       if (!ANON_AGGRNAME_P (TREE_PURPOSE (link))
  1850.           && (TREE_CODE (TYPE_NAME (type)) != TYPE_DECL
  1851.           || DECL_NAME (TYPE_NAME (type)) != TREE_PURPOSE (link)))
  1852.         {
  1853.           fprintf (asmfile, ".stabs \"%s:t",
  1854.                IDENTIFIER_POINTER (TREE_PURPOSE (link)));
  1855.           
  1856.           current_sym_code = N_LSYM;
  1857.  
  1858.           dbxout_type (type, 1);
  1859.           dbxout_finish_symbol ();
  1860.         }
  1861.     }
  1862.     }
  1863. }
  1864.  
  1865. /* Output everything about a symbol block (a BLOCK node
  1866.    that represents a scope level),
  1867.    including recursive output of contained blocks.
  1868.  
  1869.    BLOCK is the BLOCK node.
  1870.    DEPTH is its depth within containing symbol blocks.
  1871.    ARGS is usually zero; but for the outermost block of the
  1872.    body of a function, it is a chain of PARM_DECLs for the function parameters.
  1873.    We output definitions of all the register parms
  1874.    as if they were local variables of that block.
  1875.  
  1876.    Actually, BLOCK may be several blocks chained together.
  1877.    We handle them all in sequence.  */
  1878.  
  1879. static void
  1880. dbxout_block (block, depth, args)
  1881.      register tree block;
  1882.      int depth;
  1883.      tree args;
  1884. {
  1885.   int blocknum;
  1886.  
  1887.   while (block)
  1888.     {
  1889.       /* Ignore blocks never expanded or otherwise marked as real.  */
  1890.       if (TREE_USED (block))
  1891.     {
  1892.       /* In dbx format, the syms of a block come before the N_LBRAC.  */
  1893.       dbxout_tags (BLOCK_TYPE_TAGS (block));
  1894.       dbxout_syms (BLOCK_VARS (block));
  1895.       if (args)
  1896.         dbxout_reg_parms (args);
  1897.  
  1898.       /* Now output an N_LBRAC symbol to represent the beginning of
  1899.          the block.  Use the block's tree-walk order to generate
  1900.          the assembler symbols LBBn and LBEn
  1901.          that final will define around the code in this block.  */
  1902.       if (depth > 0)
  1903.         {
  1904.           char buf[20];
  1905.           blocknum = next_block_number++;
  1906.           ASM_GENERATE_INTERNAL_LABEL (buf, "LBB", blocknum);
  1907.  
  1908.           if (TREE_LANG_FLAG_1 (block) == 0
  1909.           && TREE_LANG_FLAG_2 (block) == 1)
  1910.         {
  1911.           /* A catch block.  Must precede N_LBRAC.  */
  1912.           tree decl = BLOCK_VARS (block);
  1913.           char *name = DECL_NAME (decl) == NULL_TREE
  1914.             ? "default" : EXCEPTION_NAME_LENGTH + IDENTIFIER_POINTER (DECL_NAME (decl));
  1915.           fprintf (asmfile, ".stabs \"%s:C1\",%d,0,0,", name, N_CATCH);
  1916.           assemble_name (asmfile, buf);
  1917.           fprintf (asmfile, "\n");
  1918.         }
  1919.  
  1920.           fprintf (asmfile, ".stabn %d,0,0,", N_LBRAC);
  1921.           assemble_name (asmfile, buf);
  1922.           fprintf (asmfile, "\n");
  1923.         }
  1924.  
  1925.       /* Output the subblocks.  */
  1926.       dbxout_block (BLOCK_SUBBLOCKS (block), depth + 1, 0);
  1927.  
  1928.       /* Refer to the marker for the end of the block.  */
  1929.       if (depth > 0)
  1930.         {
  1931.           char buf[20];
  1932.           ASM_GENERATE_INTERNAL_LABEL (buf, "LBE", blocknum);
  1933.           fprintf (asmfile, ".stabn %d,0,0,", N_RBRAC);
  1934.           assemble_name (asmfile, buf);
  1935.           fprintf (asmfile, "\n");
  1936.         }
  1937.     }
  1938.       block = BLOCK_CHAIN (block);
  1939.     }
  1940. }
  1941.  
  1942. /* Output dbx data for a function definition.
  1943.    This includes a definition of the function name itself (a symbol),
  1944.    definitions of the parameters (locating them in the parameter list)
  1945.    and then output the block that makes up the function's body
  1946.    (including all the auto variables of the function).  */
  1947.  
  1948. void
  1949. dbxout_function (decl)
  1950.      tree decl;
  1951. {
  1952.   extern tree value_identifier;
  1953.  
  1954.   dbxout_symbol (decl, 0);
  1955.   dbxout_parms (DECL_ARGUMENTS (decl));
  1956.   if (DECL_NAME (DECL_RESULT (decl)) != value_identifier)
  1957.     dbxout_symbol (DECL_RESULT (decl), 1);
  1958.   dbxout_block (DECL_INITIAL (decl), 0, DECL_ARGUMENTS (decl));
  1959.   
  1960.   /* If we made any temporary types in this fn that weren't
  1961.      output, output them now.  */
  1962.   dbxout_types (get_temporary_types ());
  1963. }
  1964.  
  1965. #else /* not DBX_DEBUGGING_INFO */
  1966.  
  1967. void
  1968. dbxout_init (asm_file, input_file_name)
  1969.      FILE *asm_file;
  1970.      char *input_file_name;
  1971. {}
  1972.  
  1973. void
  1974. dbxout_symbol (decl, local)
  1975.      tree decl;
  1976.      int local;
  1977. {}
  1978.  
  1979. void
  1980. dbxout_types (types)
  1981.      register tree types;
  1982. {}
  1983.  
  1984. void
  1985. dbxout_tags (tags)
  1986.      tree tags;
  1987. {}
  1988.  
  1989. void
  1990. dbxout_function (decl)
  1991.      tree decl;
  1992. {}
  1993.  
  1994. #endif /* DBX_DEBUGGING_INFO */
  1995.