home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / sdbout.c < prev    next >
C/C++ Source or Header  |  1991-05-05  |  36KB  |  1,352 lines

  1. /* Output sdb-format symbol table information from GNU compiler.
  2.    Copyright (C) 1988-1990 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 1, 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. #include "config.h"
  22.  
  23. #ifdef SDB_DEBUGGING_INFO
  24.  
  25. #include "tree.h"
  26. #include "rtl.h"
  27. #include <stdio.h>
  28. #include "regs.h"
  29.  
  30. #ifdef USG
  31. #include <syms.h>
  32. #else
  33. #include "syms.h"
  34. #endif
  35.  
  36. /* Use T_INT if we don't have T_VOID.  */
  37. #if !defined(T_VOID) && !defined(__GNU_SYMS__)
  38. #define T_VOID T_INT
  39. #endif
  40.  
  41. /* #include <storclass.h>  used to be this instead of syms.h.  */
  42.  
  43. #define MIN(x, y) ((x) < (y) ? (x) : (y))
  44. #define MAX(x, y) ((x) > (y) ? (x) : (y))
  45.  
  46. /* 1 if PARM is passed to this function in memory.  */
  47.  
  48. #define PARM_PASSED_IN_MEMORY(PARM) \
  49.  (GET_CODE (DECL_INCOMING_RTL (PARM)) == MEM)
  50.  
  51. /* A C expression for the integer offset value of an automatic variable
  52.    (C_AUTO) having address X (an RTX).  */
  53. #ifndef DEBUGGER_AUTO_OFFSET
  54. #define DEBUGGER_AUTO_OFFSET(X) \
  55.   (GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0)
  56. #endif
  57.  
  58. /* A C expression for the integer offset value of an argument (C_ARG)
  59.    having address X (an RTX).  The nominal offset is OFFSET.  */
  60. #ifndef DEBUGGER_ARG_OFFSET
  61. #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET)
  62. #endif
  63.  
  64. /* Line number of beginning of current function, minus one.
  65.    Negative means not in a function or not using sdb.  */
  66.  
  67. int sdb_begin_function_line = -1;
  68.  
  69. /* Counter to generate unique "names" for nameless struct members.  */
  70.  
  71. static int unnamed_struct_number = 0;
  72.  
  73. extern FILE *asm_out_file;
  74.  
  75. extern tree current_function_decl;
  76.  
  77. void sdbout_init ();
  78. void sdbout_symbol ();
  79. void sdbout_tags();
  80. void sdbout_types();
  81.  
  82. static void sdbout_syms ();
  83. static void sdbout_one_type ();
  84. static void sdbout_queue_anonymous_type ();
  85. static void sdbout_dequeue_anonymous_type ();
  86. static int plain_type_1 ();
  87.  
  88. /* Define the default sizes for various types.  */
  89.  
  90. #ifndef CHAR_TYPE_SIZE
  91. #define CHAR_TYPE_SIZE BITS_PER_UNIT
  92. #endif
  93.  
  94. #ifndef SHORT_TYPE_SIZE
  95. #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
  96. #endif
  97.  
  98. #ifndef INT_TYPE_SIZE
  99. #define INT_TYPE_SIZE BITS_PER_WORD
  100. #endif
  101.  
  102. #ifndef LONG_TYPE_SIZE
  103. #define LONG_TYPE_SIZE BITS_PER_WORD
  104. #endif
  105.  
  106. #ifndef LONG_LONG_TYPE_SIZE
  107. #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
  108. #endif
  109.  
  110. #ifndef FLOAT_TYPE_SIZE
  111. #define FLOAT_TYPE_SIZE BITS_PER_WORD
  112. #endif
  113.  
  114. #ifndef DOUBLE_TYPE_SIZE
  115. #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  116. #endif
  117.  
  118. #ifndef LONG_DOUBLE_TYPE_SIZE
  119. #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
  120. #endif
  121.  
  122. /* Random macros describing parts of SDB data.  */
  123.  
  124. /* Put something here if lines get too long */
  125. #define CONTIN
  126.  
  127. /* Default value of delimiter is ";".  */
  128. #ifndef SDB_DELIM
  129. #define SDB_DELIM    ";"
  130. #endif
  131.  
  132. /* Maximum number of dimensions the assembler will allow.  */
  133. #ifndef SDB_MAX_DIM
  134. #define SDB_MAX_DIM 4
  135. #endif
  136.  
  137. #ifndef PUT_SDB_SCL
  138. #define PUT_SDB_SCL(a) fprintf(asm_out_file, "\t.scl\t%d%s", (a), SDB_DELIM)
  139. #endif
  140.  
  141. #ifndef PUT_SDB_INT_VAL
  142. #define PUT_SDB_INT_VAL(a) fprintf (asm_out_file, "\t.val\t%d%s", (a), SDB_DELIM)
  143. #endif
  144.  
  145. #ifndef PUT_SDB_VAL
  146. #define PUT_SDB_VAL(a)                \
  147. ( fputs ("\t.val\t", asm_out_file),        \
  148.   output_addr_const (asm_out_file, (a)),    \
  149.   fprintf (asm_out_file, SDB_DELIM))
  150. #endif
  151.  
  152. #ifndef PUT_SDB_DEF
  153. #define PUT_SDB_DEF(a)                \
  154. do { fprintf (asm_out_file, "\t.def\t");    \
  155.      ASM_OUTPUT_LABELREF (asm_out_file, a);     \
  156.      fprintf (asm_out_file, SDB_DELIM); } while (0)
  157. #endif
  158.  
  159. #ifndef PUT_SDB_PLAIN_DEF
  160. #define PUT_SDB_PLAIN_DEF(a) fprintf(asm_out_file,"\t.def\t.%s%s",a, SDB_DELIM)
  161. #endif
  162.  
  163. #ifndef PUT_SDB_ENDEF
  164. #define PUT_SDB_ENDEF fputs("\t.endef\n", asm_out_file)
  165. #endif
  166.  
  167. #ifndef PUT_SDB_TYPE
  168. #define PUT_SDB_TYPE(a) fprintf(asm_out_file, "\t.type\t0%o%s", a, SDB_DELIM)
  169. #endif
  170.  
  171. #ifndef PUT_SDB_SIZE
  172. #define PUT_SDB_SIZE(a) fprintf(asm_out_file, "\t.size\t%d%s", a, SDB_DELIM)
  173. #endif
  174.  
  175. #ifndef PUT_SDB_START_DIM
  176. #define PUT_SDB_START_DIM fprintf(asm_out_file, "\t.dim\t")
  177. #endif
  178.  
  179. #ifndef PUT_SDB_NEXT_DIM
  180. #define PUT_SDB_NEXT_DIM(a) fprintf(asm_out_file, "%d,", a)
  181. #endif
  182.  
  183. #ifndef PUT_SDB_LAST_DIM
  184. #define PUT_SDB_LAST_DIM(a) fprintf(asm_out_file, "%d%s", a, SDB_DELIM)
  185. #endif
  186.  
  187. #ifndef PUT_SDB_TAG
  188. #define PUT_SDB_TAG(a)                \
  189. do { fprintf (asm_out_file, "\t.tag\t");    \
  190.      ASM_OUTPUT_LABELREF (asm_out_file, a);    \
  191.      fprintf (asm_out_file, SDB_DELIM); } while (0)
  192. #endif
  193.  
  194. #ifndef PUT_SDB_BLOCK_START
  195. #define PUT_SDB_BLOCK_START(LINE)        \
  196.   fprintf (asm_out_file,            \
  197.        "\t.def\t.bb%s\t.val\t.%s\t.scl\t100%s\t.line\t%d%s\t.endef\n", \
  198.        SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
  199. #endif
  200.  
  201. #ifndef PUT_SDB_BLOCK_END
  202. #define PUT_SDB_BLOCK_END(LINE)            \
  203.   fprintf (asm_out_file,            \
  204.        "\t.def\t.eb%s\t.val\t.%s\t.scl\t100%s\t.line\t%d%s\t.endef\n",  \
  205.        SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
  206. #endif
  207.  
  208. #ifndef PUT_SDB_FUNCTION_START
  209. #define PUT_SDB_FUNCTION_START(LINE)        \
  210.   fprintf (asm_out_file,            \
  211.        "\t.def\t.bf%s\t.val\t.%s\t.scl\t101%s\t.line\t%d%s\t.endef\n", \
  212.        SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
  213. #endif
  214.  
  215. #ifndef PUT_SDB_FUNCTION_END
  216. #define PUT_SDB_FUNCTION_END(LINE)        \
  217.   fprintf (asm_out_file,            \
  218.        "\t.def\t.ef%s\t.val\t.%s\t.scl\t101%s\t.line\t%d%s\t.endef\n", \
  219.        SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
  220. #endif
  221.  
  222. #ifndef PUT_SDB_EPILOGUE_END
  223. #define PUT_SDB_EPILOGUE_END(NAME)            \
  224. do { fprintf (asm_out_file, "\t.def\t");        \
  225.      ASM_OUTPUT_LABELREF (asm_out_file, NAME);        \
  226.      fprintf (asm_out_file,                \
  227.           "%s\t.val\t.%s\t.scl\t-1%s\t.endef\n",    \
  228.           SDB_DELIM, SDB_DELIM, SDB_DELIM); } while (0)
  229. #endif
  230.  
  231. #ifndef SDB_GENERATE_FAKE
  232. #define SDB_GENERATE_FAKE(BUFFER, NUMBER) \
  233.   sprintf ((BUFFER), ".%dfake", (NUMBER));
  234. #endif
  235.  
  236. /* Return the sdb tag identifier string for TYPE
  237.    if TYPE has already been defined; otherwise return a null pointer.   */
  238.  
  239. #define KNOWN_TYPE_TAG(type) (char *)(TYPE_SYMTAB_ADDRESS (type))
  240.  
  241. /* Set the sdb tag identifier string for TYPE to NAME.  */
  242.  
  243. #define SET_KNOWN_TYPE_TAG(TYPE, NAME) \
  244.   (TYPE_SYMTAB_ADDRESS (TYPE) = (int)(NAME))
  245.  
  246. /* Return the name (a string) of the struct, union or enum tag
  247.    described by the TREE_LIST node LINK.  This is 0 for an anonymous one.  */
  248.  
  249. #define TAG_NAME(link) \
  250.   (((link) && TREE_PURPOSE ((link)) \
  251.     && IDENTIFIER_POINTER (TREE_PURPOSE ((link)))) \
  252.    ? IDENTIFIER_POINTER (TREE_PURPOSE ((link))) : (char *) 0)
  253.  
  254. /* Ensure we don't output a negative line number.  */
  255. #define MAKE_LINE_SAFE(line)  \
  256.   if (line <= sdb_begin_function_line) line = sdb_begin_function_line + 1
  257.  
  258. /* Set up for SDB output at the start of compilation.  */
  259.  
  260. void
  261. sdbout_init ()
  262. {
  263.   /* Output all the initial permanent types.  */
  264.   sdbout_types (nreverse (get_permanent_types ()));
  265. }
  266.  
  267. #if 0
  268.  
  269. /* return the tag identifier for type
  270.  */
  271.  
  272. {
  273. char *
  274. tag_of_ru_type (type,link)
  275.      tree type,link;
  276. {
  277.   if (TYPE_SYMTAB_ADDRESS (type))
  278.     return (char *)TYPE_SYMTAB_ADDRESS (type);
  279.   if (link && TREE_PURPOSE (link)
  280.       && IDENTIFIER_POINTER (TREE_PURPOSE (link)))
  281.     TYPE_SYMTAB_ADDRESS (type)
  282.       = (int)IDENTIFIER_POINTER (TREE_PURPOSE (link));
  283.   else
  284.     return (char *) TYPE_SYMTAB_ADDRESS (type);
  285. }
  286. #endif
  287.  
  288. /* Return a unique string to name an anonymous type.  */
  289.  
  290. static char *
  291. gen_fake_label ()
  292. {
  293.   char label[10];
  294.   char *labelstr;
  295.   SDB_GENERATE_FAKE (label, unnamed_struct_number);
  296.   unnamed_struct_number++;
  297.   labelstr = (char *) permalloc (strlen (label) + 1);
  298.   strcpy (labelstr, label);
  299.   return labelstr;
  300. }
  301.  
  302. /* Return the number which describes TYPE for SDB.
  303.    For pointers, etc., this function is recursive.
  304.    Each record, union or enumeral type must already have had a
  305.    tag number output.  */
  306.  
  307. /* The number is given by d6d5d4d3d2d1bbbb
  308.    where bbbb is 4 bit basic type, and di indicate  one of notype,ptr,fn,array.
  309.    Thus, char *foo () has bbbb=T_CHAR
  310.               d1=D_FCN
  311.               d2=D_PTR
  312.  N_BTMASK=     017       1111     basic type field.
  313.  N_TSHIFT=       2                derived type shift
  314.  N_BTSHFT=       4                Basic type shift */
  315.  
  316. /* Produce the number that describes a pointer, function or array type.
  317.    PREV is the number describing the target, value or element type.
  318.    DT_type describes how to transform that type.  */
  319. #define PUSH_DERIVED_LEVEL(DT_type,PREV) \
  320.   ((((PREV)&~N_BTMASK)<<N_TSHIFT)|(DT_type<<N_BTSHFT)|(PREV&N_BTMASK))
  321.  
  322. /* Number of elements used in sdb_dims.  */
  323. static int sdb_n_dims = 0;
  324.  
  325. /* Table of array dimensions of current type.  */
  326. static int sdb_dims[SDB_MAX_DIM];
  327.  
  328. /* Size of outermost array currently being processed.  */
  329. static int sdb_type_size = -1;
  330.  
  331. static int
  332. plain_type (type)
  333.      tree type;
  334. {
  335.   int val = plain_type_1 (type);
  336.  
  337.   /* If we have already saved up some array dimensions, print them now.  */
  338.   if (sdb_n_dims > 0)
  339.     {
  340.       int i;
  341.       PUT_SDB_START_DIM;
  342.       for (i = sdb_n_dims - 1; i > 0; i--)
  343.     PUT_SDB_NEXT_DIM (sdb_dims[i]);
  344.       PUT_SDB_LAST_DIM (sdb_dims[0]);
  345.       sdb_n_dims = 0;
  346.  
  347.       sdb_type_size = int_size_in_bytes (type);
  348.       /* Don't kill sdb if type is not laid out or has variable size.  */
  349.       if (sdb_type_size < 0)
  350.     sdb_type_size = 0;
  351.     }
  352.   /* If we have computed the size of an array containing this type,
  353.      print it now.  */
  354.   if (sdb_type_size >= 0)
  355.     {
  356.       PUT_SDB_SIZE (sdb_type_size);
  357.       sdb_type_size = -1;
  358.     }
  359.   return val;
  360. }
  361.  
  362. static void
  363. sdbout_record_type_name (type)
  364.      tree type;
  365. {
  366.   char *name = 0;
  367.   int no_name;
  368.  
  369.   if (KNOWN_TYPE_TAG (type))
  370.     return;
  371.  
  372.   if (TYPE_NAME (type) != 0)
  373.     {
  374.       tree t = 0;
  375.       /* Find the IDENTIFIER_NODE for the type name.  */
  376.       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  377.     {
  378.       t = TYPE_NAME (type);
  379.     }
  380. #if 0  /* Don't use typedef names.  */
  381.       else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
  382.     {
  383.       t = DECL_NAME (TYPE_NAME (type));
  384.     }
  385. #endif
  386.  
  387.       /* Now get the name as a string, or invent one.  */
  388.       if (t != 0)
  389.     name = IDENTIFIER_POINTER (t);
  390.     }
  391.  
  392.   no_name = (name == 0 || *name == 0);
  393.   if (no_name)
  394.     name = gen_fake_label ();
  395.  
  396.   SET_KNOWN_TYPE_TAG (type, name);
  397. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  398.   if (no_name)
  399.     sdbout_queue_anonymous_type (type);
  400. #endif
  401. }
  402.  
  403. static int
  404. plain_type_1 (type)
  405.      tree type;
  406. {
  407.   if (type == 0)
  408.     type = void_type_node;
  409.   if (type == error_mark_node)
  410.     type = integer_type_node;
  411.   type = TYPE_MAIN_VARIANT (type);
  412.  
  413.   switch (TREE_CODE (type))
  414.     {
  415.     case VOID_TYPE:
  416.       return T_VOID;
  417.     case INTEGER_TYPE:
  418.       {
  419.     int size = int_size_in_bytes (type) * BITS_PER_UNIT;
  420.     if (size == CHAR_TYPE_SIZE)
  421.       return (TREE_UNSIGNED (type) ? T_UCHAR : T_CHAR);
  422.     if (size == SHORT_TYPE_SIZE)
  423.       return (TREE_UNSIGNED (type) ? T_USHORT : T_SHORT);
  424.     if (size == INT_TYPE_SIZE)
  425.       return (TREE_UNSIGNED (type) ? T_UINT : T_INT);
  426.     return 0;
  427.       }
  428.  
  429.     case REAL_TYPE:
  430.       {
  431.     int size = int_size_in_bytes (type) * BITS_PER_UNIT;
  432.     if (size == FLOAT_TYPE_SIZE)
  433.       return T_FLOAT;
  434.     if (size == DOUBLE_TYPE_SIZE)
  435.       return T_DOUBLE;
  436.     return 0;
  437.       }
  438.  
  439.     case ARRAY_TYPE:
  440.       {
  441.     int m;
  442.     m = plain_type_1 (TREE_TYPE (type));
  443.     if (sdb_n_dims < SDB_MAX_DIM)
  444.       sdb_dims[sdb_n_dims++]
  445.         = (TYPE_DOMAIN (type)
  446.            ? TREE_INT_CST_LOW (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) + 1
  447.            : 0);
  448.     return PUSH_DERIVED_LEVEL (DT_ARY, m);
  449.       }
  450.  
  451.     case RECORD_TYPE:
  452.     case UNION_TYPE:
  453.     case ENUMERAL_TYPE:
  454.       {
  455.     char *tag;
  456. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  457.     sdbout_record_type_name (type);
  458. #endif
  459.     if ((TREE_ASM_WRITTEN (type) && KNOWN_TYPE_TAG (type) != 0)
  460. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  461.         || TYPE_MODE (type) != VOIDmode
  462. #endif
  463.         )
  464.       {
  465.         /* Output the referenced structure tag name
  466.            only if the .def has already been finished.
  467.            At least on 386, the Unix assembler
  468.            cannot handle forward references to tags.  */
  469.         /* But the 88100, it requires them, sigh... */
  470.         tag = KNOWN_TYPE_TAG (type);
  471.         PUT_SDB_TAG (tag);
  472.       }
  473.     sdb_type_size = int_size_in_bytes (type);
  474.     if (sdb_type_size < 0)
  475.       sdb_type_size = 0;
  476.     return ((TREE_CODE (type) == RECORD_TYPE) ? T_STRUCT
  477.         : (TREE_CODE (type) == UNION_TYPE) ? T_UNION
  478.         : T_ENUM);
  479.       }
  480.     case POINTER_TYPE:
  481.     case REFERENCE_TYPE:
  482.       {
  483.     int m = plain_type_1 (TREE_TYPE (type));
  484.     return PUSH_DERIVED_LEVEL (DT_PTR, m);
  485.       }
  486.     case FUNCTION_TYPE:
  487.     case METHOD_TYPE:
  488.       {
  489.     int m = plain_type_1 (TREE_TYPE (type));
  490.     return PUSH_DERIVED_LEVEL (DT_FCN, m);
  491.       }
  492.     default:
  493.       return 0;
  494.     }
  495. }
  496.  
  497. /* Output the symbols defined in block number DO_BLOCK.
  498.    Set NEXT_BLOCK_NUMBER to 0 before calling.
  499.  
  500.    This function works by walking the tree structure of blocks,
  501.    counting blocks until it finds the desired block.  */
  502.  
  503. static int do_block = 0;
  504.  
  505. static int next_block_number;
  506.  
  507. static void
  508. sdbout_block (block)
  509.      register tree block;
  510. {
  511.   while (block)
  512.     {
  513.       /* Ignore blocks never expanded or otherwise marked as real.  */
  514.       if (TREE_USED (block))
  515.     {
  516.       /* When we reach the specified block, output its symbols.  */
  517.       if (next_block_number == do_block)
  518.         {
  519.           sdbout_tags (BLOCK_TYPE_TAGS (block));
  520.           sdbout_syms (BLOCK_VARS (block));
  521.         }
  522.  
  523.       /* If we are past the specified block, stop the scan.  */
  524.       if (next_block_number > do_block)
  525.         return;
  526.  
  527.       next_block_number++;
  528.  
  529.       /* Scan the blocks within this block.  */
  530.       sdbout_block (BLOCK_SUBBLOCKS (block));
  531.     }
  532.  
  533.       block = BLOCK_CHAIN (block);
  534.     }
  535. }
  536.  
  537. /* Call sdbout_symbol on each decl in the chain SYMS.  */
  538.  
  539. static void
  540. sdbout_syms (syms)
  541.      tree syms;
  542. {
  543.   while (syms)
  544.     {
  545.       sdbout_symbol (syms, 1);
  546.       syms = TREE_CHAIN (syms);
  547.     }
  548. }
  549.  
  550. /* Output SDB information for a symbol described by DECL.
  551.    LOCAL is nonzero if the symbol is not file-scope.  */
  552.  
  553. void
  554. sdbout_symbol (decl, local)
  555.      tree decl;
  556.      int local;
  557. {
  558.   int letter = 0;
  559.   tree type = TREE_TYPE (decl);
  560.   rtx value;
  561.   int regno = -1;
  562.   char *name;
  563.  
  564.   /* If global, first output all types and all
  565.      struct, enum and union tags that have been created
  566.      and not yet output.  */
  567.  
  568.   if (local == 0)
  569.     {
  570.       sdbout_tags (gettags ());
  571.       sdbout_types (nreverse (get_permanent_types ()));
  572.     }
  573.  
  574.   sdbout_one_type (type);
  575.  
  576.   switch (TREE_CODE (decl))
  577.     {
  578.     case CONST_DECL:
  579.       /* Enum values are defined by defining the enum type.  */
  580.       return;
  581.  
  582.     case FUNCTION_DECL:
  583.       if (TREE_EXTERNAL (decl))
  584.     return;
  585.       if (GET_CODE (DECL_RTL (decl)) != MEM
  586.       || GET_CODE (XEXP (DECL_RTL (decl), 0)) != SYMBOL_REF)
  587.     return;
  588.       PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_NAME (decl)));
  589.       PUT_SDB_VAL (XEXP (DECL_RTL (decl), 0));
  590.       PUT_SDB_SCL (TREE_PUBLIC (decl) ? C_EXT : C_STAT);
  591.       break;
  592.  
  593.     case TYPE_DECL:
  594.       /* Output typedef name.  */
  595.       PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_NAME (decl)));
  596.       PUT_SDB_SCL (C_TPDEF);
  597.       break;
  598.  
  599.     case PARM_DECL:
  600.       /* Parm decls go in their own separate chains
  601.      and are output by sdbout_reg_parms and sdbout_parms.  */
  602.       abort ();
  603.  
  604.     case VAR_DECL:
  605.       /* Don't mention a variable that is external.
  606.      Let the file that defines it describe it.  */
  607.       if (TREE_EXTERNAL (decl))
  608.     return;
  609.  
  610.       /* If there was an error in the declaration, don't dump core
  611.      if there is no RTL associated with the variable doesn't
  612.      exist.  */
  613.       if (DECL_RTL (decl) == 0)
  614.     return;
  615.  
  616.       value = DECL_RTL (decl);
  617.  
  618.       /* Don't mention a variable at all
  619.      if it was completely optimized into nothingness.
  620.  
  621.      If DECL was from an inline function, then its rtl
  622.      is not identically the rtl that was used in this
  623.      particular compilation.  */
  624.       if (GET_CODE (value) == REG)
  625.     {
  626.       regno = REGNO (DECL_RTL (decl));
  627.       if (regno >= FIRST_PSEUDO_REGISTER)
  628.         regno = reg_renumber[REGNO (DECL_RTL (decl))];
  629.       if (regno < 0)
  630.         return;
  631.     }
  632.       else if (GET_CODE (DECL_RTL (decl)) == SUBREG)
  633.     {
  634.       int offset = 0;
  635.       while (GET_CODE (value) == SUBREG)
  636.         {
  637.           offset += SUBREG_WORD (value);
  638.           value = SUBREG_REG (value);
  639.         }
  640.       if (GET_CODE (value) == REG)
  641.         {
  642.           regno = REGNO (value);
  643.           if (regno >= FIRST_PSEUDO_REGISTER)
  644.         regno = reg_renumber[REGNO (value)];
  645.           if (regno >= 0)
  646.         regno += offset;
  647.         }
  648.     }
  649.  
  650.       /* Emit any structure, union, or enum type that has not been output.
  651.      This occurs for tag-less structs (et al) used to declare variables
  652.      within functions.  */
  653.       if (TREE_CODE (type) == ENUMERAL_TYPE
  654.       || TREE_CODE (type) == RECORD_TYPE
  655.       || TREE_CODE (type) == UNION_TYPE)
  656.     {
  657.       if (TYPE_SIZE (type) != 0        /* not a forward reference */
  658.           && KNOWN_TYPE_TAG (type) == 0)    /* not yet declared */
  659.         sdbout_one_type (type);
  660.     }
  661.  
  662.       /* Defer SDB information for top-level initialized variables! */
  663.       if (! local
  664.       && GET_CODE (value) == MEM
  665.       && DECL_INITIAL (decl))
  666.     return;
  667.  
  668.       /* Record the name for, starting a symtab entry.  */
  669.       name = IDENTIFIER_POINTER (DECL_NAME (decl));
  670.  
  671.       if (GET_CODE (value) == MEM
  672.       && GET_CODE (XEXP (value, 0)) == SYMBOL_REF)
  673.     {
  674.       PUT_SDB_DEF (name);
  675.       if (TREE_PUBLIC (decl))
  676.         {
  677.           PUT_SDB_VAL (XEXP (value, 0));
  678.               PUT_SDB_SCL (C_EXT);
  679.         }
  680.       else
  681.         {
  682.           PUT_SDB_VAL (XEXP (value, 0));
  683.               PUT_SDB_SCL (C_STAT);
  684.         }
  685.     }
  686.       else if (regno >= 0)
  687.     {
  688.       PUT_SDB_DEF (name);
  689.       PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (regno));
  690.       PUT_SDB_SCL (C_REG);
  691.     }
  692.       else if (GET_CODE (value) == MEM
  693.            && (GET_CODE (XEXP (value, 0)) == MEM
  694.            || (GET_CODE (XEXP (value, 0)) == REG
  695.                && REGNO (XEXP (value, 0)) != FRAME_POINTER_REGNUM)))
  696.     /* If the value is indirect by memory or by a register
  697.        that isn't the frame pointer
  698.        then it means the object is variable-sized and address through
  699.        that register or stack slot.  COFF has no way to represent this
  700.        so all we can do is output the variable as a pointer.  */
  701.     {
  702.       PUT_SDB_DEF (name);
  703.       if (GET_CODE (XEXP (value, 0)) == REG)
  704.         {
  705.           PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (REGNO (XEXP (value, 0))));
  706.           PUT_SDB_SCL (C_REG);
  707.         }
  708.       else
  709.         {
  710.           /* DECL_RTL looks like (MEM (MEM (PLUS (REG...)
  711.          (CONST_INT...)))).
  712.          We want the value of that CONST_INT.  */
  713.           /* Encore compiler hates a newline in a macro arg, it seems.  */
  714.           PUT_SDB_INT_VAL (DEBUGGER_AUTO_OFFSET
  715.                    (XEXP (XEXP (value, 0), 0)));
  716.           PUT_SDB_SCL (C_AUTO);
  717.         }
  718.  
  719.       type = build_pointer_type (TREE_TYPE (decl));
  720.     }
  721.       else if (GET_CODE (value) == MEM
  722.            && GET_CODE (XEXP (value, 0)) == PLUS
  723.            && GET_CODE (XEXP (XEXP (value, 0), 0)) == REG
  724.            && GET_CODE (XEXP (XEXP (value, 0), 1)) == CONST_INT)
  725.     {
  726.       /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))).
  727.          We want the value of that CONST_INT.  */
  728.       PUT_SDB_DEF (name);
  729.       PUT_SDB_INT_VAL (DEBUGGER_AUTO_OFFSET (XEXP (value, 0)));
  730.       PUT_SDB_SCL (C_AUTO);
  731.     }
  732.       else
  733.     {
  734.       /* It is something we don't know how to represent for SDB.  */
  735.       return;
  736.     }
  737.       break;
  738.     }
  739.   PUT_SDB_TYPE (plain_type (type));
  740.   PUT_SDB_ENDEF;
  741. }
  742.  
  743. /* Output SDB information for a top-level initialized variable
  744.    that has been delayed.  */
  745.  
  746. void
  747. sdbout_toplevel_data (decl)
  748.      tree decl;
  749. {
  750.   tree type = TREE_TYPE (decl);
  751.  
  752.   if (! (TREE_CODE (decl) == VAR_DECL
  753.      && GET_CODE (DECL_RTL (decl)) == MEM
  754.      && DECL_INITIAL (decl)))
  755.     abort ();
  756.  
  757.   PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_NAME (decl)));
  758.   PUT_SDB_VAL (XEXP (DECL_RTL (decl), 0));
  759.   if (TREE_PUBLIC (decl))
  760.     {
  761.       PUT_SDB_SCL (C_EXT);
  762.     }
  763.   else
  764.     {
  765.       PUT_SDB_SCL (C_STAT);
  766.     }
  767.   PUT_SDB_TYPE (plain_type (type));
  768.   PUT_SDB_ENDEF;
  769. }
  770.  
  771. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  772.  
  773. /* Machinery to record and output anonymous types. */
  774.  
  775. static tree anonymous_types;
  776.  
  777. static void
  778. sdbout_queue_anonymous_type (type)
  779.      tree type;
  780. {
  781.   anonymous_types = saveable_tree_cons (NULL_TREE, type, anonymous_types);
  782. }
  783.  
  784. static void
  785. sdbout_dequeue_anonymous_types ()
  786. {
  787.   register tree types, link;
  788.  
  789.   while (anonymous_types)
  790.     {
  791.       types = nreverse (anonymous_types);
  792.       anonymous_types = NULL_TREE;
  793.  
  794.       for (link = types; link; link = TREE_CHAIN (link))
  795.     {
  796.       register tree type = TREE_VALUE (link);
  797.  
  798.       if (! TREE_ASM_WRITTEN (type))
  799.         sdbout_one_type (type);
  800.     }
  801.     }
  802. }
  803.  
  804. #endif
  805.  
  806. /* Given a list of TREE_LIST nodes that point at types,
  807.    output those types for SDB.
  808.    We must check to include those that have been mentioned already with
  809.    only a cross-reference.  */
  810.  
  811. void
  812. sdbout_tags (tags)
  813.      tree tags;
  814. {
  815.   register tree link;
  816.   register tree head;
  817.  
  818.   /*
  819.    * In at least one instance, the tags are in reverse order.  No doubt
  820.    * this is like the names (getdecls).  I couldn't find the right place
  821.    * to do the nreverse, so the idea is to swich it back after we're done.
  822.    *
  823.    * The problem is deeper than this.  The tags must be in order encountered
  824.    * with inner scopes first.  Reversing doesn't cut it, but helps.  Putting
  825.    * enum's first helps more.
  826.    */
  827.   head = nreverse (tags);
  828.  
  829.   for (link = head; link; link = TREE_CHAIN (link))
  830.     {
  831.       register tree type = TREE_VALUE (link);
  832.  
  833.       if (TREE_PURPOSE (link) != 0
  834.       && TYPE_SIZE (type) != 0
  835.       && TREE_CODE (type) == ENUMERAL_TYPE)
  836.     sdbout_one_type (type);
  837.     }
  838.  
  839.   for (link = head; link; link = TREE_CHAIN (link))
  840.     {
  841.       register tree type = TREE_VALUE (link);
  842.  
  843.       if (TREE_PURPOSE (link) != 0
  844.       && TYPE_SIZE (type) != 0
  845.       && TREE_CODE (type) != ENUMERAL_TYPE)
  846.     sdbout_one_type (type);
  847.     }
  848.  
  849.   nreverse (head);
  850.  
  851. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  852.   sdbout_dequeue_anonymous_types ();
  853. #endif
  854. }
  855.  
  856. /* Given a chain of ..._TYPE nodes, all of which have names,
  857.    output definitions of those names, as typedefs.  */
  858.  
  859. void
  860. sdbout_types (types)
  861.      register tree types;
  862. {
  863.   register tree link;
  864.  
  865.   for (link = types; link; link = TREE_CHAIN (link))
  866.     sdbout_one_type (link);
  867.  
  868. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  869.   sdbout_dequeue_anonymous_types ();
  870. #endif
  871. }
  872.  
  873. static void
  874. sdbout_type (type)
  875.      tree type;
  876. {
  877.   register tree tem;
  878.   if (type == error_mark_node)
  879.     type = integer_type_node;
  880.   PUT_SDB_TYPE (plain_type (type));
  881. }
  882.  
  883. /* Output types of the fields of type TYPE, if they are structs.
  884.  
  885.    Formerly did not chase through pointer types, since that could be circular.
  886.    They must come before TYPE, since forward refs are not allowed.
  887.    Now james@bigtex.cactus.org says to try them.  */
  888.  
  889. static void
  890. sdbout_field_types (type)
  891.      tree type;
  892. {
  893.   tree tail;
  894.   for (tail = TYPE_FIELDS (type); tail; tail = TREE_CHAIN (tail))
  895.     if (TREE_CODE (TREE_TYPE (tail)) == POINTER_TYPE)
  896.       sdbout_one_type (TREE_TYPE (TREE_TYPE (tail)));
  897.     else
  898.       sdbout_one_type (TREE_TYPE (tail));
  899. }
  900.  
  901. /* Use this to put out the top level defined record and union types
  902.    for later reference.  If this is a struct with a name, then put that
  903.    name out.  Other unnamed structs will have .xxfake labels generated so
  904.    that they may be referred to later.
  905.    The label will be stored in the KNOWN_TYPE_TAG slot of a type.
  906.    It may NOT be called recursively.  */
  907.  
  908. static void
  909. sdbout_one_type (type)
  910.      tree type;
  911. {
  912.   text_section ();
  913.  
  914.   switch (TREE_CODE (type))
  915.     {
  916.     case RECORD_TYPE:
  917.     case UNION_TYPE:
  918.     case ENUMERAL_TYPE:
  919.       type = TYPE_MAIN_VARIANT (type);
  920.       /* Don't output a type twice.  */
  921.       if (TREE_ASM_WRITTEN (type))
  922.     /* James said test TREE_ASM_BEING_WRITTEN here.  */
  923.     return;
  924.  
  925.       /* Output nothing if type is not yet defined.  */
  926.       if (TYPE_SIZE (type) == 0)
  927.     return;
  928.  
  929.       TREE_ASM_WRITTEN (type) = 1;
  930. #if 1
  931.       /* This is reputed to cause trouble with the following case,
  932.      but perhaps checking TYPE_SIZE above will fix it.
  933.  
  934.       /* Here is a test case:
  935.  
  936.     struct foo {
  937.       struct badstr *bbb;
  938.     } forwardref;
  939.  
  940.     typedef struct intermediate {
  941.       int aaaa;
  942.     } intermediate_ref;
  943.  
  944.     typedef struct badstr {
  945.       int ccccc;
  946.     } badtype;   */
  947.  
  948. #if 0
  949.       TREE_ASM_BEING_WRITTEN (type) = 1;
  950. #endif
  951.       /* This change, which ought to make better output,
  952.      used to make the COFF assembler unhappy.
  953.      Changes involving KNOWN_TYPE_TAG may fix the problem.  */
  954.       /* Before really doing anything, output types we want to refer to.  */
  955.       /* Note that in version 1 the following two lines
  956.      are not used if forward references are in use.  */
  957.       if (TREE_CODE (type) != ENUMERAL_TYPE)
  958.     sdbout_field_types (type);
  959. #if 0
  960.       TREE_ASM_WRITTEN (type) = 1;
  961. #endif
  962. #endif
  963.  
  964.       /* Output a structure type.  */
  965.       {
  966.     int size = int_size_in_bytes (type);
  967.     int member_scl;
  968.     tree tem;
  969.  
  970.     /* Record the type tag, but not in its permanent place just yet.  */
  971.     sdbout_record_type_name (type);
  972.  
  973.     PUT_SDB_DEF (KNOWN_TYPE_TAG (type));
  974.  
  975.     switch (TREE_CODE (type))
  976.       {
  977.       case UNION_TYPE:
  978.         PUT_SDB_SCL (C_UNTAG);
  979.         PUT_SDB_TYPE (T_UNION);
  980.         member_scl = C_MOU;
  981.         break;
  982.  
  983.       case RECORD_TYPE:
  984.         PUT_SDB_SCL (C_STRTAG);
  985.         PUT_SDB_TYPE (T_STRUCT);
  986.         member_scl = C_MOS;
  987.         break;
  988.  
  989.       case ENUMERAL_TYPE:
  990.         PUT_SDB_SCL (C_ENTAG);
  991.         PUT_SDB_TYPE (T_ENUM);
  992.         member_scl = C_MOE;
  993.         break;
  994.       }
  995.  
  996.     PUT_SDB_SIZE (size);
  997.     PUT_SDB_ENDEF;
  998.  
  999.     /* output the individual fields */
  1000.  
  1001.     if (TREE_CODE (type) == ENUMERAL_TYPE)
  1002.       for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
  1003.         {
  1004.           PUT_SDB_DEF (IDENTIFIER_POINTER (TREE_PURPOSE (tem)));
  1005.           PUT_SDB_INT_VAL (TREE_INT_CST_LOW (TREE_VALUE (tem)));
  1006.           PUT_SDB_SCL (C_MOE);
  1007.           PUT_SDB_TYPE (T_MOE);
  1008.           PUT_SDB_ENDEF;
  1009.         }
  1010.  
  1011.     else            /* record or union type */
  1012.       for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
  1013.         /* Output the name, type, position (in bits), size (in bits)
  1014.            of each field.  */
  1015.  
  1016.         /* Omit here the nameless fields that are used to skip bits.
  1017.            Also omit fields with variable size or position.
  1018.            Also omit non FIELD_DECL nodes that GNU C++ may put here.  */
  1019.         if (TREE_CODE (tem) == FIELD_DECL
  1020.         && DECL_NAME (tem) != 0
  1021.         && TREE_CODE (DECL_SIZE (tem)) == INTEGER_CST
  1022.         && TREE_CODE (DECL_FIELD_BITPOS (tem)) == INTEGER_CST)
  1023.           {
  1024.         CONTIN;
  1025.         PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_NAME (tem)));
  1026.         if (DECL_BIT_FIELD_TYPE (tem))
  1027.           {
  1028.             PUT_SDB_INT_VAL (TREE_INT_CST_LOW (DECL_FIELD_BITPOS (tem)));
  1029.             PUT_SDB_SCL (C_FIELD);
  1030.             sdbout_type (DECL_BIT_FIELD_TYPE (tem));
  1031.             PUT_SDB_SIZE (TREE_INT_CST_LOW (DECL_SIZE (tem)));
  1032.           }
  1033.         else
  1034.           {
  1035.             PUT_SDB_INT_VAL (TREE_INT_CST_LOW (DECL_FIELD_BITPOS (tem))
  1036.                      / BITS_PER_UNIT);
  1037.             PUT_SDB_SCL (member_scl);
  1038.             sdbout_type (TREE_TYPE (tem));
  1039.           }
  1040.         PUT_SDB_ENDEF;
  1041.           }
  1042.     /* output end of a structure,union, or enumeral definition */
  1043.  
  1044.     PUT_SDB_PLAIN_DEF ("eos");
  1045.     PUT_SDB_INT_VAL (size);
  1046.     PUT_SDB_SCL (C_EOS);
  1047.     PUT_SDB_TAG (KNOWN_TYPE_TAG (type));
  1048.     PUT_SDB_SIZE (size);
  1049.     PUT_SDB_ENDEF;
  1050.     break;
  1051.       }
  1052.     }
  1053. }
  1054.  
  1055. /* The following two functions output definitions of function parameters.
  1056.    Each parameter gets a definition locating it in the parameter list.
  1057.    Each parameter that is a register variable gets a second definition
  1058.    locating it in the register.
  1059.  
  1060.    Printing or argument lists in gdb uses the definitions that
  1061.    locate in the parameter list.  But reference to the variable in
  1062.    expressions uses preferentially the definition as a register.  */
  1063.  
  1064. /* Output definitions, referring to storage in the parmlist,
  1065.    of all the parms in PARMS, which is a chain of PARM_DECL nodes.  */
  1066.  
  1067. static void
  1068. sdbout_parms (parms)
  1069.      tree parms;
  1070. {
  1071.   for (; parms; parms = TREE_CHAIN (parms))
  1072.     if (DECL_NAME (parms))
  1073.       {
  1074.     int current_sym_value = 0;
  1075.     char *name = IDENTIFIER_POINTER (DECL_NAME (parms));
  1076.  
  1077.     if (name == 0 || *name == 0)
  1078.       name = gen_fake_label ();
  1079.  
  1080.     if (PARM_PASSED_IN_MEMORY (parms))
  1081.       {
  1082.         rtx addr = XEXP (DECL_INCOMING_RTL (parms), 0);
  1083.         tree type;
  1084.  
  1085.         /* ??? Here we assume that the parm address is indexed
  1086.            off the frame pointer or arg pointer.
  1087.            If that is not true, we produce meaningless results,
  1088.            but do not crash.  */
  1089.         if (GET_CODE (addr) == PLUS
  1090.         && GET_CODE (XEXP (addr, 1)) == CONST_INT)
  1091.           current_sym_value = INTVAL (XEXP (addr, 1));
  1092.         else
  1093.           current_sym_value = 0;
  1094.  
  1095.         if (GET_CODE (DECL_RTL (parms)) == REG
  1096.         && REGNO (DECL_RTL (parms)) >= 0
  1097.         && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
  1098.           type = DECL_ARG_TYPE (parms);
  1099.         else
  1100.           {
  1101.         int original_sym_value = current_sym_value;
  1102.  
  1103.         /* This is the case where the parm is passed as an int or
  1104.            double and it is converted to a char, short or float
  1105.            and stored back in the parmlist.  In this case, describe
  1106.            the parm with the variable's declared type, and adjust
  1107.            the address if the least significant bytes (which we are
  1108.            using) are not the first ones.  */
  1109. #if BYTES_BIG_ENDIAN
  1110.         if (TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  1111.           current_sym_value +=
  1112.             (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  1113.              - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  1114. #endif
  1115.         if (GET_CODE (DECL_RTL (parms)) == MEM
  1116.             && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  1117.             && (GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1))
  1118.             == CONST_INT)
  1119.             && (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1))
  1120.             == current_sym_value))
  1121.           type = TREE_TYPE (parms);
  1122.         else
  1123.           {
  1124.             current_sym_value = original_sym_value;
  1125.             type = DECL_ARG_TYPE (parms);
  1126.           }
  1127.           }
  1128.  
  1129.         PUT_SDB_DEF (name);
  1130.         PUT_SDB_INT_VAL (DEBUGGER_ARG_OFFSET (current_sym_value, addr));
  1131.         PUT_SDB_SCL (C_ARG);
  1132.         PUT_SDB_TYPE (plain_type (type));
  1133.         PUT_SDB_ENDEF;
  1134.       }
  1135.     else if (GET_CODE (DECL_RTL (parms)) == REG
  1136.          && REGNO (DECL_RTL (parms)) >= 0
  1137.          && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
  1138.       {
  1139.         /* Parm was passed in registers and lives in registers.
  1140.            Output a "regparm" symbol for the register it lives in.  */
  1141.  
  1142.         PUT_SDB_DEF (name);
  1143.         PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (REGNO (DECL_RTL (parms))));
  1144.         PUT_SDB_SCL (C_REGPARM);
  1145.         PUT_SDB_TYPE (plain_type (TREE_TYPE (parms), 0));
  1146.         PUT_SDB_ENDEF;
  1147.       }
  1148.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  1149.          && XEXP (DECL_RTL (parms), 0) != const0_rtx)
  1150.       {
  1151.         /* Parm was passed in registers but lives on the stack.  */
  1152.  
  1153.         /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))),
  1154.            in which case we want the value of that CONST_INT, or
  1155.            (MEM (REG ...)), in which case we use a value of zero.  */
  1156.         if (GET_CODE (XEXP (DECL_RTL (parms), 0)) == REG)
  1157.           current_sym_value = 0;
  1158.         else
  1159.           current_sym_value = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
  1160.  
  1161.         /* Again, this assumes the offset is based on the arg pointer.  */
  1162.         PUT_SDB_DEF (name);
  1163.         PUT_SDB_INT_VAL (DEBUGGER_ARG_OFFSET (current_sym_value,
  1164.                           XEXP (DECL_RTL (parms), 0)));
  1165.         PUT_SDB_SCL (C_ARG);
  1166.         PUT_SDB_TYPE (plain_type (TREE_TYPE (parms), 0));
  1167.         PUT_SDB_ENDEF;
  1168.       }
  1169.       }
  1170. }
  1171.  
  1172. /* Output definitions for the places where parms live during the function,
  1173.    when different from where they were passed, when the parms were passed
  1174.    in memory.
  1175.  
  1176.    It is not useful to do this for parms passed in registers
  1177.    that live during the function in different registers, because it is
  1178.    impossible to look in the passed register for the passed value,
  1179.    so we use the within-the-function register to begin with.
  1180.  
  1181.    PARMS is a chain of PARM_DECL nodes.  */
  1182.  
  1183. static void
  1184. sdbout_reg_parms (parms)
  1185.      tree parms;
  1186. {
  1187.   for (; parms; parms = TREE_CHAIN (parms))
  1188.     if (DECL_NAME (parms))
  1189.       {
  1190.     char *name = IDENTIFIER_POINTER (DECL_NAME (parms));
  1191.  
  1192.     /* Report parms that live in registers during the function
  1193.        but were passed in memory.  */
  1194.     if (GET_CODE (DECL_RTL (parms)) == REG
  1195.         && REGNO (DECL_RTL (parms)) >= 0
  1196.         && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER
  1197.         && PARM_PASSED_IN_MEMORY (parms))
  1198.       {
  1199.         if (name == 0 || *name == 0)
  1200.           name = gen_fake_label ();
  1201.         PUT_SDB_DEF (name);
  1202.         PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (REGNO (DECL_RTL (parms))));
  1203.         PUT_SDB_SCL (C_REG);
  1204.         PUT_SDB_TYPE (plain_type (TREE_TYPE (parms), 0));
  1205.         PUT_SDB_ENDEF;
  1206.       }
  1207.     /* Report parms that live in memory but not where they were passed.  */
  1208.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  1209.          && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  1210.          && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
  1211.          && PARM_PASSED_IN_MEMORY (parms)
  1212.          && ! rtx_equal_p (DECL_RTL (parms), DECL_INCOMING_RTL (parms)))
  1213.       {
  1214. #if 0 /* ??? It is not clear yet what should replace this.  */
  1215.         int offset = DECL_OFFSET (parms) / BITS_PER_UNIT;
  1216.         /* A parm declared char is really passed as an int,
  1217.            so it occupies the least significant bytes.
  1218.            On a big-endian machine those are not the low-numbered ones.  */
  1219. #if BYTES_BIG_ENDIAN
  1220.         if (offset != -1 && TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  1221.           offset += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  1222.              - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  1223. #endif
  1224.         if (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) != offset) {...}
  1225. #endif
  1226.           {
  1227.         if (name == 0 || *name == 0)
  1228.           name = gen_fake_label ();
  1229.         PUT_SDB_DEF (name);
  1230.         PUT_SDB_INT_VAL (DEBUGGER_AUTO_OFFSET
  1231.                  (XEXP (DECL_RTL (parms), 0)));
  1232.         PUT_SDB_SCL (C_AUTO);
  1233.         PUT_SDB_TYPE (plain_type (TREE_TYPE (parms)));
  1234.         PUT_SDB_ENDEF;
  1235.           }
  1236.       }
  1237.       }
  1238. }
  1239.  
  1240. /* Describe the beginning of an internal block within a function.
  1241.    Also output descriptions of variables defined in this block.
  1242.  
  1243.    N is the number of the block, by order of beginning, counting from 1,
  1244.    and not counting the outermost (function top-level) block.
  1245.    The blocks match the BLOCKs in DECL_INITIAL (current_function_decl),
  1246.    if the count starts at 0 for the outermost one.  */
  1247.  
  1248. void
  1249. sdbout_begin_block (file, line, n)
  1250.      FILE *file;
  1251.      int line;
  1252.      int n;
  1253. {
  1254.   tree decl = current_function_decl;
  1255.   MAKE_LINE_SAFE (line);
  1256.   PUT_SDB_BLOCK_START (line - sdb_begin_function_line);
  1257.   if (n == 1)
  1258.     {
  1259.       /* Include the outermost BLOCK's variables in block 1.  */
  1260.       next_block_number = 0;
  1261.       do_block = 0;
  1262.       sdbout_block (DECL_INITIAL (decl));
  1263.     }
  1264.   next_block_number = 0;
  1265.   do_block = n;
  1266.   sdbout_block (DECL_INITIAL (decl));
  1267.  
  1268. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  1269.   sdbout_dequeue_anonymous_types ();
  1270. #endif
  1271. }
  1272.  
  1273. /* Describe the end line-number of an internal block within a function.  */
  1274.  
  1275. void
  1276. sdbout_end_block (file, line)
  1277.      FILE *file;
  1278.      int line;
  1279. {
  1280.   MAKE_LINE_SAFE (line);
  1281.   PUT_SDB_BLOCK_END (line - sdb_begin_function_line);
  1282. }
  1283.  
  1284. /* Output sdb info for the current function name.
  1285.    Called from assemble_function.  */
  1286.  
  1287. void
  1288. sdbout_mark_begin_function ()
  1289. {
  1290.   sdbout_symbol (current_function_decl, 0);
  1291. }
  1292.  
  1293. /* Called at beginning of function body (after prologue).
  1294.    Record the function's starting line number, so we can output
  1295.    relative line numbers for the other lines.
  1296.    Describe beginning of outermost block.
  1297.    Also describe the parameter list.  */
  1298.  
  1299. void
  1300. sdbout_begin_function (line)
  1301.      int line;
  1302. {
  1303.   sdb_begin_function_line = line - 1;
  1304.   PUT_SDB_FUNCTION_START (line);
  1305.   sdbout_parms (DECL_ARGUMENTS (current_function_decl));
  1306.   sdbout_reg_parms (DECL_ARGUMENTS (current_function_decl));
  1307. }
  1308.  
  1309. /* Called at end of function (before epilogue).
  1310.    Describe end of outermost block.  */
  1311.  
  1312. void
  1313. sdbout_end_function (line)
  1314.      int line;
  1315. {
  1316. #ifdef SDB_ALLOW_FORWARD_REFERENCES
  1317.   sdbout_dequeue_anonymous_types ();
  1318. #endif
  1319.  
  1320.   MAKE_LINE_SAFE (line);
  1321.   PUT_SDB_FUNCTION_END (line - sdb_begin_function_line);
  1322.  
  1323.   /* Indicate we are between functions, for line-number output.  */
  1324.   sdb_begin_function_line = -1;
  1325. }
  1326.  
  1327. /* Output sdb info for the absolute end of a function.
  1328.    Called after the epilogue is output.  */
  1329.  
  1330. void
  1331. sdbout_end_epilogue ()
  1332. {
  1333.   char *name = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
  1334.   PUT_SDB_EPILOGUE_END (name);
  1335. }
  1336.  
  1337. /* Output sdb info for the given label.  Called only if LABEL_NAME (insn)
  1338.    is present.  */
  1339.  
  1340. void
  1341. sdbout_label (insn)
  1342.      register rtx insn;
  1343. {
  1344.   PUT_SDB_DEF (LABEL_NAME (insn));
  1345.   PUT_SDB_VAL (insn);
  1346.   PUT_SDB_SCL (C_LABEL);
  1347.   PUT_SDB_TYPE (T_NULL);
  1348.   PUT_SDB_ENDEF;
  1349. }
  1350.  
  1351. #endif /* SDB_DEBUGGING_INFO */
  1352.