* basic-block.h (last_basic_block): Defined as synonym for
[official-gcc.git] / gcc / sdbout.c
blob08d8abe455c44e1b6e20f1c53bce3605c05e0895
1 /* Output sdb-format symbol table information from GNU compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 /* mike@tredysvr.Tredydev.Unisys.COM says:
23 I modified the struct.c example and have a nm of a .o resulting from the
24 AT&T C compiler. From the example below I would conclude the following:
26 1. All .defs from structures are emitted as scanned. The example below
27 clearly shows the symbol table entries for BoxRec2 are after the first
28 function.
30 2. All functions and their locals (including statics) are emitted as scanned.
32 3. All nested unnamed union and structure .defs must be emitted before
33 the structure in which they are nested. The AT&T assembler is a
34 one pass beast as far as symbolics are concerned.
36 4. All structure .defs are emitted before the typedefs that refer to them.
38 5. All top level static and external variable definitions are moved to the
39 end of file with all top level statics occurring first before externs.
41 6. All undefined references are at the end of the file.
44 #include "config.h"
46 #ifdef SDB_DEBUGGING_INFO
48 #include "system.h"
49 #include "tree.h"
50 #include "rtl.h"
51 #include "regs.h"
52 #include "flags.h"
53 #include "insn-config.h"
54 #include "reload.h"
55 #include "output.h"
56 #include "toplev.h"
57 #include "ggc.h"
58 #include "tm_p.h"
59 #include "gsyms.h"
60 #include "debug.h"
61 #include "langhooks.h"
63 /* 1 if PARM is passed to this function in memory. */
65 #define PARM_PASSED_IN_MEMORY(PARM) \
66 (GET_CODE (DECL_INCOMING_RTL (PARM)) == MEM)
68 /* A C expression for the integer offset value of an automatic variable
69 (C_AUTO) having address X (an RTX). */
70 #ifndef DEBUGGER_AUTO_OFFSET
71 #define DEBUGGER_AUTO_OFFSET(X) \
72 (GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0)
73 #endif
75 /* A C expression for the integer offset value of an argument (C_ARG)
76 having address X (an RTX). The nominal offset is OFFSET. */
77 #ifndef DEBUGGER_ARG_OFFSET
78 #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET)
79 #endif
81 /* Line number of beginning of current function, minus one.
82 Negative means not in a function or not using sdb. */
84 int sdb_begin_function_line = -1;
86 /* Counter to generate unique "names" for nameless struct members. */
88 static int unnamed_struct_number = 0;
90 extern FILE *asm_out_file;
92 extern tree current_function_decl;
94 #include "sdbout.h"
96 static void sdbout_init PARAMS ((const char *));
97 static void sdbout_finish PARAMS ((const char *));
98 static void sdbout_start_source_file PARAMS ((unsigned int, const char *));
99 static void sdbout_end_source_file PARAMS ((unsigned int));
100 static void sdbout_begin_block PARAMS ((unsigned int, unsigned int));
101 static void sdbout_end_block PARAMS ((unsigned int, unsigned int));
102 static void sdbout_source_line PARAMS ((unsigned int, const char *));
103 static void sdbout_end_epilogue PARAMS ((void));
104 static void sdbout_global_decl PARAMS ((tree));
105 #ifndef MIPS_DEBUGGING_INFO
106 static void sdbout_begin_prologue PARAMS ((unsigned int, const char *));
107 #endif
108 static void sdbout_end_prologue PARAMS ((unsigned int));
109 static void sdbout_begin_function PARAMS ((tree));
110 static void sdbout_end_function PARAMS ((unsigned int));
111 static void sdbout_toplevel_data PARAMS ((tree));
112 static void sdbout_label PARAMS ((rtx));
113 static char *gen_fake_label PARAMS ((void));
114 static int plain_type PARAMS ((tree));
115 static int template_name_p PARAMS ((tree));
116 static void sdbout_record_type_name PARAMS ((tree));
117 static int plain_type_1 PARAMS ((tree, int));
118 static void sdbout_block PARAMS ((tree));
119 static void sdbout_syms PARAMS ((tree));
120 #ifdef SDB_ALLOW_FORWARD_REFERENCES
121 static void sdbout_queue_anonymous_type PARAMS ((tree));
122 static void sdbout_dequeue_anonymous_types PARAMS ((void));
123 #endif
124 static void sdbout_type PARAMS ((tree));
125 static void sdbout_field_types PARAMS ((tree));
126 static void sdbout_one_type PARAMS ((tree));
127 static void sdbout_parms PARAMS ((tree));
128 static void sdbout_reg_parms PARAMS ((tree));
129 static void sdbout_global_decl PARAMS ((tree));
131 /* Random macros describing parts of SDB data. */
133 /* Put something here if lines get too long */
134 #define CONTIN
136 /* Default value of delimiter is ";". */
137 #ifndef SDB_DELIM
138 #define SDB_DELIM ";"
139 #endif
141 /* Maximum number of dimensions the assembler will allow. */
142 #ifndef SDB_MAX_DIM
143 #define SDB_MAX_DIM 4
144 #endif
146 #ifndef PUT_SDB_SCL
147 #define PUT_SDB_SCL(a) fprintf(asm_out_file, "\t.scl\t%d%s", (a), SDB_DELIM)
148 #endif
150 #ifndef PUT_SDB_INT_VAL
151 #define PUT_SDB_INT_VAL(a) \
152 do { \
153 fputs ("\t.val\t", asm_out_file); \
154 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT) (a)); \
155 fprintf (asm_out_file, "%s", SDB_DELIM); \
156 } while (0)
158 #endif
160 #ifndef PUT_SDB_VAL
161 #define PUT_SDB_VAL(a) \
162 ( fputs ("\t.val\t", asm_out_file), \
163 output_addr_const (asm_out_file, (a)), \
164 fprintf (asm_out_file, SDB_DELIM))
165 #endif
167 #ifndef PUT_SDB_DEF
168 #define PUT_SDB_DEF(a) \
169 do { fprintf (asm_out_file, "\t.def\t"); \
170 assemble_name (asm_out_file, a); \
171 fprintf (asm_out_file, SDB_DELIM); } while (0)
172 #endif
174 #ifndef PUT_SDB_PLAIN_DEF
175 #define PUT_SDB_PLAIN_DEF(a) fprintf(asm_out_file,"\t.def\t.%s%s",a, SDB_DELIM)
176 #endif
178 #ifndef PUT_SDB_ENDEF
179 #define PUT_SDB_ENDEF fputs("\t.endef\n", asm_out_file)
180 #endif
182 #ifndef PUT_SDB_TYPE
183 #define PUT_SDB_TYPE(a) fprintf(asm_out_file, "\t.type\t0%o%s", a, SDB_DELIM)
184 #endif
186 #ifndef PUT_SDB_SIZE
187 #define PUT_SDB_SIZE(a) \
188 do { \
189 fputs ("\t.size\t", asm_out_file); \
190 fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT) (a)); \
191 fprintf (asm_out_file, "%s", SDB_DELIM); \
192 } while(0)
193 #endif
195 #ifndef PUT_SDB_START_DIM
196 #define PUT_SDB_START_DIM fprintf(asm_out_file, "\t.dim\t")
197 #endif
199 #ifndef PUT_SDB_NEXT_DIM
200 #define PUT_SDB_NEXT_DIM(a) fprintf(asm_out_file, "%d,", a)
201 #endif
203 #ifndef PUT_SDB_LAST_DIM
204 #define PUT_SDB_LAST_DIM(a) fprintf(asm_out_file, "%d%s", a, SDB_DELIM)
205 #endif
207 #ifndef PUT_SDB_TAG
208 #define PUT_SDB_TAG(a) \
209 do { fprintf (asm_out_file, "\t.tag\t"); \
210 assemble_name (asm_out_file, a); \
211 fprintf (asm_out_file, SDB_DELIM); } while (0)
212 #endif
214 #ifndef PUT_SDB_BLOCK_START
215 #define PUT_SDB_BLOCK_START(LINE) \
216 fprintf (asm_out_file, \
217 "\t.def\t.bb%s\t.val\t.%s\t.scl\t100%s\t.line\t%d%s\t.endef\n", \
218 SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
219 #endif
221 #ifndef PUT_SDB_BLOCK_END
222 #define PUT_SDB_BLOCK_END(LINE) \
223 fprintf (asm_out_file, \
224 "\t.def\t.eb%s\t.val\t.%s\t.scl\t100%s\t.line\t%d%s\t.endef\n", \
225 SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
226 #endif
228 #ifndef PUT_SDB_FUNCTION_START
229 #define PUT_SDB_FUNCTION_START(LINE) \
230 fprintf (asm_out_file, \
231 "\t.def\t.bf%s\t.val\t.%s\t.scl\t101%s\t.line\t%d%s\t.endef\n", \
232 SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
233 #endif
235 #ifndef PUT_SDB_FUNCTION_END
236 #define PUT_SDB_FUNCTION_END(LINE) \
237 fprintf (asm_out_file, \
238 "\t.def\t.ef%s\t.val\t.%s\t.scl\t101%s\t.line\t%d%s\t.endef\n", \
239 SDB_DELIM, SDB_DELIM, SDB_DELIM, (LINE), SDB_DELIM)
240 #endif
242 #ifndef SDB_GENERATE_FAKE
243 #define SDB_GENERATE_FAKE(BUFFER, NUMBER) \
244 sprintf ((BUFFER), ".%dfake", (NUMBER));
245 #endif
247 /* Return the sdb tag identifier string for TYPE
248 if TYPE has already been defined; otherwise return a null pointer. */
250 #define KNOWN_TYPE_TAG(type) TYPE_SYMTAB_POINTER (type)
252 /* Set the sdb tag identifier string for TYPE to NAME. */
254 #define SET_KNOWN_TYPE_TAG(TYPE, NAME) \
255 TYPE_SYMTAB_POINTER (TYPE) = (NAME)
257 /* Return the name (a string) of the struct, union or enum tag
258 described by the TREE_LIST node LINK. This is 0 for an anonymous one. */
260 #define TAG_NAME(link) \
261 (((link) && TREE_PURPOSE ((link)) \
262 && IDENTIFIER_POINTER (TREE_PURPOSE ((link)))) \
263 ? IDENTIFIER_POINTER (TREE_PURPOSE ((link))) : (char *) 0)
265 /* Ensure we don't output a negative line number. */
266 #define MAKE_LINE_SAFE(line) \
267 if ((int) line <= sdb_begin_function_line) \
268 line = sdb_begin_function_line + 1
270 /* Perform linker optimization of merging header file definitions together
271 for targets with MIPS_DEBUGGING_INFO defined. This won't work without a
272 post 960826 version of GAS. Nothing breaks with earlier versions of GAS,
273 the optimization just won't be done. The native assembler already has the
274 necessary support. */
276 #ifdef MIPS_DEBUGGING_INFO
278 #ifndef PUT_SDB_SRC_FILE
279 #define PUT_SDB_SRC_FILE(FILENAME) \
280 output_file_directive (asm_out_file, (FILENAME))
281 #endif
283 /* ECOFF linkers have an optimization that does the same kind of thing as
284 N_BINCL/E_INCL in stabs: eliminate duplicate debug information in the
285 executable. To achieve this, GCC must output a .file for each file
286 name change. */
288 /* This is a stack of input files. */
290 struct sdb_file
292 struct sdb_file *next;
293 const char *name;
296 /* This is the top of the stack. */
298 static struct sdb_file *current_file;
300 #endif /* MIPS_DEBUGGING_INFO */
302 /* The debug hooks structure. */
303 const struct gcc_debug_hooks sdb_debug_hooks =
305 sdbout_init, /* init */
306 sdbout_finish, /* finish */
307 debug_nothing_int_charstar, /* define */
308 debug_nothing_int_charstar, /* undef */
309 sdbout_start_source_file, /* start_source_file */
310 sdbout_end_source_file, /* end_source_file */
311 sdbout_begin_block, /* begin_block */
312 sdbout_end_block, /* end_block */
313 debug_true_tree, /* ignore_block */
314 sdbout_source_line, /* source_line */
315 #ifdef MIPS_DEBUGGING_INFO
316 /* Defer on MIPS systems so that parameter descriptions follow
317 function entry. */
318 debug_nothing_int_charstar, /* begin_prologue */
319 sdbout_end_prologue, /* end_prologue */
320 #else
321 sdbout_begin_prologue, /* begin_prologue */
322 debug_nothing_int, /* end_prologue */
323 #endif
324 sdbout_end_epilogue, /* end_epilogue */
325 sdbout_begin_function, /* begin_function */
326 sdbout_end_function, /* end_function */
327 debug_nothing_tree, /* function_decl */
328 sdbout_global_decl, /* global_decl */
329 debug_nothing_tree, /* deferred_inline_function */
330 debug_nothing_tree, /* outlining_inline_function */
331 sdbout_label
334 #if 0
336 /* return the tag identifier for type
339 char *
340 tag_of_ru_type (type,link)
341 tree type,link;
343 if (TYPE_SYMTAB_ADDRESS (type))
344 return TYPE_SYMTAB_ADDRESS (type);
345 if (link && TREE_PURPOSE (link)
346 && IDENTIFIER_POINTER (TREE_PURPOSE (link)))
347 TYPE_SYMTAB_ADDRESS (type) = IDENTIFIER_POINTER (TREE_PURPOSE (link));
348 else
349 return (char *) TYPE_SYMTAB_ADDRESS (type);
351 #endif
353 /* Return a unique string to name an anonymous type. */
355 static char *
356 gen_fake_label ()
358 char label[10];
359 char *labelstr;
360 SDB_GENERATE_FAKE (label, unnamed_struct_number);
361 unnamed_struct_number++;
362 labelstr = (char *) permalloc (strlen (label) + 1);
363 strcpy (labelstr, label);
364 return labelstr;
367 /* Return the number which describes TYPE for SDB.
368 For pointers, etc., this function is recursive.
369 Each record, union or enumeral type must already have had a
370 tag number output. */
372 /* The number is given by d6d5d4d3d2d1bbbb
373 where bbbb is 4 bit basic type, and di indicate one of notype,ptr,fn,array.
374 Thus, char *foo () has bbbb=T_CHAR
375 d1=D_FCN
376 d2=D_PTR
377 N_BTMASK= 017 1111 basic type field.
378 N_TSHIFT= 2 derived type shift
379 N_BTSHFT= 4 Basic type shift */
381 /* Produce the number that describes a pointer, function or array type.
382 PREV is the number describing the target, value or element type.
383 DT_type describes how to transform that type. */
384 #define PUSH_DERIVED_LEVEL(DT_type,PREV) \
385 ((((PREV) & ~(int) N_BTMASK) << (int) N_TSHIFT) \
386 | ((int) DT_type << (int) N_BTSHFT) \
387 | ((PREV) & (int) N_BTMASK))
389 /* Number of elements used in sdb_dims. */
390 static int sdb_n_dims = 0;
392 /* Table of array dimensions of current type. */
393 static int sdb_dims[SDB_MAX_DIM];
395 /* Size of outermost array currently being processed. */
396 static int sdb_type_size = -1;
398 static int
399 plain_type (type)
400 tree type;
402 int val = plain_type_1 (type, 0);
404 /* If we have already saved up some array dimensions, print them now. */
405 if (sdb_n_dims > 0)
407 int i;
408 PUT_SDB_START_DIM;
409 for (i = sdb_n_dims - 1; i > 0; i--)
410 PUT_SDB_NEXT_DIM (sdb_dims[i]);
411 PUT_SDB_LAST_DIM (sdb_dims[0]);
412 sdb_n_dims = 0;
414 sdb_type_size = int_size_in_bytes (type);
415 /* Don't kill sdb if type is not laid out or has variable size. */
416 if (sdb_type_size < 0)
417 sdb_type_size = 0;
419 /* If we have computed the size of an array containing this type,
420 print it now. */
421 if (sdb_type_size >= 0)
423 PUT_SDB_SIZE (sdb_type_size);
424 sdb_type_size = -1;
426 return val;
429 static int
430 template_name_p (name)
431 tree name;
433 const char *ptr = IDENTIFIER_POINTER (name);
434 while (*ptr && *ptr != '<')
435 ptr++;
437 return *ptr != '\0';
440 static void
441 sdbout_record_type_name (type)
442 tree type;
444 const char *name = 0;
445 int no_name;
447 if (KNOWN_TYPE_TAG (type))
448 return;
450 if (TYPE_NAME (type) != 0)
452 tree t = 0;
454 /* Find the IDENTIFIER_NODE for the type name. */
455 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
456 t = TYPE_NAME (type);
457 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
459 t = DECL_NAME (TYPE_NAME (type));
460 /* The DECL_NAME for templates includes "<>", which breaks
461 most assemblers. Use its assembler name instead, which
462 has been mangled into being safe. */
463 if (t && template_name_p (t))
464 t = DECL_ASSEMBLER_NAME (TYPE_NAME (type));
467 /* Now get the name as a string, or invent one. */
468 if (t != NULL_TREE)
469 name = IDENTIFIER_POINTER (t);
472 no_name = (name == 0 || *name == 0);
473 if (no_name)
474 name = gen_fake_label ();
476 SET_KNOWN_TYPE_TAG (type, name);
477 #ifdef SDB_ALLOW_FORWARD_REFERENCES
478 if (no_name)
479 sdbout_queue_anonymous_type (type);
480 #endif
483 /* Return the .type value for type TYPE.
485 LEVEL indicates how many levels deep we have recursed into the type.
486 The SDB debug format can only represent 6 derived levels of types.
487 After that, we must output inaccurate debug info. We deliberately
488 stop before the 7th level, so that ADA recursive types will not give an
489 infinite loop. */
491 static int
492 plain_type_1 (type, level)
493 tree type;
494 int level;
496 if (type == 0)
497 type = void_type_node;
498 else if (type == error_mark_node)
499 type = integer_type_node;
500 else
501 type = TYPE_MAIN_VARIANT (type);
503 switch (TREE_CODE (type))
505 case VOID_TYPE:
506 return T_VOID;
507 case BOOLEAN_TYPE:
508 case INTEGER_TYPE:
510 int size = int_size_in_bytes (type) * BITS_PER_UNIT;
512 /* Carefully distinguish all the standard types of C,
513 without messing up if the language is not C.
514 Note that we check only for the names that contain spaces;
515 other names might occur by coincidence in other languages. */
516 if (TYPE_NAME (type) != 0
517 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
518 && DECL_NAME (TYPE_NAME (type)) != 0
519 && TREE_CODE (DECL_NAME (TYPE_NAME (type))) == IDENTIFIER_NODE)
521 const char *const name
522 = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
524 if (!strcmp (name, "char"))
525 return T_CHAR;
526 if (!strcmp (name, "unsigned char"))
527 return T_UCHAR;
528 if (!strcmp (name, "signed char"))
529 return T_CHAR;
530 if (!strcmp (name, "int"))
531 return T_INT;
532 if (!strcmp (name, "unsigned int"))
533 return T_UINT;
534 if (!strcmp (name, "short int"))
535 return T_SHORT;
536 if (!strcmp (name, "short unsigned int"))
537 return T_USHORT;
538 if (!strcmp (name, "long int"))
539 return T_LONG;
540 if (!strcmp (name, "long unsigned int"))
541 return T_ULONG;
544 if (size == INT_TYPE_SIZE)
545 return (TREE_UNSIGNED (type) ? T_UINT : T_INT);
546 if (size == CHAR_TYPE_SIZE)
547 return (TREE_UNSIGNED (type) ? T_UCHAR : T_CHAR);
548 if (size == SHORT_TYPE_SIZE)
549 return (TREE_UNSIGNED (type) ? T_USHORT : T_SHORT);
550 if (size == LONG_TYPE_SIZE)
551 return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG);
552 if (size == LONG_LONG_TYPE_SIZE) /* better than nothing */
553 return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG);
554 return 0;
557 case REAL_TYPE:
559 int precision = TYPE_PRECISION (type);
560 if (precision == FLOAT_TYPE_SIZE)
561 return T_FLOAT;
562 if (precision == DOUBLE_TYPE_SIZE)
563 return T_DOUBLE;
564 #ifdef EXTENDED_SDB_BASIC_TYPES
565 if (precision == LONG_DOUBLE_TYPE_SIZE)
566 return T_LNGDBL;
567 #else
568 if (precision == LONG_DOUBLE_TYPE_SIZE)
569 return T_DOUBLE; /* better than nothing */
570 #endif
571 return 0;
574 case ARRAY_TYPE:
576 int m;
577 if (level >= 6)
578 return T_VOID;
579 else
580 m = plain_type_1 (TREE_TYPE (type), level+1);
581 if (sdb_n_dims < SDB_MAX_DIM)
582 sdb_dims[sdb_n_dims++]
583 = (TYPE_DOMAIN (type)
584 && TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != 0
585 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != 0
586 && host_integerp (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), 0)
587 && host_integerp (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0)
588 ? (tree_low_cst (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), 0)
589 - tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0) + 1)
590 : 0);
592 return PUSH_DERIVED_LEVEL (DT_ARY, m);
595 case RECORD_TYPE:
596 case UNION_TYPE:
597 case QUAL_UNION_TYPE:
598 case ENUMERAL_TYPE:
600 char *tag;
601 #ifdef SDB_ALLOW_FORWARD_REFERENCES
602 sdbout_record_type_name (type);
603 #endif
604 #ifndef SDB_ALLOW_UNKNOWN_REFERENCES
605 if ((TREE_ASM_WRITTEN (type) && KNOWN_TYPE_TAG (type) != 0)
606 #ifdef SDB_ALLOW_FORWARD_REFERENCES
607 || TYPE_MODE (type) != VOIDmode
608 #endif
610 #endif
612 /* Output the referenced structure tag name
613 only if the .def has already been finished.
614 At least on 386, the Unix assembler
615 cannot handle forward references to tags. */
616 /* But the 88100, it requires them, sigh... */
617 /* And the MIPS requires unknown refs as well... */
618 tag = KNOWN_TYPE_TAG (type);
619 PUT_SDB_TAG (tag);
620 /* These 3 lines used to follow the close brace.
621 However, a size of 0 without a tag implies a tag of 0,
622 so if we don't know a tag, we can't mention the size. */
623 sdb_type_size = int_size_in_bytes (type);
624 if (sdb_type_size < 0)
625 sdb_type_size = 0;
627 return ((TREE_CODE (type) == RECORD_TYPE) ? T_STRUCT
628 : (TREE_CODE (type) == UNION_TYPE) ? T_UNION
629 : (TREE_CODE (type) == QUAL_UNION_TYPE) ? T_UNION
630 : T_ENUM);
632 case POINTER_TYPE:
633 case REFERENCE_TYPE:
635 int m;
636 if (level >= 6)
637 return T_VOID;
638 else
639 m = plain_type_1 (TREE_TYPE (type), level+1);
640 return PUSH_DERIVED_LEVEL (DT_PTR, m);
642 case FUNCTION_TYPE:
643 case METHOD_TYPE:
645 int m;
646 if (level >= 6)
647 return T_VOID;
648 else
649 m = plain_type_1 (TREE_TYPE (type), level+1);
650 return PUSH_DERIVED_LEVEL (DT_FCN, m);
652 default:
653 return 0;
657 /* Output the symbols defined in block number DO_BLOCK.
659 This function works by walking the tree structure of blocks,
660 counting blocks until it finds the desired block. */
662 static int do_block = 0;
664 static void
665 sdbout_block (block)
666 tree block;
668 while (block)
670 /* Ignore blocks never expanded or otherwise marked as real. */
671 if (TREE_USED (block))
673 /* When we reach the specified block, output its symbols. */
674 if (BLOCK_NUMBER (block) == do_block)
675 sdbout_syms (BLOCK_VARS (block));
677 /* If we are past the specified block, stop the scan. */
678 if (BLOCK_NUMBER (block) > do_block)
679 return;
681 /* Scan the blocks within this block. */
682 sdbout_block (BLOCK_SUBBLOCKS (block));
685 block = BLOCK_CHAIN (block);
689 /* Call sdbout_symbol on each decl in the chain SYMS. */
691 static void
692 sdbout_syms (syms)
693 tree syms;
695 while (syms)
697 if (TREE_CODE (syms) != LABEL_DECL)
698 sdbout_symbol (syms, 1);
699 syms = TREE_CHAIN (syms);
703 /* Output SDB information for a symbol described by DECL.
704 LOCAL is nonzero if the symbol is not file-scope. */
706 void
707 sdbout_symbol (decl, local)
708 tree decl;
709 int local;
711 tree type = TREE_TYPE (decl);
712 tree context = NULL_TREE;
713 rtx value;
714 int regno = -1;
715 const char *name;
717 sdbout_one_type (type);
719 #if 0 /* This loses when functions are marked to be ignored,
720 which happens in the C++ front end. */
721 if (DECL_IGNORED_P (decl))
722 return;
723 #endif
725 switch (TREE_CODE (decl))
727 case CONST_DECL:
728 /* Enum values are defined by defining the enum type. */
729 return;
731 case FUNCTION_DECL:
732 /* Don't mention a nested function under its parent. */
733 context = decl_function_context (decl);
734 if (context == current_function_decl)
735 return;
736 /* Check DECL_INITIAL to distinguish declarations from definitions.
737 Don't output debug info here for declarations; they will have
738 a DECL_INITIAL value of 0. */
739 if (! DECL_INITIAL (decl))
740 return;
741 if (GET_CODE (DECL_RTL (decl)) != MEM
742 || GET_CODE (XEXP (DECL_RTL (decl), 0)) != SYMBOL_REF)
743 return;
744 PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
745 PUT_SDB_VAL (XEXP (DECL_RTL (decl), 0));
746 PUT_SDB_SCL (TREE_PUBLIC (decl) ? C_EXT : C_STAT);
747 break;
749 case TYPE_DECL:
750 /* Done with tagged types. */
751 if (DECL_NAME (decl) == 0)
752 return;
753 if (DECL_IGNORED_P (decl))
754 return;
756 /* Output typedef name. */
757 if (template_name_p (DECL_NAME (decl)))
758 PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
759 else
760 PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_NAME (decl)));
761 PUT_SDB_SCL (C_TPDEF);
762 break;
764 case PARM_DECL:
765 /* Parm decls go in their own separate chains
766 and are output by sdbout_reg_parms and sdbout_parms. */
767 abort ();
769 case VAR_DECL:
770 /* Don't mention a variable that is external.
771 Let the file that defines it describe it. */
772 if (DECL_EXTERNAL (decl))
773 return;
775 /* Ignore __FUNCTION__, etc. */
776 if (DECL_IGNORED_P (decl))
777 return;
779 /* If there was an error in the declaration, don't dump core
780 if there is no RTL associated with the variable doesn't
781 exist. */
782 if (!DECL_RTL_SET_P (decl))
783 return;
785 SET_DECL_RTL (decl,
786 eliminate_regs (DECL_RTL (decl), 0, NULL_RTX));
787 #ifdef LEAF_REG_REMAP
788 if (current_function_uses_only_leaf_regs)
789 leaf_renumber_regs_insn (DECL_RTL (decl));
790 #endif
791 value = DECL_RTL (decl);
793 /* Don't mention a variable at all
794 if it was completely optimized into nothingness.
796 If DECL was from an inline function, then its rtl
797 is not identically the rtl that was used in this
798 particular compilation. */
799 if (GET_CODE (value) == REG)
801 regno = REGNO (value);
802 if (regno >= FIRST_PSEUDO_REGISTER)
803 return;
805 else if (GET_CODE (value) == SUBREG)
807 while (GET_CODE (value) == SUBREG)
808 value = SUBREG_REG (value);
809 if (GET_CODE (value) == REG)
811 if (REGNO (value) >= FIRST_PSEUDO_REGISTER)
812 return;
814 regno = REGNO (alter_subreg (&value));
815 SET_DECL_RTL (decl, value);
817 /* Don't output anything if an auto variable
818 gets RTL that is static.
819 GAS version 2.2 can't handle such output. */
820 else if (GET_CODE (value) == MEM && CONSTANT_P (XEXP (value, 0))
821 && ! TREE_STATIC (decl))
822 return;
824 /* Emit any structure, union, or enum type that has not been output.
825 This occurs for tag-less structs (et al) used to declare variables
826 within functions. */
827 if (TREE_CODE (type) == ENUMERAL_TYPE
828 || TREE_CODE (type) == RECORD_TYPE
829 || TREE_CODE (type) == UNION_TYPE
830 || TREE_CODE (type) == QUAL_UNION_TYPE)
832 if (COMPLETE_TYPE_P (type) /* not a forward reference */
833 && KNOWN_TYPE_TAG (type) == 0) /* not yet declared */
834 sdbout_one_type (type);
837 /* Defer SDB information for top-level initialized variables! */
838 if (! local
839 && GET_CODE (value) == MEM
840 && DECL_INITIAL (decl))
841 return;
843 /* C++ in 2.3 makes nameless symbols. That will be fixed later.
844 For now, avoid crashing. */
845 if (DECL_NAME (decl) == NULL_TREE)
846 return;
848 /* Record the name for, starting a symtab entry. */
849 if (local)
850 name = IDENTIFIER_POINTER (DECL_NAME (decl));
851 else
852 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
854 if (GET_CODE (value) == MEM
855 && GET_CODE (XEXP (value, 0)) == SYMBOL_REF)
857 PUT_SDB_DEF (name);
858 if (TREE_PUBLIC (decl))
860 PUT_SDB_VAL (XEXP (value, 0));
861 PUT_SDB_SCL (C_EXT);
863 else
865 PUT_SDB_VAL (XEXP (value, 0));
866 PUT_SDB_SCL (C_STAT);
869 else if (regno >= 0)
871 PUT_SDB_DEF (name);
872 PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (regno));
873 PUT_SDB_SCL (C_REG);
875 else if (GET_CODE (value) == MEM
876 && (GET_CODE (XEXP (value, 0)) == MEM
877 || (GET_CODE (XEXP (value, 0)) == REG
878 && REGNO (XEXP (value, 0)) != HARD_FRAME_POINTER_REGNUM
879 && REGNO (XEXP (value, 0)) != STACK_POINTER_REGNUM)))
880 /* If the value is indirect by memory or by a register
881 that isn't the frame pointer
882 then it means the object is variable-sized and address through
883 that register or stack slot. COFF has no way to represent this
884 so all we can do is output the variable as a pointer. */
886 PUT_SDB_DEF (name);
887 if (GET_CODE (XEXP (value, 0)) == REG)
889 PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (REGNO (XEXP (value, 0))));
890 PUT_SDB_SCL (C_REG);
892 else
894 /* DECL_RTL looks like (MEM (MEM (PLUS (REG...)
895 (CONST_INT...)))).
896 We want the value of that CONST_INT. */
897 /* Encore compiler hates a newline in a macro arg, it seems. */
898 PUT_SDB_INT_VAL (DEBUGGER_AUTO_OFFSET
899 (XEXP (XEXP (value, 0), 0)));
900 PUT_SDB_SCL (C_AUTO);
903 /* Effectively do build_pointer_type, but don't cache this type,
904 since it might be temporary whereas the type it points to
905 might have been saved for inlining. */
906 /* Don't use REFERENCE_TYPE because dbx can't handle that. */
907 type = make_node (POINTER_TYPE);
908 TREE_TYPE (type) = TREE_TYPE (decl);
910 else if (GET_CODE (value) == MEM
911 && ((GET_CODE (XEXP (value, 0)) == PLUS
912 && GET_CODE (XEXP (XEXP (value, 0), 0)) == REG
913 && GET_CODE (XEXP (XEXP (value, 0), 1)) == CONST_INT)
914 /* This is for variables which are at offset zero from
915 the frame pointer. This happens on the Alpha.
916 Non-frame pointer registers are excluded above. */
917 || (GET_CODE (XEXP (value, 0)) == REG)))
919 /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...)))
920 or (MEM (REG...)). We want the value of that CONST_INT
921 or zero. */
922 PUT_SDB_DEF (name);
923 PUT_SDB_INT_VAL (DEBUGGER_AUTO_OFFSET (XEXP (value, 0)));
924 PUT_SDB_SCL (C_AUTO);
926 else if (GET_CODE (value) == MEM && GET_CODE (XEXP (value, 0)) == CONST)
928 /* Handle an obscure case which can arise when optimizing and
929 when there are few available registers. (This is *always*
930 the case for i386/i486 targets). The DECL_RTL looks like
931 (MEM (CONST ...)) even though this variable is a local `auto'
932 or a local `register' variable. In effect, what has happened
933 is that the reload pass has seen that all assignments and
934 references for one such a local variable can be replaced by
935 equivalent assignments and references to some static storage
936 variable, thereby avoiding the need for a register. In such
937 cases we're forced to lie to debuggers and tell them that
938 this variable was itself `static'. */
939 PUT_SDB_DEF (name);
940 PUT_SDB_VAL (XEXP (XEXP (value, 0), 0));
941 PUT_SDB_SCL (C_STAT);
943 else
945 /* It is something we don't know how to represent for SDB. */
946 return;
948 break;
950 default:
951 break;
953 PUT_SDB_TYPE (plain_type (type));
954 PUT_SDB_ENDEF;
957 /* Output SDB information for a top-level initialized variable
958 that has been delayed. */
960 static void
961 sdbout_toplevel_data (decl)
962 tree decl;
964 tree type = TREE_TYPE (decl);
966 if (DECL_IGNORED_P (decl))
967 return;
969 if (! (TREE_CODE (decl) == VAR_DECL
970 && GET_CODE (DECL_RTL (decl)) == MEM
971 && DECL_INITIAL (decl)))
972 abort ();
974 PUT_SDB_DEF (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
975 PUT_SDB_VAL (XEXP (DECL_RTL (decl), 0));
976 if (TREE_PUBLIC (decl))
978 PUT_SDB_SCL (C_EXT);
980 else
982 PUT_SDB_SCL (C_STAT);
984 PUT_SDB_TYPE (plain_type (type));
985 PUT_SDB_ENDEF;
988 #ifdef SDB_ALLOW_FORWARD_REFERENCES
990 /* Machinery to record and output anonymous types. */
992 static tree anonymous_types;
994 static void
995 sdbout_queue_anonymous_type (type)
996 tree type;
998 anonymous_types = tree_cons (NULL_TREE, type, anonymous_types);
1001 static void
1002 sdbout_dequeue_anonymous_types ()
1004 tree types, link;
1006 while (anonymous_types)
1008 types = nreverse (anonymous_types);
1009 anonymous_types = NULL_TREE;
1011 for (link = types; link; link = TREE_CHAIN (link))
1013 tree type = TREE_VALUE (link);
1015 if (type && ! TREE_ASM_WRITTEN (type))
1016 sdbout_one_type (type);
1021 #endif
1023 /* Given a chain of ..._TYPE nodes, all of which have names,
1024 output definitions of those names, as typedefs. */
1026 void
1027 sdbout_types (types)
1028 tree types;
1030 tree link;
1032 for (link = types; link; link = TREE_CHAIN (link))
1033 sdbout_one_type (link);
1035 #ifdef SDB_ALLOW_FORWARD_REFERENCES
1036 sdbout_dequeue_anonymous_types ();
1037 #endif
1040 static void
1041 sdbout_type (type)
1042 tree type;
1044 if (type == error_mark_node)
1045 type = integer_type_node;
1046 PUT_SDB_TYPE (plain_type (type));
1049 /* Output types of the fields of type TYPE, if they are structs.
1051 Formerly did not chase through pointer types, since that could be circular.
1052 They must come before TYPE, since forward refs are not allowed.
1053 Now james@bigtex.cactus.org says to try them. */
1055 static void
1056 sdbout_field_types (type)
1057 tree type;
1059 tree tail;
1061 for (tail = TYPE_FIELDS (type); tail; tail = TREE_CHAIN (tail))
1062 /* This condition should match the one for emitting the actual
1063 members below. */
1064 if (TREE_CODE (tail) == FIELD_DECL
1065 && DECL_NAME (tail)
1066 && DECL_SIZE (tail)
1067 && host_integerp (DECL_SIZE (tail), 1)
1068 && host_integerp (bit_position (tail), 0))
1070 if (POINTER_TYPE_P (TREE_TYPE (tail)))
1071 sdbout_one_type (TREE_TYPE (TREE_TYPE (tail)));
1072 else
1073 sdbout_one_type (TREE_TYPE (tail));
1077 /* Use this to put out the top level defined record and union types
1078 for later reference. If this is a struct with a name, then put that
1079 name out. Other unnamed structs will have .xxfake labels generated so
1080 that they may be referred to later.
1081 The label will be stored in the KNOWN_TYPE_TAG slot of a type.
1082 It may NOT be called recursively. */
1084 static void
1085 sdbout_one_type (type)
1086 tree type;
1088 if (current_function_decl != NULL_TREE
1089 && DECL_SECTION_NAME (current_function_decl) != NULL_TREE)
1090 ; /* Don't change section amid function. */
1091 else
1092 text_section ();
1094 switch (TREE_CODE (type))
1096 case RECORD_TYPE:
1097 case UNION_TYPE:
1098 case QUAL_UNION_TYPE:
1099 case ENUMERAL_TYPE:
1100 type = TYPE_MAIN_VARIANT (type);
1101 /* Don't output a type twice. */
1102 if (TREE_ASM_WRITTEN (type))
1103 /* James said test TREE_ASM_BEING_WRITTEN here. */
1104 return;
1106 /* Output nothing if type is not yet defined. */
1107 if (!COMPLETE_TYPE_P (type))
1108 return;
1110 TREE_ASM_WRITTEN (type) = 1;
1111 #if 1
1112 /* This is reputed to cause trouble with the following case,
1113 but perhaps checking TYPE_SIZE above will fix it. */
1115 /* Here is a test case:
1117 struct foo {
1118 struct badstr *bbb;
1119 } forwardref;
1121 typedef struct intermediate {
1122 int aaaa;
1123 } intermediate_ref;
1125 typedef struct badstr {
1126 int ccccc;
1127 } badtype; */
1129 #if 0
1130 TREE_ASM_BEING_WRITTEN (type) = 1;
1131 #endif
1132 /* This change, which ought to make better output,
1133 used to make the COFF assembler unhappy.
1134 Changes involving KNOWN_TYPE_TAG may fix the problem. */
1135 /* Before really doing anything, output types we want to refer to. */
1136 /* Note that in version 1 the following two lines
1137 are not used if forward references are in use. */
1138 if (TREE_CODE (type) != ENUMERAL_TYPE)
1139 sdbout_field_types (type);
1140 #if 0
1141 TREE_ASM_WRITTEN (type) = 1;
1142 #endif
1143 #endif
1145 /* Output a structure type. */
1147 int size = int_size_in_bytes (type);
1148 int member_scl = 0;
1149 tree tem;
1150 int i, n_baseclasses = 0;
1152 /* Record the type tag, but not in its permanent place just yet. */
1153 sdbout_record_type_name (type);
1155 PUT_SDB_DEF (KNOWN_TYPE_TAG (type));
1157 switch (TREE_CODE (type))
1159 case UNION_TYPE:
1160 case QUAL_UNION_TYPE:
1161 PUT_SDB_SCL (C_UNTAG);
1162 PUT_SDB_TYPE (T_UNION);
1163 member_scl = C_MOU;
1164 break;
1166 case RECORD_TYPE:
1167 PUT_SDB_SCL (C_STRTAG);
1168 PUT_SDB_TYPE (T_STRUCT);
1169 member_scl = C_MOS;
1170 break;
1172 case ENUMERAL_TYPE:
1173 PUT_SDB_SCL (C_ENTAG);
1174 PUT_SDB_TYPE (T_ENUM);
1175 member_scl = C_MOE;
1176 break;
1178 default:
1179 break;
1182 PUT_SDB_SIZE (size);
1183 PUT_SDB_ENDEF;
1185 /* Print out the base class information with fields
1186 named after the types they hold. */
1187 /* This is only relevant to aggregate types. TYPE_BINFO is used
1188 for other purposes in an ENUMERAL_TYPE, so we must exclude that
1189 case. */
1190 if (TREE_CODE (type) != ENUMERAL_TYPE)
1192 if (TYPE_BINFO (type)
1193 && TYPE_BINFO_BASETYPES (type))
1194 n_baseclasses = TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES (type));
1195 for (i = 0; i < n_baseclasses; i++)
1197 tree child = TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (type)),
1199 tree child_type = BINFO_TYPE (child);
1200 tree child_type_name;
1201 if (TYPE_NAME (child_type) == 0)
1202 continue;
1203 if (TREE_CODE (TYPE_NAME (child_type)) == IDENTIFIER_NODE)
1204 child_type_name = TYPE_NAME (child_type);
1205 else if (TREE_CODE (TYPE_NAME (child_type)) == TYPE_DECL)
1207 child_type_name = DECL_NAME (TYPE_NAME (child_type));
1208 if (child_type_name && template_name_p (child_type_name))
1209 child_type_name
1210 = DECL_ASSEMBLER_NAME (TYPE_NAME (child_type));
1212 else
1213 continue;
1215 CONTIN;
1216 PUT_SDB_DEF (IDENTIFIER_POINTER (child_type_name));
1217 PUT_SDB_INT_VAL (tree_low_cst (BINFO_OFFSET (child), 0));
1218 PUT_SDB_SCL (member_scl);
1219 sdbout_type (BINFO_TYPE (child));
1220 PUT_SDB_ENDEF;
1224 /* output the individual fields */
1226 if (TREE_CODE (type) == ENUMERAL_TYPE)
1228 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
1229 if (host_integerp (TREE_VALUE (tem), 0))
1231 PUT_SDB_DEF (IDENTIFIER_POINTER (TREE_PURPOSE (tem)));
1232 PUT_SDB_INT_VAL (tree_low_cst (TREE_VALUE (tem), 0));
1233 PUT_SDB_SCL (C_MOE);
1234 PUT_SDB_TYPE (T_MOE);
1235 PUT_SDB_ENDEF;
1238 else /* record or union type */
1239 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
1240 /* Output the name, type, position (in bits), size (in bits)
1241 of each field. */
1243 /* Omit here the nameless fields that are used to skip bits.
1244 Also omit fields with variable size or position.
1245 Also omit non FIELD_DECL nodes that GNU C++ may put here. */
1246 if (TREE_CODE (tem) == FIELD_DECL
1247 && DECL_NAME (tem)
1248 && DECL_SIZE (tem)
1249 && host_integerp (DECL_SIZE (tem), 1)
1250 && host_integerp (bit_position (tem), 0))
1252 const char *name;
1254 CONTIN;
1255 name = IDENTIFIER_POINTER (DECL_NAME (tem));
1256 PUT_SDB_DEF (name);
1257 if (DECL_BIT_FIELD_TYPE (tem))
1259 PUT_SDB_INT_VAL (int_bit_position (tem));
1260 PUT_SDB_SCL (C_FIELD);
1261 sdbout_type (DECL_BIT_FIELD_TYPE (tem));
1262 PUT_SDB_SIZE (tree_low_cst (DECL_SIZE (tem), 1));
1264 else
1266 PUT_SDB_INT_VAL (int_bit_position (tem) / BITS_PER_UNIT);
1267 PUT_SDB_SCL (member_scl);
1268 sdbout_type (TREE_TYPE (tem));
1270 PUT_SDB_ENDEF;
1272 /* output end of a structure,union, or enumeral definition */
1274 PUT_SDB_PLAIN_DEF ("eos");
1275 PUT_SDB_INT_VAL (size);
1276 PUT_SDB_SCL (C_EOS);
1277 PUT_SDB_TAG (KNOWN_TYPE_TAG (type));
1278 PUT_SDB_SIZE (size);
1279 PUT_SDB_ENDEF;
1280 break;
1282 default:
1283 break;
1288 /* The following two functions output definitions of function parameters.
1289 Each parameter gets a definition locating it in the parameter list.
1290 Each parameter that is a register variable gets a second definition
1291 locating it in the register.
1293 Printing or argument lists in gdb uses the definitions that
1294 locate in the parameter list. But reference to the variable in
1295 expressions uses preferentially the definition as a register. */
1297 /* Output definitions, referring to storage in the parmlist,
1298 of all the parms in PARMS, which is a chain of PARM_DECL nodes. */
1300 static void
1301 sdbout_parms (parms)
1302 tree parms;
1304 for (; parms; parms = TREE_CHAIN (parms))
1305 if (DECL_NAME (parms))
1307 int current_sym_value = 0;
1308 const char *name = IDENTIFIER_POINTER (DECL_NAME (parms));
1310 if (name == 0 || *name == 0)
1311 name = gen_fake_label ();
1313 /* Perform any necessary register eliminations on the parameter's rtl,
1314 so that the debugging output will be accurate. */
1315 DECL_INCOMING_RTL (parms)
1316 = eliminate_regs (DECL_INCOMING_RTL (parms), 0, NULL_RTX);
1317 SET_DECL_RTL (parms,
1318 eliminate_regs (DECL_RTL (parms), 0, NULL_RTX));
1320 if (PARM_PASSED_IN_MEMORY (parms))
1322 rtx addr = XEXP (DECL_INCOMING_RTL (parms), 0);
1323 tree type;
1325 /* ??? Here we assume that the parm address is indexed
1326 off the frame pointer or arg pointer.
1327 If that is not true, we produce meaningless results,
1328 but do not crash. */
1329 if (GET_CODE (addr) == PLUS
1330 && GET_CODE (XEXP (addr, 1)) == CONST_INT)
1331 current_sym_value = INTVAL (XEXP (addr, 1));
1332 else
1333 current_sym_value = 0;
1335 if (GET_CODE (DECL_RTL (parms)) == REG
1336 && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
1337 type = DECL_ARG_TYPE (parms);
1338 else
1340 int original_sym_value = current_sym_value;
1342 /* This is the case where the parm is passed as an int or
1343 double and it is converted to a char, short or float
1344 and stored back in the parmlist. In this case, describe
1345 the parm with the variable's declared type, and adjust
1346 the address if the least significant bytes (which we are
1347 using) are not the first ones. */
1348 if (BYTES_BIG_ENDIAN
1349 && TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
1350 current_sym_value +=
1351 (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
1352 - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
1354 if (GET_CODE (DECL_RTL (parms)) == MEM
1355 && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
1356 && (GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1))
1357 == CONST_INT)
1358 && (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1))
1359 == current_sym_value))
1360 type = TREE_TYPE (parms);
1361 else
1363 current_sym_value = original_sym_value;
1364 type = DECL_ARG_TYPE (parms);
1368 PUT_SDB_DEF (name);
1369 PUT_SDB_INT_VAL (DEBUGGER_ARG_OFFSET (current_sym_value, addr));
1370 PUT_SDB_SCL (C_ARG);
1371 PUT_SDB_TYPE (plain_type (type));
1372 PUT_SDB_ENDEF;
1374 else if (GET_CODE (DECL_RTL (parms)) == REG)
1376 rtx best_rtl;
1377 /* Parm passed in registers and lives in registers or nowhere. */
1379 /* If parm lives in a register, use that register;
1380 pretend the parm was passed there. It would be more consistent
1381 to describe the register where the parm was passed,
1382 but in practice that register usually holds something else. */
1383 if (REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
1384 best_rtl = DECL_RTL (parms);
1385 /* If the parm lives nowhere,
1386 use the register where it was passed. */
1387 else
1388 best_rtl = DECL_INCOMING_RTL (parms);
1390 PUT_SDB_DEF (name);
1391 PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (REGNO (best_rtl)));
1392 PUT_SDB_SCL (C_REGPARM);
1393 PUT_SDB_TYPE (plain_type (TREE_TYPE (parms)));
1394 PUT_SDB_ENDEF;
1396 else if (GET_CODE (DECL_RTL (parms)) == MEM
1397 && XEXP (DECL_RTL (parms), 0) != const0_rtx)
1399 /* Parm was passed in registers but lives on the stack. */
1401 /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))),
1402 in which case we want the value of that CONST_INT,
1403 or (MEM (REG ...)) or (MEM (MEM ...)),
1404 in which case we use a value of zero. */
1405 if (GET_CODE (XEXP (DECL_RTL (parms), 0)) == REG
1406 || GET_CODE (XEXP (DECL_RTL (parms), 0)) == MEM)
1407 current_sym_value = 0;
1408 else
1409 current_sym_value = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
1411 /* Again, this assumes the offset is based on the arg pointer. */
1412 PUT_SDB_DEF (name);
1413 PUT_SDB_INT_VAL (DEBUGGER_ARG_OFFSET (current_sym_value,
1414 XEXP (DECL_RTL (parms), 0)));
1415 PUT_SDB_SCL (C_ARG);
1416 PUT_SDB_TYPE (plain_type (TREE_TYPE (parms)));
1417 PUT_SDB_ENDEF;
1422 /* Output definitions for the places where parms live during the function,
1423 when different from where they were passed, when the parms were passed
1424 in memory.
1426 It is not useful to do this for parms passed in registers
1427 that live during the function in different registers, because it is
1428 impossible to look in the passed register for the passed value,
1429 so we use the within-the-function register to begin with.
1431 PARMS is a chain of PARM_DECL nodes. */
1433 static void
1434 sdbout_reg_parms (parms)
1435 tree parms;
1437 for (; parms; parms = TREE_CHAIN (parms))
1438 if (DECL_NAME (parms))
1440 const char *name = IDENTIFIER_POINTER (DECL_NAME (parms));
1442 /* Report parms that live in registers during the function
1443 but were passed in memory. */
1444 if (GET_CODE (DECL_RTL (parms)) == REG
1445 && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER
1446 && PARM_PASSED_IN_MEMORY (parms))
1448 if (name == 0 || *name == 0)
1449 name = gen_fake_label ();
1450 PUT_SDB_DEF (name);
1451 PUT_SDB_INT_VAL (DBX_REGISTER_NUMBER (REGNO (DECL_RTL (parms))));
1452 PUT_SDB_SCL (C_REG);
1453 PUT_SDB_TYPE (plain_type (TREE_TYPE (parms)));
1454 PUT_SDB_ENDEF;
1456 /* Report parms that live in memory but not where they were passed. */
1457 else if (GET_CODE (DECL_RTL (parms)) == MEM
1458 && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
1459 && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
1460 && PARM_PASSED_IN_MEMORY (parms)
1461 && ! rtx_equal_p (DECL_RTL (parms), DECL_INCOMING_RTL (parms)))
1463 #if 0 /* ??? It is not clear yet what should replace this. */
1464 int offset = DECL_OFFSET (parms) / BITS_PER_UNIT;
1465 /* A parm declared char is really passed as an int,
1466 so it occupies the least significant bytes.
1467 On a big-endian machine those are not the low-numbered ones. */
1468 if (BYTES_BIG_ENDIAN
1469 && offset != -1
1470 && TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
1471 offset += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
1472 - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
1473 if (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) != offset) {...}
1474 #endif
1476 if (name == 0 || *name == 0)
1477 name = gen_fake_label ();
1478 PUT_SDB_DEF (name);
1479 PUT_SDB_INT_VAL (DEBUGGER_AUTO_OFFSET
1480 (XEXP (DECL_RTL (parms), 0)));
1481 PUT_SDB_SCL (C_AUTO);
1482 PUT_SDB_TYPE (plain_type (TREE_TYPE (parms)));
1483 PUT_SDB_ENDEF;
1489 /* Output debug information for a global DECL. Called from toplev.c
1490 after compilation proper has finished. */
1492 static void
1493 sdbout_global_decl (decl)
1494 tree decl;
1496 if (TREE_CODE (decl) == VAR_DECL
1497 && !DECL_EXTERNAL (decl)
1498 && DECL_RTL_SET_P (decl))
1500 /* The COFF linker can move initialized global vars to the end.
1501 And that can screw up the symbol ordering. Defer those for
1502 sdbout_finish (). */
1503 if (!DECL_INITIAL (decl) || !TREE_PUBLIC (decl))
1504 sdbout_symbol (decl, 0);
1506 /* Output COFF information for non-global file-scope initialized
1507 variables. */
1508 if (DECL_INITIAL (decl) && GET_CODE (DECL_RTL (decl)) == MEM)
1509 sdbout_toplevel_data (decl);
1513 /* Output initialized global vars at the end, in the order of
1514 definition. See comment in sdbout_global_decl. */
1516 static void
1517 sdbout_finish (main_filename)
1518 const char *main_filename ATTRIBUTE_UNUSED;
1520 tree decl = (*lang_hooks.decls.getdecls) ();
1521 unsigned int len = list_length (decl);
1522 tree *vec = (tree *) xmalloc (sizeof (tree) * len);
1523 unsigned int i;
1525 /* Process the decls in reverse order--earliest first. Put them
1526 into VEC from back to front, then take out from front. */
1528 for (i = 0; i < len; i++, decl = TREE_CHAIN (decl))
1529 vec[len - i - 1] = decl;
1531 for (i = 0; i < len; i++)
1533 decl = vec[i];
1534 if (TREE_CODE (decl) == VAR_DECL
1535 && ! DECL_EXTERNAL (decl)
1536 && DECL_INITIAL (decl)
1537 && TREE_PUBLIC (decl)
1538 && DECL_RTL_SET_P (decl))
1539 sdbout_symbol (decl, 0);
1542 free (vec);
1545 /* Describe the beginning of an internal block within a function.
1546 Also output descriptions of variables defined in this block.
1548 N is the number of the block, by order of beginning, counting from 1,
1549 and not counting the outermost (function top-level) block.
1550 The blocks match the BLOCKs in DECL_INITIAL (current_function_decl),
1551 if the count starts at 0 for the outermost one. */
1553 static void
1554 sdbout_begin_block (line, n)
1555 unsigned int line;
1556 unsigned int n;
1558 tree decl = current_function_decl;
1559 MAKE_LINE_SAFE (line);
1561 /* The SCO compiler does not emit a separate block for the function level
1562 scope, so we avoid it here also. However, mips ECOFF compilers do emit
1563 a separate block, so we retain it when MIPS_DEBUGGING_INFO is defined. */
1564 #ifndef MIPS_DEBUGGING_INFO
1565 if (n != 1)
1566 #endif
1567 PUT_SDB_BLOCK_START (line - sdb_begin_function_line);
1569 if (n == 1)
1571 /* Include the outermost BLOCK's variables in block 1. */
1572 do_block = BLOCK_NUMBER (DECL_INITIAL (decl));
1573 sdbout_block (DECL_INITIAL (decl));
1575 /* If -g1, suppress all the internal symbols of functions
1576 except for arguments. */
1577 if (debug_info_level != DINFO_LEVEL_TERSE)
1579 do_block = n;
1580 sdbout_block (DECL_INITIAL (decl));
1583 #ifdef SDB_ALLOW_FORWARD_REFERENCES
1584 sdbout_dequeue_anonymous_types ();
1585 #endif
1588 /* Describe the end line-number of an internal block within a function. */
1590 static void
1591 sdbout_end_block (line, n)
1592 unsigned int line;
1593 unsigned int n ATTRIBUTE_UNUSED;
1595 MAKE_LINE_SAFE (line);
1597 /* The SCO compiler does not emit a separate block for the function level
1598 scope, so we avoid it here also. However, mips ECOFF compilers do emit
1599 a separate block, so we retain it when MIPS_DEBUGGING_INFO is defined. */
1600 #ifndef MIPS_DEBUGGING_INFO
1601 if (n != 1)
1602 #endif
1603 PUT_SDB_BLOCK_END (line - sdb_begin_function_line);
1606 static void
1607 sdbout_source_line (line, filename)
1608 unsigned int line;
1609 const char *filename ATTRIBUTE_UNUSED;
1611 /* COFF relative line numbers must be positive. */
1612 if ((int) line > sdb_begin_function_line)
1614 #ifdef ASM_OUTPUT_SOURCE_LINE
1615 ASM_OUTPUT_SOURCE_LINE (asm_out_file, line);
1616 #else
1617 fprintf (asm_out_file, "\t.ln\t%d\n",
1618 ((sdb_begin_function_line > -1)
1619 ? line - sdb_begin_function_line : 1));
1620 #endif
1624 /* Output sdb info for the current function name.
1625 Called from assemble_start_function. */
1627 static void
1628 sdbout_begin_function (decl)
1629 tree decl ATTRIBUTE_UNUSED;
1631 sdbout_symbol (current_function_decl, 0);
1634 /* Called at beginning of function body (before or after prologue,
1635 depending on MIPS_DEBUGGING_INFO). Record the function's starting
1636 line number, so we can output relative line numbers for the other
1637 lines. Describe beginning of outermost block. Also describe the
1638 parameter list. */
1640 #ifndef MIPS_DEBUGGING_INFO
1641 static void
1642 sdbout_begin_prologue (line, file)
1643 unsigned int line;
1644 const char *file ATTRIBUTE_UNUSED;
1646 sdbout_end_prologue (line);
1648 #endif
1650 static void
1651 sdbout_end_prologue (line)
1652 unsigned int line;
1654 sdb_begin_function_line = line - 1;
1655 PUT_SDB_FUNCTION_START (line);
1656 sdbout_parms (DECL_ARGUMENTS (current_function_decl));
1657 sdbout_reg_parms (DECL_ARGUMENTS (current_function_decl));
1660 /* Called at end of function (before epilogue).
1661 Describe end of outermost block. */
1663 static void
1664 sdbout_end_function (line)
1665 unsigned int line;
1667 #ifdef SDB_ALLOW_FORWARD_REFERENCES
1668 sdbout_dequeue_anonymous_types ();
1669 #endif
1671 MAKE_LINE_SAFE (line);
1672 PUT_SDB_FUNCTION_END (line - sdb_begin_function_line);
1674 /* Indicate we are between functions, for line-number output. */
1675 sdb_begin_function_line = -1;
1678 /* Output sdb info for the absolute end of a function.
1679 Called after the epilogue is output. */
1681 static void
1682 sdbout_end_epilogue ()
1684 const char *const name ATTRIBUTE_UNUSED
1685 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl));
1687 #ifdef PUT_SDB_EPILOGUE_END
1688 PUT_SDB_EPILOGUE_END (name);
1689 #else
1690 fprintf (asm_out_file, "\t.def\t");
1691 assemble_name (asm_out_file, name);
1692 fprintf (asm_out_file, "%s\t.val\t.%s\t.scl\t-1%s\t.endef\n",
1693 SDB_DELIM, SDB_DELIM, SDB_DELIM);
1694 #endif
1697 /* Output sdb info for the given label. Called only if LABEL_NAME (insn)
1698 is present. */
1700 static void
1701 sdbout_label (insn)
1702 rtx insn;
1704 PUT_SDB_DEF (LABEL_NAME (insn));
1705 PUT_SDB_VAL (insn);
1706 PUT_SDB_SCL (C_LABEL);
1707 PUT_SDB_TYPE (T_NULL);
1708 PUT_SDB_ENDEF;
1711 /* Change to reading from a new source file. */
1713 static void
1714 sdbout_start_source_file (line, filename)
1715 unsigned int line ATTRIBUTE_UNUSED;
1716 const char *filename ATTRIBUTE_UNUSED;
1718 #ifdef MIPS_DEBUGGING_INFO
1719 struct sdb_file *n = (struct sdb_file *) xmalloc (sizeof *n);
1721 n->next = current_file;
1722 n->name = filename;
1723 current_file = n;
1724 PUT_SDB_SRC_FILE (filename);
1725 #endif
1728 /* Revert to reading a previous source file. */
1730 static void
1731 sdbout_end_source_file (line)
1732 unsigned int line ATTRIBUTE_UNUSED;
1734 #ifdef MIPS_DEBUGGING_INFO
1735 struct sdb_file *next;
1737 next = current_file->next;
1738 free (current_file);
1739 current_file = next;
1740 PUT_SDB_SRC_FILE (current_file->name);
1741 #endif
1744 /* Set up for SDB output at the start of compilation. */
1746 static void
1747 sdbout_init (input_file_name)
1748 const char *input_file_name ATTRIBUTE_UNUSED;
1750 #ifdef MIPS_DEBUGGING_INFO
1751 current_file = (struct sdb_file *) xmalloc (sizeof *current_file);
1752 current_file->next = NULL;
1753 current_file->name = input_file_name;
1754 #endif
1756 #ifdef RMS_QUICK_HACK_1
1757 tree t;
1758 for (t = (*lang_hooks.decls.getdecls) (); t; t = TREE_CHAIN (t))
1759 if (DECL_NAME (t) && IDENTIFIER_POINTER (DECL_NAME (t)) != 0
1760 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (t)), "__vtbl_ptr_type"))
1761 sdbout_symbol (t, 0);
1762 #endif
1764 #ifdef SDB_ALLOW_FORWARD_REFERENCES
1765 ggc_add_tree_root (&anonymous_types, 1);
1766 #endif
1769 #endif /* SDB_DEBUGGING_INFO */