If errorcount nonzero, don't call abort if the function is already defined.
[official-gcc.git] / gcc / dwarf2out.c
blob3314b9fe204843993ca2ac4b8ed997f835a014cd
1 /* Output Dwarf2 format symbol table information from the GNU C compiler.
2 Copyright (C) 1992, 93, 95, 96, 97, 1998 Free Software Foundation, Inc.
3 Contributed by Gary Funck (gary@intrepid.com).
4 Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
5 Extensively modified by Jason Merrill (jason@cygnus.com).
7 This file is part of GNU CC.
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING. If not, write to
21 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
23 /* The first part of this file deals with the DWARF 2 frame unwind
24 information, which is also used by the GCC efficient exception handling
25 mechanism. The second part, controlled only by an #ifdef
26 DWARF2_DEBUGGING_INFO, deals with the other DWARF 2 debugging
27 information. */
29 #include "config.h"
30 #include "system.h"
31 #include "defaults.h"
32 #include "tree.h"
33 #include "flags.h"
34 #include "rtl.h"
35 #include "hard-reg-set.h"
36 #include "regs.h"
37 #include "insn-config.h"
38 #include "reload.h"
39 #include "output.h"
40 #include "expr.h"
41 #include "except.h"
42 #include "dwarf2.h"
43 #include "dwarf2out.h"
44 #include "toplev.h"
45 #include "dyn-string.h"
47 /* We cannot use <assert.h> in GCC source, since that would include
48 GCC's assert.h, which may not be compatible with the host compiler. */
49 #undef assert
50 #ifdef NDEBUG
51 # define assert(e)
52 #else
53 # define assert(e) do { if (! (e)) abort (); } while (0)
54 #endif
56 /* Decide whether we want to emit frame unwind information for the current
57 translation unit. */
59 int
60 dwarf2out_do_frame ()
62 return (write_symbols == DWARF2_DEBUG
63 #ifdef DWARF2_FRAME_INFO
64 || DWARF2_FRAME_INFO
65 #endif
66 #ifdef DWARF2_UNWIND_INFO
67 || (flag_exceptions && ! exceptions_via_longjmp)
68 #endif
72 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
74 #ifndef __GNUC__
75 #define inline
76 #endif
78 /* How to start an assembler comment. */
79 #ifndef ASM_COMMENT_START
80 #define ASM_COMMENT_START ";#"
81 #endif
83 typedef struct dw_cfi_struct *dw_cfi_ref;
84 typedef struct dw_fde_struct *dw_fde_ref;
85 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
87 /* Call frames are described using a sequence of Call Frame
88 Information instructions. The register number, offset
89 and address fields are provided as possible operands;
90 their use is selected by the opcode field. */
92 typedef union dw_cfi_oprnd_struct
94 unsigned long dw_cfi_reg_num;
95 long int dw_cfi_offset;
96 char *dw_cfi_addr;
98 dw_cfi_oprnd;
100 typedef struct dw_cfi_struct
102 dw_cfi_ref dw_cfi_next;
103 enum dwarf_call_frame_info dw_cfi_opc;
104 dw_cfi_oprnd dw_cfi_oprnd1;
105 dw_cfi_oprnd dw_cfi_oprnd2;
107 dw_cfi_node;
109 /* All call frame descriptions (FDE's) in the GCC generated DWARF
110 refer to a single Common Information Entry (CIE), defined at
111 the beginning of the .debug_frame section. This used of a single
112 CIE obviates the need to keep track of multiple CIE's
113 in the DWARF generation routines below. */
115 typedef struct dw_fde_struct
117 char *dw_fde_begin;
118 char *dw_fde_current_label;
119 char *dw_fde_end;
120 dw_cfi_ref dw_fde_cfi;
122 dw_fde_node;
124 /* Maximum size (in bytes) of an artificially generated label. */
125 #define MAX_ARTIFICIAL_LABEL_BYTES 30
127 /* Make sure we know the sizes of the various types dwarf can describe. These
128 are only defaults. If the sizes are different for your target, you should
129 override these values by defining the appropriate symbols in your tm.h
130 file. */
132 #ifndef CHAR_TYPE_SIZE
133 #define CHAR_TYPE_SIZE BITS_PER_UNIT
134 #endif
135 #ifndef PTR_SIZE
136 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
137 #endif
139 /* The size in bytes of a DWARF field indicating an offset or length
140 relative to a debug info section, specified to be 4 bytes in the DWARF-2
141 specification. The SGI/MIPS ABI defines it to be the same as PTR_SIZE. */
143 #ifndef DWARF_OFFSET_SIZE
144 #define DWARF_OFFSET_SIZE 4
145 #endif
147 #define DWARF_VERSION 2
149 /* Round SIZE up to the nearest BOUNDARY. */
150 #define DWARF_ROUND(SIZE,BOUNDARY) \
151 (((SIZE) + (BOUNDARY) - 1) & ~((BOUNDARY) - 1))
153 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
154 #ifdef STACK_GROWS_DOWNWARD
155 #define DWARF_CIE_DATA_ALIGNMENT (-UNITS_PER_WORD)
156 #else
157 #define DWARF_CIE_DATA_ALIGNMENT UNITS_PER_WORD
158 #endif
160 /* A pointer to the base of a table that contains frame description
161 information for each routine. */
162 static dw_fde_ref fde_table;
164 /* Number of elements currently allocated for fde_table. */
165 static unsigned fde_table_allocated;
167 /* Number of elements in fde_table currently in use. */
168 static unsigned fde_table_in_use;
170 /* Size (in elements) of increments by which we may expand the
171 fde_table. */
172 #define FDE_TABLE_INCREMENT 256
174 /* A list of call frame insns for the CIE. */
175 static dw_cfi_ref cie_cfi_head;
177 /* The number of the current function definition for which debugging
178 information is being generated. These numbers range from 1 up to the
179 maximum number of function definitions contained within the current
180 compilation unit. These numbers are used to create unique label id's
181 unique to each function definition. */
182 static unsigned current_funcdef_number = 0;
184 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
185 attribute that accelerates the lookup of the FDE associated
186 with the subprogram. This variable holds the table index of the FDE
187 associated with the current function (body) definition. */
188 static unsigned current_funcdef_fde;
190 /* Forward declarations for functions defined in this file. */
192 static char *stripattributes PROTO((char *));
193 static char *dwarf_cfi_name PROTO((unsigned));
194 static dw_cfi_ref new_cfi PROTO((void));
195 static void add_cfi PROTO((dw_cfi_ref *, dw_cfi_ref));
196 static unsigned long size_of_uleb128 PROTO((unsigned long));
197 static unsigned long size_of_sleb128 PROTO((long));
198 static void output_uleb128 PROTO((unsigned long));
199 static void output_sleb128 PROTO((long));
200 static void add_fde_cfi PROTO((char *, dw_cfi_ref));
201 static void lookup_cfa_1 PROTO((dw_cfi_ref, unsigned long *,
202 long *));
203 static void lookup_cfa PROTO((unsigned long *, long *));
204 static void reg_save PROTO((char *, unsigned, unsigned,
205 long));
206 static void initial_return_save PROTO((rtx));
207 static void output_cfi PROTO((dw_cfi_ref, dw_fde_ref));
208 static void output_call_frame_info PROTO((int));
209 static unsigned reg_number PROTO((rtx));
210 static void dwarf2out_stack_adjust PROTO((rtx));
212 /* Definitions of defaults for assembler-dependent names of various
213 pseudo-ops and section names.
214 Theses may be overridden in the tm.h file (if necessary) for a particular
215 assembler. */
217 #ifdef OBJECT_FORMAT_ELF
218 #ifndef UNALIGNED_SHORT_ASM_OP
219 #define UNALIGNED_SHORT_ASM_OP ".2byte"
220 #endif
221 #ifndef UNALIGNED_INT_ASM_OP
222 #define UNALIGNED_INT_ASM_OP ".4byte"
223 #endif
224 #ifndef UNALIGNED_DOUBLE_INT_ASM_OP
225 #define UNALIGNED_DOUBLE_INT_ASM_OP ".8byte"
226 #endif
227 #endif /* OBJECT_FORMAT_ELF */
229 #ifndef ASM_BYTE_OP
230 #define ASM_BYTE_OP ".byte"
231 #endif
233 /* Data and reference forms for relocatable data. */
234 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
235 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
237 /* Pseudo-op for defining a new section. */
238 #ifndef SECTION_ASM_OP
239 #define SECTION_ASM_OP ".section"
240 #endif
242 /* The default format used by the ASM_OUTPUT_SECTION macro (see below) to
243 print the SECTION_ASM_OP and the section name. The default here works for
244 almost all svr4 assemblers, except for the sparc, where the section name
245 must be enclosed in double quotes. (See sparcv4.h). */
246 #ifndef SECTION_FORMAT
247 #ifdef PUSHSECTION_FORMAT
248 #define SECTION_FORMAT PUSHSECTION_FORMAT
249 #else
250 #define SECTION_FORMAT "\t%s\t%s\n"
251 #endif
252 #endif
254 #ifndef FRAME_SECTION
255 #define FRAME_SECTION ".debug_frame"
256 #endif
258 #ifndef FUNC_BEGIN_LABEL
259 #define FUNC_BEGIN_LABEL "LFB"
260 #endif
261 #ifndef FUNC_END_LABEL
262 #define FUNC_END_LABEL "LFE"
263 #endif
264 #define CIE_AFTER_SIZE_LABEL "LSCIE"
265 #define CIE_END_LABEL "LECIE"
266 #define CIE_LENGTH_LABEL "LLCIE"
267 #define FDE_AFTER_SIZE_LABEL "LSFDE"
268 #define FDE_END_LABEL "LEFDE"
269 #define FDE_LENGTH_LABEL "LLFDE"
271 /* Definitions of defaults for various types of primitive assembly language
272 output operations. These may be overridden from within the tm.h file,
273 but typically, that is unnecessary. */
275 #ifndef ASM_OUTPUT_SECTION
276 #define ASM_OUTPUT_SECTION(FILE, SECTION) \
277 fprintf ((FILE), SECTION_FORMAT, SECTION_ASM_OP, SECTION)
278 #endif
280 #ifndef ASM_OUTPUT_DWARF_DATA1
281 #define ASM_OUTPUT_DWARF_DATA1(FILE,VALUE) \
282 fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) (VALUE))
283 #endif
285 #ifndef ASM_OUTPUT_DWARF_DELTA1
286 #define ASM_OUTPUT_DWARF_DELTA1(FILE,LABEL1,LABEL2) \
287 do { fprintf ((FILE), "\t%s\t", ASM_BYTE_OP); \
288 assemble_name (FILE, LABEL1); \
289 fprintf (FILE, "-"); \
290 assemble_name (FILE, LABEL2); \
291 } while (0)
292 #endif
294 #ifdef UNALIGNED_INT_ASM_OP
296 #ifndef UNALIGNED_OFFSET_ASM_OP
297 #define UNALIGNED_OFFSET_ASM_OP \
298 (DWARF_OFFSET_SIZE == 8 ? UNALIGNED_DOUBLE_INT_ASM_OP : UNALIGNED_INT_ASM_OP)
299 #endif
301 #ifndef UNALIGNED_WORD_ASM_OP
302 #define UNALIGNED_WORD_ASM_OP \
303 (PTR_SIZE == 8 ? UNALIGNED_DOUBLE_INT_ASM_OP : UNALIGNED_INT_ASM_OP)
304 #endif
306 #ifndef ASM_OUTPUT_DWARF_DELTA2
307 #define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \
308 do { fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \
309 assemble_name (FILE, LABEL1); \
310 fprintf (FILE, "-"); \
311 assemble_name (FILE, LABEL2); \
312 } while (0)
313 #endif
315 #ifndef ASM_OUTPUT_DWARF_DELTA4
316 #define ASM_OUTPUT_DWARF_DELTA4(FILE,LABEL1,LABEL2) \
317 do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \
318 assemble_name (FILE, LABEL1); \
319 fprintf (FILE, "-"); \
320 assemble_name (FILE, LABEL2); \
321 } while (0)
322 #endif
324 #ifndef ASM_OUTPUT_DWARF_DELTA
325 #define ASM_OUTPUT_DWARF_DELTA(FILE,LABEL1,LABEL2) \
326 do { fprintf ((FILE), "\t%s\t", UNALIGNED_OFFSET_ASM_OP); \
327 assemble_name (FILE, LABEL1); \
328 fprintf (FILE, "-"); \
329 assemble_name (FILE, LABEL2); \
330 } while (0)
331 #endif
333 #ifndef ASM_OUTPUT_DWARF_ADDR_DELTA
334 #define ASM_OUTPUT_DWARF_ADDR_DELTA(FILE,LABEL1,LABEL2) \
335 do { fprintf ((FILE), "\t%s\t", UNALIGNED_WORD_ASM_OP); \
336 assemble_name (FILE, LABEL1); \
337 fprintf (FILE, "-"); \
338 assemble_name (FILE, LABEL2); \
339 } while (0)
340 #endif
342 #ifndef ASM_OUTPUT_DWARF_ADDR
343 #define ASM_OUTPUT_DWARF_ADDR(FILE,LABEL) \
344 do { fprintf ((FILE), "\t%s\t", UNALIGNED_WORD_ASM_OP); \
345 assemble_name (FILE, LABEL); \
346 } while (0)
347 #endif
349 /* ??? This macro takes an RTX in dwarfout.c and a string in dwarf2out.c.
350 We resolve the conflict by creating a new macro ASM_OUTPUT_DWARF2_ADDR_CONST
351 for ports that want to support both DWARF1 and DWARF2. This needs a better
352 solution. See also the comments in sparc/sp64-elf.h. */
353 #ifdef ASM_OUTPUT_DWARF2_ADDR_CONST
354 #undef ASM_OUTPUT_DWARF_ADDR_CONST
355 #define ASM_OUTPUT_DWARF_ADDR_CONST(FILE,ADDR) \
356 ASM_OUTPUT_DWARF2_ADDR_CONST (FILE, ADDR)
357 #endif
359 #ifndef ASM_OUTPUT_DWARF_ADDR_CONST
360 #define ASM_OUTPUT_DWARF_ADDR_CONST(FILE,ADDR) \
361 fprintf ((FILE), "\t%s\t%s", UNALIGNED_WORD_ASM_OP, (ADDR))
362 #endif
364 #ifndef ASM_OUTPUT_DWARF_OFFSET4
365 #define ASM_OUTPUT_DWARF_OFFSET4(FILE,LABEL) \
366 do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \
367 assemble_name (FILE, LABEL); \
368 } while (0)
369 #endif
371 #ifndef ASM_OUTPUT_DWARF_OFFSET
372 #define ASM_OUTPUT_DWARF_OFFSET(FILE,LABEL) \
373 do { fprintf ((FILE), "\t%s\t", UNALIGNED_OFFSET_ASM_OP); \
374 assemble_name (FILE, LABEL); \
375 } while (0)
376 #endif
378 #ifndef ASM_OUTPUT_DWARF_DATA2
379 #define ASM_OUTPUT_DWARF_DATA2(FILE,VALUE) \
380 fprintf ((FILE), "\t%s\t0x%x", UNALIGNED_SHORT_ASM_OP, (unsigned) (VALUE))
381 #endif
383 #ifndef ASM_OUTPUT_DWARF_DATA4
384 #define ASM_OUTPUT_DWARF_DATA4(FILE,VALUE) \
385 fprintf ((FILE), "\t%s\t0x%x", UNALIGNED_INT_ASM_OP, (unsigned) (VALUE))
386 #endif
388 #ifndef ASM_OUTPUT_DWARF_DATA
389 #define ASM_OUTPUT_DWARF_DATA(FILE,VALUE) \
390 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_OFFSET_ASM_OP, \
391 (unsigned long) (VALUE))
392 #endif
394 #ifndef ASM_OUTPUT_DWARF_ADDR_DATA
395 #define ASM_OUTPUT_DWARF_ADDR_DATA(FILE,VALUE) \
396 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_WORD_ASM_OP, \
397 (unsigned long) (VALUE))
398 #endif
400 #ifndef ASM_OUTPUT_DWARF_DATA8
401 #define ASM_OUTPUT_DWARF_DATA8(FILE,HIGH_VALUE,LOW_VALUE) \
402 do { \
403 if (WORDS_BIG_ENDIAN) \
405 fprintf ((FILE), "\t%s\t0x%lx\n", UNALIGNED_INT_ASM_OP, (HIGH_VALUE));\
406 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_INT_ASM_OP, (LOW_VALUE));\
408 else \
410 fprintf ((FILE), "\t%s\t0x%lx\n", UNALIGNED_INT_ASM_OP, (LOW_VALUE)); \
411 fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_INT_ASM_OP, (HIGH_VALUE)); \
413 } while (0)
414 #endif
416 #else /* UNALIGNED_INT_ASM_OP */
418 /* We don't have unaligned support, let's hope the normal output works for
419 .debug_frame. */
421 #define ASM_OUTPUT_DWARF_ADDR(FILE,LABEL) \
422 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, LABEL), PTR_SIZE, 1)
424 #define ASM_OUTPUT_DWARF_OFFSET4(FILE,LABEL) \
425 assemble_integer (gen_rtx_SYMBOL_REF (SImode, LABEL), 4, 1)
427 #define ASM_OUTPUT_DWARF_OFFSET(FILE,LABEL) \
428 assemble_integer (gen_rtx_SYMBOL_REF (SImode, LABEL), 4, 1)
430 #define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \
431 assemble_integer (gen_rtx_MINUS (HImode, \
432 gen_rtx_SYMBOL_REF (Pmode, LABEL1), \
433 gen_rtx_SYMBOL_REF (Pmode, LABEL2)), \
434 2, 1)
436 #define ASM_OUTPUT_DWARF_DELTA4(FILE,LABEL1,LABEL2) \
437 assemble_integer (gen_rtx_MINUS (SImode, \
438 gen_rtx_SYMBOL_REF (Pmode, LABEL1), \
439 gen_rtx_SYMBOL_REF (Pmode, LABEL2)), \
440 4, 1)
442 #define ASM_OUTPUT_DWARF_ADDR_DELTA(FILE,LABEL1,LABEL2) \
443 assemble_integer (gen_rtx_MINUS (Pmode, \
444 gen_rtx_SYMBOL_REF (Pmode, LABEL1), \
445 gen_rtx_SYMBOL_REF (Pmode, LABEL2)), \
446 PTR_SIZE, 1)
448 #define ASM_OUTPUT_DWARF_DELTA(FILE,LABEL1,LABEL2) \
449 ASM_OUTPUT_DWARF_DELTA4 (FILE,LABEL1,LABEL2)
451 #define ASM_OUTPUT_DWARF_DATA4(FILE,VALUE) \
452 assemble_integer (GEN_INT (VALUE), 4, 1)
454 #endif /* UNALIGNED_INT_ASM_OP */
456 #ifdef SET_ASM_OP
457 #ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
458 #define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \
459 do { \
460 fprintf (FILE, "\t%s\t", SET_ASM_OP); \
461 assemble_name (FILE, SY); \
462 fputc (',', FILE); \
463 assemble_name (FILE, HI); \
464 fputc ('-', FILE); \
465 assemble_name (FILE, LO); \
466 } while (0)
467 #endif
468 #endif /* SET_ASM_OP */
470 /* This is similar to the default ASM_OUTPUT_ASCII, except that no trailing
471 newline is produced. When flag_debug_asm is asserted, we add commentary
472 at the end of the line, so we must avoid output of a newline here. */
473 #ifndef ASM_OUTPUT_DWARF_STRING
474 #define ASM_OUTPUT_DWARF_STRING(FILE,P) \
475 do { \
476 register int slen = strlen(P); \
477 register char *p = (P); \
478 register int i; \
479 fprintf (FILE, "\t.ascii \""); \
480 for (i = 0; i < slen; i++) \
482 register int c = p[i]; \
483 if (c == '\"' || c == '\\') \
484 putc ('\\', FILE); \
485 if (c >= ' ' && c < 0177) \
486 putc (c, FILE); \
487 else \
489 fprintf (FILE, "\\%o", c); \
492 fprintf (FILE, "\\0\""); \
494 while (0)
495 #endif
497 /* The DWARF 2 CFA column which tracks the return address. Normally this
498 is the column for PC, or the first column after all of the hard
499 registers. */
500 #ifndef DWARF_FRAME_RETURN_COLUMN
501 #ifdef PC_REGNUM
502 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
503 #else
504 #define DWARF_FRAME_RETURN_COLUMN FIRST_PSEUDO_REGISTER
505 #endif
506 #endif
508 /* The mapping from gcc register number to DWARF 2 CFA column number. By
509 default, we just provide columns for all registers. */
510 #ifndef DWARF_FRAME_REGNUM
511 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
512 #endif
514 /* Hook used by __throw. */
517 expand_builtin_dwarf_fp_regnum ()
519 return GEN_INT (DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM));
522 /* The offset from the incoming value of %sp to the top of the stack frame
523 for the current function. */
524 #ifndef INCOMING_FRAME_SP_OFFSET
525 #define INCOMING_FRAME_SP_OFFSET 0
526 #endif
528 /* Return a pointer to a copy of the section string name S with all
529 attributes stripped off, and an asterisk prepended (for assemble_name). */
531 static inline char *
532 stripattributes (s)
533 char *s;
535 char *stripped = xmalloc (strlen (s) + 2);
536 char *p = stripped;
538 *p++ = '*';
540 while (*s && *s != ',')
541 *p++ = *s++;
543 *p = '\0';
544 return stripped;
547 /* Return the register number described by a given RTL node. */
549 static unsigned
550 reg_number (rtl)
551 register rtx rtl;
553 register unsigned regno = REGNO (rtl);
555 if (regno >= FIRST_PSEUDO_REGISTER)
557 warning ("internal regno botch: regno = %d\n", regno);
558 regno = 0;
561 regno = DBX_REGISTER_NUMBER (regno);
562 return regno;
565 struct reg_size_range
567 int beg;
568 int end;
569 int size;
572 /* Given a register number in REG_TREE, return an rtx for its size in bytes.
573 We do this in kind of a roundabout way, by building up a list of
574 register size ranges and seeing where our register falls in one of those
575 ranges. We need to do it this way because REG_TREE is not a constant,
576 and the target macros were not designed to make this task easy. */
579 expand_builtin_dwarf_reg_size (reg_tree, target)
580 tree reg_tree;
581 rtx target;
583 enum machine_mode mode;
584 int size;
585 struct reg_size_range ranges[5];
586 tree t, t2;
588 int i = 0;
589 int n_ranges = 0;
590 int last_size = -1;
592 for (; i < FIRST_PSEUDO_REGISTER; ++i)
594 /* The return address is out of order on the MIPS, and we don't use
595 copy_reg for it anyway, so we don't care here how large it is. */
596 if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
597 continue;
599 mode = reg_raw_mode[i];
601 /* CCmode is arbitrarily given a size of 4 bytes. It is more useful
602 to use the same size as word_mode, since that reduces the number
603 of ranges we need. It should not matter, since the result should
604 never be used for a condition code register anyways. */
605 if (GET_MODE_CLASS (mode) == MODE_CC)
606 mode = word_mode;
608 size = GET_MODE_SIZE (mode);
610 /* If this register is not valid in the specified mode and
611 we have a previous size, use that for the size of this
612 register to avoid making junk tiny ranges. */
613 if (! HARD_REGNO_MODE_OK (i, mode) && last_size != -1)
614 size = last_size;
616 if (size != last_size)
618 ranges[n_ranges].beg = i;
619 ranges[n_ranges].size = last_size = size;
620 ++n_ranges;
621 if (n_ranges >= 5)
622 abort ();
624 ranges[n_ranges-1].end = i;
627 /* The usual case: fp regs surrounded by general regs. */
628 if (n_ranges == 3 && ranges[0].size == ranges[2].size)
630 if ((DWARF_FRAME_REGNUM (ranges[1].end)
631 - DWARF_FRAME_REGNUM (ranges[1].beg))
632 != ranges[1].end - ranges[1].beg)
633 abort ();
634 t = fold (build (GE_EXPR, integer_type_node, reg_tree,
635 build_int_2 (DWARF_FRAME_REGNUM (ranges[1].beg), 0)));
636 t2 = fold (build (LE_EXPR, integer_type_node, reg_tree,
637 build_int_2 (DWARF_FRAME_REGNUM (ranges[1].end), 0)));
638 t = fold (build (TRUTH_ANDIF_EXPR, integer_type_node, t, t2));
639 t = fold (build (COND_EXPR, integer_type_node, t,
640 build_int_2 (ranges[1].size, 0),
641 build_int_2 (ranges[0].size, 0)));
643 else
645 /* Initialize last_end to be larger than any possible
646 DWARF_FRAME_REGNUM. */
647 int last_end = 0x7fffffff;
648 --n_ranges;
649 t = build_int_2 (ranges[n_ranges].size, 0);
652 int beg = DWARF_FRAME_REGNUM (ranges[n_ranges].beg);
653 int end = DWARF_FRAME_REGNUM (ranges[n_ranges].end);
654 if (beg < 0)
655 continue;
656 if (end >= last_end)
657 abort ();
658 last_end = end;
659 if (end - beg != ranges[n_ranges].end - ranges[n_ranges].beg)
660 abort ();
661 t2 = fold (build (LE_EXPR, integer_type_node, reg_tree,
662 build_int_2 (end, 0)));
663 t = fold (build (COND_EXPR, integer_type_node, t2,
664 build_int_2 (ranges[n_ranges].size, 0), t));
666 while (--n_ranges > 0);
668 return expand_expr (t, target, Pmode, 0);
671 /* Convert a DWARF call frame info. operation to its string name */
673 static char *
674 dwarf_cfi_name (cfi_opc)
675 register unsigned cfi_opc;
677 switch (cfi_opc)
679 case DW_CFA_advance_loc:
680 return "DW_CFA_advance_loc";
681 case DW_CFA_offset:
682 return "DW_CFA_offset";
683 case DW_CFA_restore:
684 return "DW_CFA_restore";
685 case DW_CFA_nop:
686 return "DW_CFA_nop";
687 case DW_CFA_set_loc:
688 return "DW_CFA_set_loc";
689 case DW_CFA_advance_loc1:
690 return "DW_CFA_advance_loc1";
691 case DW_CFA_advance_loc2:
692 return "DW_CFA_advance_loc2";
693 case DW_CFA_advance_loc4:
694 return "DW_CFA_advance_loc4";
695 case DW_CFA_offset_extended:
696 return "DW_CFA_offset_extended";
697 case DW_CFA_restore_extended:
698 return "DW_CFA_restore_extended";
699 case DW_CFA_undefined:
700 return "DW_CFA_undefined";
701 case DW_CFA_same_value:
702 return "DW_CFA_same_value";
703 case DW_CFA_register:
704 return "DW_CFA_register";
705 case DW_CFA_remember_state:
706 return "DW_CFA_remember_state";
707 case DW_CFA_restore_state:
708 return "DW_CFA_restore_state";
709 case DW_CFA_def_cfa:
710 return "DW_CFA_def_cfa";
711 case DW_CFA_def_cfa_register:
712 return "DW_CFA_def_cfa_register";
713 case DW_CFA_def_cfa_offset:
714 return "DW_CFA_def_cfa_offset";
716 /* SGI/MIPS specific */
717 case DW_CFA_MIPS_advance_loc8:
718 return "DW_CFA_MIPS_advance_loc8";
720 /* GNU extensions */
721 case DW_CFA_GNU_window_save:
722 return "DW_CFA_GNU_window_save";
723 case DW_CFA_GNU_args_size:
724 return "DW_CFA_GNU_args_size";
726 default:
727 return "DW_CFA_<unknown>";
731 /* Return a pointer to a newly allocated Call Frame Instruction. */
733 static inline dw_cfi_ref
734 new_cfi ()
736 register dw_cfi_ref cfi = (dw_cfi_ref) xmalloc (sizeof (dw_cfi_node));
738 cfi->dw_cfi_next = NULL;
739 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
740 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
742 return cfi;
745 /* Add a Call Frame Instruction to list of instructions. */
747 static inline void
748 add_cfi (list_head, cfi)
749 register dw_cfi_ref *list_head;
750 register dw_cfi_ref cfi;
752 register dw_cfi_ref *p;
754 /* Find the end of the chain. */
755 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
758 *p = cfi;
761 /* Generate a new label for the CFI info to refer to. */
763 char *
764 dwarf2out_cfi_label ()
766 static char label[20];
767 static unsigned long label_num = 0;
769 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", label_num++);
770 ASM_OUTPUT_LABEL (asm_out_file, label);
772 return label;
775 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
776 or to the CIE if LABEL is NULL. */
778 static void
779 add_fde_cfi (label, cfi)
780 register char *label;
781 register dw_cfi_ref cfi;
783 if (label)
785 register dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
787 if (*label == 0)
788 label = dwarf2out_cfi_label ();
790 if (fde->dw_fde_current_label == NULL
791 || strcmp (label, fde->dw_fde_current_label) != 0)
793 register dw_cfi_ref xcfi;
795 fde->dw_fde_current_label = label = xstrdup (label);
797 /* Set the location counter to the new label. */
798 xcfi = new_cfi ();
799 xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
800 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
801 add_cfi (&fde->dw_fde_cfi, xcfi);
804 add_cfi (&fde->dw_fde_cfi, cfi);
807 else
808 add_cfi (&cie_cfi_head, cfi);
811 /* Subroutine of lookup_cfa. */
813 static inline void
814 lookup_cfa_1 (cfi, regp, offsetp)
815 register dw_cfi_ref cfi;
816 register unsigned long *regp;
817 register long *offsetp;
819 switch (cfi->dw_cfi_opc)
821 case DW_CFA_def_cfa_offset:
822 *offsetp = cfi->dw_cfi_oprnd1.dw_cfi_offset;
823 break;
824 case DW_CFA_def_cfa_register:
825 *regp = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
826 break;
827 case DW_CFA_def_cfa:
828 *regp = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
829 *offsetp = cfi->dw_cfi_oprnd2.dw_cfi_offset;
830 break;
831 default:
832 break;
836 /* Find the previous value for the CFA. */
838 static void
839 lookup_cfa (regp, offsetp)
840 register unsigned long *regp;
841 register long *offsetp;
843 register dw_cfi_ref cfi;
845 *regp = (unsigned long) -1;
846 *offsetp = 0;
848 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
849 lookup_cfa_1 (cfi, regp, offsetp);
851 if (fde_table_in_use)
853 register dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
854 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
855 lookup_cfa_1 (cfi, regp, offsetp);
859 /* The current rule for calculating the DWARF2 canonical frame address. */
860 static unsigned long cfa_reg;
861 static long cfa_offset;
863 /* The register used for saving registers to the stack, and its offset
864 from the CFA. */
865 static unsigned cfa_store_reg;
866 static long cfa_store_offset;
868 /* The running total of the size of arguments pushed onto the stack. */
869 static long args_size;
871 /* The last args_size we actually output. */
872 static long old_args_size;
874 /* Entry point to update the canonical frame address (CFA).
875 LABEL is passed to add_fde_cfi. The value of CFA is now to be
876 calculated from REG+OFFSET. */
878 void
879 dwarf2out_def_cfa (label, reg, offset)
880 register char *label;
881 register unsigned reg;
882 register long offset;
884 register dw_cfi_ref cfi;
885 unsigned long old_reg;
886 long old_offset;
888 cfa_reg = reg;
889 cfa_offset = offset;
890 if (cfa_store_reg == reg)
891 cfa_store_offset = offset;
893 reg = DWARF_FRAME_REGNUM (reg);
894 lookup_cfa (&old_reg, &old_offset);
896 if (reg == old_reg && offset == old_offset)
897 return;
899 cfi = new_cfi ();
901 if (reg == old_reg)
903 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
904 cfi->dw_cfi_oprnd1.dw_cfi_offset = offset;
907 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
908 else if (offset == old_offset && old_reg != (unsigned long) -1)
910 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
911 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
913 #endif
915 else
917 cfi->dw_cfi_opc = DW_CFA_def_cfa;
918 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
919 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
922 add_fde_cfi (label, cfi);
925 /* Add the CFI for saving a register. REG is the CFA column number.
926 LABEL is passed to add_fde_cfi.
927 If SREG is -1, the register is saved at OFFSET from the CFA;
928 otherwise it is saved in SREG. */
930 static void
931 reg_save (label, reg, sreg, offset)
932 register char * label;
933 register unsigned reg;
934 register unsigned sreg;
935 register long offset;
937 register dw_cfi_ref cfi = new_cfi ();
939 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
941 /* The following comparison is correct. -1 is used to indicate that
942 the value isn't a register number. */
943 if (sreg == (unsigned int) -1)
945 if (reg & ~0x3f)
946 /* The register number won't fit in 6 bits, so we have to use
947 the long form. */
948 cfi->dw_cfi_opc = DW_CFA_offset_extended;
949 else
950 cfi->dw_cfi_opc = DW_CFA_offset;
952 offset /= DWARF_CIE_DATA_ALIGNMENT;
953 if (offset < 0)
954 abort ();
955 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
957 else
959 cfi->dw_cfi_opc = DW_CFA_register;
960 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
963 add_fde_cfi (label, cfi);
966 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
967 This CFI tells the unwinder that it needs to restore the window registers
968 from the previous frame's window save area.
970 ??? Perhaps we should note in the CIE where windows are saved (instead of
971 assuming 0(cfa)) and what registers are in the window. */
973 void
974 dwarf2out_window_save (label)
975 register char * label;
977 register dw_cfi_ref cfi = new_cfi ();
978 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
979 add_fde_cfi (label, cfi);
982 /* Add a CFI to update the running total of the size of arguments
983 pushed onto the stack. */
985 void
986 dwarf2out_args_size (label, size)
987 char *label;
988 long size;
990 register dw_cfi_ref cfi;
992 if (size == old_args_size)
993 return;
994 old_args_size = size;
996 cfi = new_cfi ();
997 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
998 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
999 add_fde_cfi (label, cfi);
1002 /* Entry point for saving a register to the stack. REG is the GCC register
1003 number. LABEL and OFFSET are passed to reg_save. */
1005 void
1006 dwarf2out_reg_save (label, reg, offset)
1007 register char * label;
1008 register unsigned reg;
1009 register long offset;
1011 reg_save (label, DWARF_FRAME_REGNUM (reg), -1, offset);
1014 /* Entry point for saving the return address in the stack.
1015 LABEL and OFFSET are passed to reg_save. */
1017 void
1018 dwarf2out_return_save (label, offset)
1019 register char * label;
1020 register long offset;
1022 reg_save (label, DWARF_FRAME_RETURN_COLUMN, -1, offset);
1025 /* Entry point for saving the return address in a register.
1026 LABEL and SREG are passed to reg_save. */
1028 void
1029 dwarf2out_return_reg (label, sreg)
1030 register char * label;
1031 register unsigned sreg;
1033 reg_save (label, DWARF_FRAME_RETURN_COLUMN, sreg, 0);
1036 /* Record the initial position of the return address. RTL is
1037 INCOMING_RETURN_ADDR_RTX. */
1039 static void
1040 initial_return_save (rtl)
1041 register rtx rtl;
1043 unsigned reg = -1;
1044 long offset = 0;
1046 switch (GET_CODE (rtl))
1048 case REG:
1049 /* RA is in a register. */
1050 reg = reg_number (rtl);
1051 break;
1052 case MEM:
1053 /* RA is on the stack. */
1054 rtl = XEXP (rtl, 0);
1055 switch (GET_CODE (rtl))
1057 case REG:
1058 if (REGNO (rtl) != STACK_POINTER_REGNUM)
1059 abort ();
1060 offset = 0;
1061 break;
1062 case PLUS:
1063 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
1064 abort ();
1065 offset = INTVAL (XEXP (rtl, 1));
1066 break;
1067 case MINUS:
1068 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
1069 abort ();
1070 offset = -INTVAL (XEXP (rtl, 1));
1071 break;
1072 default:
1073 abort ();
1075 break;
1076 case PLUS:
1077 /* The return address is at some offset from any value we can
1078 actually load. For instance, on the SPARC it is in %i7+8. Just
1079 ignore the offset for now; it doesn't matter for unwinding frames. */
1080 if (GET_CODE (XEXP (rtl, 1)) != CONST_INT)
1081 abort ();
1082 initial_return_save (XEXP (rtl, 0));
1083 return;
1084 default:
1085 abort ();
1088 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa_offset);
1091 /* Check INSN to see if it looks like a push or a stack adjustment, and
1092 make a note of it if it does. EH uses this information to find out how
1093 much extra space it needs to pop off the stack. */
1095 static void
1096 dwarf2out_stack_adjust (insn)
1097 rtx insn;
1099 long offset;
1100 char *label;
1102 if (! asynchronous_exceptions && GET_CODE (insn) == CALL_INSN)
1104 /* Extract the size of the args from the CALL rtx itself. */
1106 insn = PATTERN (insn);
1107 if (GET_CODE (insn) == PARALLEL)
1108 insn = XVECEXP (insn, 0, 0);
1109 if (GET_CODE (insn) == SET)
1110 insn = SET_SRC (insn);
1111 assert (GET_CODE (insn) == CALL);
1112 dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
1113 return;
1116 /* If only calls can throw, and we have a frame pointer,
1117 save up adjustments until we see the CALL_INSN. */
1118 else if (! asynchronous_exceptions
1119 && cfa_reg != STACK_POINTER_REGNUM)
1120 return;
1122 if (GET_CODE (insn) == BARRIER)
1124 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1125 the compiler will have already emitted a stack adjustment, but
1126 doesn't bother for calls to noreturn functions. */
1127 #ifdef STACK_GROWS_DOWNWARD
1128 offset = -args_size;
1129 #else
1130 offset = args_size;
1131 #endif
1133 else if (GET_CODE (PATTERN (insn)) == SET)
1135 rtx src, dest;
1136 enum rtx_code code;
1138 insn = PATTERN (insn);
1139 src = SET_SRC (insn);
1140 dest = SET_DEST (insn);
1142 if (dest == stack_pointer_rtx)
1144 /* (set (reg sp) (plus (reg sp) (const_int))) */
1145 code = GET_CODE (src);
1146 if (! (code == PLUS || code == MINUS)
1147 || XEXP (src, 0) != stack_pointer_rtx
1148 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1149 return;
1151 offset = INTVAL (XEXP (src, 1));
1153 else if (GET_CODE (dest) == MEM)
1155 /* (set (mem (pre_dec (reg sp))) (foo)) */
1156 src = XEXP (dest, 0);
1157 code = GET_CODE (src);
1159 if (! (code == PRE_DEC || code == PRE_INC)
1160 || XEXP (src, 0) != stack_pointer_rtx)
1161 return;
1163 offset = GET_MODE_SIZE (GET_MODE (dest));
1165 else
1166 return;
1168 if (code == PLUS || code == PRE_INC)
1169 offset = -offset;
1171 else
1172 return;
1174 if (offset == 0)
1175 return;
1177 if (cfa_reg == STACK_POINTER_REGNUM)
1178 cfa_offset += offset;
1180 #ifndef STACK_GROWS_DOWNWARD
1181 offset = -offset;
1182 #endif
1183 args_size += offset;
1184 if (args_size < 0)
1185 args_size = 0;
1187 label = dwarf2out_cfi_label ();
1188 dwarf2out_def_cfa (label, cfa_reg, cfa_offset);
1189 dwarf2out_args_size (label, args_size);
1192 /* Record call frame debugging information for INSN, which either
1193 sets SP or FP (adjusting how we calculate the frame address) or saves a
1194 register to the stack. If INSN is NULL_RTX, initialize our state. */
1196 void
1197 dwarf2out_frame_debug (insn)
1198 rtx insn;
1200 char *label;
1201 rtx src, dest;
1202 long offset;
1204 /* A temporary register used in adjusting SP or setting up the store_reg. */
1205 static unsigned cfa_temp_reg;
1206 static long cfa_temp_value;
1208 if (insn == NULL_RTX)
1210 /* Set up state for generating call frame debug info. */
1211 lookup_cfa (&cfa_reg, &cfa_offset);
1212 if (cfa_reg != DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM))
1213 abort ();
1214 cfa_reg = STACK_POINTER_REGNUM;
1215 cfa_store_reg = cfa_reg;
1216 cfa_store_offset = cfa_offset;
1217 cfa_temp_reg = -1;
1218 cfa_temp_value = 0;
1219 return;
1222 if (! RTX_FRAME_RELATED_P (insn))
1224 dwarf2out_stack_adjust (insn);
1225 return;
1228 label = dwarf2out_cfi_label ();
1230 src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1231 if (src)
1232 insn = XEXP (src, 0);
1233 else
1234 insn = PATTERN (insn);
1236 /* Assume that in a PARALLEL prologue insn, only the first elt is
1237 significant. Currently this is true. */
1238 if (GET_CODE (insn) == PARALLEL)
1239 insn = XVECEXP (insn, 0, 0);
1240 if (GET_CODE (insn) != SET)
1241 abort ();
1243 src = SET_SRC (insn);
1244 dest = SET_DEST (insn);
1246 switch (GET_CODE (dest))
1248 case REG:
1249 /* Update the CFA rule wrt SP or FP. Make sure src is
1250 relative to the current CFA register. */
1251 switch (GET_CODE (src))
1253 /* Setting FP from SP. */
1254 case REG:
1255 if (cfa_reg != REGNO (src))
1256 abort ();
1257 if (REGNO (dest) != STACK_POINTER_REGNUM
1258 && !(frame_pointer_needed
1259 && REGNO (dest) == HARD_FRAME_POINTER_REGNUM))
1260 abort ();
1261 cfa_reg = REGNO (dest);
1262 break;
1264 case PLUS:
1265 case MINUS:
1266 if (dest == stack_pointer_rtx)
1268 /* Adjusting SP. */
1269 switch (GET_CODE (XEXP (src, 1)))
1271 case CONST_INT:
1272 offset = INTVAL (XEXP (src, 1));
1273 break;
1274 case REG:
1275 if (REGNO (XEXP (src, 1)) != cfa_temp_reg)
1276 abort ();
1277 offset = cfa_temp_value;
1278 break;
1279 default:
1280 abort ();
1283 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1285 /* Restoring SP from FP in the epilogue. */
1286 if (cfa_reg != HARD_FRAME_POINTER_REGNUM)
1287 abort ();
1288 cfa_reg = STACK_POINTER_REGNUM;
1290 else if (XEXP (src, 0) != stack_pointer_rtx)
1291 abort ();
1293 if (GET_CODE (src) == PLUS)
1294 offset = -offset;
1295 if (cfa_reg == STACK_POINTER_REGNUM)
1296 cfa_offset += offset;
1297 if (cfa_store_reg == STACK_POINTER_REGNUM)
1298 cfa_store_offset += offset;
1300 else if (dest == hard_frame_pointer_rtx)
1302 /* Either setting the FP from an offset of the SP,
1303 or adjusting the FP */
1304 if (! frame_pointer_needed
1305 || REGNO (dest) != HARD_FRAME_POINTER_REGNUM)
1306 abort ();
1308 if (XEXP (src, 0) == stack_pointer_rtx
1309 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1311 if (cfa_reg != STACK_POINTER_REGNUM)
1312 abort ();
1313 offset = INTVAL (XEXP (src, 1));
1314 if (GET_CODE (src) == PLUS)
1315 offset = -offset;
1316 cfa_offset += offset;
1317 cfa_reg = HARD_FRAME_POINTER_REGNUM;
1319 else if (XEXP (src, 0) == hard_frame_pointer_rtx
1320 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1322 if (cfa_reg != HARD_FRAME_POINTER_REGNUM)
1323 abort ();
1324 offset = INTVAL (XEXP (src, 1));
1325 if (GET_CODE (src) == PLUS)
1326 offset = -offset;
1327 cfa_offset += offset;
1330 else
1331 abort();
1333 else
1335 if (GET_CODE (src) != PLUS
1336 || XEXP (src, 1) != stack_pointer_rtx)
1337 abort ();
1338 if (GET_CODE (XEXP (src, 0)) != REG
1339 || REGNO (XEXP (src, 0)) != cfa_temp_reg)
1340 abort ();
1341 if (cfa_reg != STACK_POINTER_REGNUM)
1342 abort ();
1343 cfa_store_reg = REGNO (dest);
1344 cfa_store_offset = cfa_offset - cfa_temp_value;
1346 break;
1348 case CONST_INT:
1349 cfa_temp_reg = REGNO (dest);
1350 cfa_temp_value = INTVAL (src);
1351 break;
1353 case IOR:
1354 if (GET_CODE (XEXP (src, 0)) != REG
1355 || REGNO (XEXP (src, 0)) != cfa_temp_reg
1356 || REGNO (dest) != cfa_temp_reg
1357 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1358 abort ();
1359 cfa_temp_value |= INTVAL (XEXP (src, 1));
1360 break;
1362 default:
1363 abort ();
1365 dwarf2out_def_cfa (label, cfa_reg, cfa_offset);
1366 break;
1368 case MEM:
1369 /* Saving a register to the stack. Make sure dest is relative to the
1370 CFA register. */
1371 if (GET_CODE (src) != REG)
1372 abort ();
1373 switch (GET_CODE (XEXP (dest, 0)))
1375 /* With a push. */
1376 case PRE_INC:
1377 case PRE_DEC:
1378 offset = GET_MODE_SIZE (GET_MODE (dest));
1379 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1380 offset = -offset;
1382 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1383 || cfa_store_reg != STACK_POINTER_REGNUM)
1384 abort ();
1385 cfa_store_offset += offset;
1386 if (cfa_reg == STACK_POINTER_REGNUM)
1387 cfa_offset = cfa_store_offset;
1389 offset = -cfa_store_offset;
1390 break;
1392 /* With an offset. */
1393 case PLUS:
1394 case MINUS:
1395 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1396 if (GET_CODE (src) == MINUS)
1397 offset = -offset;
1399 if (cfa_store_reg != REGNO (XEXP (XEXP (dest, 0), 0)))
1400 abort ();
1401 offset -= cfa_store_offset;
1402 break;
1404 /* Without an offset. */
1405 case REG:
1406 if (cfa_store_reg != REGNO (XEXP (dest, 0)))
1407 abort();
1408 offset = -cfa_store_offset;
1409 break;
1411 default:
1412 abort ();
1414 dwarf2out_def_cfa (label, cfa_reg, cfa_offset);
1415 dwarf2out_reg_save (label, REGNO (src), offset);
1416 break;
1418 default:
1419 abort ();
1423 /* Return the size of an unsigned LEB128 quantity. */
1425 static inline unsigned long
1426 size_of_uleb128 (value)
1427 register unsigned long value;
1429 register unsigned long size = 0;
1430 register unsigned byte;
1434 byte = (value & 0x7f);
1435 value >>= 7;
1436 size += 1;
1438 while (value != 0);
1440 return size;
1443 /* Return the size of a signed LEB128 quantity. */
1445 static inline unsigned long
1446 size_of_sleb128 (value)
1447 register long value;
1449 register unsigned long size = 0;
1450 register unsigned byte;
1454 byte = (value & 0x7f);
1455 value >>= 7;
1456 size += 1;
1458 while (!(((value == 0) && ((byte & 0x40) == 0))
1459 || ((value == -1) && ((byte & 0x40) != 0))));
1461 return size;
1464 /* Output an unsigned LEB128 quantity. */
1466 static void
1467 output_uleb128 (value)
1468 register unsigned long value;
1470 unsigned long save_value = value;
1472 fprintf (asm_out_file, "\t%s\t", ASM_BYTE_OP);
1475 register unsigned byte = (value & 0x7f);
1476 value >>= 7;
1477 if (value != 0)
1478 /* More bytes to follow. */
1479 byte |= 0x80;
1481 fprintf (asm_out_file, "0x%x", byte);
1482 if (value != 0)
1483 fprintf (asm_out_file, ",");
1485 while (value != 0);
1487 if (flag_debug_asm)
1488 fprintf (asm_out_file, "\t%s ULEB128 0x%lx", ASM_COMMENT_START, save_value);
1491 /* Output an signed LEB128 quantity. */
1493 static void
1494 output_sleb128 (value)
1495 register long value;
1497 register int more;
1498 register unsigned byte;
1499 long save_value = value;
1501 fprintf (asm_out_file, "\t%s\t", ASM_BYTE_OP);
1504 byte = (value & 0x7f);
1505 /* arithmetic shift */
1506 value >>= 7;
1507 more = !((((value == 0) && ((byte & 0x40) == 0))
1508 || ((value == -1) && ((byte & 0x40) != 0))));
1509 if (more)
1510 byte |= 0x80;
1512 fprintf (asm_out_file, "0x%x", byte);
1513 if (more)
1514 fprintf (asm_out_file, ",");
1517 while (more);
1518 if (flag_debug_asm)
1519 fprintf (asm_out_file, "\t%s SLEB128 %ld", ASM_COMMENT_START, save_value);
1522 /* Output a Call Frame Information opcode and its operand(s). */
1524 static void
1525 output_cfi (cfi, fde)
1526 register dw_cfi_ref cfi;
1527 register dw_fde_ref fde;
1529 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
1531 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
1532 cfi->dw_cfi_opc
1533 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f));
1534 if (flag_debug_asm)
1535 fprintf (asm_out_file, "\t%s DW_CFA_advance_loc 0x%lx",
1536 ASM_COMMENT_START, cfi->dw_cfi_oprnd1.dw_cfi_offset);
1537 fputc ('\n', asm_out_file);
1540 else if (cfi->dw_cfi_opc == DW_CFA_offset)
1542 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
1543 cfi->dw_cfi_opc
1544 | (cfi->dw_cfi_oprnd1.dw_cfi_reg_num & 0x3f));
1545 if (flag_debug_asm)
1546 fprintf (asm_out_file, "\t%s DW_CFA_offset, column 0x%lx",
1547 ASM_COMMENT_START, cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1549 fputc ('\n', asm_out_file);
1550 output_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset);
1551 fputc ('\n', asm_out_file);
1553 else if (cfi->dw_cfi_opc == DW_CFA_restore)
1555 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
1556 cfi->dw_cfi_opc
1557 | (cfi->dw_cfi_oprnd1.dw_cfi_reg_num & 0x3f));
1558 if (flag_debug_asm)
1559 fprintf (asm_out_file, "\t%s DW_CFA_restore, column 0x%lx",
1560 ASM_COMMENT_START, cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1562 fputc ('\n', asm_out_file);
1564 else
1566 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, cfi->dw_cfi_opc);
1567 if (flag_debug_asm)
1568 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START,
1569 dwarf_cfi_name (cfi->dw_cfi_opc));
1571 fputc ('\n', asm_out_file);
1572 switch (cfi->dw_cfi_opc)
1574 case DW_CFA_set_loc:
1575 ASM_OUTPUT_DWARF_ADDR (asm_out_file, cfi->dw_cfi_oprnd1.dw_cfi_addr);
1576 fputc ('\n', asm_out_file);
1577 break;
1578 case DW_CFA_advance_loc1:
1579 ASM_OUTPUT_DWARF_DELTA1 (asm_out_file,
1580 cfi->dw_cfi_oprnd1.dw_cfi_addr,
1581 fde->dw_fde_current_label);
1582 fputc ('\n', asm_out_file);
1583 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1584 break;
1585 case DW_CFA_advance_loc2:
1586 ASM_OUTPUT_DWARF_DELTA2 (asm_out_file,
1587 cfi->dw_cfi_oprnd1.dw_cfi_addr,
1588 fde->dw_fde_current_label);
1589 fputc ('\n', asm_out_file);
1590 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1591 break;
1592 case DW_CFA_advance_loc4:
1593 ASM_OUTPUT_DWARF_DELTA4 (asm_out_file,
1594 cfi->dw_cfi_oprnd1.dw_cfi_addr,
1595 fde->dw_fde_current_label);
1596 fputc ('\n', asm_out_file);
1597 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1598 break;
1599 #ifdef MIPS_DEBUGGING_INFO
1600 case DW_CFA_MIPS_advance_loc8:
1601 /* TODO: not currently implemented. */
1602 abort ();
1603 break;
1604 #endif
1605 case DW_CFA_offset_extended:
1606 case DW_CFA_def_cfa:
1607 output_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1608 fputc ('\n', asm_out_file);
1609 output_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset);
1610 fputc ('\n', asm_out_file);
1611 break;
1612 case DW_CFA_restore_extended:
1613 case DW_CFA_undefined:
1614 output_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1615 fputc ('\n', asm_out_file);
1616 break;
1617 case DW_CFA_same_value:
1618 case DW_CFA_def_cfa_register:
1619 output_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1620 fputc ('\n', asm_out_file);
1621 break;
1622 case DW_CFA_register:
1623 output_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1624 fputc ('\n', asm_out_file);
1625 output_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_reg_num);
1626 fputc ('\n', asm_out_file);
1627 break;
1628 case DW_CFA_def_cfa_offset:
1629 output_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset);
1630 fputc ('\n', asm_out_file);
1631 break;
1632 case DW_CFA_GNU_window_save:
1633 break;
1634 case DW_CFA_GNU_args_size:
1635 output_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset);
1636 fputc ('\n', asm_out_file);
1637 break;
1638 default:
1639 break;
1644 #if !defined (EH_FRAME_SECTION)
1645 #if defined (EH_FRAME_SECTION_ASM_OP)
1646 #define EH_FRAME_SECTION() eh_frame_section();
1647 #else
1648 #if defined (ASM_OUTPUT_SECTION_NAME)
1649 #define EH_FRAME_SECTION() \
1650 do { \
1651 named_section (NULL_TREE, ".eh_frame", 0); \
1652 } while (0)
1653 #endif
1654 #endif
1655 #endif
1657 /* If we aren't using crtstuff to run ctors, don't use it for EH. */
1658 #if !defined (HAS_INIT_SECTION) && !defined (INIT_SECTION_ASM_OP)
1659 #undef EH_FRAME_SECTION
1660 #endif
1662 /* Output the call frame information used to used to record information
1663 that relates to calculating the frame pointer, and records the
1664 location of saved registers. */
1666 static void
1667 output_call_frame_info (for_eh)
1668 int for_eh;
1670 register unsigned long i;
1671 register dw_fde_ref fde;
1672 register dw_cfi_ref cfi;
1673 char l1[20], l2[20];
1674 #ifdef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
1675 char ld[20];
1676 #endif
1678 /* Do we want to include a pointer to the exception table? */
1679 int eh_ptr = for_eh && exception_table_p ();
1681 fputc ('\n', asm_out_file);
1683 /* We're going to be generating comments, so turn on app. */
1684 if (flag_debug_asm)
1685 app_enable ();
1687 if (for_eh)
1689 #ifdef EH_FRAME_SECTION
1690 EH_FRAME_SECTION ();
1691 #else
1692 tree label = get_file_function_name ('F');
1694 data_section ();
1695 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
1696 ASM_GLOBALIZE_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
1697 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
1698 #endif
1699 assemble_label ("__FRAME_BEGIN__");
1701 else
1702 ASM_OUTPUT_SECTION (asm_out_file, FRAME_SECTION);
1704 /* Output the CIE. */
1705 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
1706 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
1707 #ifdef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
1708 ASM_GENERATE_INTERNAL_LABEL (ld, CIE_LENGTH_LABEL, for_eh);
1709 if (for_eh)
1710 ASM_OUTPUT_DWARF_OFFSET4 (asm_out_file, ld);
1711 else
1712 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, ld);
1713 #else
1714 if (for_eh)
1715 ASM_OUTPUT_DWARF_DELTA4 (asm_out_file, l2, l1);
1716 else
1717 ASM_OUTPUT_DWARF_DELTA (asm_out_file, l2, l1);
1718 #endif
1719 if (flag_debug_asm)
1720 fprintf (asm_out_file, "\t%s Length of Common Information Entry",
1721 ASM_COMMENT_START);
1723 fputc ('\n', asm_out_file);
1724 ASM_OUTPUT_LABEL (asm_out_file, l1);
1726 if (for_eh)
1727 /* Now that the CIE pointer is PC-relative for EH,
1728 use 0 to identify the CIE. */
1729 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, 0);
1730 else
1731 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, DW_CIE_ID);
1733 if (flag_debug_asm)
1734 fprintf (asm_out_file, "\t%s CIE Identifier Tag", ASM_COMMENT_START);
1736 fputc ('\n', asm_out_file);
1737 if (! for_eh && DWARF_OFFSET_SIZE == 8)
1739 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, DW_CIE_ID);
1740 fputc ('\n', asm_out_file);
1743 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_CIE_VERSION);
1744 if (flag_debug_asm)
1745 fprintf (asm_out_file, "\t%s CIE Version", ASM_COMMENT_START);
1747 fputc ('\n', asm_out_file);
1748 if (eh_ptr)
1750 /* The CIE contains a pointer to the exception region info for the
1751 frame. Make the augmentation string three bytes (including the
1752 trailing null) so the pointer is 4-byte aligned. The Solaris ld
1753 can't handle unaligned relocs. */
1754 if (flag_debug_asm)
1756 ASM_OUTPUT_DWARF_STRING (asm_out_file, "eh");
1757 fprintf (asm_out_file, "\t%s CIE Augmentation", ASM_COMMENT_START);
1759 else
1761 ASM_OUTPUT_ASCII (asm_out_file, "eh", 3);
1763 fputc ('\n', asm_out_file);
1765 ASM_OUTPUT_DWARF_ADDR (asm_out_file, "__EXCEPTION_TABLE__");
1766 if (flag_debug_asm)
1767 fprintf (asm_out_file, "\t%s pointer to exception region info",
1768 ASM_COMMENT_START);
1770 else
1772 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
1773 if (flag_debug_asm)
1774 fprintf (asm_out_file, "\t%s CIE Augmentation (none)",
1775 ASM_COMMENT_START);
1778 fputc ('\n', asm_out_file);
1779 output_uleb128 (1);
1780 if (flag_debug_asm)
1781 fprintf (asm_out_file, " (CIE Code Alignment Factor)");
1783 fputc ('\n', asm_out_file);
1784 output_sleb128 (DWARF_CIE_DATA_ALIGNMENT);
1785 if (flag_debug_asm)
1786 fprintf (asm_out_file, " (CIE Data Alignment Factor)");
1788 fputc ('\n', asm_out_file);
1789 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DWARF_FRAME_RETURN_COLUMN);
1790 if (flag_debug_asm)
1791 fprintf (asm_out_file, "\t%s CIE RA Column", ASM_COMMENT_START);
1793 fputc ('\n', asm_out_file);
1795 for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
1796 output_cfi (cfi, NULL);
1798 /* Pad the CIE out to an address sized boundary. */
1799 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
1800 ASM_OUTPUT_LABEL (asm_out_file, l2);
1801 #ifdef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
1802 ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL (asm_out_file, ld, l2, l1);
1803 if (flag_debug_asm)
1804 fprintf (asm_out_file, "\t%s CIE Length Symbol", ASM_COMMENT_START);
1805 fputc ('\n', asm_out_file);
1806 #endif
1808 /* Loop through all of the FDE's. */
1809 for (i = 0; i < fde_table_in_use; ++i)
1811 fde = &fde_table[i];
1813 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + i*2);
1814 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + i*2);
1815 #ifdef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
1816 ASM_GENERATE_INTERNAL_LABEL (ld, FDE_LENGTH_LABEL, for_eh + i*2);
1817 if (for_eh)
1818 ASM_OUTPUT_DWARF_OFFSET4 (asm_out_file, ld);
1819 else
1820 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, ld);
1821 #else
1822 if (for_eh)
1823 ASM_OUTPUT_DWARF_DELTA4 (asm_out_file, l2, l1);
1824 else
1825 ASM_OUTPUT_DWARF_DELTA (asm_out_file, l2, l1);
1826 #endif
1827 if (flag_debug_asm)
1828 fprintf (asm_out_file, "\t%s FDE Length", ASM_COMMENT_START);
1829 fputc ('\n', asm_out_file);
1830 ASM_OUTPUT_LABEL (asm_out_file, l1);
1832 if (for_eh)
1833 ASM_OUTPUT_DWARF_DELTA (asm_out_file, l1, "__FRAME_BEGIN__");
1834 else
1835 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, stripattributes (FRAME_SECTION));
1836 if (flag_debug_asm)
1837 fprintf (asm_out_file, "\t%s FDE CIE offset", ASM_COMMENT_START);
1839 fputc ('\n', asm_out_file);
1840 ASM_OUTPUT_DWARF_ADDR (asm_out_file, fde->dw_fde_begin);
1841 if (flag_debug_asm)
1842 fprintf (asm_out_file, "\t%s FDE initial location", ASM_COMMENT_START);
1844 fputc ('\n', asm_out_file);
1845 ASM_OUTPUT_DWARF_ADDR_DELTA (asm_out_file,
1846 fde->dw_fde_end, fde->dw_fde_begin);
1847 if (flag_debug_asm)
1848 fprintf (asm_out_file, "\t%s FDE address range", ASM_COMMENT_START);
1850 fputc ('\n', asm_out_file);
1852 /* Loop through the Call Frame Instructions associated with
1853 this FDE. */
1854 fde->dw_fde_current_label = fde->dw_fde_begin;
1855 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
1856 output_cfi (cfi, fde);
1858 /* Pad the FDE out to an address sized boundary. */
1859 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
1860 ASM_OUTPUT_LABEL (asm_out_file, l2);
1861 #ifdef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
1862 ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL (asm_out_file, ld, l2, l1);
1863 if (flag_debug_asm)
1864 fprintf (asm_out_file, "\t%s FDE Length Symbol", ASM_COMMENT_START);
1865 fputc ('\n', asm_out_file);
1866 #endif
1868 #ifndef EH_FRAME_SECTION
1869 if (for_eh)
1871 /* Emit terminating zero for table. */
1872 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, 0);
1873 fputc ('\n', asm_out_file);
1875 #endif
1876 #ifdef MIPS_DEBUGGING_INFO
1877 /* Work around Irix 6 assembler bug whereby labels at the end of a section
1878 get a value of 0. Putting .align 0 after the label fixes it. */
1879 ASM_OUTPUT_ALIGN (asm_out_file, 0);
1880 #endif
1882 /* Turn off app to make assembly quicker. */
1883 if (flag_debug_asm)
1884 app_disable ();
1887 /* Output a marker (i.e. a label) for the beginning of a function, before
1888 the prologue. */
1890 void
1891 dwarf2out_begin_prologue ()
1893 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1894 register dw_fde_ref fde;
1896 ++current_funcdef_number;
1898 function_section (current_function_decl);
1899 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
1900 current_funcdef_number);
1901 ASM_OUTPUT_LABEL (asm_out_file, label);
1903 /* Expand the fde table if necessary. */
1904 if (fde_table_in_use == fde_table_allocated)
1906 fde_table_allocated += FDE_TABLE_INCREMENT;
1907 fde_table
1908 = (dw_fde_ref) xrealloc (fde_table,
1909 fde_table_allocated * sizeof (dw_fde_node));
1912 /* Record the FDE associated with this function. */
1913 current_funcdef_fde = fde_table_in_use;
1915 /* Add the new FDE at the end of the fde_table. */
1916 fde = &fde_table[fde_table_in_use++];
1917 fde->dw_fde_begin = xstrdup (label);
1918 fde->dw_fde_current_label = NULL;
1919 fde->dw_fde_end = NULL;
1920 fde->dw_fde_cfi = NULL;
1922 args_size = old_args_size = 0;
1925 /* Output a marker (i.e. a label) for the absolute end of the generated code
1926 for a function definition. This gets called *after* the epilogue code has
1927 been generated. */
1929 void
1930 dwarf2out_end_epilogue ()
1932 dw_fde_ref fde;
1933 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1935 /* Output a label to mark the endpoint of the code generated for this
1936 function. */
1937 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL, current_funcdef_number);
1938 ASM_OUTPUT_LABEL (asm_out_file, label);
1939 fde = &fde_table[fde_table_in_use - 1];
1940 fde->dw_fde_end = xstrdup (label);
1943 void
1944 dwarf2out_frame_init ()
1946 /* Allocate the initial hunk of the fde_table. */
1947 fde_table
1948 = (dw_fde_ref) xmalloc (FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
1949 bzero ((char *) fde_table, FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
1950 fde_table_allocated = FDE_TABLE_INCREMENT;
1951 fde_table_in_use = 0;
1953 /* Generate the CFA instructions common to all FDE's. Do it now for the
1954 sake of lookup_cfa. */
1956 #ifdef DWARF2_UNWIND_INFO
1957 /* On entry, the Canonical Frame Address is at SP. */
1958 dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
1959 initial_return_save (INCOMING_RETURN_ADDR_RTX);
1960 #endif
1963 void
1964 dwarf2out_frame_finish ()
1966 /* Output call frame information. */
1967 #ifdef MIPS_DEBUGGING_INFO
1968 if (write_symbols == DWARF2_DEBUG)
1969 output_call_frame_info (0);
1970 if (flag_exceptions && ! exceptions_via_longjmp)
1971 output_call_frame_info (1);
1972 #else
1973 if (write_symbols == DWARF2_DEBUG
1974 || (flag_exceptions && ! exceptions_via_longjmp))
1975 output_call_frame_info (1);
1976 #endif
1979 #endif /* .debug_frame support */
1981 /* And now, the support for symbolic debugging information. */
1982 #ifdef DWARF2_DEBUGGING_INFO
1984 extern char *getpwd PROTO((void));
1986 /* NOTE: In the comments in this file, many references are made to
1987 "Debugging Information Entries". This term is abbreviated as `DIE'
1988 throughout the remainder of this file. */
1990 /* An internal representation of the DWARF output is built, and then
1991 walked to generate the DWARF debugging info. The walk of the internal
1992 representation is done after the entire program has been compiled.
1993 The types below are used to describe the internal representation. */
1995 /* Each DIE may have a series of attribute/value pairs. Values
1996 can take on several forms. The forms that are used in this
1997 implementation are listed below. */
1999 typedef enum
2001 dw_val_class_addr,
2002 dw_val_class_loc,
2003 dw_val_class_const,
2004 dw_val_class_unsigned_const,
2005 dw_val_class_long_long,
2006 dw_val_class_float,
2007 dw_val_class_flag,
2008 dw_val_class_die_ref,
2009 dw_val_class_fde_ref,
2010 dw_val_class_lbl_id,
2011 dw_val_class_section_offset,
2012 dw_val_class_str
2014 dw_val_class;
2016 /* Various DIE's use offsets relative to the beginning of the
2017 .debug_info section to refer to each other. */
2019 typedef long int dw_offset;
2021 /* Define typedefs here to avoid circular dependencies. */
2023 typedef struct die_struct *dw_die_ref;
2024 typedef struct dw_attr_struct *dw_attr_ref;
2025 typedef struct dw_val_struct *dw_val_ref;
2026 typedef struct dw_line_info_struct *dw_line_info_ref;
2027 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
2028 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
2029 typedef struct pubname_struct *pubname_ref;
2030 typedef dw_die_ref *arange_ref;
2032 /* Describe a double word constant value. */
2034 typedef struct dw_long_long_struct
2036 unsigned long hi;
2037 unsigned long low;
2039 dw_long_long_const;
2041 /* Describe a floating point constant value. */
2043 typedef struct dw_fp_struct
2045 long *array;
2046 unsigned length;
2048 dw_float_const;
2050 /* Each entry in the line_info_table maintains the file and
2051 line number associated with the label generated for that
2052 entry. The label gives the PC value associated with
2053 the line number entry. */
2055 typedef struct dw_line_info_struct
2057 unsigned long dw_file_num;
2058 unsigned long dw_line_num;
2060 dw_line_info_entry;
2062 /* Line information for functions in separate sections; each one gets its
2063 own sequence. */
2064 typedef struct dw_separate_line_info_struct
2066 unsigned long dw_file_num;
2067 unsigned long dw_line_num;
2068 unsigned long function;
2070 dw_separate_line_info_entry;
2072 /* The dw_val_node describes an attribute's value, as it is
2073 represented internally. */
2075 typedef struct dw_val_struct
2077 dw_val_class val_class;
2078 union
2080 char *val_addr;
2081 dw_loc_descr_ref val_loc;
2082 long int val_int;
2083 long unsigned val_unsigned;
2084 dw_long_long_const val_long_long;
2085 dw_float_const val_float;
2086 dw_die_ref val_die_ref;
2087 unsigned val_fde_index;
2088 char *val_str;
2089 char *val_lbl_id;
2090 char *val_section;
2091 unsigned char val_flag;
2095 dw_val_node;
2097 /* Locations in memory are described using a sequence of stack machine
2098 operations. */
2100 typedef struct dw_loc_descr_struct
2102 dw_loc_descr_ref dw_loc_next;
2103 enum dwarf_location_atom dw_loc_opc;
2104 dw_val_node dw_loc_oprnd1;
2105 dw_val_node dw_loc_oprnd2;
2107 dw_loc_descr_node;
2109 /* Each DIE attribute has a field specifying the attribute kind,
2110 a link to the next attribute in the chain, and an attribute value.
2111 Attributes are typically linked below the DIE they modify. */
2113 typedef struct dw_attr_struct
2115 enum dwarf_attribute dw_attr;
2116 dw_attr_ref dw_attr_next;
2117 dw_val_node dw_attr_val;
2119 dw_attr_node;
2121 /* The Debugging Information Entry (DIE) structure */
2123 typedef struct die_struct
2125 enum dwarf_tag die_tag;
2126 dw_attr_ref die_attr;
2127 dw_attr_ref die_attr_last;
2128 dw_die_ref die_parent;
2129 dw_die_ref die_child;
2130 dw_die_ref die_child_last;
2131 dw_die_ref die_sib;
2132 dw_offset die_offset;
2133 unsigned long die_abbrev;
2135 die_node;
2137 /* The pubname structure */
2139 typedef struct pubname_struct
2141 dw_die_ref die;
2142 char * name;
2144 pubname_entry;
2146 /* The limbo die list structure. */
2147 typedef struct limbo_die_struct
2149 dw_die_ref die;
2150 struct limbo_die_struct *next;
2152 limbo_die_node;
2154 /* How to start an assembler comment. */
2155 #ifndef ASM_COMMENT_START
2156 #define ASM_COMMENT_START ";#"
2157 #endif
2159 /* Define a macro which returns non-zero for a TYPE_DECL which was
2160 implicitly generated for a tagged type.
2162 Note that unlike the gcc front end (which generates a NULL named
2163 TYPE_DECL node for each complete tagged type, each array type, and
2164 each function type node created) the g++ front end generates a
2165 _named_ TYPE_DECL node for each tagged type node created.
2166 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
2167 generate a DW_TAG_typedef DIE for them. */
2169 #define TYPE_DECL_IS_STUB(decl) \
2170 (DECL_NAME (decl) == NULL_TREE \
2171 || (DECL_ARTIFICIAL (decl) \
2172 && is_tagged_type (TREE_TYPE (decl)) \
2173 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
2174 /* This is necessary for stub decls that \
2175 appear in nested inline functions. */ \
2176 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
2177 && (decl_ultimate_origin (decl) \
2178 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
2180 /* Information concerning the compilation unit's programming
2181 language, and compiler version. */
2183 extern int flag_traditional;
2184 extern char *version_string;
2185 extern char *language_string;
2187 /* Fixed size portion of the DWARF compilation unit header. */
2188 #define DWARF_COMPILE_UNIT_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 3)
2190 /* Fixed size portion of debugging line information prolog. */
2191 #define DWARF_LINE_PROLOG_HEADER_SIZE 5
2193 /* Fixed size portion of public names info. */
2194 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
2196 /* Fixed size portion of the address range info. */
2197 #define DWARF_ARANGES_HEADER_SIZE \
2198 (DWARF_ROUND (2 * DWARF_OFFSET_SIZE + 4, PTR_SIZE * 2) - DWARF_OFFSET_SIZE)
2200 /* Define the architecture-dependent minimum instruction length (in bytes).
2201 In this implementation of DWARF, this field is used for information
2202 purposes only. Since GCC generates assembly language, we have
2203 no a priori knowledge of how many instruction bytes are generated
2204 for each source line, and therefore can use only the DW_LNE_set_address
2205 and DW_LNS_fixed_advance_pc line information commands. */
2207 #ifndef DWARF_LINE_MIN_INSTR_LENGTH
2208 #define DWARF_LINE_MIN_INSTR_LENGTH 4
2209 #endif
2211 /* Minimum line offset in a special line info. opcode.
2212 This value was chosen to give a reasonable range of values. */
2213 #define DWARF_LINE_BASE -10
2215 /* First special line opcde - leave room for the standard opcodes. */
2216 #define DWARF_LINE_OPCODE_BASE 10
2218 /* Range of line offsets in a special line info. opcode. */
2219 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
2221 /* Flag that indicates the initial value of the is_stmt_start flag.
2222 In the present implementation, we do not mark any lines as
2223 the beginning of a source statement, because that information
2224 is not made available by the GCC front-end. */
2225 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
2227 /* This location is used by calc_die_sizes() to keep track
2228 the offset of each DIE within the .debug_info section. */
2229 static unsigned long next_die_offset;
2231 /* Record the root of the DIE's built for the current compilation unit. */
2232 static dw_die_ref comp_unit_die;
2234 /* A list of DIEs with a NULL parent waiting to be relocated. */
2235 static limbo_die_node *limbo_die_list = 0;
2237 /* Pointer to an array of filenames referenced by this compilation unit. */
2238 static char **file_table;
2240 /* Total number of entries in the table (i.e. array) pointed to by
2241 `file_table'. This is the *total* and includes both used and unused
2242 slots. */
2243 static unsigned file_table_allocated;
2245 /* Number of entries in the file_table which are actually in use. */
2246 static unsigned file_table_in_use;
2248 /* Size (in elements) of increments by which we may expand the filename
2249 table. */
2250 #define FILE_TABLE_INCREMENT 64
2252 /* Local pointer to the name of the main input file. Initialized in
2253 dwarf2out_init. */
2254 static char *primary_filename;
2256 /* For Dwarf output, we must assign lexical-blocks id numbers in the order in
2257 which their beginnings are encountered. We output Dwarf debugging info
2258 that refers to the beginnings and ends of the ranges of code for each
2259 lexical block. The labels themselves are generated in final.c, which
2260 assigns numbers to the blocks in the same way. */
2261 static unsigned next_block_number = 2;
2263 /* A pointer to the base of a table of references to DIE's that describe
2264 declarations. The table is indexed by DECL_UID() which is a unique
2265 number identifying each decl. */
2266 static dw_die_ref *decl_die_table;
2268 /* Number of elements currently allocated for the decl_die_table. */
2269 static unsigned decl_die_table_allocated;
2271 /* Number of elements in decl_die_table currently in use. */
2272 static unsigned decl_die_table_in_use;
2274 /* Size (in elements) of increments by which we may expand the
2275 decl_die_table. */
2276 #define DECL_DIE_TABLE_INCREMENT 256
2278 /* Structure used for the decl_scope table. scope is the current declaration
2279 scope, and previous is the entry that is the parent of this scope. This
2280 is usually but not always the immediately preceeding entry. */
2282 typedef struct decl_scope_struct
2284 tree scope;
2285 int previous;
2287 decl_scope_node;
2289 /* A pointer to the base of a table of references to declaration
2290 scopes. This table is a display which tracks the nesting
2291 of declaration scopes at the current scope and containing
2292 scopes. This table is used to find the proper place to
2293 define type declaration DIE's. */
2294 static decl_scope_node *decl_scope_table;
2296 /* Number of elements currently allocated for the decl_scope_table. */
2297 static int decl_scope_table_allocated;
2299 /* Current level of nesting of declaration scopes. */
2300 static int decl_scope_depth;
2302 /* Size (in elements) of increments by which we may expand the
2303 decl_scope_table. */
2304 #define DECL_SCOPE_TABLE_INCREMENT 64
2306 /* A pointer to the base of a list of references to DIE's that
2307 are uniquely identified by their tag, presence/absence of
2308 children DIE's, and list of attribute/value pairs. */
2309 static dw_die_ref *abbrev_die_table;
2311 /* Number of elements currently allocated for abbrev_die_table. */
2312 static unsigned abbrev_die_table_allocated;
2314 /* Number of elements in type_die_table currently in use. */
2315 static unsigned abbrev_die_table_in_use;
2317 /* Size (in elements) of increments by which we may expand the
2318 abbrev_die_table. */
2319 #define ABBREV_DIE_TABLE_INCREMENT 256
2321 /* A pointer to the base of a table that contains line information
2322 for each source code line in .text in the compilation unit. */
2323 static dw_line_info_ref line_info_table;
2325 /* Number of elements currently allocated for line_info_table. */
2326 static unsigned line_info_table_allocated;
2328 /* Number of elements in separate_line_info_table currently in use. */
2329 static unsigned separate_line_info_table_in_use;
2331 /* A pointer to the base of a table that contains line information
2332 for each source code line outside of .text in the compilation unit. */
2333 static dw_separate_line_info_ref separate_line_info_table;
2335 /* Number of elements currently allocated for separate_line_info_table. */
2336 static unsigned separate_line_info_table_allocated;
2338 /* Number of elements in line_info_table currently in use. */
2339 static unsigned line_info_table_in_use;
2341 /* Size (in elements) of increments by which we may expand the
2342 line_info_table. */
2343 #define LINE_INFO_TABLE_INCREMENT 1024
2345 /* A pointer to the base of a table that contains a list of publicly
2346 accessible names. */
2347 static pubname_ref pubname_table;
2349 /* Number of elements currently allocated for pubname_table. */
2350 static unsigned pubname_table_allocated;
2352 /* Number of elements in pubname_table currently in use. */
2353 static unsigned pubname_table_in_use;
2355 /* Size (in elements) of increments by which we may expand the
2356 pubname_table. */
2357 #define PUBNAME_TABLE_INCREMENT 64
2359 /* A pointer to the base of a table that contains a list of publicly
2360 accessible names. */
2361 static arange_ref arange_table;
2363 /* Number of elements currently allocated for arange_table. */
2364 static unsigned arange_table_allocated;
2366 /* Number of elements in arange_table currently in use. */
2367 static unsigned arange_table_in_use;
2369 /* Size (in elements) of increments by which we may expand the
2370 arange_table. */
2371 #define ARANGE_TABLE_INCREMENT 64
2373 /* A pointer to the base of a list of pending types which we haven't
2374 generated DIEs for yet, but which we will have to come back to
2375 later on. */
2377 static tree *pending_types_list;
2379 /* Number of elements currently allocated for the pending_types_list. */
2380 static unsigned pending_types_allocated;
2382 /* Number of elements of pending_types_list currently in use. */
2383 static unsigned pending_types;
2385 /* Size (in elements) of increments by which we may expand the pending
2386 types list. Actually, a single hunk of space of this size should
2387 be enough for most typical programs. */
2388 #define PENDING_TYPES_INCREMENT 64
2390 /* Record whether the function being analyzed contains inlined functions. */
2391 static int current_function_has_inlines;
2392 #if 0 && defined (MIPS_DEBUGGING_INFO)
2393 static int comp_unit_has_inlines;
2394 #endif
2396 /* A pointer to the ..._DECL node which we have most recently been working
2397 on. We keep this around just in case something about it looks screwy and
2398 we want to tell the user what the source coordinates for the actual
2399 declaration are. */
2400 static tree dwarf_last_decl;
2402 /* Forward declarations for functions defined in this file. */
2404 static void addr_const_to_string PROTO((dyn_string_t, rtx));
2405 static char *addr_to_string PROTO((rtx));
2406 static int is_pseudo_reg PROTO((rtx));
2407 static tree type_main_variant PROTO((tree));
2408 static int is_tagged_type PROTO((tree));
2409 static char *dwarf_tag_name PROTO((unsigned));
2410 static char *dwarf_attr_name PROTO((unsigned));
2411 static char *dwarf_form_name PROTO((unsigned));
2412 static char *dwarf_stack_op_name PROTO((unsigned));
2413 #if 0
2414 static char *dwarf_type_encoding_name PROTO((unsigned));
2415 #endif
2416 static tree decl_ultimate_origin PROTO((tree));
2417 static tree block_ultimate_origin PROTO((tree));
2418 static tree decl_class_context PROTO((tree));
2419 static void add_dwarf_attr PROTO((dw_die_ref, dw_attr_ref));
2420 static void add_AT_flag PROTO((dw_die_ref,
2421 enum dwarf_attribute,
2422 unsigned));
2423 static void add_AT_int PROTO((dw_die_ref,
2424 enum dwarf_attribute, long));
2425 static void add_AT_unsigned PROTO((dw_die_ref,
2426 enum dwarf_attribute,
2427 unsigned long));
2428 static void add_AT_long_long PROTO((dw_die_ref,
2429 enum dwarf_attribute,
2430 unsigned long, unsigned long));
2431 static void add_AT_float PROTO((dw_die_ref,
2432 enum dwarf_attribute,
2433 unsigned, long *));
2434 static void add_AT_string PROTO((dw_die_ref,
2435 enum dwarf_attribute, char *));
2436 static void add_AT_die_ref PROTO((dw_die_ref,
2437 enum dwarf_attribute,
2438 dw_die_ref));
2439 static void add_AT_fde_ref PROTO((dw_die_ref,
2440 enum dwarf_attribute,
2441 unsigned));
2442 static void add_AT_loc PROTO((dw_die_ref,
2443 enum dwarf_attribute,
2444 dw_loc_descr_ref));
2445 static void add_AT_addr PROTO((dw_die_ref,
2446 enum dwarf_attribute, char *));
2447 static void add_AT_lbl_id PROTO((dw_die_ref,
2448 enum dwarf_attribute, char *));
2449 static void add_AT_section_offset PROTO((dw_die_ref,
2450 enum dwarf_attribute, char *));
2451 static int is_extern_subr_die PROTO((dw_die_ref));
2452 static dw_attr_ref get_AT PROTO((dw_die_ref,
2453 enum dwarf_attribute));
2454 static char *get_AT_low_pc PROTO((dw_die_ref));
2455 static char *get_AT_hi_pc PROTO((dw_die_ref));
2456 static char *get_AT_string PROTO((dw_die_ref,
2457 enum dwarf_attribute));
2458 static int get_AT_flag PROTO((dw_die_ref,
2459 enum dwarf_attribute));
2460 static unsigned get_AT_unsigned PROTO((dw_die_ref,
2461 enum dwarf_attribute));
2462 static int is_c_family PROTO((void));
2463 static int is_fortran PROTO((void));
2464 static void remove_AT PROTO((dw_die_ref,
2465 enum dwarf_attribute));
2466 static void remove_children PROTO((dw_die_ref));
2467 static void add_child_die PROTO((dw_die_ref, dw_die_ref));
2468 static dw_die_ref new_die PROTO((enum dwarf_tag, dw_die_ref));
2469 static dw_die_ref lookup_type_die PROTO((tree));
2470 static void equate_type_number_to_die PROTO((tree, dw_die_ref));
2471 static dw_die_ref lookup_decl_die PROTO((tree));
2472 static void equate_decl_number_to_die PROTO((tree, dw_die_ref));
2473 static dw_loc_descr_ref new_loc_descr PROTO((enum dwarf_location_atom,
2474 unsigned long, unsigned long));
2475 static void add_loc_descr PROTO((dw_loc_descr_ref *,
2476 dw_loc_descr_ref));
2477 static void print_spaces PROTO((FILE *));
2478 static void print_die PROTO((dw_die_ref, FILE *));
2479 static void print_dwarf_line_table PROTO((FILE *));
2480 static void add_sibling_attributes PROTO((dw_die_ref));
2481 static void build_abbrev_table PROTO((dw_die_ref));
2482 static unsigned long size_of_string PROTO((char *));
2483 static unsigned long size_of_loc_descr PROTO((dw_loc_descr_ref));
2484 static unsigned long size_of_locs PROTO((dw_loc_descr_ref));
2485 static int constant_size PROTO((long unsigned));
2486 static unsigned long size_of_die PROTO((dw_die_ref));
2487 static void calc_die_sizes PROTO((dw_die_ref));
2488 static unsigned long size_of_line_prolog PROTO((void));
2489 static unsigned long size_of_line_info PROTO((void));
2490 static unsigned long size_of_pubnames PROTO((void));
2491 static unsigned long size_of_aranges PROTO((void));
2492 static enum dwarf_form value_format PROTO((dw_val_ref));
2493 static void output_value_format PROTO((dw_val_ref));
2494 static void output_abbrev_section PROTO((void));
2495 static void output_loc_operands PROTO((dw_loc_descr_ref));
2496 static unsigned long sibling_offset PROTO((dw_die_ref));
2497 static void output_die PROTO((dw_die_ref));
2498 static void output_compilation_unit_header PROTO((void));
2499 static char *dwarf2_name PROTO((tree, int));
2500 static void add_pubname PROTO((tree, dw_die_ref));
2501 static void output_pubnames PROTO((void));
2502 static void add_arange PROTO((tree, dw_die_ref));
2503 static void output_aranges PROTO((void));
2504 static void output_line_info PROTO((void));
2505 static int is_body_block PROTO((tree));
2506 static dw_die_ref base_type_die PROTO((tree));
2507 static tree root_type PROTO((tree));
2508 static int is_base_type PROTO((tree));
2509 static dw_die_ref modified_type_die PROTO((tree, int, int, dw_die_ref));
2510 static int type_is_enum PROTO((tree));
2511 static dw_loc_descr_ref reg_loc_descriptor PROTO((rtx));
2512 static dw_loc_descr_ref based_loc_descr PROTO((unsigned, long));
2513 static int is_based_loc PROTO((rtx));
2514 static dw_loc_descr_ref mem_loc_descriptor PROTO((rtx));
2515 static dw_loc_descr_ref concat_loc_descriptor PROTO((rtx, rtx));
2516 static dw_loc_descr_ref loc_descriptor PROTO((rtx));
2517 static unsigned ceiling PROTO((unsigned, unsigned));
2518 static tree field_type PROTO((tree));
2519 static unsigned simple_type_align_in_bits PROTO((tree));
2520 static unsigned simple_type_size_in_bits PROTO((tree));
2521 static unsigned field_byte_offset PROTO((tree));
2522 static void add_AT_location_description PROTO((dw_die_ref,
2523 enum dwarf_attribute, rtx));
2524 static void add_data_member_location_attribute PROTO((dw_die_ref, tree));
2525 static void add_const_value_attribute PROTO((dw_die_ref, rtx));
2526 static void add_location_or_const_value_attribute PROTO((dw_die_ref, tree));
2527 static void add_name_attribute PROTO((dw_die_ref, char *));
2528 static void add_bound_info PROTO((dw_die_ref,
2529 enum dwarf_attribute, tree));
2530 static void add_subscript_info PROTO((dw_die_ref, tree));
2531 static void add_byte_size_attribute PROTO((dw_die_ref, tree));
2532 static void add_bit_offset_attribute PROTO((dw_die_ref, tree));
2533 static void add_bit_size_attribute PROTO((dw_die_ref, tree));
2534 static void add_prototyped_attribute PROTO((dw_die_ref, tree));
2535 static void add_abstract_origin_attribute PROTO((dw_die_ref, tree));
2536 static void add_pure_or_virtual_attribute PROTO((dw_die_ref, tree));
2537 static void add_src_coords_attributes PROTO((dw_die_ref, tree));
2538 static void add_name_and_src_coords_attributes PROTO((dw_die_ref, tree));
2539 static void push_decl_scope PROTO((tree));
2540 static dw_die_ref scope_die_for PROTO((tree, dw_die_ref));
2541 static void pop_decl_scope PROTO((void));
2542 static void add_type_attribute PROTO((dw_die_ref, tree, int, int,
2543 dw_die_ref));
2544 static char *type_tag PROTO((tree));
2545 static tree member_declared_type PROTO((tree));
2546 #if 0
2547 static char *decl_start_label PROTO((tree));
2548 #endif
2549 static void gen_array_type_die PROTO((tree, dw_die_ref));
2550 static void gen_set_type_die PROTO((tree, dw_die_ref));
2551 #if 0
2552 static void gen_entry_point_die PROTO((tree, dw_die_ref));
2553 #endif
2554 static void pend_type PROTO((tree));
2555 static void output_pending_types_for_scope PROTO((dw_die_ref));
2556 static void gen_inlined_enumeration_type_die PROTO((tree, dw_die_ref));
2557 static void gen_inlined_structure_type_die PROTO((tree, dw_die_ref));
2558 static void gen_inlined_union_type_die PROTO((tree, dw_die_ref));
2559 static void gen_enumeration_type_die PROTO((tree, dw_die_ref));
2560 static dw_die_ref gen_formal_parameter_die PROTO((tree, dw_die_ref));
2561 static void gen_unspecified_parameters_die PROTO((tree, dw_die_ref));
2562 static void gen_formal_types_die PROTO((tree, dw_die_ref));
2563 static void gen_subprogram_die PROTO((tree, dw_die_ref));
2564 static void gen_variable_die PROTO((tree, dw_die_ref));
2565 static void gen_label_die PROTO((tree, dw_die_ref));
2566 static void gen_lexical_block_die PROTO((tree, dw_die_ref, int));
2567 static void gen_inlined_subroutine_die PROTO((tree, dw_die_ref, int));
2568 static void gen_field_die PROTO((tree, dw_die_ref));
2569 static void gen_ptr_to_mbr_type_die PROTO((tree, dw_die_ref));
2570 static void gen_compile_unit_die PROTO((char *));
2571 static void gen_string_type_die PROTO((tree, dw_die_ref));
2572 static void gen_inheritance_die PROTO((tree, dw_die_ref));
2573 static void gen_member_die PROTO((tree, dw_die_ref));
2574 static void gen_struct_or_union_type_die PROTO((tree, dw_die_ref));
2575 static void gen_subroutine_type_die PROTO((tree, dw_die_ref));
2576 static void gen_typedef_die PROTO((tree, dw_die_ref));
2577 static void gen_type_die PROTO((tree, dw_die_ref));
2578 static void gen_tagged_type_instantiation_die PROTO((tree, dw_die_ref));
2579 static void gen_block_die PROTO((tree, dw_die_ref, int));
2580 static void decls_for_scope PROTO((tree, dw_die_ref, int));
2581 static int is_redundant_typedef PROTO((tree));
2582 static void gen_decl_die PROTO((tree, dw_die_ref));
2583 static unsigned lookup_filename PROTO((char *));
2585 /* Section names used to hold DWARF debugging information. */
2586 #ifndef DEBUG_INFO_SECTION
2587 #define DEBUG_INFO_SECTION ".debug_info"
2588 #endif
2589 #ifndef ABBREV_SECTION
2590 #define ABBREV_SECTION ".debug_abbrev"
2591 #endif
2592 #ifndef ARANGES_SECTION
2593 #define ARANGES_SECTION ".debug_aranges"
2594 #endif
2595 #ifndef DW_MACINFO_SECTION
2596 #define DW_MACINFO_SECTION ".debug_macinfo"
2597 #endif
2598 #ifndef DEBUG_LINE_SECTION
2599 #define DEBUG_LINE_SECTION ".debug_line"
2600 #endif
2601 #ifndef LOC_SECTION
2602 #define LOC_SECTION ".debug_loc"
2603 #endif
2604 #ifndef PUBNAMES_SECTION
2605 #define PUBNAMES_SECTION ".debug_pubnames"
2606 #endif
2607 #ifndef STR_SECTION
2608 #define STR_SECTION ".debug_str"
2609 #endif
2611 /* Standard ELF section names for compiled code and data. */
2612 #ifndef TEXT_SECTION
2613 #define TEXT_SECTION ".text"
2614 #endif
2615 #ifndef DATA_SECTION
2616 #define DATA_SECTION ".data"
2617 #endif
2618 #ifndef BSS_SECTION
2619 #define BSS_SECTION ".bss"
2620 #endif
2623 /* Definitions of defaults for formats and names of various special
2624 (artificial) labels which may be generated within this file (when the -g
2625 options is used and DWARF_DEBUGGING_INFO is in effect.
2626 If necessary, these may be overridden from within the tm.h file, but
2627 typically, overriding these defaults is unnecessary. */
2629 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
2631 #ifndef TEXT_END_LABEL
2632 #define TEXT_END_LABEL "Letext"
2633 #endif
2634 #ifndef DATA_END_LABEL
2635 #define DATA_END_LABEL "Ledata"
2636 #endif
2637 #ifndef BSS_END_LABEL
2638 #define BSS_END_LABEL "Lebss"
2639 #endif
2640 #ifndef INSN_LABEL_FMT
2641 #define INSN_LABEL_FMT "LI%u_"
2642 #endif
2643 #ifndef BLOCK_BEGIN_LABEL
2644 #define BLOCK_BEGIN_LABEL "LBB"
2645 #endif
2646 #ifndef BLOCK_END_LABEL
2647 #define BLOCK_END_LABEL "LBE"
2648 #endif
2649 #ifndef BODY_BEGIN_LABEL
2650 #define BODY_BEGIN_LABEL "Lbb"
2651 #endif
2652 #ifndef BODY_END_LABEL
2653 #define BODY_END_LABEL "Lbe"
2654 #endif
2655 #ifndef LINE_CODE_LABEL
2656 #define LINE_CODE_LABEL "LM"
2657 #endif
2658 #ifndef SEPARATE_LINE_CODE_LABEL
2659 #define SEPARATE_LINE_CODE_LABEL "LSM"
2660 #endif
2662 /* Convert a reference to the assembler name of a C-level name. This
2663 macro has the same effect as ASM_OUTPUT_LABELREF, but copies to
2664 a string rather than writing to a file. */
2665 #ifndef ASM_NAME_TO_STRING
2666 #define ASM_NAME_TO_STRING(STR, NAME) \
2667 do { \
2668 if ((NAME)[0] == '*') \
2669 dyn_string_append (STR, NAME + 1); \
2670 else \
2671 dyn_string_append (STR, NAME); \
2673 while (0)
2674 #endif
2676 /* Convert an integer constant expression into assembler syntax. Addition
2677 and subtraction are the only arithmetic that may appear in these
2678 expressions. This is an adaptation of output_addr_const in final.c.
2679 Here, the target of the conversion is a string buffer. We can't use
2680 output_addr_const directly, because it writes to a file. */
2682 static void
2683 addr_const_to_string (str, x)
2684 dyn_string_t str;
2685 rtx x;
2687 char buf1[256];
2689 restart:
2690 switch (GET_CODE (x))
2692 case PC:
2693 if (flag_pic)
2694 dyn_string_append (str, ",");
2695 else
2696 abort ();
2697 break;
2699 case SYMBOL_REF:
2700 ASM_NAME_TO_STRING (str, XSTR (x, 0));
2701 break;
2703 case LABEL_REF:
2704 ASM_GENERATE_INTERNAL_LABEL (buf1, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
2705 ASM_NAME_TO_STRING (str, buf1);
2706 break;
2708 case CODE_LABEL:
2709 ASM_GENERATE_INTERNAL_LABEL (buf1, "L", CODE_LABEL_NUMBER (x));
2710 ASM_NAME_TO_STRING (str, buf1);
2711 break;
2713 case CONST_INT:
2714 sprintf (buf1, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
2715 dyn_string_append (str, buf1);
2716 break;
2718 case CONST:
2719 /* This used to output parentheses around the expression, but that does
2720 not work on the 386 (either ATT or BSD assembler). */
2721 addr_const_to_string (str, XEXP (x, 0));
2722 break;
2724 case CONST_DOUBLE:
2725 if (GET_MODE (x) == VOIDmode)
2727 /* We can use %d if the number is one word and positive. */
2728 if (CONST_DOUBLE_HIGH (x))
2729 sprintf (buf1, HOST_WIDE_INT_PRINT_DOUBLE_HEX,
2730 CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
2731 else if (CONST_DOUBLE_LOW (x) < 0)
2732 sprintf (buf1, HOST_WIDE_INT_PRINT_HEX, CONST_DOUBLE_LOW (x));
2733 else
2734 sprintf (buf1, HOST_WIDE_INT_PRINT_DEC,
2735 CONST_DOUBLE_LOW (x));
2736 dyn_string_append (str, buf1);
2738 else
2739 /* We can't handle floating point constants; PRINT_OPERAND must
2740 handle them. */
2741 output_operand_lossage ("floating constant misused");
2742 break;
2744 case PLUS:
2745 /* Some assemblers need integer constants to appear last (eg masm). */
2746 if (GET_CODE (XEXP (x, 0)) == CONST_INT)
2748 addr_const_to_string (str, XEXP (x, 1));
2749 if (INTVAL (XEXP (x, 0)) >= 0)
2750 dyn_string_append (str, "+");
2752 addr_const_to_string (str, XEXP (x, 0));
2754 else
2756 addr_const_to_string (str, XEXP (x, 0));
2757 if (INTVAL (XEXP (x, 1)) >= 0)
2758 dyn_string_append (str, "+");
2760 addr_const_to_string (str, XEXP (x, 1));
2762 break;
2764 case MINUS:
2765 /* Avoid outputting things like x-x or x+5-x, since some assemblers
2766 can't handle that. */
2767 x = simplify_subtraction (x);
2768 if (GET_CODE (x) != MINUS)
2769 goto restart;
2771 addr_const_to_string (str, XEXP (x, 0));
2772 dyn_string_append (str, "-");
2773 if (GET_CODE (XEXP (x, 1)) == CONST_INT
2774 && INTVAL (XEXP (x, 1)) < 0)
2776 dyn_string_append (str, ASM_OPEN_PAREN);
2777 addr_const_to_string (str, XEXP (x, 1));
2778 dyn_string_append (str, ASM_CLOSE_PAREN);
2780 else
2781 addr_const_to_string (str, XEXP (x, 1));
2782 break;
2784 case ZERO_EXTEND:
2785 case SIGN_EXTEND:
2786 addr_const_to_string (str, XEXP (x, 0));
2787 break;
2789 default:
2790 output_operand_lossage ("invalid expression as operand");
2794 /* Convert an address constant to a string, and return a pointer to
2795 a copy of the result, located on the heap. */
2797 static char *
2798 addr_to_string (x)
2799 rtx x;
2801 dyn_string_t ds = dyn_string_new (256);
2802 char *s;
2804 addr_const_to_string (ds, x);
2806 /* Return the dynamically allocated string, but free the
2807 dyn_string_t itself. */
2808 s = ds->s;
2809 free (ds);
2810 return s;
2813 /* Test if rtl node points to a pseudo register. */
2815 static inline int
2816 is_pseudo_reg (rtl)
2817 register rtx rtl;
2819 return (((GET_CODE (rtl) == REG) && (REGNO (rtl) >= FIRST_PSEUDO_REGISTER))
2820 || ((GET_CODE (rtl) == SUBREG)
2821 && (REGNO (XEXP (rtl, 0)) >= FIRST_PSEUDO_REGISTER)));
2824 /* Return a reference to a type, with its const and volatile qualifiers
2825 removed. */
2827 static inline tree
2828 type_main_variant (type)
2829 register tree type;
2831 type = TYPE_MAIN_VARIANT (type);
2833 /* There really should be only one main variant among any group of variants
2834 of a given type (and all of the MAIN_VARIANT values for all members of
2835 the group should point to that one type) but sometimes the C front-end
2836 messes this up for array types, so we work around that bug here. */
2838 if (TREE_CODE (type) == ARRAY_TYPE)
2839 while (type != TYPE_MAIN_VARIANT (type))
2840 type = TYPE_MAIN_VARIANT (type);
2842 return type;
2845 /* Return non-zero if the given type node represents a tagged type. */
2847 static inline int
2848 is_tagged_type (type)
2849 register tree type;
2851 register enum tree_code code = TREE_CODE (type);
2853 return (code == RECORD_TYPE || code == UNION_TYPE
2854 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
2857 /* Convert a DIE tag into its string name. */
2859 static char *
2860 dwarf_tag_name (tag)
2861 register unsigned tag;
2863 switch (tag)
2865 case DW_TAG_padding:
2866 return "DW_TAG_padding";
2867 case DW_TAG_array_type:
2868 return "DW_TAG_array_type";
2869 case DW_TAG_class_type:
2870 return "DW_TAG_class_type";
2871 case DW_TAG_entry_point:
2872 return "DW_TAG_entry_point";
2873 case DW_TAG_enumeration_type:
2874 return "DW_TAG_enumeration_type";
2875 case DW_TAG_formal_parameter:
2876 return "DW_TAG_formal_parameter";
2877 case DW_TAG_imported_declaration:
2878 return "DW_TAG_imported_declaration";
2879 case DW_TAG_label:
2880 return "DW_TAG_label";
2881 case DW_TAG_lexical_block:
2882 return "DW_TAG_lexical_block";
2883 case DW_TAG_member:
2884 return "DW_TAG_member";
2885 case DW_TAG_pointer_type:
2886 return "DW_TAG_pointer_type";
2887 case DW_TAG_reference_type:
2888 return "DW_TAG_reference_type";
2889 case DW_TAG_compile_unit:
2890 return "DW_TAG_compile_unit";
2891 case DW_TAG_string_type:
2892 return "DW_TAG_string_type";
2893 case DW_TAG_structure_type:
2894 return "DW_TAG_structure_type";
2895 case DW_TAG_subroutine_type:
2896 return "DW_TAG_subroutine_type";
2897 case DW_TAG_typedef:
2898 return "DW_TAG_typedef";
2899 case DW_TAG_union_type:
2900 return "DW_TAG_union_type";
2901 case DW_TAG_unspecified_parameters:
2902 return "DW_TAG_unspecified_parameters";
2903 case DW_TAG_variant:
2904 return "DW_TAG_variant";
2905 case DW_TAG_common_block:
2906 return "DW_TAG_common_block";
2907 case DW_TAG_common_inclusion:
2908 return "DW_TAG_common_inclusion";
2909 case DW_TAG_inheritance:
2910 return "DW_TAG_inheritance";
2911 case DW_TAG_inlined_subroutine:
2912 return "DW_TAG_inlined_subroutine";
2913 case DW_TAG_module:
2914 return "DW_TAG_module";
2915 case DW_TAG_ptr_to_member_type:
2916 return "DW_TAG_ptr_to_member_type";
2917 case DW_TAG_set_type:
2918 return "DW_TAG_set_type";
2919 case DW_TAG_subrange_type:
2920 return "DW_TAG_subrange_type";
2921 case DW_TAG_with_stmt:
2922 return "DW_TAG_with_stmt";
2923 case DW_TAG_access_declaration:
2924 return "DW_TAG_access_declaration";
2925 case DW_TAG_base_type:
2926 return "DW_TAG_base_type";
2927 case DW_TAG_catch_block:
2928 return "DW_TAG_catch_block";
2929 case DW_TAG_const_type:
2930 return "DW_TAG_const_type";
2931 case DW_TAG_constant:
2932 return "DW_TAG_constant";
2933 case DW_TAG_enumerator:
2934 return "DW_TAG_enumerator";
2935 case DW_TAG_file_type:
2936 return "DW_TAG_file_type";
2937 case DW_TAG_friend:
2938 return "DW_TAG_friend";
2939 case DW_TAG_namelist:
2940 return "DW_TAG_namelist";
2941 case DW_TAG_namelist_item:
2942 return "DW_TAG_namelist_item";
2943 case DW_TAG_packed_type:
2944 return "DW_TAG_packed_type";
2945 case DW_TAG_subprogram:
2946 return "DW_TAG_subprogram";
2947 case DW_TAG_template_type_param:
2948 return "DW_TAG_template_type_param";
2949 case DW_TAG_template_value_param:
2950 return "DW_TAG_template_value_param";
2951 case DW_TAG_thrown_type:
2952 return "DW_TAG_thrown_type";
2953 case DW_TAG_try_block:
2954 return "DW_TAG_try_block";
2955 case DW_TAG_variant_part:
2956 return "DW_TAG_variant_part";
2957 case DW_TAG_variable:
2958 return "DW_TAG_variable";
2959 case DW_TAG_volatile_type:
2960 return "DW_TAG_volatile_type";
2961 case DW_TAG_MIPS_loop:
2962 return "DW_TAG_MIPS_loop";
2963 case DW_TAG_format_label:
2964 return "DW_TAG_format_label";
2965 case DW_TAG_function_template:
2966 return "DW_TAG_function_template";
2967 case DW_TAG_class_template:
2968 return "DW_TAG_class_template";
2969 default:
2970 return "DW_TAG_<unknown>";
2974 /* Convert a DWARF attribute code into its string name. */
2976 static char *
2977 dwarf_attr_name (attr)
2978 register unsigned attr;
2980 switch (attr)
2982 case DW_AT_sibling:
2983 return "DW_AT_sibling";
2984 case DW_AT_location:
2985 return "DW_AT_location";
2986 case DW_AT_name:
2987 return "DW_AT_name";
2988 case DW_AT_ordering:
2989 return "DW_AT_ordering";
2990 case DW_AT_subscr_data:
2991 return "DW_AT_subscr_data";
2992 case DW_AT_byte_size:
2993 return "DW_AT_byte_size";
2994 case DW_AT_bit_offset:
2995 return "DW_AT_bit_offset";
2996 case DW_AT_bit_size:
2997 return "DW_AT_bit_size";
2998 case DW_AT_element_list:
2999 return "DW_AT_element_list";
3000 case DW_AT_stmt_list:
3001 return "DW_AT_stmt_list";
3002 case DW_AT_low_pc:
3003 return "DW_AT_low_pc";
3004 case DW_AT_high_pc:
3005 return "DW_AT_high_pc";
3006 case DW_AT_language:
3007 return "DW_AT_language";
3008 case DW_AT_member:
3009 return "DW_AT_member";
3010 case DW_AT_discr:
3011 return "DW_AT_discr";
3012 case DW_AT_discr_value:
3013 return "DW_AT_discr_value";
3014 case DW_AT_visibility:
3015 return "DW_AT_visibility";
3016 case DW_AT_import:
3017 return "DW_AT_import";
3018 case DW_AT_string_length:
3019 return "DW_AT_string_length";
3020 case DW_AT_common_reference:
3021 return "DW_AT_common_reference";
3022 case DW_AT_comp_dir:
3023 return "DW_AT_comp_dir";
3024 case DW_AT_const_value:
3025 return "DW_AT_const_value";
3026 case DW_AT_containing_type:
3027 return "DW_AT_containing_type";
3028 case DW_AT_default_value:
3029 return "DW_AT_default_value";
3030 case DW_AT_inline:
3031 return "DW_AT_inline";
3032 case DW_AT_is_optional:
3033 return "DW_AT_is_optional";
3034 case DW_AT_lower_bound:
3035 return "DW_AT_lower_bound";
3036 case DW_AT_producer:
3037 return "DW_AT_producer";
3038 case DW_AT_prototyped:
3039 return "DW_AT_prototyped";
3040 case DW_AT_return_addr:
3041 return "DW_AT_return_addr";
3042 case DW_AT_start_scope:
3043 return "DW_AT_start_scope";
3044 case DW_AT_stride_size:
3045 return "DW_AT_stride_size";
3046 case DW_AT_upper_bound:
3047 return "DW_AT_upper_bound";
3048 case DW_AT_abstract_origin:
3049 return "DW_AT_abstract_origin";
3050 case DW_AT_accessibility:
3051 return "DW_AT_accessibility";
3052 case DW_AT_address_class:
3053 return "DW_AT_address_class";
3054 case DW_AT_artificial:
3055 return "DW_AT_artificial";
3056 case DW_AT_base_types:
3057 return "DW_AT_base_types";
3058 case DW_AT_calling_convention:
3059 return "DW_AT_calling_convention";
3060 case DW_AT_count:
3061 return "DW_AT_count";
3062 case DW_AT_data_member_location:
3063 return "DW_AT_data_member_location";
3064 case DW_AT_decl_column:
3065 return "DW_AT_decl_column";
3066 case DW_AT_decl_file:
3067 return "DW_AT_decl_file";
3068 case DW_AT_decl_line:
3069 return "DW_AT_decl_line";
3070 case DW_AT_declaration:
3071 return "DW_AT_declaration";
3072 case DW_AT_discr_list:
3073 return "DW_AT_discr_list";
3074 case DW_AT_encoding:
3075 return "DW_AT_encoding";
3076 case DW_AT_external:
3077 return "DW_AT_external";
3078 case DW_AT_frame_base:
3079 return "DW_AT_frame_base";
3080 case DW_AT_friend:
3081 return "DW_AT_friend";
3082 case DW_AT_identifier_case:
3083 return "DW_AT_identifier_case";
3084 case DW_AT_macro_info:
3085 return "DW_AT_macro_info";
3086 case DW_AT_namelist_items:
3087 return "DW_AT_namelist_items";
3088 case DW_AT_priority:
3089 return "DW_AT_priority";
3090 case DW_AT_segment:
3091 return "DW_AT_segment";
3092 case DW_AT_specification:
3093 return "DW_AT_specification";
3094 case DW_AT_static_link:
3095 return "DW_AT_static_link";
3096 case DW_AT_type:
3097 return "DW_AT_type";
3098 case DW_AT_use_location:
3099 return "DW_AT_use_location";
3100 case DW_AT_variable_parameter:
3101 return "DW_AT_variable_parameter";
3102 case DW_AT_virtuality:
3103 return "DW_AT_virtuality";
3104 case DW_AT_vtable_elem_location:
3105 return "DW_AT_vtable_elem_location";
3107 case DW_AT_MIPS_fde:
3108 return "DW_AT_MIPS_fde";
3109 case DW_AT_MIPS_loop_begin:
3110 return "DW_AT_MIPS_loop_begin";
3111 case DW_AT_MIPS_tail_loop_begin:
3112 return "DW_AT_MIPS_tail_loop_begin";
3113 case DW_AT_MIPS_epilog_begin:
3114 return "DW_AT_MIPS_epilog_begin";
3115 case DW_AT_MIPS_loop_unroll_factor:
3116 return "DW_AT_MIPS_loop_unroll_factor";
3117 case DW_AT_MIPS_software_pipeline_depth:
3118 return "DW_AT_MIPS_software_pipeline_depth";
3119 case DW_AT_MIPS_linkage_name:
3120 return "DW_AT_MIPS_linkage_name";
3121 case DW_AT_MIPS_stride:
3122 return "DW_AT_MIPS_stride";
3123 case DW_AT_MIPS_abstract_name:
3124 return "DW_AT_MIPS_abstract_name";
3125 case DW_AT_MIPS_clone_origin:
3126 return "DW_AT_MIPS_clone_origin";
3127 case DW_AT_MIPS_has_inlines:
3128 return "DW_AT_MIPS_has_inlines";
3130 case DW_AT_sf_names:
3131 return "DW_AT_sf_names";
3132 case DW_AT_src_info:
3133 return "DW_AT_src_info";
3134 case DW_AT_mac_info:
3135 return "DW_AT_mac_info";
3136 case DW_AT_src_coords:
3137 return "DW_AT_src_coords";
3138 case DW_AT_body_begin:
3139 return "DW_AT_body_begin";
3140 case DW_AT_body_end:
3141 return "DW_AT_body_end";
3142 default:
3143 return "DW_AT_<unknown>";
3147 /* Convert a DWARF value form code into its string name. */
3149 static char *
3150 dwarf_form_name (form)
3151 register unsigned form;
3153 switch (form)
3155 case DW_FORM_addr:
3156 return "DW_FORM_addr";
3157 case DW_FORM_block2:
3158 return "DW_FORM_block2";
3159 case DW_FORM_block4:
3160 return "DW_FORM_block4";
3161 case DW_FORM_data2:
3162 return "DW_FORM_data2";
3163 case DW_FORM_data4:
3164 return "DW_FORM_data4";
3165 case DW_FORM_data8:
3166 return "DW_FORM_data8";
3167 case DW_FORM_string:
3168 return "DW_FORM_string";
3169 case DW_FORM_block:
3170 return "DW_FORM_block";
3171 case DW_FORM_block1:
3172 return "DW_FORM_block1";
3173 case DW_FORM_data1:
3174 return "DW_FORM_data1";
3175 case DW_FORM_flag:
3176 return "DW_FORM_flag";
3177 case DW_FORM_sdata:
3178 return "DW_FORM_sdata";
3179 case DW_FORM_strp:
3180 return "DW_FORM_strp";
3181 case DW_FORM_udata:
3182 return "DW_FORM_udata";
3183 case DW_FORM_ref_addr:
3184 return "DW_FORM_ref_addr";
3185 case DW_FORM_ref1:
3186 return "DW_FORM_ref1";
3187 case DW_FORM_ref2:
3188 return "DW_FORM_ref2";
3189 case DW_FORM_ref4:
3190 return "DW_FORM_ref4";
3191 case DW_FORM_ref8:
3192 return "DW_FORM_ref8";
3193 case DW_FORM_ref_udata:
3194 return "DW_FORM_ref_udata";
3195 case DW_FORM_indirect:
3196 return "DW_FORM_indirect";
3197 default:
3198 return "DW_FORM_<unknown>";
3202 /* Convert a DWARF stack opcode into its string name. */
3204 static char *
3205 dwarf_stack_op_name (op)
3206 register unsigned op;
3208 switch (op)
3210 case DW_OP_addr:
3211 return "DW_OP_addr";
3212 case DW_OP_deref:
3213 return "DW_OP_deref";
3214 case DW_OP_const1u:
3215 return "DW_OP_const1u";
3216 case DW_OP_const1s:
3217 return "DW_OP_const1s";
3218 case DW_OP_const2u:
3219 return "DW_OP_const2u";
3220 case DW_OP_const2s:
3221 return "DW_OP_const2s";
3222 case DW_OP_const4u:
3223 return "DW_OP_const4u";
3224 case DW_OP_const4s:
3225 return "DW_OP_const4s";
3226 case DW_OP_const8u:
3227 return "DW_OP_const8u";
3228 case DW_OP_const8s:
3229 return "DW_OP_const8s";
3230 case DW_OP_constu:
3231 return "DW_OP_constu";
3232 case DW_OP_consts:
3233 return "DW_OP_consts";
3234 case DW_OP_dup:
3235 return "DW_OP_dup";
3236 case DW_OP_drop:
3237 return "DW_OP_drop";
3238 case DW_OP_over:
3239 return "DW_OP_over";
3240 case DW_OP_pick:
3241 return "DW_OP_pick";
3242 case DW_OP_swap:
3243 return "DW_OP_swap";
3244 case DW_OP_rot:
3245 return "DW_OP_rot";
3246 case DW_OP_xderef:
3247 return "DW_OP_xderef";
3248 case DW_OP_abs:
3249 return "DW_OP_abs";
3250 case DW_OP_and:
3251 return "DW_OP_and";
3252 case DW_OP_div:
3253 return "DW_OP_div";
3254 case DW_OP_minus:
3255 return "DW_OP_minus";
3256 case DW_OP_mod:
3257 return "DW_OP_mod";
3258 case DW_OP_mul:
3259 return "DW_OP_mul";
3260 case DW_OP_neg:
3261 return "DW_OP_neg";
3262 case DW_OP_not:
3263 return "DW_OP_not";
3264 case DW_OP_or:
3265 return "DW_OP_or";
3266 case DW_OP_plus:
3267 return "DW_OP_plus";
3268 case DW_OP_plus_uconst:
3269 return "DW_OP_plus_uconst";
3270 case DW_OP_shl:
3271 return "DW_OP_shl";
3272 case DW_OP_shr:
3273 return "DW_OP_shr";
3274 case DW_OP_shra:
3275 return "DW_OP_shra";
3276 case DW_OP_xor:
3277 return "DW_OP_xor";
3278 case DW_OP_bra:
3279 return "DW_OP_bra";
3280 case DW_OP_eq:
3281 return "DW_OP_eq";
3282 case DW_OP_ge:
3283 return "DW_OP_ge";
3284 case DW_OP_gt:
3285 return "DW_OP_gt";
3286 case DW_OP_le:
3287 return "DW_OP_le";
3288 case DW_OP_lt:
3289 return "DW_OP_lt";
3290 case DW_OP_ne:
3291 return "DW_OP_ne";
3292 case DW_OP_skip:
3293 return "DW_OP_skip";
3294 case DW_OP_lit0:
3295 return "DW_OP_lit0";
3296 case DW_OP_lit1:
3297 return "DW_OP_lit1";
3298 case DW_OP_lit2:
3299 return "DW_OP_lit2";
3300 case DW_OP_lit3:
3301 return "DW_OP_lit3";
3302 case DW_OP_lit4:
3303 return "DW_OP_lit4";
3304 case DW_OP_lit5:
3305 return "DW_OP_lit5";
3306 case DW_OP_lit6:
3307 return "DW_OP_lit6";
3308 case DW_OP_lit7:
3309 return "DW_OP_lit7";
3310 case DW_OP_lit8:
3311 return "DW_OP_lit8";
3312 case DW_OP_lit9:
3313 return "DW_OP_lit9";
3314 case DW_OP_lit10:
3315 return "DW_OP_lit10";
3316 case DW_OP_lit11:
3317 return "DW_OP_lit11";
3318 case DW_OP_lit12:
3319 return "DW_OP_lit12";
3320 case DW_OP_lit13:
3321 return "DW_OP_lit13";
3322 case DW_OP_lit14:
3323 return "DW_OP_lit14";
3324 case DW_OP_lit15:
3325 return "DW_OP_lit15";
3326 case DW_OP_lit16:
3327 return "DW_OP_lit16";
3328 case DW_OP_lit17:
3329 return "DW_OP_lit17";
3330 case DW_OP_lit18:
3331 return "DW_OP_lit18";
3332 case DW_OP_lit19:
3333 return "DW_OP_lit19";
3334 case DW_OP_lit20:
3335 return "DW_OP_lit20";
3336 case DW_OP_lit21:
3337 return "DW_OP_lit21";
3338 case DW_OP_lit22:
3339 return "DW_OP_lit22";
3340 case DW_OP_lit23:
3341 return "DW_OP_lit23";
3342 case DW_OP_lit24:
3343 return "DW_OP_lit24";
3344 case DW_OP_lit25:
3345 return "DW_OP_lit25";
3346 case DW_OP_lit26:
3347 return "DW_OP_lit26";
3348 case DW_OP_lit27:
3349 return "DW_OP_lit27";
3350 case DW_OP_lit28:
3351 return "DW_OP_lit28";
3352 case DW_OP_lit29:
3353 return "DW_OP_lit29";
3354 case DW_OP_lit30:
3355 return "DW_OP_lit30";
3356 case DW_OP_lit31:
3357 return "DW_OP_lit31";
3358 case DW_OP_reg0:
3359 return "DW_OP_reg0";
3360 case DW_OP_reg1:
3361 return "DW_OP_reg1";
3362 case DW_OP_reg2:
3363 return "DW_OP_reg2";
3364 case DW_OP_reg3:
3365 return "DW_OP_reg3";
3366 case DW_OP_reg4:
3367 return "DW_OP_reg4";
3368 case DW_OP_reg5:
3369 return "DW_OP_reg5";
3370 case DW_OP_reg6:
3371 return "DW_OP_reg6";
3372 case DW_OP_reg7:
3373 return "DW_OP_reg7";
3374 case DW_OP_reg8:
3375 return "DW_OP_reg8";
3376 case DW_OP_reg9:
3377 return "DW_OP_reg9";
3378 case DW_OP_reg10:
3379 return "DW_OP_reg10";
3380 case DW_OP_reg11:
3381 return "DW_OP_reg11";
3382 case DW_OP_reg12:
3383 return "DW_OP_reg12";
3384 case DW_OP_reg13:
3385 return "DW_OP_reg13";
3386 case DW_OP_reg14:
3387 return "DW_OP_reg14";
3388 case DW_OP_reg15:
3389 return "DW_OP_reg15";
3390 case DW_OP_reg16:
3391 return "DW_OP_reg16";
3392 case DW_OP_reg17:
3393 return "DW_OP_reg17";
3394 case DW_OP_reg18:
3395 return "DW_OP_reg18";
3396 case DW_OP_reg19:
3397 return "DW_OP_reg19";
3398 case DW_OP_reg20:
3399 return "DW_OP_reg20";
3400 case DW_OP_reg21:
3401 return "DW_OP_reg21";
3402 case DW_OP_reg22:
3403 return "DW_OP_reg22";
3404 case DW_OP_reg23:
3405 return "DW_OP_reg23";
3406 case DW_OP_reg24:
3407 return "DW_OP_reg24";
3408 case DW_OP_reg25:
3409 return "DW_OP_reg25";
3410 case DW_OP_reg26:
3411 return "DW_OP_reg26";
3412 case DW_OP_reg27:
3413 return "DW_OP_reg27";
3414 case DW_OP_reg28:
3415 return "DW_OP_reg28";
3416 case DW_OP_reg29:
3417 return "DW_OP_reg29";
3418 case DW_OP_reg30:
3419 return "DW_OP_reg30";
3420 case DW_OP_reg31:
3421 return "DW_OP_reg31";
3422 case DW_OP_breg0:
3423 return "DW_OP_breg0";
3424 case DW_OP_breg1:
3425 return "DW_OP_breg1";
3426 case DW_OP_breg2:
3427 return "DW_OP_breg2";
3428 case DW_OP_breg3:
3429 return "DW_OP_breg3";
3430 case DW_OP_breg4:
3431 return "DW_OP_breg4";
3432 case DW_OP_breg5:
3433 return "DW_OP_breg5";
3434 case DW_OP_breg6:
3435 return "DW_OP_breg6";
3436 case DW_OP_breg7:
3437 return "DW_OP_breg7";
3438 case DW_OP_breg8:
3439 return "DW_OP_breg8";
3440 case DW_OP_breg9:
3441 return "DW_OP_breg9";
3442 case DW_OP_breg10:
3443 return "DW_OP_breg10";
3444 case DW_OP_breg11:
3445 return "DW_OP_breg11";
3446 case DW_OP_breg12:
3447 return "DW_OP_breg12";
3448 case DW_OP_breg13:
3449 return "DW_OP_breg13";
3450 case DW_OP_breg14:
3451 return "DW_OP_breg14";
3452 case DW_OP_breg15:
3453 return "DW_OP_breg15";
3454 case DW_OP_breg16:
3455 return "DW_OP_breg16";
3456 case DW_OP_breg17:
3457 return "DW_OP_breg17";
3458 case DW_OP_breg18:
3459 return "DW_OP_breg18";
3460 case DW_OP_breg19:
3461 return "DW_OP_breg19";
3462 case DW_OP_breg20:
3463 return "DW_OP_breg20";
3464 case DW_OP_breg21:
3465 return "DW_OP_breg21";
3466 case DW_OP_breg22:
3467 return "DW_OP_breg22";
3468 case DW_OP_breg23:
3469 return "DW_OP_breg23";
3470 case DW_OP_breg24:
3471 return "DW_OP_breg24";
3472 case DW_OP_breg25:
3473 return "DW_OP_breg25";
3474 case DW_OP_breg26:
3475 return "DW_OP_breg26";
3476 case DW_OP_breg27:
3477 return "DW_OP_breg27";
3478 case DW_OP_breg28:
3479 return "DW_OP_breg28";
3480 case DW_OP_breg29:
3481 return "DW_OP_breg29";
3482 case DW_OP_breg30:
3483 return "DW_OP_breg30";
3484 case DW_OP_breg31:
3485 return "DW_OP_breg31";
3486 case DW_OP_regx:
3487 return "DW_OP_regx";
3488 case DW_OP_fbreg:
3489 return "DW_OP_fbreg";
3490 case DW_OP_bregx:
3491 return "DW_OP_bregx";
3492 case DW_OP_piece:
3493 return "DW_OP_piece";
3494 case DW_OP_deref_size:
3495 return "DW_OP_deref_size";
3496 case DW_OP_xderef_size:
3497 return "DW_OP_xderef_size";
3498 case DW_OP_nop:
3499 return "DW_OP_nop";
3500 default:
3501 return "OP_<unknown>";
3505 /* Convert a DWARF type code into its string name. */
3507 #if 0
3508 static char *
3509 dwarf_type_encoding_name (enc)
3510 register unsigned enc;
3512 switch (enc)
3514 case DW_ATE_address:
3515 return "DW_ATE_address";
3516 case DW_ATE_boolean:
3517 return "DW_ATE_boolean";
3518 case DW_ATE_complex_float:
3519 return "DW_ATE_complex_float";
3520 case DW_ATE_float:
3521 return "DW_ATE_float";
3522 case DW_ATE_signed:
3523 return "DW_ATE_signed";
3524 case DW_ATE_signed_char:
3525 return "DW_ATE_signed_char";
3526 case DW_ATE_unsigned:
3527 return "DW_ATE_unsigned";
3528 case DW_ATE_unsigned_char:
3529 return "DW_ATE_unsigned_char";
3530 default:
3531 return "DW_ATE_<unknown>";
3534 #endif
3536 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
3537 instance of an inlined instance of a decl which is local to an inline
3538 function, so we have to trace all of the way back through the origin chain
3539 to find out what sort of node actually served as the original seed for the
3540 given block. */
3542 static tree
3543 decl_ultimate_origin (decl)
3544 register tree decl;
3546 #ifdef ENABLE_CHECKING
3547 if (DECL_FROM_INLINE (DECL_ORIGIN (decl)))
3548 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
3549 most distant ancestor, this should never happen. */
3550 abort ();
3551 #endif
3553 return DECL_ABSTRACT_ORIGIN (decl);
3556 /* Determine the "ultimate origin" of a block. The block may be an inlined
3557 instance of an inlined instance of a block which is local to an inline
3558 function, so we have to trace all of the way back through the origin chain
3559 to find out what sort of node actually served as the original seed for the
3560 given block. */
3562 static tree
3563 block_ultimate_origin (block)
3564 register tree block;
3566 register tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
3568 if (immediate_origin == NULL_TREE)
3569 return NULL_TREE;
3570 else
3572 register tree ret_val;
3573 register tree lookahead = immediate_origin;
3577 ret_val = lookahead;
3578 lookahead = (TREE_CODE (ret_val) == BLOCK)
3579 ? BLOCK_ABSTRACT_ORIGIN (ret_val)
3580 : NULL;
3582 while (lookahead != NULL && lookahead != ret_val);
3584 return ret_val;
3588 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
3589 of a virtual function may refer to a base class, so we check the 'this'
3590 parameter. */
3592 static tree
3593 decl_class_context (decl)
3594 tree decl;
3596 tree context = NULL_TREE;
3598 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
3599 context = DECL_CONTEXT (decl);
3600 else
3601 context = TYPE_MAIN_VARIANT
3602 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
3604 if (context && TREE_CODE_CLASS (TREE_CODE (context)) != 't')
3605 context = NULL_TREE;
3607 return context;
3610 /* Add an attribute/value pair to a DIE */
3612 static inline void
3613 add_dwarf_attr (die, attr)
3614 register dw_die_ref die;
3615 register dw_attr_ref attr;
3617 if (die != NULL && attr != NULL)
3619 if (die->die_attr == NULL)
3621 die->die_attr = attr;
3622 die->die_attr_last = attr;
3624 else
3626 die->die_attr_last->dw_attr_next = attr;
3627 die->die_attr_last = attr;
3632 /* Add a flag value attribute to a DIE. */
3634 static inline void
3635 add_AT_flag (die, attr_kind, flag)
3636 register dw_die_ref die;
3637 register enum dwarf_attribute attr_kind;
3638 register unsigned flag;
3640 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3642 attr->dw_attr_next = NULL;
3643 attr->dw_attr = attr_kind;
3644 attr->dw_attr_val.val_class = dw_val_class_flag;
3645 attr->dw_attr_val.v.val_flag = flag;
3646 add_dwarf_attr (die, attr);
3649 /* Add a signed integer attribute value to a DIE. */
3651 static inline void
3652 add_AT_int (die, attr_kind, int_val)
3653 register dw_die_ref die;
3654 register enum dwarf_attribute attr_kind;
3655 register long int int_val;
3657 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3659 attr->dw_attr_next = NULL;
3660 attr->dw_attr = attr_kind;
3661 attr->dw_attr_val.val_class = dw_val_class_const;
3662 attr->dw_attr_val.v.val_int = int_val;
3663 add_dwarf_attr (die, attr);
3666 /* Add an unsigned integer attribute value to a DIE. */
3668 static inline void
3669 add_AT_unsigned (die, attr_kind, unsigned_val)
3670 register dw_die_ref die;
3671 register enum dwarf_attribute attr_kind;
3672 register unsigned long unsigned_val;
3674 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3676 attr->dw_attr_next = NULL;
3677 attr->dw_attr = attr_kind;
3678 attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
3679 attr->dw_attr_val.v.val_unsigned = unsigned_val;
3680 add_dwarf_attr (die, attr);
3683 /* Add an unsigned double integer attribute value to a DIE. */
3685 static inline void
3686 add_AT_long_long (die, attr_kind, val_hi, val_low)
3687 register dw_die_ref die;
3688 register enum dwarf_attribute attr_kind;
3689 register unsigned long val_hi;
3690 register unsigned long val_low;
3692 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3694 attr->dw_attr_next = NULL;
3695 attr->dw_attr = attr_kind;
3696 attr->dw_attr_val.val_class = dw_val_class_long_long;
3697 attr->dw_attr_val.v.val_long_long.hi = val_hi;
3698 attr->dw_attr_val.v.val_long_long.low = val_low;
3699 add_dwarf_attr (die, attr);
3702 /* Add a floating point attribute value to a DIE and return it. */
3704 static inline void
3705 add_AT_float (die, attr_kind, length, array)
3706 register dw_die_ref die;
3707 register enum dwarf_attribute attr_kind;
3708 register unsigned length;
3709 register long *array;
3711 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3713 attr->dw_attr_next = NULL;
3714 attr->dw_attr = attr_kind;
3715 attr->dw_attr_val.val_class = dw_val_class_float;
3716 attr->dw_attr_val.v.val_float.length = length;
3717 attr->dw_attr_val.v.val_float.array = array;
3718 add_dwarf_attr (die, attr);
3721 /* Add a string attribute value to a DIE. */
3723 static inline void
3724 add_AT_string (die, attr_kind, str)
3725 register dw_die_ref die;
3726 register enum dwarf_attribute attr_kind;
3727 register char *str;
3729 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3731 attr->dw_attr_next = NULL;
3732 attr->dw_attr = attr_kind;
3733 attr->dw_attr_val.val_class = dw_val_class_str;
3734 attr->dw_attr_val.v.val_str = xstrdup (str);
3735 add_dwarf_attr (die, attr);
3738 /* Add a DIE reference attribute value to a DIE. */
3740 static inline void
3741 add_AT_die_ref (die, attr_kind, targ_die)
3742 register dw_die_ref die;
3743 register enum dwarf_attribute attr_kind;
3744 register dw_die_ref targ_die;
3746 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3748 attr->dw_attr_next = NULL;
3749 attr->dw_attr = attr_kind;
3750 attr->dw_attr_val.val_class = dw_val_class_die_ref;
3751 attr->dw_attr_val.v.val_die_ref = targ_die;
3752 add_dwarf_attr (die, attr);
3755 /* Add an FDE reference attribute value to a DIE. */
3757 static inline void
3758 add_AT_fde_ref (die, attr_kind, targ_fde)
3759 register dw_die_ref die;
3760 register enum dwarf_attribute attr_kind;
3761 register unsigned targ_fde;
3763 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3765 attr->dw_attr_next = NULL;
3766 attr->dw_attr = attr_kind;
3767 attr->dw_attr_val.val_class = dw_val_class_fde_ref;
3768 attr->dw_attr_val.v.val_fde_index = targ_fde;
3769 add_dwarf_attr (die, attr);
3772 /* Add a location description attribute value to a DIE. */
3774 static inline void
3775 add_AT_loc (die, attr_kind, loc)
3776 register dw_die_ref die;
3777 register enum dwarf_attribute attr_kind;
3778 register dw_loc_descr_ref loc;
3780 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3782 attr->dw_attr_next = NULL;
3783 attr->dw_attr = attr_kind;
3784 attr->dw_attr_val.val_class = dw_val_class_loc;
3785 attr->dw_attr_val.v.val_loc = loc;
3786 add_dwarf_attr (die, attr);
3789 /* Add an address constant attribute value to a DIE. */
3791 static inline void
3792 add_AT_addr (die, attr_kind, addr)
3793 register dw_die_ref die;
3794 register enum dwarf_attribute attr_kind;
3795 char *addr;
3797 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3799 attr->dw_attr_next = NULL;
3800 attr->dw_attr = attr_kind;
3801 attr->dw_attr_val.val_class = dw_val_class_addr;
3802 attr->dw_attr_val.v.val_addr = addr;
3803 add_dwarf_attr (die, attr);
3806 /* Add a label identifier attribute value to a DIE. */
3808 static inline void
3809 add_AT_lbl_id (die, attr_kind, lbl_id)
3810 register dw_die_ref die;
3811 register enum dwarf_attribute attr_kind;
3812 register char *lbl_id;
3814 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3816 attr->dw_attr_next = NULL;
3817 attr->dw_attr = attr_kind;
3818 attr->dw_attr_val.val_class = dw_val_class_lbl_id;
3819 attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
3820 add_dwarf_attr (die, attr);
3823 /* Add a section offset attribute value to a DIE. */
3825 static inline void
3826 add_AT_section_offset (die, attr_kind, section)
3827 register dw_die_ref die;
3828 register enum dwarf_attribute attr_kind;
3829 register char *section;
3831 register dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
3833 attr->dw_attr_next = NULL;
3834 attr->dw_attr = attr_kind;
3835 attr->dw_attr_val.val_class = dw_val_class_section_offset;
3836 attr->dw_attr_val.v.val_section = section;
3837 add_dwarf_attr (die, attr);
3841 /* Test if die refers to an external subroutine. */
3843 static inline int
3844 is_extern_subr_die (die)
3845 register dw_die_ref die;
3847 register dw_attr_ref a;
3848 register int is_subr = FALSE;
3849 register int is_extern = FALSE;
3851 if (die != NULL && die->die_tag == DW_TAG_subprogram)
3853 is_subr = TRUE;
3854 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
3856 if (a->dw_attr == DW_AT_external
3857 && a->dw_attr_val.val_class == dw_val_class_flag
3858 && a->dw_attr_val.v.val_flag != 0)
3860 is_extern = TRUE;
3861 break;
3866 return is_subr && is_extern;
3869 /* Get the attribute of type attr_kind. */
3871 static inline dw_attr_ref
3872 get_AT (die, attr_kind)
3873 register dw_die_ref die;
3874 register enum dwarf_attribute attr_kind;
3876 register dw_attr_ref a;
3877 register dw_die_ref spec = NULL;
3879 if (die != NULL)
3881 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
3883 if (a->dw_attr == attr_kind)
3884 return a;
3886 if (a->dw_attr == DW_AT_specification
3887 || a->dw_attr == DW_AT_abstract_origin)
3888 spec = a->dw_attr_val.v.val_die_ref;
3891 if (spec)
3892 return get_AT (spec, attr_kind);
3895 return NULL;
3898 /* Return the "low pc" attribute value, typically associated with
3899 a subprogram DIE. Return null if the "low pc" attribute is
3900 either not prsent, or if it cannot be represented as an
3901 assembler label identifier. */
3903 static inline char *
3904 get_AT_low_pc (die)
3905 register dw_die_ref die;
3907 register dw_attr_ref a = get_AT (die, DW_AT_low_pc);
3909 if (a && a->dw_attr_val.val_class == dw_val_class_lbl_id)
3910 return a->dw_attr_val.v.val_lbl_id;
3912 return NULL;
3915 /* Return the "high pc" attribute value, typically associated with
3916 a subprogram DIE. Return null if the "high pc" attribute is
3917 either not prsent, or if it cannot be represented as an
3918 assembler label identifier. */
3920 static inline char *
3921 get_AT_hi_pc (die)
3922 register dw_die_ref die;
3924 register dw_attr_ref a = get_AT (die, DW_AT_high_pc);
3926 if (a && a->dw_attr_val.val_class == dw_val_class_lbl_id)
3927 return a->dw_attr_val.v.val_lbl_id;
3929 return NULL;
3932 /* Return the value of the string attribute designated by ATTR_KIND, or
3933 NULL if it is not present. */
3935 static inline char *
3936 get_AT_string (die, attr_kind)
3937 register dw_die_ref die;
3938 register enum dwarf_attribute attr_kind;
3940 register dw_attr_ref a = get_AT (die, attr_kind);
3942 if (a && a->dw_attr_val.val_class == dw_val_class_str)
3943 return a->dw_attr_val.v.val_str;
3945 return NULL;
3948 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
3949 if it is not present. */
3951 static inline int
3952 get_AT_flag (die, attr_kind)
3953 register dw_die_ref die;
3954 register enum dwarf_attribute attr_kind;
3956 register dw_attr_ref a = get_AT (die, attr_kind);
3958 if (a && a->dw_attr_val.val_class == dw_val_class_flag)
3959 return a->dw_attr_val.v.val_flag;
3961 return -1;
3964 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
3965 if it is not present. */
3967 static inline unsigned
3968 get_AT_unsigned (die, attr_kind)
3969 register dw_die_ref die;
3970 register enum dwarf_attribute attr_kind;
3972 register dw_attr_ref a = get_AT (die, attr_kind);
3974 if (a && a->dw_attr_val.val_class == dw_val_class_unsigned_const)
3975 return a->dw_attr_val.v.val_unsigned;
3977 return 0;
3980 static inline int
3981 is_c_family ()
3983 register unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
3985 return (lang == DW_LANG_C || lang == DW_LANG_C89
3986 || lang == DW_LANG_C_plus_plus);
3989 static inline int
3990 is_fortran ()
3992 register unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
3994 return (lang == DW_LANG_Fortran77 || lang == DW_LANG_Fortran90);
3997 /* Remove the specified attribute if present. */
3999 static inline void
4000 remove_AT (die, attr_kind)
4001 register dw_die_ref die;
4002 register enum dwarf_attribute attr_kind;
4004 register dw_attr_ref a;
4005 register dw_attr_ref removed = NULL;;
4007 if (die != NULL)
4009 if (die->die_attr->dw_attr == attr_kind)
4011 removed = die->die_attr;
4012 if (die->die_attr_last == die->die_attr)
4013 die->die_attr_last = NULL;
4015 die->die_attr = die->die_attr->dw_attr_next;
4018 else
4019 for (a = die->die_attr; a->dw_attr_next != NULL;
4020 a = a->dw_attr_next)
4021 if (a->dw_attr_next->dw_attr == attr_kind)
4023 removed = a->dw_attr_next;
4024 if (die->die_attr_last == a->dw_attr_next)
4025 die->die_attr_last = a;
4027 a->dw_attr_next = a->dw_attr_next->dw_attr_next;
4028 break;
4031 if (removed != 0)
4032 free (removed);
4036 /* Discard the children of this DIE. */
4038 static inline void
4039 remove_children (die)
4040 register dw_die_ref die;
4042 register dw_die_ref child_die = die->die_child;
4044 die->die_child = NULL;
4045 die->die_child_last = NULL;
4047 while (child_die != NULL)
4049 register dw_die_ref tmp_die = child_die;
4050 register dw_attr_ref a;
4052 child_die = child_die->die_sib;
4054 for (a = tmp_die->die_attr; a != NULL; )
4056 register dw_attr_ref tmp_a = a;
4058 a = a->dw_attr_next;
4059 free (tmp_a);
4062 free (tmp_die);
4066 /* Add a child DIE below its parent. */
4068 static inline void
4069 add_child_die (die, child_die)
4070 register dw_die_ref die;
4071 register dw_die_ref child_die;
4073 if (die != NULL && child_die != NULL)
4075 if (die == child_die)
4076 abort ();
4077 child_die->die_parent = die;
4078 child_die->die_sib = NULL;
4080 if (die->die_child == NULL)
4082 die->die_child = child_die;
4083 die->die_child_last = child_die;
4085 else
4087 die->die_child_last->die_sib = child_die;
4088 die->die_child_last = child_die;
4093 /* Return a pointer to a newly created DIE node. */
4095 static inline dw_die_ref
4096 new_die (tag_value, parent_die)
4097 register enum dwarf_tag tag_value;
4098 register dw_die_ref parent_die;
4100 register dw_die_ref die = (dw_die_ref) xmalloc (sizeof (die_node));
4102 die->die_tag = tag_value;
4103 die->die_abbrev = 0;
4104 die->die_offset = 0;
4105 die->die_child = NULL;
4106 die->die_parent = NULL;
4107 die->die_sib = NULL;
4108 die->die_child_last = NULL;
4109 die->die_attr = NULL;
4110 die->die_attr_last = NULL;
4112 if (parent_die != NULL)
4113 add_child_die (parent_die, die);
4114 else
4116 limbo_die_node *limbo_node;
4118 limbo_node = (limbo_die_node *) xmalloc (sizeof (limbo_die_node));
4119 limbo_node->die = die;
4120 limbo_node->next = limbo_die_list;
4121 limbo_die_list = limbo_node;
4124 return die;
4127 /* Return the DIE associated with the given type specifier. */
4129 static inline dw_die_ref
4130 lookup_type_die (type)
4131 register tree type;
4133 return (dw_die_ref) TYPE_SYMTAB_POINTER (type);
4136 /* Equate a DIE to a given type specifier. */
4138 static void
4139 equate_type_number_to_die (type, type_die)
4140 register tree type;
4141 register dw_die_ref type_die;
4143 TYPE_SYMTAB_POINTER (type) = (char *) type_die;
4146 /* Return the DIE associated with a given declaration. */
4148 static inline dw_die_ref
4149 lookup_decl_die (decl)
4150 register tree decl;
4152 register unsigned decl_id = DECL_UID (decl);
4154 return (decl_id < decl_die_table_in_use
4155 ? decl_die_table[decl_id] : NULL);
4158 /* Equate a DIE to a particular declaration. */
4160 static void
4161 equate_decl_number_to_die (decl, decl_die)
4162 register tree decl;
4163 register dw_die_ref decl_die;
4165 register unsigned decl_id = DECL_UID (decl);
4166 register unsigned num_allocated;
4168 if (decl_id >= decl_die_table_allocated)
4170 num_allocated
4171 = ((decl_id + 1 + DECL_DIE_TABLE_INCREMENT - 1)
4172 / DECL_DIE_TABLE_INCREMENT)
4173 * DECL_DIE_TABLE_INCREMENT;
4175 decl_die_table
4176 = (dw_die_ref *) xrealloc (decl_die_table,
4177 sizeof (dw_die_ref) * num_allocated);
4179 bzero ((char *) &decl_die_table[decl_die_table_allocated],
4180 (num_allocated - decl_die_table_allocated) * sizeof (dw_die_ref));
4181 decl_die_table_allocated = num_allocated;
4184 if (decl_id >= decl_die_table_in_use)
4185 decl_die_table_in_use = (decl_id + 1);
4187 decl_die_table[decl_id] = decl_die;
4190 /* Return a pointer to a newly allocated location description. Location
4191 descriptions are simple expression terms that can be strung
4192 together to form more complicated location (address) descriptions. */
4194 static inline dw_loc_descr_ref
4195 new_loc_descr (op, oprnd1, oprnd2)
4196 register enum dwarf_location_atom op;
4197 register unsigned long oprnd1;
4198 register unsigned long oprnd2;
4200 register dw_loc_descr_ref descr
4201 = (dw_loc_descr_ref) xmalloc (sizeof (dw_loc_descr_node));
4203 descr->dw_loc_next = NULL;
4204 descr->dw_loc_opc = op;
4205 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
4206 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
4207 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
4208 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
4210 return descr;
4213 /* Add a location description term to a location description expression. */
4215 static inline void
4216 add_loc_descr (list_head, descr)
4217 register dw_loc_descr_ref *list_head;
4218 register dw_loc_descr_ref descr;
4220 register dw_loc_descr_ref *d;
4222 /* Find the end of the chain. */
4223 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
4226 *d = descr;
4229 /* Keep track of the number of spaces used to indent the
4230 output of the debugging routines that print the structure of
4231 the DIE internal representation. */
4232 static int print_indent;
4234 /* Indent the line the number of spaces given by print_indent. */
4236 static inline void
4237 print_spaces (outfile)
4238 FILE *outfile;
4240 fprintf (outfile, "%*s", print_indent, "");
4243 /* Print the information associated with a given DIE, and its children.
4244 This routine is a debugging aid only. */
4246 static void
4247 print_die (die, outfile)
4248 dw_die_ref die;
4249 FILE *outfile;
4251 register dw_attr_ref a;
4252 register dw_die_ref c;
4254 print_spaces (outfile);
4255 fprintf (outfile, "DIE %4lu: %s\n",
4256 die->die_offset, dwarf_tag_name (die->die_tag));
4257 print_spaces (outfile);
4258 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
4259 fprintf (outfile, " offset: %lu\n", die->die_offset);
4261 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
4263 print_spaces (outfile);
4264 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
4266 switch (a->dw_attr_val.val_class)
4268 case dw_val_class_addr:
4269 fprintf (outfile, "address");
4270 break;
4271 case dw_val_class_loc:
4272 fprintf (outfile, "location descriptor");
4273 break;
4274 case dw_val_class_const:
4275 fprintf (outfile, "%ld", a->dw_attr_val.v.val_int);
4276 break;
4277 case dw_val_class_unsigned_const:
4278 fprintf (outfile, "%lu", a->dw_attr_val.v.val_unsigned);
4279 break;
4280 case dw_val_class_long_long:
4281 fprintf (outfile, "constant (%lu,%lu)",
4282 a->dw_attr_val.v.val_long_long.hi,
4283 a->dw_attr_val.v.val_long_long.low);
4284 break;
4285 case dw_val_class_float:
4286 fprintf (outfile, "floating-point constant");
4287 break;
4288 case dw_val_class_flag:
4289 fprintf (outfile, "%u", a->dw_attr_val.v.val_flag);
4290 break;
4291 case dw_val_class_die_ref:
4292 if (a->dw_attr_val.v.val_die_ref != NULL)
4293 fprintf (outfile, "die -> %lu",
4294 a->dw_attr_val.v.val_die_ref->die_offset);
4295 else
4296 fprintf (outfile, "die -> <null>");
4297 break;
4298 case dw_val_class_lbl_id:
4299 fprintf (outfile, "label: %s", a->dw_attr_val.v.val_lbl_id);
4300 break;
4301 case dw_val_class_section_offset:
4302 fprintf (outfile, "section: %s", a->dw_attr_val.v.val_section);
4303 break;
4304 case dw_val_class_str:
4305 if (a->dw_attr_val.v.val_str != NULL)
4306 fprintf (outfile, "\"%s\"", a->dw_attr_val.v.val_str);
4307 else
4308 fprintf (outfile, "<null>");
4309 break;
4310 default:
4311 break;
4314 fprintf (outfile, "\n");
4317 if (die->die_child != NULL)
4319 print_indent += 4;
4320 for (c = die->die_child; c != NULL; c = c->die_sib)
4321 print_die (c, outfile);
4323 print_indent -= 4;
4327 /* Print the contents of the source code line number correspondence table.
4328 This routine is a debugging aid only. */
4330 static void
4331 print_dwarf_line_table (outfile)
4332 FILE *outfile;
4334 register unsigned i;
4335 register dw_line_info_ref line_info;
4337 fprintf (outfile, "\n\nDWARF source line information\n");
4338 for (i = 1; i < line_info_table_in_use; ++i)
4340 line_info = &line_info_table[i];
4341 fprintf (outfile, "%5d: ", i);
4342 fprintf (outfile, "%-20s", file_table[line_info->dw_file_num]);
4343 fprintf (outfile, "%6ld", line_info->dw_line_num);
4344 fprintf (outfile, "\n");
4347 fprintf (outfile, "\n\n");
4350 /* Print the information collected for a given DIE. */
4352 void
4353 debug_dwarf_die (die)
4354 dw_die_ref die;
4356 print_die (die, stderr);
4359 /* Print all DWARF information collected for the compilation unit.
4360 This routine is a debugging aid only. */
4362 void
4363 debug_dwarf ()
4365 print_indent = 0;
4366 print_die (comp_unit_die, stderr);
4367 print_dwarf_line_table (stderr);
4370 /* Traverse the DIE, and add a sibling attribute if it may have the
4371 effect of speeding up access to siblings. To save some space,
4372 avoid generating sibling attributes for DIE's without children. */
4374 static void
4375 add_sibling_attributes(die)
4376 register dw_die_ref die;
4378 register dw_die_ref c;
4379 register dw_attr_ref attr;
4380 if (die != comp_unit_die && die->die_child != NULL)
4382 attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4383 attr->dw_attr_next = NULL;
4384 attr->dw_attr = DW_AT_sibling;
4385 attr->dw_attr_val.val_class = dw_val_class_die_ref;
4386 attr->dw_attr_val.v.val_die_ref = die->die_sib;
4388 /* Add the sibling link to the front of the attribute list. */
4389 attr->dw_attr_next = die->die_attr;
4390 if (die->die_attr == NULL)
4391 die->die_attr_last = attr;
4393 die->die_attr = attr;
4396 for (c = die->die_child; c != NULL; c = c->die_sib)
4397 add_sibling_attributes (c);
4400 /* The format of each DIE (and its attribute value pairs)
4401 is encoded in an abbreviation table. This routine builds the
4402 abbreviation table and assigns a unique abbreviation id for
4403 each abbreviation entry. The children of each die are visited
4404 recursively. */
4406 static void
4407 build_abbrev_table (die)
4408 register dw_die_ref die;
4410 register unsigned long abbrev_id;
4411 register unsigned long n_alloc;
4412 register dw_die_ref c;
4413 register dw_attr_ref d_attr, a_attr;
4414 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
4416 register dw_die_ref abbrev = abbrev_die_table[abbrev_id];
4418 if (abbrev->die_tag == die->die_tag)
4420 if ((abbrev->die_child != NULL) == (die->die_child != NULL))
4422 a_attr = abbrev->die_attr;
4423 d_attr = die->die_attr;
4425 while (a_attr != NULL && d_attr != NULL)
4427 if ((a_attr->dw_attr != d_attr->dw_attr)
4428 || (value_format (&a_attr->dw_attr_val)
4429 != value_format (&d_attr->dw_attr_val)))
4430 break;
4432 a_attr = a_attr->dw_attr_next;
4433 d_attr = d_attr->dw_attr_next;
4436 if (a_attr == NULL && d_attr == NULL)
4437 break;
4442 if (abbrev_id >= abbrev_die_table_in_use)
4444 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
4446 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
4447 abbrev_die_table
4448 = (dw_die_ref *) xrealloc (abbrev_die_table,
4449 sizeof (dw_die_ref) * n_alloc);
4451 bzero ((char *) &abbrev_die_table[abbrev_die_table_allocated],
4452 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
4453 abbrev_die_table_allocated = n_alloc;
4456 ++abbrev_die_table_in_use;
4457 abbrev_die_table[abbrev_id] = die;
4460 die->die_abbrev = abbrev_id;
4461 for (c = die->die_child; c != NULL; c = c->die_sib)
4462 build_abbrev_table (c);
4465 /* Return the size of a string, including the null byte.
4467 This used to treat backslashes as escapes, and hence they were not included
4468 in the count. However, that conflicts with what ASM_OUTPUT_ASCII does,
4469 which treats a backslash as a backslash, escaping it if necessary, and hence
4470 we must include them in the count. */
4472 static unsigned long
4473 size_of_string (str)
4474 register char *str;
4476 return strlen (str) + 1;
4479 /* Return the size of a location descriptor. */
4481 static unsigned long
4482 size_of_loc_descr (loc)
4483 register dw_loc_descr_ref loc;
4485 register unsigned long size = 1;
4487 switch (loc->dw_loc_opc)
4489 case DW_OP_addr:
4490 size += PTR_SIZE;
4491 break;
4492 case DW_OP_const1u:
4493 case DW_OP_const1s:
4494 size += 1;
4495 break;
4496 case DW_OP_const2u:
4497 case DW_OP_const2s:
4498 size += 2;
4499 break;
4500 case DW_OP_const4u:
4501 case DW_OP_const4s:
4502 size += 4;
4503 break;
4504 case DW_OP_const8u:
4505 case DW_OP_const8s:
4506 size += 8;
4507 break;
4508 case DW_OP_constu:
4509 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4510 break;
4511 case DW_OP_consts:
4512 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4513 break;
4514 case DW_OP_pick:
4515 size += 1;
4516 break;
4517 case DW_OP_plus_uconst:
4518 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4519 break;
4520 case DW_OP_skip:
4521 case DW_OP_bra:
4522 size += 2;
4523 break;
4524 case DW_OP_breg0:
4525 case DW_OP_breg1:
4526 case DW_OP_breg2:
4527 case DW_OP_breg3:
4528 case DW_OP_breg4:
4529 case DW_OP_breg5:
4530 case DW_OP_breg6:
4531 case DW_OP_breg7:
4532 case DW_OP_breg8:
4533 case DW_OP_breg9:
4534 case DW_OP_breg10:
4535 case DW_OP_breg11:
4536 case DW_OP_breg12:
4537 case DW_OP_breg13:
4538 case DW_OP_breg14:
4539 case DW_OP_breg15:
4540 case DW_OP_breg16:
4541 case DW_OP_breg17:
4542 case DW_OP_breg18:
4543 case DW_OP_breg19:
4544 case DW_OP_breg20:
4545 case DW_OP_breg21:
4546 case DW_OP_breg22:
4547 case DW_OP_breg23:
4548 case DW_OP_breg24:
4549 case DW_OP_breg25:
4550 case DW_OP_breg26:
4551 case DW_OP_breg27:
4552 case DW_OP_breg28:
4553 case DW_OP_breg29:
4554 case DW_OP_breg30:
4555 case DW_OP_breg31:
4556 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4557 break;
4558 case DW_OP_regx:
4559 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4560 break;
4561 case DW_OP_fbreg:
4562 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4563 break;
4564 case DW_OP_bregx:
4565 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4566 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
4567 break;
4568 case DW_OP_piece:
4569 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4570 break;
4571 case DW_OP_deref_size:
4572 case DW_OP_xderef_size:
4573 size += 1;
4574 break;
4575 default:
4576 break;
4579 return size;
4582 /* Return the size of a series of location descriptors. */
4584 static unsigned long
4585 size_of_locs (loc)
4586 register dw_loc_descr_ref loc;
4588 register unsigned long size = 0;
4590 for (; loc != NULL; loc = loc->dw_loc_next)
4591 size += size_of_loc_descr (loc);
4593 return size;
4596 /* Return the power-of-two number of bytes necessary to represent VALUE. */
4598 static int
4599 constant_size (value)
4600 long unsigned value;
4602 int log;
4604 if (value == 0)
4605 log = 0;
4606 else
4607 log = floor_log2 (value);
4609 log = log / 8;
4610 log = 1 << (floor_log2 (log) + 1);
4612 return log;
4615 /* Return the size of a DIE, as it is represented in the
4616 .debug_info section. */
4618 static unsigned long
4619 size_of_die (die)
4620 register dw_die_ref die;
4622 register unsigned long size = 0;
4623 register dw_attr_ref a;
4625 size += size_of_uleb128 (die->die_abbrev);
4626 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
4628 switch (a->dw_attr_val.val_class)
4630 case dw_val_class_addr:
4631 size += PTR_SIZE;
4632 break;
4633 case dw_val_class_loc:
4635 register unsigned long lsize
4636 = size_of_locs (a->dw_attr_val.v.val_loc);
4638 /* Block length. */
4639 size += constant_size (lsize);
4640 size += lsize;
4642 break;
4643 case dw_val_class_const:
4644 size += 4;
4645 break;
4646 case dw_val_class_unsigned_const:
4647 size += constant_size (a->dw_attr_val.v.val_unsigned);
4648 break;
4649 case dw_val_class_long_long:
4650 size += 1 + 8; /* block */
4651 break;
4652 case dw_val_class_float:
4653 size += 1 + a->dw_attr_val.v.val_float.length * 4; /* block */
4654 break;
4655 case dw_val_class_flag:
4656 size += 1;
4657 break;
4658 case dw_val_class_die_ref:
4659 size += DWARF_OFFSET_SIZE;
4660 break;
4661 case dw_val_class_fde_ref:
4662 size += DWARF_OFFSET_SIZE;
4663 break;
4664 case dw_val_class_lbl_id:
4665 size += PTR_SIZE;
4666 break;
4667 case dw_val_class_section_offset:
4668 size += DWARF_OFFSET_SIZE;
4669 break;
4670 case dw_val_class_str:
4671 size += size_of_string (a->dw_attr_val.v.val_str);
4672 break;
4673 default:
4674 abort ();
4678 return size;
4681 /* Size the debugging information associated with a given DIE.
4682 Visits the DIE's children recursively. Updates the global
4683 variable next_die_offset, on each time through. Uses the
4684 current value of next_die_offset to update the die_offset
4685 field in each DIE. */
4687 static void
4688 calc_die_sizes (die)
4689 dw_die_ref die;
4691 register dw_die_ref c;
4692 die->die_offset = next_die_offset;
4693 next_die_offset += size_of_die (die);
4695 for (c = die->die_child; c != NULL; c = c->die_sib)
4696 calc_die_sizes (c);
4698 if (die->die_child != NULL)
4699 /* Count the null byte used to terminate sibling lists. */
4700 next_die_offset += 1;
4703 /* Return the size of the line information prolog generated for the
4704 compilation unit. */
4706 static unsigned long
4707 size_of_line_prolog ()
4709 register unsigned long size;
4710 register unsigned long ft_index;
4712 size = DWARF_LINE_PROLOG_HEADER_SIZE;
4714 /* Count the size of the table giving number of args for each
4715 standard opcode. */
4716 size += DWARF_LINE_OPCODE_BASE - 1;
4718 /* Include directory table is empty (at present). Count only the
4719 null byte used to terminate the table. */
4720 size += 1;
4722 for (ft_index = 1; ft_index < file_table_in_use; ++ft_index)
4724 /* File name entry. */
4725 size += size_of_string (file_table[ft_index]);
4727 /* Include directory index. */
4728 size += size_of_uleb128 (0);
4730 /* Modification time. */
4731 size += size_of_uleb128 (0);
4733 /* File length in bytes. */
4734 size += size_of_uleb128 (0);
4737 /* Count the file table terminator. */
4738 size += 1;
4739 return size;
4742 /* Return the size of the line information generated for this
4743 compilation unit. */
4745 static unsigned long
4746 size_of_line_info ()
4748 register unsigned long size;
4749 register unsigned long lt_index;
4750 register unsigned long current_line;
4751 register long line_offset;
4752 register long line_delta;
4753 register unsigned long current_file;
4754 register unsigned long function;
4755 unsigned long size_of_set_address;
4757 /* Size of a DW_LNE_set_address instruction. */
4758 size_of_set_address = 1 + size_of_uleb128 (1 + PTR_SIZE) + 1 + PTR_SIZE;
4760 /* Version number. */
4761 size = 2;
4763 /* Prolog length specifier. */
4764 size += DWARF_OFFSET_SIZE;
4766 /* Prolog. */
4767 size += size_of_line_prolog ();
4769 /* Set address register instruction. */
4770 size += size_of_set_address;
4772 current_file = 1;
4773 current_line = 1;
4774 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
4776 register dw_line_info_ref line_info;
4778 /* Advance pc instruction. */
4779 /* ??? See the DW_LNS_advance_pc comment in output_line_info. */
4780 if (0)
4781 size += 1 + 2;
4782 else
4783 size += size_of_set_address;
4785 line_info = &line_info_table[lt_index];
4786 if (line_info->dw_file_num != current_file)
4788 /* Set file number instruction. */
4789 size += 1;
4790 current_file = line_info->dw_file_num;
4791 size += size_of_uleb128 (current_file);
4794 if (line_info->dw_line_num != current_line)
4796 line_offset = line_info->dw_line_num - current_line;
4797 line_delta = line_offset - DWARF_LINE_BASE;
4798 current_line = line_info->dw_line_num;
4799 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
4800 /* 1-byte special line number instruction. */
4801 size += 1;
4802 else
4804 /* Advance line instruction. */
4805 size += 1;
4806 size += size_of_sleb128 (line_offset);
4807 /* Generate line entry instruction. */
4808 size += 1;
4813 /* Advance pc instruction. */
4814 if (0)
4815 size += 1 + 2;
4816 else
4817 size += size_of_set_address;
4819 /* End of line number info. marker. */
4820 size += 1 + size_of_uleb128 (1) + 1;
4822 function = 0;
4823 current_file = 1;
4824 current_line = 1;
4825 for (lt_index = 0; lt_index < separate_line_info_table_in_use; )
4827 register dw_separate_line_info_ref line_info
4828 = &separate_line_info_table[lt_index];
4829 if (function != line_info->function)
4831 function = line_info->function;
4832 /* Set address register instruction. */
4833 size += size_of_set_address;
4835 else
4837 /* Advance pc instruction. */
4838 if (0)
4839 size += 1 + 2;
4840 else
4841 size += size_of_set_address;
4844 if (line_info->dw_file_num != current_file)
4846 /* Set file number instruction. */
4847 size += 1;
4848 current_file = line_info->dw_file_num;
4849 size += size_of_uleb128 (current_file);
4852 if (line_info->dw_line_num != current_line)
4854 line_offset = line_info->dw_line_num - current_line;
4855 line_delta = line_offset - DWARF_LINE_BASE;
4856 current_line = line_info->dw_line_num;
4857 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
4858 /* 1-byte special line number instruction. */
4859 size += 1;
4860 else
4862 /* Advance line instruction. */
4863 size += 1;
4864 size += size_of_sleb128 (line_offset);
4866 /* Generate line entry instruction. */
4867 size += 1;
4871 ++lt_index;
4873 /* If we're done with a function, end its sequence. */
4874 if (lt_index == separate_line_info_table_in_use
4875 || separate_line_info_table[lt_index].function != function)
4877 current_file = 1;
4878 current_line = 1;
4880 /* Advance pc instruction. */
4881 if (0)
4882 size += 1 + 2;
4883 else
4884 size += size_of_set_address;
4886 /* End of line number info. marker. */
4887 size += 1 + size_of_uleb128 (1) + 1;
4891 return size;
4894 /* Return the size of the .debug_pubnames table generated for the
4895 compilation unit. */
4897 static unsigned long
4898 size_of_pubnames ()
4900 register unsigned long size;
4901 register unsigned i;
4903 size = DWARF_PUBNAMES_HEADER_SIZE;
4904 for (i = 0; i < pubname_table_in_use; ++i)
4906 register pubname_ref p = &pubname_table[i];
4907 size += DWARF_OFFSET_SIZE + size_of_string (p->name);
4910 size += DWARF_OFFSET_SIZE;
4911 return size;
4914 /* Return the size of the information in the .debug_aranges section. */
4916 static unsigned long
4917 size_of_aranges ()
4919 register unsigned long size;
4921 size = DWARF_ARANGES_HEADER_SIZE;
4923 /* Count the address/length pair for this compilation unit. */
4924 size += 2 * PTR_SIZE;
4925 size += 2 * PTR_SIZE * arange_table_in_use;
4927 /* Count the two zero words used to terminated the address range table. */
4928 size += 2 * PTR_SIZE;
4929 return size;
4932 /* Select the encoding of an attribute value. */
4934 static enum dwarf_form
4935 value_format (v)
4936 dw_val_ref v;
4938 switch (v->val_class)
4940 case dw_val_class_addr:
4941 return DW_FORM_addr;
4942 case dw_val_class_loc:
4943 switch (constant_size (size_of_locs (v->v.val_loc)))
4945 case 1:
4946 return DW_FORM_block1;
4947 case 2:
4948 return DW_FORM_block2;
4949 default:
4950 abort ();
4952 case dw_val_class_const:
4953 return DW_FORM_data4;
4954 case dw_val_class_unsigned_const:
4955 switch (constant_size (v->v.val_unsigned))
4957 case 1:
4958 return DW_FORM_data1;
4959 case 2:
4960 return DW_FORM_data2;
4961 case 4:
4962 return DW_FORM_data4;
4963 case 8:
4964 return DW_FORM_data8;
4965 default:
4966 abort ();
4968 case dw_val_class_long_long:
4969 return DW_FORM_block1;
4970 case dw_val_class_float:
4971 return DW_FORM_block1;
4972 case dw_val_class_flag:
4973 return DW_FORM_flag;
4974 case dw_val_class_die_ref:
4975 return DW_FORM_ref;
4976 case dw_val_class_fde_ref:
4977 return DW_FORM_data;
4978 case dw_val_class_lbl_id:
4979 return DW_FORM_addr;
4980 case dw_val_class_section_offset:
4981 return DW_FORM_data;
4982 case dw_val_class_str:
4983 return DW_FORM_string;
4984 default:
4985 abort ();
4989 /* Output the encoding of an attribute value. */
4991 static void
4992 output_value_format (v)
4993 dw_val_ref v;
4995 enum dwarf_form form = value_format (v);
4997 output_uleb128 (form);
4998 if (flag_debug_asm)
4999 fprintf (asm_out_file, " (%s)", dwarf_form_name (form));
5001 fputc ('\n', asm_out_file);
5004 /* Output the .debug_abbrev section which defines the DIE abbreviation
5005 table. */
5007 static void
5008 output_abbrev_section ()
5010 unsigned long abbrev_id;
5012 dw_attr_ref a_attr;
5013 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
5015 register dw_die_ref abbrev = abbrev_die_table[abbrev_id];
5017 output_uleb128 (abbrev_id);
5018 if (flag_debug_asm)
5019 fprintf (asm_out_file, " (abbrev code)");
5021 fputc ('\n', asm_out_file);
5022 output_uleb128 (abbrev->die_tag);
5023 if (flag_debug_asm)
5024 fprintf (asm_out_file, " (TAG: %s)",
5025 dwarf_tag_name (abbrev->die_tag));
5027 fputc ('\n', asm_out_file);
5028 fprintf (asm_out_file, "\t%s\t0x%x", ASM_BYTE_OP,
5029 abbrev->die_child != NULL ? DW_children_yes : DW_children_no);
5031 if (flag_debug_asm)
5032 fprintf (asm_out_file, "\t%s %s",
5033 ASM_COMMENT_START,
5034 (abbrev->die_child != NULL
5035 ? "DW_children_yes" : "DW_children_no"));
5037 fputc ('\n', asm_out_file);
5039 for (a_attr = abbrev->die_attr; a_attr != NULL;
5040 a_attr = a_attr->dw_attr_next)
5042 output_uleb128 (a_attr->dw_attr);
5043 if (flag_debug_asm)
5044 fprintf (asm_out_file, " (%s)",
5045 dwarf_attr_name (a_attr->dw_attr));
5047 fputc ('\n', asm_out_file);
5048 output_value_format (&a_attr->dw_attr_val);
5051 fprintf (asm_out_file, "\t%s\t0,0\n", ASM_BYTE_OP);
5055 /* Output location description stack opcode's operands (if any). */
5057 static void
5058 output_loc_operands (loc)
5059 register dw_loc_descr_ref loc;
5061 register dw_val_ref val1 = &loc->dw_loc_oprnd1;
5062 register dw_val_ref val2 = &loc->dw_loc_oprnd2;
5064 switch (loc->dw_loc_opc)
5066 case DW_OP_addr:
5067 ASM_OUTPUT_DWARF_ADDR_CONST (asm_out_file, val1->v.val_addr);
5068 fputc ('\n', asm_out_file);
5069 break;
5070 case DW_OP_const1u:
5071 case DW_OP_const1s:
5072 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, val1->v.val_flag);
5073 fputc ('\n', asm_out_file);
5074 break;
5075 case DW_OP_const2u:
5076 case DW_OP_const2s:
5077 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, val1->v.val_int);
5078 fputc ('\n', asm_out_file);
5079 break;
5080 case DW_OP_const4u:
5081 case DW_OP_const4s:
5082 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, val1->v.val_int);
5083 fputc ('\n', asm_out_file);
5084 break;
5085 case DW_OP_const8u:
5086 case DW_OP_const8s:
5087 abort ();
5088 fputc ('\n', asm_out_file);
5089 break;
5090 case DW_OP_constu:
5091 output_uleb128 (val1->v.val_unsigned);
5092 fputc ('\n', asm_out_file);
5093 break;
5094 case DW_OP_consts:
5095 output_sleb128 (val1->v.val_int);
5096 fputc ('\n', asm_out_file);
5097 break;
5098 case DW_OP_pick:
5099 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, val1->v.val_int);
5100 fputc ('\n', asm_out_file);
5101 break;
5102 case DW_OP_plus_uconst:
5103 output_uleb128 (val1->v.val_unsigned);
5104 fputc ('\n', asm_out_file);
5105 break;
5106 case DW_OP_skip:
5107 case DW_OP_bra:
5108 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, val1->v.val_int);
5109 fputc ('\n', asm_out_file);
5110 break;
5111 case DW_OP_breg0:
5112 case DW_OP_breg1:
5113 case DW_OP_breg2:
5114 case DW_OP_breg3:
5115 case DW_OP_breg4:
5116 case DW_OP_breg5:
5117 case DW_OP_breg6:
5118 case DW_OP_breg7:
5119 case DW_OP_breg8:
5120 case DW_OP_breg9:
5121 case DW_OP_breg10:
5122 case DW_OP_breg11:
5123 case DW_OP_breg12:
5124 case DW_OP_breg13:
5125 case DW_OP_breg14:
5126 case DW_OP_breg15:
5127 case DW_OP_breg16:
5128 case DW_OP_breg17:
5129 case DW_OP_breg18:
5130 case DW_OP_breg19:
5131 case DW_OP_breg20:
5132 case DW_OP_breg21:
5133 case DW_OP_breg22:
5134 case DW_OP_breg23:
5135 case DW_OP_breg24:
5136 case DW_OP_breg25:
5137 case DW_OP_breg26:
5138 case DW_OP_breg27:
5139 case DW_OP_breg28:
5140 case DW_OP_breg29:
5141 case DW_OP_breg30:
5142 case DW_OP_breg31:
5143 output_sleb128 (val1->v.val_int);
5144 fputc ('\n', asm_out_file);
5145 break;
5146 case DW_OP_regx:
5147 output_uleb128 (val1->v.val_unsigned);
5148 fputc ('\n', asm_out_file);
5149 break;
5150 case DW_OP_fbreg:
5151 output_sleb128 (val1->v.val_int);
5152 fputc ('\n', asm_out_file);
5153 break;
5154 case DW_OP_bregx:
5155 output_uleb128 (val1->v.val_unsigned);
5156 fputc ('\n', asm_out_file);
5157 output_sleb128 (val2->v.val_int);
5158 fputc ('\n', asm_out_file);
5159 break;
5160 case DW_OP_piece:
5161 output_uleb128 (val1->v.val_unsigned);
5162 fputc ('\n', asm_out_file);
5163 break;
5164 case DW_OP_deref_size:
5165 case DW_OP_xderef_size:
5166 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, val1->v.val_flag);
5167 fputc ('\n', asm_out_file);
5168 break;
5169 default:
5170 break;
5174 /* Compute the offset of a sibling. */
5176 static unsigned long
5177 sibling_offset (die)
5178 dw_die_ref die;
5180 unsigned long offset;
5182 if (die->die_child_last == NULL)
5183 offset = die->die_offset + size_of_die (die);
5184 else
5185 offset = sibling_offset (die->die_child_last) + 1;
5187 return offset;
5190 /* Output the DIE and its attributes. Called recursively to generate
5191 the definitions of each child DIE. */
5193 static void
5194 output_die (die)
5195 register dw_die_ref die;
5197 register dw_attr_ref a;
5198 register dw_die_ref c;
5199 register unsigned long ref_offset;
5200 register unsigned long size;
5201 register dw_loc_descr_ref loc;
5202 register int i;
5204 output_uleb128 (die->die_abbrev);
5205 if (flag_debug_asm)
5206 fprintf (asm_out_file, " (DIE (0x%lx) %s)",
5207 die->die_offset, dwarf_tag_name (die->die_tag));
5209 fputc ('\n', asm_out_file);
5211 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5213 switch (a->dw_attr_val.val_class)
5215 case dw_val_class_addr:
5216 ASM_OUTPUT_DWARF_ADDR_CONST (asm_out_file,
5217 a->dw_attr_val.v.val_addr);
5218 break;
5220 case dw_val_class_loc:
5221 size = size_of_locs (a->dw_attr_val.v.val_loc);
5223 /* Output the block length for this list of location operations. */
5224 switch (constant_size (size))
5226 case 1:
5227 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, size);
5228 break;
5229 case 2:
5230 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, size);
5231 break;
5232 default:
5233 abort ();
5236 if (flag_debug_asm)
5237 fprintf (asm_out_file, "\t%s %s",
5238 ASM_COMMENT_START, dwarf_attr_name (a->dw_attr));
5240 fputc ('\n', asm_out_file);
5241 for (loc = a->dw_attr_val.v.val_loc; loc != NULL;
5242 loc = loc->dw_loc_next)
5244 /* Output the opcode. */
5245 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, loc->dw_loc_opc);
5246 if (flag_debug_asm)
5247 fprintf (asm_out_file, "\t%s %s", ASM_COMMENT_START,
5248 dwarf_stack_op_name (loc->dw_loc_opc));
5250 fputc ('\n', asm_out_file);
5252 /* Output the operand(s) (if any). */
5253 output_loc_operands (loc);
5255 break;
5257 case dw_val_class_const:
5258 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, a->dw_attr_val.v.val_int);
5259 break;
5261 case dw_val_class_unsigned_const:
5262 switch (constant_size (a->dw_attr_val.v.val_unsigned))
5264 case 1:
5265 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
5266 a->dw_attr_val.v.val_unsigned);
5267 break;
5268 case 2:
5269 ASM_OUTPUT_DWARF_DATA2 (asm_out_file,
5270 a->dw_attr_val.v.val_unsigned);
5271 break;
5272 case 4:
5273 ASM_OUTPUT_DWARF_DATA4 (asm_out_file,
5274 a->dw_attr_val.v.val_unsigned);
5275 break;
5276 case 8:
5277 ASM_OUTPUT_DWARF_DATA8 (asm_out_file,
5278 a->dw_attr_val.v.val_long_long.hi,
5279 a->dw_attr_val.v.val_long_long.low);
5280 break;
5281 default:
5282 abort ();
5284 break;
5286 case dw_val_class_long_long:
5287 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 8);
5288 if (flag_debug_asm)
5289 fprintf (asm_out_file, "\t%s %s",
5290 ASM_COMMENT_START, dwarf_attr_name (a->dw_attr));
5292 fputc ('\n', asm_out_file);
5293 ASM_OUTPUT_DWARF_DATA8 (asm_out_file,
5294 a->dw_attr_val.v.val_long_long.hi,
5295 a->dw_attr_val.v.val_long_long.low);
5297 if (flag_debug_asm)
5298 fprintf (asm_out_file,
5299 "\t%s long long constant", ASM_COMMENT_START);
5301 fputc ('\n', asm_out_file);
5302 break;
5304 case dw_val_class_float:
5305 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
5306 a->dw_attr_val.v.val_float.length * 4);
5307 if (flag_debug_asm)
5308 fprintf (asm_out_file, "\t%s %s",
5309 ASM_COMMENT_START, dwarf_attr_name (a->dw_attr));
5311 fputc ('\n', asm_out_file);
5312 for (i = 0; i < a->dw_attr_val.v.val_float.length; ++i)
5314 ASM_OUTPUT_DWARF_DATA4 (asm_out_file,
5315 a->dw_attr_val.v.val_float.array[i]);
5316 if (flag_debug_asm)
5317 fprintf (asm_out_file, "\t%s fp constant word %d",
5318 ASM_COMMENT_START, i);
5320 fputc ('\n', asm_out_file);
5322 break;
5324 case dw_val_class_flag:
5325 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, a->dw_attr_val.v.val_flag);
5326 break;
5328 case dw_val_class_die_ref:
5329 if (a->dw_attr_val.v.val_die_ref != NULL)
5330 ref_offset = a->dw_attr_val.v.val_die_ref->die_offset;
5331 else if (a->dw_attr == DW_AT_sibling)
5332 ref_offset = sibling_offset(die);
5333 else
5334 abort ();
5336 ASM_OUTPUT_DWARF_DATA (asm_out_file, ref_offset);
5337 break;
5339 case dw_val_class_fde_ref:
5341 char l1[20];
5342 ASM_GENERATE_INTERNAL_LABEL
5343 (l1, FDE_AFTER_SIZE_LABEL, a->dw_attr_val.v.val_fde_index * 2);
5344 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, l1);
5345 fprintf (asm_out_file, " - %d", DWARF_OFFSET_SIZE);
5347 break;
5349 case dw_val_class_lbl_id:
5350 ASM_OUTPUT_DWARF_ADDR (asm_out_file, a->dw_attr_val.v.val_lbl_id);
5351 break;
5353 case dw_val_class_section_offset:
5354 ASM_OUTPUT_DWARF_OFFSET (asm_out_file,
5355 stripattributes
5356 (a->dw_attr_val.v.val_section));
5357 break;
5359 case dw_val_class_str:
5360 if (flag_debug_asm)
5361 ASM_OUTPUT_DWARF_STRING (asm_out_file, a->dw_attr_val.v.val_str);
5362 else
5363 ASM_OUTPUT_ASCII (asm_out_file,
5364 a->dw_attr_val.v.val_str,
5365 strlen (a->dw_attr_val.v.val_str) + 1);
5366 break;
5368 default:
5369 abort ();
5372 if (a->dw_attr_val.val_class != dw_val_class_loc
5373 && a->dw_attr_val.val_class != dw_val_class_long_long
5374 && a->dw_attr_val.val_class != dw_val_class_float)
5376 if (flag_debug_asm)
5377 fprintf (asm_out_file, "\t%s %s",
5378 ASM_COMMENT_START, dwarf_attr_name (a->dw_attr));
5380 fputc ('\n', asm_out_file);
5384 for (c = die->die_child; c != NULL; c = c->die_sib)
5385 output_die (c);
5387 if (die->die_child != NULL)
5389 /* Add null byte to terminate sibling list. */
5390 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5391 if (flag_debug_asm)
5392 fprintf (asm_out_file, "\t%s end of children of DIE 0x%lx",
5393 ASM_COMMENT_START, die->die_offset);
5395 fputc ('\n', asm_out_file);
5399 /* Output the compilation unit that appears at the beginning of the
5400 .debug_info section, and precedes the DIE descriptions. */
5402 static void
5403 output_compilation_unit_header ()
5405 ASM_OUTPUT_DWARF_DATA (asm_out_file, next_die_offset - DWARF_OFFSET_SIZE);
5406 if (flag_debug_asm)
5407 fprintf (asm_out_file, "\t%s Length of Compilation Unit Info.",
5408 ASM_COMMENT_START);
5410 fputc ('\n', asm_out_file);
5411 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, DWARF_VERSION);
5412 if (flag_debug_asm)
5413 fprintf (asm_out_file, "\t%s DWARF version number", ASM_COMMENT_START);
5415 fputc ('\n', asm_out_file);
5416 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, stripattributes (ABBREV_SECTION));
5417 if (flag_debug_asm)
5418 fprintf (asm_out_file, "\t%s Offset Into Abbrev. Section",
5419 ASM_COMMENT_START);
5421 fputc ('\n', asm_out_file);
5422 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, PTR_SIZE);
5423 if (flag_debug_asm)
5424 fprintf (asm_out_file, "\t%s Pointer Size (in bytes)", ASM_COMMENT_START);
5426 fputc ('\n', asm_out_file);
5429 /* The DWARF2 pubname for a nested thingy looks like "A::f". The output
5430 of decl_printable_name for C++ looks like "A::f(int)". Let's drop the
5431 argument list, and maybe the scope. */
5433 static char *
5434 dwarf2_name (decl, scope)
5435 tree decl;
5436 int scope;
5438 return (*decl_printable_name) (decl, scope ? 1 : 0);
5441 /* Add a new entry to .debug_pubnames if appropriate. */
5443 static void
5444 add_pubname (decl, die)
5445 tree decl;
5446 dw_die_ref die;
5448 pubname_ref p;
5450 if (! TREE_PUBLIC (decl))
5451 return;
5453 if (pubname_table_in_use == pubname_table_allocated)
5455 pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
5456 pubname_table = (pubname_ref) xrealloc
5457 (pubname_table, pubname_table_allocated * sizeof (pubname_entry));
5460 p = &pubname_table[pubname_table_in_use++];
5461 p->die = die;
5463 p->name = xstrdup (dwarf2_name (decl, 1));
5466 /* Output the public names table used to speed up access to externally
5467 visible names. For now, only generate entries for externally
5468 visible procedures. */
5470 static void
5471 output_pubnames ()
5473 register unsigned i;
5474 register unsigned long pubnames_length = size_of_pubnames ();
5476 ASM_OUTPUT_DWARF_DATA (asm_out_file, pubnames_length);
5478 if (flag_debug_asm)
5479 fprintf (asm_out_file, "\t%s Length of Public Names Info.",
5480 ASM_COMMENT_START);
5482 fputc ('\n', asm_out_file);
5483 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, DWARF_VERSION);
5485 if (flag_debug_asm)
5486 fprintf (asm_out_file, "\t%s DWARF Version", ASM_COMMENT_START);
5488 fputc ('\n', asm_out_file);
5489 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, stripattributes (DEBUG_INFO_SECTION));
5490 if (flag_debug_asm)
5491 fprintf (asm_out_file, "\t%s Offset of Compilation Unit Info.",
5492 ASM_COMMENT_START);
5494 fputc ('\n', asm_out_file);
5495 ASM_OUTPUT_DWARF_DATA (asm_out_file, next_die_offset);
5496 if (flag_debug_asm)
5497 fprintf (asm_out_file, "\t%s Compilation Unit Length", ASM_COMMENT_START);
5499 fputc ('\n', asm_out_file);
5500 for (i = 0; i < pubname_table_in_use; ++i)
5502 register pubname_ref pub = &pubname_table[i];
5504 ASM_OUTPUT_DWARF_DATA (asm_out_file, pub->die->die_offset);
5505 if (flag_debug_asm)
5506 fprintf (asm_out_file, "\t%s DIE offset", ASM_COMMENT_START);
5508 fputc ('\n', asm_out_file);
5510 if (flag_debug_asm)
5512 ASM_OUTPUT_DWARF_STRING (asm_out_file, pub->name);
5513 fprintf (asm_out_file, "%s external name", ASM_COMMENT_START);
5515 else
5517 ASM_OUTPUT_ASCII (asm_out_file, pub->name, strlen (pub->name) + 1);
5520 fputc ('\n', asm_out_file);
5523 ASM_OUTPUT_DWARF_DATA (asm_out_file, 0);
5524 fputc ('\n', asm_out_file);
5527 /* Add a new entry to .debug_aranges if appropriate. */
5529 static void
5530 add_arange (decl, die)
5531 tree decl;
5532 dw_die_ref die;
5534 if (! DECL_SECTION_NAME (decl))
5535 return;
5537 if (arange_table_in_use == arange_table_allocated)
5539 arange_table_allocated += ARANGE_TABLE_INCREMENT;
5540 arange_table
5541 = (arange_ref) xrealloc (arange_table,
5542 arange_table_allocated * sizeof (dw_die_ref));
5545 arange_table[arange_table_in_use++] = die;
5548 /* Output the information that goes into the .debug_aranges table.
5549 Namely, define the beginning and ending address range of the
5550 text section generated for this compilation unit. */
5552 static void
5553 output_aranges ()
5555 register unsigned i;
5556 register unsigned long aranges_length = size_of_aranges ();
5558 ASM_OUTPUT_DWARF_DATA (asm_out_file, aranges_length);
5559 if (flag_debug_asm)
5560 fprintf (asm_out_file, "\t%s Length of Address Ranges Info.",
5561 ASM_COMMENT_START);
5563 fputc ('\n', asm_out_file);
5564 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, DWARF_VERSION);
5565 if (flag_debug_asm)
5566 fprintf (asm_out_file, "\t%s DWARF Version", ASM_COMMENT_START);
5568 fputc ('\n', asm_out_file);
5569 ASM_OUTPUT_DWARF_OFFSET (asm_out_file, stripattributes (DEBUG_INFO_SECTION));
5570 if (flag_debug_asm)
5571 fprintf (asm_out_file, "\t%s Offset of Compilation Unit Info.",
5572 ASM_COMMENT_START);
5574 fputc ('\n', asm_out_file);
5575 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, PTR_SIZE);
5576 if (flag_debug_asm)
5577 fprintf (asm_out_file, "\t%s Size of Address", ASM_COMMENT_START);
5579 fputc ('\n', asm_out_file);
5580 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5581 if (flag_debug_asm)
5582 fprintf (asm_out_file, "\t%s Size of Segment Descriptor",
5583 ASM_COMMENT_START);
5585 fputc ('\n', asm_out_file);
5586 ASM_OUTPUT_DWARF_DATA4 (asm_out_file, 4);
5587 if (PTR_SIZE == 8)
5588 fprintf (asm_out_file, ",0,0");
5590 if (flag_debug_asm)
5591 fprintf (asm_out_file, "\t%s Pad to %d byte boundary",
5592 ASM_COMMENT_START, 2 * PTR_SIZE);
5594 fputc ('\n', asm_out_file);
5595 ASM_OUTPUT_DWARF_ADDR (asm_out_file, stripattributes (TEXT_SECTION));
5596 if (flag_debug_asm)
5597 fprintf (asm_out_file, "\t%s Address", ASM_COMMENT_START);
5599 fputc ('\n', asm_out_file);
5600 ASM_OUTPUT_DWARF_ADDR_DELTA (asm_out_file, text_end_label,
5601 stripattributes (TEXT_SECTION));
5602 if (flag_debug_asm)
5603 fprintf (asm_out_file, "%s Length", ASM_COMMENT_START);
5605 fputc ('\n', asm_out_file);
5606 for (i = 0; i < arange_table_in_use; ++i)
5608 dw_die_ref a = arange_table[i];
5610 if (a->die_tag == DW_TAG_subprogram)
5611 ASM_OUTPUT_DWARF_ADDR (asm_out_file, get_AT_low_pc (a));
5612 else
5614 char *name = get_AT_string (a, DW_AT_MIPS_linkage_name);
5615 if (! name)
5616 name = get_AT_string (a, DW_AT_name);
5618 ASM_OUTPUT_DWARF_ADDR (asm_out_file, name);
5621 if (flag_debug_asm)
5622 fprintf (asm_out_file, "\t%s Address", ASM_COMMENT_START);
5624 fputc ('\n', asm_out_file);
5625 if (a->die_tag == DW_TAG_subprogram)
5626 ASM_OUTPUT_DWARF_ADDR_DELTA (asm_out_file, get_AT_hi_pc (a),
5627 get_AT_low_pc (a));
5628 else
5629 ASM_OUTPUT_DWARF_ADDR_DATA (asm_out_file,
5630 get_AT_unsigned (a, DW_AT_byte_size));
5632 if (flag_debug_asm)
5633 fprintf (asm_out_file, "%s Length", ASM_COMMENT_START);
5635 fputc ('\n', asm_out_file);
5638 /* Output the terminator words. */
5639 ASM_OUTPUT_DWARF_ADDR_DATA (asm_out_file, 0);
5640 fputc ('\n', asm_out_file);
5641 ASM_OUTPUT_DWARF_ADDR_DATA (asm_out_file, 0);
5642 fputc ('\n', asm_out_file);
5645 /* Output the source line number correspondence information. This
5646 information goes into the .debug_line section.
5648 If the format of this data changes, then the function size_of_line_info
5649 must also be adjusted the same way. */
5651 static void
5652 output_line_info ()
5654 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
5655 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
5656 register unsigned opc;
5657 register unsigned n_op_args;
5658 register unsigned long ft_index;
5659 register unsigned long lt_index;
5660 register unsigned long current_line;
5661 register long line_offset;
5662 register long line_delta;
5663 register unsigned long current_file;
5664 register unsigned long function;
5666 ASM_OUTPUT_DWARF_DATA (asm_out_file, size_of_line_info ());
5667 if (flag_debug_asm)
5668 fprintf (asm_out_file, "\t%s Length of Source Line Info.",
5669 ASM_COMMENT_START);
5671 fputc ('\n', asm_out_file);
5672 ASM_OUTPUT_DWARF_DATA2 (asm_out_file, DWARF_VERSION);
5673 if (flag_debug_asm)
5674 fprintf (asm_out_file, "\t%s DWARF Version", ASM_COMMENT_START);
5676 fputc ('\n', asm_out_file);
5677 ASM_OUTPUT_DWARF_DATA (asm_out_file, size_of_line_prolog ());
5678 if (flag_debug_asm)
5679 fprintf (asm_out_file, "\t%s Prolog Length", ASM_COMMENT_START);
5681 fputc ('\n', asm_out_file);
5682 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DWARF_LINE_MIN_INSTR_LENGTH);
5683 if (flag_debug_asm)
5684 fprintf (asm_out_file, "\t%s Minimum Instruction Length",
5685 ASM_COMMENT_START);
5687 fputc ('\n', asm_out_file);
5688 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DWARF_LINE_DEFAULT_IS_STMT_START);
5689 if (flag_debug_asm)
5690 fprintf (asm_out_file, "\t%s Default is_stmt_start flag",
5691 ASM_COMMENT_START);
5693 fputc ('\n', asm_out_file);
5694 fprintf (asm_out_file, "\t%s\t%d", ASM_BYTE_OP, DWARF_LINE_BASE);
5695 if (flag_debug_asm)
5696 fprintf (asm_out_file, "\t%s Line Base Value (Special Opcodes)",
5697 ASM_COMMENT_START);
5699 fputc ('\n', asm_out_file);
5700 fprintf (asm_out_file, "\t%s\t%u", ASM_BYTE_OP, DWARF_LINE_RANGE);
5701 if (flag_debug_asm)
5702 fprintf (asm_out_file, "\t%s Line Range Value (Special Opcodes)",
5703 ASM_COMMENT_START);
5705 fputc ('\n', asm_out_file);
5706 fprintf (asm_out_file, "\t%s\t%u", ASM_BYTE_OP, DWARF_LINE_OPCODE_BASE);
5707 if (flag_debug_asm)
5708 fprintf (asm_out_file, "\t%s Special Opcode Base", ASM_COMMENT_START);
5710 fputc ('\n', asm_out_file);
5711 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; ++opc)
5713 switch (opc)
5715 case DW_LNS_advance_pc:
5716 case DW_LNS_advance_line:
5717 case DW_LNS_set_file:
5718 case DW_LNS_set_column:
5719 case DW_LNS_fixed_advance_pc:
5720 n_op_args = 1;
5721 break;
5722 default:
5723 n_op_args = 0;
5724 break;
5726 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, n_op_args);
5727 if (flag_debug_asm)
5728 fprintf (asm_out_file, "\t%s opcode: 0x%x has %d args",
5729 ASM_COMMENT_START, opc, n_op_args);
5730 fputc ('\n', asm_out_file);
5733 if (flag_debug_asm)
5734 fprintf (asm_out_file, "%s Include Directory Table\n", ASM_COMMENT_START);
5736 /* Include directory table is empty, at present */
5737 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5738 fputc ('\n', asm_out_file);
5739 if (flag_debug_asm)
5740 fprintf (asm_out_file, "%s File Name Table\n", ASM_COMMENT_START);
5742 for (ft_index = 1; ft_index < file_table_in_use; ++ft_index)
5744 if (flag_debug_asm)
5746 ASM_OUTPUT_DWARF_STRING (asm_out_file, file_table[ft_index]);
5747 fprintf (asm_out_file, "%s File Entry: 0x%lx",
5748 ASM_COMMENT_START, ft_index);
5750 else
5752 ASM_OUTPUT_ASCII (asm_out_file,
5753 file_table[ft_index],
5754 strlen (file_table[ft_index]) + 1);
5757 fputc ('\n', asm_out_file);
5759 /* Include directory index */
5760 output_uleb128 (0);
5761 fputc ('\n', asm_out_file);
5763 /* Modification time */
5764 output_uleb128 (0);
5765 fputc ('\n', asm_out_file);
5767 /* File length in bytes */
5768 output_uleb128 (0);
5769 fputc ('\n', asm_out_file);
5772 /* Terminate the file name table */
5773 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5774 fputc ('\n', asm_out_file);
5776 /* Set the address register to the first location in the text section */
5777 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5778 if (flag_debug_asm)
5779 fprintf (asm_out_file, "\t%s DW_LNE_set_address", ASM_COMMENT_START);
5781 fputc ('\n', asm_out_file);
5782 output_uleb128 (1 + PTR_SIZE);
5783 fputc ('\n', asm_out_file);
5784 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_set_address);
5785 fputc ('\n', asm_out_file);
5786 ASM_OUTPUT_DWARF_ADDR (asm_out_file, stripattributes (TEXT_SECTION));
5787 fputc ('\n', asm_out_file);
5789 /* Generate the line number to PC correspondence table, encoded as
5790 a series of state machine operations. */
5791 current_file = 1;
5792 current_line = 1;
5793 strcpy (prev_line_label, stripattributes (TEXT_SECTION));
5794 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
5796 register dw_line_info_ref line_info;
5798 /* Emit debug info for the address of the current line, choosing
5799 the encoding that uses the least amount of space. */
5800 /* ??? Unfortunately, we have little choice here currently, and must
5801 always use the most general form. Gcc does not know the address
5802 delta itself, so we can't use DW_LNS_advance_pc. There are no known
5803 dwarf2 aware assemblers at this time, so we can't use any special
5804 pseudo ops that would allow the assembler to optimally encode this for
5805 us. Many ports do have length attributes which will give an upper
5806 bound on the address range. We could perhaps use length attributes
5807 to determine when it is safe to use DW_LNS_fixed_advance_pc. */
5808 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
5809 if (0)
5811 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
5812 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_fixed_advance_pc);
5813 if (flag_debug_asm)
5814 fprintf (asm_out_file, "\t%s DW_LNS_fixed_advance_pc",
5815 ASM_COMMENT_START);
5817 fputc ('\n', asm_out_file);
5818 ASM_OUTPUT_DWARF_DELTA2 (asm_out_file, line_label, prev_line_label);
5819 fputc ('\n', asm_out_file);
5821 else
5823 /* This can handle any delta. This takes 4+PTR_SIZE bytes. */
5824 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5825 if (flag_debug_asm)
5826 fprintf (asm_out_file, "\t%s DW_LNE_set_address",
5827 ASM_COMMENT_START);
5828 fputc ('\n', asm_out_file);
5829 output_uleb128 (1 + PTR_SIZE);
5830 fputc ('\n', asm_out_file);
5831 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_set_address);
5832 fputc ('\n', asm_out_file);
5833 ASM_OUTPUT_DWARF_ADDR (asm_out_file, line_label);
5834 fputc ('\n', asm_out_file);
5836 strcpy (prev_line_label, line_label);
5838 /* Emit debug info for the source file of the current line, if
5839 different from the previous line. */
5840 line_info = &line_info_table[lt_index];
5841 if (line_info->dw_file_num != current_file)
5843 current_file = line_info->dw_file_num;
5844 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_set_file);
5845 if (flag_debug_asm)
5846 fprintf (asm_out_file, "\t%s DW_LNS_set_file", ASM_COMMENT_START);
5848 fputc ('\n', asm_out_file);
5849 output_uleb128 (current_file);
5850 if (flag_debug_asm)
5851 fprintf (asm_out_file, " (\"%s\")", file_table[current_file]);
5853 fputc ('\n', asm_out_file);
5856 /* Emit debug info for the current line number, choosing the encoding
5857 that uses the least amount of space. */
5858 line_offset = line_info->dw_line_num - current_line;
5859 line_delta = line_offset - DWARF_LINE_BASE;
5860 current_line = line_info->dw_line_num;
5861 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
5863 /* This can handle deltas from -10 to 234, using the current
5864 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
5865 takes 1 byte. */
5866 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
5867 DWARF_LINE_OPCODE_BASE + line_delta);
5868 if (flag_debug_asm)
5869 fprintf (asm_out_file,
5870 "\t%s line %ld", ASM_COMMENT_START, current_line);
5872 fputc ('\n', asm_out_file);
5874 else
5876 /* This can handle any delta. This takes at least 4 bytes, depending
5877 on the value being encoded. */
5878 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_advance_line);
5879 if (flag_debug_asm)
5880 fprintf (asm_out_file, "\t%s advance to line %ld",
5881 ASM_COMMENT_START, current_line);
5883 fputc ('\n', asm_out_file);
5884 output_sleb128 (line_offset);
5885 fputc ('\n', asm_out_file);
5886 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_copy);
5887 fputc ('\n', asm_out_file);
5891 /* Emit debug info for the address of the end of the function. */
5892 if (0)
5894 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_fixed_advance_pc);
5895 if (flag_debug_asm)
5896 fprintf (asm_out_file, "\t%s DW_LNS_fixed_advance_pc",
5897 ASM_COMMENT_START);
5899 fputc ('\n', asm_out_file);
5900 ASM_OUTPUT_DWARF_DELTA2 (asm_out_file, text_end_label, prev_line_label);
5901 fputc ('\n', asm_out_file);
5903 else
5905 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5906 if (flag_debug_asm)
5907 fprintf (asm_out_file, "\t%s DW_LNE_set_address", ASM_COMMENT_START);
5908 fputc ('\n', asm_out_file);
5909 output_uleb128 (1 + PTR_SIZE);
5910 fputc ('\n', asm_out_file);
5911 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_set_address);
5912 fputc ('\n', asm_out_file);
5913 ASM_OUTPUT_DWARF_ADDR (asm_out_file, text_end_label);
5914 fputc ('\n', asm_out_file);
5917 /* Output the marker for the end of the line number info. */
5918 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5919 if (flag_debug_asm)
5920 fprintf (asm_out_file, "\t%s DW_LNE_end_sequence", ASM_COMMENT_START);
5922 fputc ('\n', asm_out_file);
5923 output_uleb128 (1);
5924 fputc ('\n', asm_out_file);
5925 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_end_sequence);
5926 fputc ('\n', asm_out_file);
5928 function = 0;
5929 current_file = 1;
5930 current_line = 1;
5931 for (lt_index = 0; lt_index < separate_line_info_table_in_use; )
5933 register dw_separate_line_info_ref line_info
5934 = &separate_line_info_table[lt_index];
5936 /* Emit debug info for the address of the current line. If this is
5937 a new function, or the first line of a function, then we need
5938 to handle it differently. */
5939 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
5940 lt_index);
5941 if (function != line_info->function)
5943 function = line_info->function;
5945 /* Set the address register to the first line in the function */
5946 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5947 if (flag_debug_asm)
5948 fprintf (asm_out_file, "\t%s DW_LNE_set_address",
5949 ASM_COMMENT_START);
5951 fputc ('\n', asm_out_file);
5952 output_uleb128 (1 + PTR_SIZE);
5953 fputc ('\n', asm_out_file);
5954 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_set_address);
5955 fputc ('\n', asm_out_file);
5956 ASM_OUTPUT_DWARF_ADDR (asm_out_file, line_label);
5957 fputc ('\n', asm_out_file);
5959 else
5961 /* ??? See the DW_LNS_advance_pc comment above. */
5962 if (0)
5964 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_fixed_advance_pc);
5965 if (flag_debug_asm)
5966 fprintf (asm_out_file, "\t%s DW_LNS_fixed_advance_pc",
5967 ASM_COMMENT_START);
5969 fputc ('\n', asm_out_file);
5970 ASM_OUTPUT_DWARF_DELTA2 (asm_out_file, line_label,
5971 prev_line_label);
5972 fputc ('\n', asm_out_file);
5974 else
5976 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
5977 if (flag_debug_asm)
5978 fprintf (asm_out_file, "\t%s DW_LNE_set_address",
5979 ASM_COMMENT_START);
5980 fputc ('\n', asm_out_file);
5981 output_uleb128 (1 + PTR_SIZE);
5982 fputc ('\n', asm_out_file);
5983 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_set_address);
5984 fputc ('\n', asm_out_file);
5985 ASM_OUTPUT_DWARF_ADDR (asm_out_file, line_label);
5986 fputc ('\n', asm_out_file);
5989 strcpy (prev_line_label, line_label);
5991 /* Emit debug info for the source file of the current line, if
5992 different from the previous line. */
5993 if (line_info->dw_file_num != current_file)
5995 current_file = line_info->dw_file_num;
5996 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_set_file);
5997 if (flag_debug_asm)
5998 fprintf (asm_out_file, "\t%s DW_LNS_set_file", ASM_COMMENT_START);
6000 fputc ('\n', asm_out_file);
6001 output_uleb128 (current_file);
6002 if (flag_debug_asm)
6003 fprintf (asm_out_file, " (\"%s\")", file_table[current_file]);
6005 fputc ('\n', asm_out_file);
6008 /* Emit debug info for the current line number, choosing the encoding
6009 that uses the least amount of space. */
6010 if (line_info->dw_line_num != current_line)
6012 line_offset = line_info->dw_line_num - current_line;
6013 line_delta = line_offset - DWARF_LINE_BASE;
6014 current_line = line_info->dw_line_num;
6015 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
6017 ASM_OUTPUT_DWARF_DATA1 (asm_out_file,
6018 DWARF_LINE_OPCODE_BASE + line_delta);
6019 if (flag_debug_asm)
6020 fprintf (asm_out_file,
6021 "\t%s line %ld", ASM_COMMENT_START, current_line);
6023 fputc ('\n', asm_out_file);
6025 else
6027 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_advance_line);
6028 if (flag_debug_asm)
6029 fprintf (asm_out_file, "\t%s advance to line %ld",
6030 ASM_COMMENT_START, current_line);
6032 fputc ('\n', asm_out_file);
6033 output_sleb128 (line_offset);
6034 fputc ('\n', asm_out_file);
6035 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_copy);
6036 fputc ('\n', asm_out_file);
6040 ++lt_index;
6042 /* If we're done with a function, end its sequence. */
6043 if (lt_index == separate_line_info_table_in_use
6044 || separate_line_info_table[lt_index].function != function)
6046 current_file = 1;
6047 current_line = 1;
6049 /* Emit debug info for the address of the end of the function. */
6050 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
6051 if (0)
6053 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNS_fixed_advance_pc);
6054 if (flag_debug_asm)
6055 fprintf (asm_out_file, "\t%s DW_LNS_fixed_advance_pc",
6056 ASM_COMMENT_START);
6058 fputc ('\n', asm_out_file);
6059 ASM_OUTPUT_DWARF_DELTA2 (asm_out_file, line_label,
6060 prev_line_label);
6061 fputc ('\n', asm_out_file);
6063 else
6065 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
6066 if (flag_debug_asm)
6067 fprintf (asm_out_file, "\t%s DW_LNE_set_address",
6068 ASM_COMMENT_START);
6069 fputc ('\n', asm_out_file);
6070 output_uleb128 (1 + PTR_SIZE);
6071 fputc ('\n', asm_out_file);
6072 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_set_address);
6073 fputc ('\n', asm_out_file);
6074 ASM_OUTPUT_DWARF_ADDR (asm_out_file, line_label);
6075 fputc ('\n', asm_out_file);
6078 /* Output the marker for the end of this sequence. */
6079 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, 0);
6080 if (flag_debug_asm)
6081 fprintf (asm_out_file, "\t%s DW_LNE_end_sequence",
6082 ASM_COMMENT_START);
6084 fputc ('\n', asm_out_file);
6085 output_uleb128 (1);
6086 fputc ('\n', asm_out_file);
6087 ASM_OUTPUT_DWARF_DATA1 (asm_out_file, DW_LNE_end_sequence);
6088 fputc ('\n', asm_out_file);
6093 /* Given a pointer to a BLOCK node return non-zero if (and only if) the node
6094 in question represents the outermost pair of curly braces (i.e. the "body
6095 block") of a function or method.
6097 For any BLOCK node representing a "body block" of a function or method, the
6098 BLOCK_SUPERCONTEXT of the node will point to another BLOCK node which
6099 represents the outermost (function) scope for the function or method (i.e.
6100 the one which includes the formal parameters). The BLOCK_SUPERCONTEXT of
6101 *that* node in turn will point to the relevant FUNCTION_DECL node. */
6103 static inline int
6104 is_body_block (stmt)
6105 register tree stmt;
6107 if (TREE_CODE (stmt) == BLOCK)
6109 register tree parent = BLOCK_SUPERCONTEXT (stmt);
6111 if (TREE_CODE (parent) == BLOCK)
6113 register tree grandparent = BLOCK_SUPERCONTEXT (parent);
6115 if (TREE_CODE (grandparent) == FUNCTION_DECL)
6116 return 1;
6120 return 0;
6123 /* Given a pointer to a tree node for some base type, return a pointer to
6124 a DIE that describes the given type.
6126 This routine must only be called for GCC type nodes that correspond to
6127 Dwarf base (fundamental) types. */
6129 static dw_die_ref
6130 base_type_die (type)
6131 register tree type;
6133 register dw_die_ref base_type_result;
6134 register char *type_name;
6135 register enum dwarf_type encoding;
6136 register tree name = TYPE_NAME (type);
6138 if (TREE_CODE (type) == ERROR_MARK
6139 || TREE_CODE (type) == VOID_TYPE)
6140 return 0;
6142 if (TREE_CODE (name) == TYPE_DECL)
6143 name = DECL_NAME (name);
6144 type_name = IDENTIFIER_POINTER (name);
6146 switch (TREE_CODE (type))
6148 case INTEGER_TYPE:
6149 /* Carefully distinguish the C character types, without messing
6150 up if the language is not C. Note that we check only for the names
6151 that contain spaces; other names might occur by coincidence in other
6152 languages. */
6153 if (! (TYPE_PRECISION (type) == CHAR_TYPE_SIZE
6154 && (type == char_type_node
6155 || ! strcmp (type_name, "signed char")
6156 || ! strcmp (type_name, "unsigned char"))))
6158 if (TREE_UNSIGNED (type))
6159 encoding = DW_ATE_unsigned;
6160 else
6161 encoding = DW_ATE_signed;
6162 break;
6164 /* else fall through */
6166 case CHAR_TYPE:
6167 /* GNU Pascal/Ada CHAR type. Not used in C. */
6168 if (TREE_UNSIGNED (type))
6169 encoding = DW_ATE_unsigned_char;
6170 else
6171 encoding = DW_ATE_signed_char;
6172 break;
6174 case REAL_TYPE:
6175 encoding = DW_ATE_float;
6176 break;
6178 case COMPLEX_TYPE:
6179 encoding = DW_ATE_complex_float;
6180 break;
6182 case BOOLEAN_TYPE:
6183 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
6184 encoding = DW_ATE_boolean;
6185 break;
6187 default:
6188 abort (); /* No other TREE_CODEs are Dwarf fundamental types. */
6191 base_type_result = new_die (DW_TAG_base_type, comp_unit_die);
6192 add_AT_string (base_type_result, DW_AT_name, type_name);
6193 add_AT_unsigned (base_type_result, DW_AT_byte_size,
6194 int_size_in_bytes (type));
6195 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
6197 return base_type_result;
6200 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
6201 the Dwarf "root" type for the given input type. The Dwarf "root" type of
6202 a given type is generally the same as the given type, except that if the
6203 given type is a pointer or reference type, then the root type of the given
6204 type is the root type of the "basis" type for the pointer or reference
6205 type. (This definition of the "root" type is recursive.) Also, the root
6206 type of a `const' qualified type or a `volatile' qualified type is the
6207 root type of the given type without the qualifiers. */
6209 static tree
6210 root_type (type)
6211 register tree type;
6213 if (TREE_CODE (type) == ERROR_MARK)
6214 return error_mark_node;
6216 switch (TREE_CODE (type))
6218 case ERROR_MARK:
6219 return error_mark_node;
6221 case POINTER_TYPE:
6222 case REFERENCE_TYPE:
6223 return type_main_variant (root_type (TREE_TYPE (type)));
6225 default:
6226 return type_main_variant (type);
6230 /* Given a pointer to an arbitrary ..._TYPE tree node, return non-zero if the
6231 given input type is a Dwarf "fundamental" type. Otherwise return null. */
6233 static inline int
6234 is_base_type (type)
6235 register tree type;
6237 switch (TREE_CODE (type))
6239 case ERROR_MARK:
6240 case VOID_TYPE:
6241 case INTEGER_TYPE:
6242 case REAL_TYPE:
6243 case COMPLEX_TYPE:
6244 case BOOLEAN_TYPE:
6245 case CHAR_TYPE:
6246 return 1;
6248 case SET_TYPE:
6249 case ARRAY_TYPE:
6250 case RECORD_TYPE:
6251 case UNION_TYPE:
6252 case QUAL_UNION_TYPE:
6253 case ENUMERAL_TYPE:
6254 case FUNCTION_TYPE:
6255 case METHOD_TYPE:
6256 case POINTER_TYPE:
6257 case REFERENCE_TYPE:
6258 case FILE_TYPE:
6259 case OFFSET_TYPE:
6260 case LANG_TYPE:
6261 return 0;
6263 default:
6264 abort ();
6267 return 0;
6270 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
6271 entry that chains various modifiers in front of the given type. */
6273 static dw_die_ref
6274 modified_type_die (type, is_const_type, is_volatile_type, context_die)
6275 register tree type;
6276 register int is_const_type;
6277 register int is_volatile_type;
6278 register dw_die_ref context_die;
6280 register enum tree_code code = TREE_CODE (type);
6281 register dw_die_ref mod_type_die = NULL;
6282 register dw_die_ref sub_die = NULL;
6283 register tree item_type = NULL;
6285 if (code != ERROR_MARK)
6287 type = build_type_variant (type, is_const_type, is_volatile_type);
6289 mod_type_die = lookup_type_die (type);
6290 if (mod_type_die)
6291 return mod_type_die;
6293 /* Handle C typedef types. */
6294 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
6295 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
6297 tree dtype = TREE_TYPE (TYPE_NAME (type));
6298 if (type == dtype)
6300 /* For a named type, use the typedef. */
6301 gen_type_die (type, context_die);
6302 mod_type_die = lookup_type_die (type);
6305 else if (is_const_type < TYPE_READONLY (dtype)
6306 || is_volatile_type < TYPE_VOLATILE (dtype))
6307 /* cv-unqualified version of named type. Just use the unnamed
6308 type to which it refers. */
6309 mod_type_die
6310 = modified_type_die (DECL_ORIGINAL_TYPE (TYPE_NAME (type)),
6311 is_const_type, is_volatile_type,
6312 context_die);
6313 /* Else cv-qualified version of named type; fall through. */
6316 if (mod_type_die)
6317 /* OK */;
6318 else if (is_const_type)
6320 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die);
6321 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
6323 else if (is_volatile_type)
6325 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die);
6326 sub_die = modified_type_die (type, 0, 0, context_die);
6328 else if (code == POINTER_TYPE)
6330 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die);
6331 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
6332 #if 0
6333 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
6334 #endif
6335 item_type = TREE_TYPE (type);
6337 else if (code == REFERENCE_TYPE)
6339 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die);
6340 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
6341 #if 0
6342 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
6343 #endif
6344 item_type = TREE_TYPE (type);
6346 else if (is_base_type (type))
6347 mod_type_die = base_type_die (type);
6348 else
6350 gen_type_die (type, context_die);
6352 /* We have to get the type_main_variant here (and pass that to the
6353 `lookup_type_die' routine) because the ..._TYPE node we have
6354 might simply be a *copy* of some original type node (where the
6355 copy was created to help us keep track of typedef names) and
6356 that copy might have a different TYPE_UID from the original
6357 ..._TYPE node. */
6358 mod_type_die = lookup_type_die (type_main_variant (type));
6359 if (mod_type_die == NULL)
6360 abort ();
6364 equate_type_number_to_die (type, mod_type_die);
6365 if (item_type)
6366 /* We must do this after the equate_type_number_to_die call, in case
6367 this is a recursive type. This ensures that the modified_type_die
6368 recursion will terminate even if the type is recursive. Recursive
6369 types are possible in Ada. */
6370 sub_die = modified_type_die (item_type,
6371 TYPE_READONLY (item_type),
6372 TYPE_VOLATILE (item_type),
6373 context_die);
6375 if (sub_die != NULL)
6376 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
6378 return mod_type_die;
6381 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
6382 an enumerated type. */
6384 static inline int
6385 type_is_enum (type)
6386 register tree type;
6388 return TREE_CODE (type) == ENUMERAL_TYPE;
6391 /* Return a location descriptor that designates a machine register. */
6393 static dw_loc_descr_ref
6394 reg_loc_descriptor (rtl)
6395 register rtx rtl;
6397 register dw_loc_descr_ref loc_result = NULL;
6398 register unsigned reg = reg_number (rtl);
6400 if (reg <= 31)
6401 loc_result = new_loc_descr (DW_OP_reg0 + reg, 0, 0);
6402 else
6403 loc_result = new_loc_descr (DW_OP_regx, reg, 0);
6405 return loc_result;
6408 /* Return a location descriptor that designates a base+offset location. */
6410 static dw_loc_descr_ref
6411 based_loc_descr (reg, offset)
6412 unsigned reg;
6413 long int offset;
6415 register dw_loc_descr_ref loc_result;
6416 /* For the "frame base", we use the frame pointer or stack pointer
6417 registers, since the RTL for local variables is relative to one of
6418 them. */
6419 register unsigned fp_reg = DBX_REGISTER_NUMBER (frame_pointer_needed
6420 ? HARD_FRAME_POINTER_REGNUM
6421 : STACK_POINTER_REGNUM);
6423 if (reg == fp_reg)
6424 loc_result = new_loc_descr (DW_OP_fbreg, offset, 0);
6425 else if (reg <= 31)
6426 loc_result = new_loc_descr (DW_OP_breg0 + reg, offset, 0);
6427 else
6428 loc_result = new_loc_descr (DW_OP_bregx, reg, offset);
6430 return loc_result;
6433 /* Return true if this RTL expression describes a base+offset calculation. */
6435 static inline int
6436 is_based_loc (rtl)
6437 register rtx rtl;
6439 return (GET_CODE (rtl) == PLUS
6440 && ((GET_CODE (XEXP (rtl, 0)) == REG
6441 && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
6444 /* The following routine converts the RTL for a variable or parameter
6445 (resident in memory) into an equivalent Dwarf representation of a
6446 mechanism for getting the address of that same variable onto the top of a
6447 hypothetical "address evaluation" stack.
6449 When creating memory location descriptors, we are effectively transforming
6450 the RTL for a memory-resident object into its Dwarf postfix expression
6451 equivalent. This routine recursively descends an RTL tree, turning
6452 it into Dwarf postfix code as it goes. */
6454 static dw_loc_descr_ref
6455 mem_loc_descriptor (rtl)
6456 register rtx rtl;
6458 dw_loc_descr_ref mem_loc_result = NULL;
6459 /* Note that for a dynamically sized array, the location we will generate a
6460 description of here will be the lowest numbered location which is
6461 actually within the array. That's *not* necessarily the same as the
6462 zeroth element of the array. */
6464 switch (GET_CODE (rtl))
6466 case SUBREG:
6467 /* The case of a subreg may arise when we have a local (register)
6468 variable or a formal (register) parameter which doesn't quite fill
6469 up an entire register. For now, just assume that it is
6470 legitimate to make the Dwarf info refer to the whole register which
6471 contains the given subreg. */
6472 rtl = XEXP (rtl, 0);
6474 /* ... fall through ... */
6476 case REG:
6477 /* Whenever a register number forms a part of the description of the
6478 method for calculating the (dynamic) address of a memory resident
6479 object, DWARF rules require the register number be referred to as
6480 a "base register". This distinction is not based in any way upon
6481 what category of register the hardware believes the given register
6482 belongs to. This is strictly DWARF terminology we're dealing with
6483 here. Note that in cases where the location of a memory-resident
6484 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
6485 OP_CONST (0)) the actual DWARF location descriptor that we generate
6486 may just be OP_BASEREG (basereg). This may look deceptively like
6487 the object in question was allocated to a register (rather than in
6488 memory) so DWARF consumers need to be aware of the subtle
6489 distinction between OP_REG and OP_BASEREG. */
6490 mem_loc_result = based_loc_descr (reg_number (rtl), 0);
6491 break;
6493 case MEM:
6494 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0));
6495 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
6496 break;
6498 case CONST:
6499 case SYMBOL_REF:
6500 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
6501 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
6502 mem_loc_result->dw_loc_oprnd1.v.val_addr = addr_to_string (rtl);
6503 break;
6505 case PLUS:
6506 if (is_based_loc (rtl))
6507 mem_loc_result = based_loc_descr (reg_number (XEXP (rtl, 0)),
6508 INTVAL (XEXP (rtl, 1)));
6509 else
6511 add_loc_descr (&mem_loc_result, mem_loc_descriptor (XEXP (rtl, 0)));
6512 add_loc_descr (&mem_loc_result, mem_loc_descriptor (XEXP (rtl, 1)));
6513 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_plus, 0, 0));
6515 break;
6517 case MULT:
6518 /* If a pseudo-reg is optimized away, it is possible for it to
6519 be replaced with a MEM containing a multiply. */
6520 add_loc_descr (&mem_loc_result, mem_loc_descriptor (XEXP (rtl, 0)));
6521 add_loc_descr (&mem_loc_result, mem_loc_descriptor (XEXP (rtl, 1)));
6522 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
6523 break;
6525 case CONST_INT:
6526 mem_loc_result = new_loc_descr (DW_OP_constu, INTVAL (rtl), 0);
6527 break;
6529 default:
6530 abort ();
6533 return mem_loc_result;
6536 /* Return a descriptor that describes the concatenation of two locations.
6537 This is typically a complex variable. */
6539 static dw_loc_descr_ref
6540 concat_loc_descriptor (x0, x1)
6541 register rtx x0, x1;
6543 dw_loc_descr_ref cc_loc_result = NULL;
6545 if (!is_pseudo_reg (x0)
6546 && (GET_CODE (x0) != MEM || !is_pseudo_reg (XEXP (x0, 0))))
6547 add_loc_descr (&cc_loc_result, loc_descriptor (x0));
6548 add_loc_descr (&cc_loc_result,
6549 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (GET_MODE (x0)), 0));
6551 if (!is_pseudo_reg (x1)
6552 && (GET_CODE (x1) != MEM || !is_pseudo_reg (XEXP (x1, 0))))
6553 add_loc_descr (&cc_loc_result, loc_descriptor (x1));
6554 add_loc_descr (&cc_loc_result,
6555 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (GET_MODE (x1)), 0));
6557 return cc_loc_result;
6560 /* Output a proper Dwarf location descriptor for a variable or parameter
6561 which is either allocated in a register or in a memory location. For a
6562 register, we just generate an OP_REG and the register number. For a
6563 memory location we provide a Dwarf postfix expression describing how to
6564 generate the (dynamic) address of the object onto the address stack. */
6566 static dw_loc_descr_ref
6567 loc_descriptor (rtl)
6568 register rtx rtl;
6570 dw_loc_descr_ref loc_result = NULL;
6571 switch (GET_CODE (rtl))
6573 case SUBREG:
6574 /* The case of a subreg may arise when we have a local (register)
6575 variable or a formal (register) parameter which doesn't quite fill
6576 up an entire register. For now, just assume that it is
6577 legitimate to make the Dwarf info refer to the whole register which
6578 contains the given subreg. */
6579 rtl = XEXP (rtl, 0);
6581 /* ... fall through ... */
6583 case REG:
6584 loc_result = reg_loc_descriptor (rtl);
6585 break;
6587 case MEM:
6588 loc_result = mem_loc_descriptor (XEXP (rtl, 0));
6589 break;
6591 case CONCAT:
6592 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
6593 break;
6595 default:
6596 abort ();
6599 return loc_result;
6602 /* Given an unsigned value, round it up to the lowest multiple of `boundary'
6603 which is not less than the value itself. */
6605 static inline unsigned
6606 ceiling (value, boundary)
6607 register unsigned value;
6608 register unsigned boundary;
6610 return (((value + boundary - 1) / boundary) * boundary);
6613 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
6614 pointer to the declared type for the relevant field variable, or return
6615 `integer_type_node' if the given node turns out to be an
6616 ERROR_MARK node. */
6618 static inline tree
6619 field_type (decl)
6620 register tree decl;
6622 register tree type;
6624 if (TREE_CODE (decl) == ERROR_MARK)
6625 return integer_type_node;
6627 type = DECL_BIT_FIELD_TYPE (decl);
6628 if (type == NULL_TREE)
6629 type = TREE_TYPE (decl);
6631 return type;
6634 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
6635 node, return the alignment in bits for the type, or else return
6636 BITS_PER_WORD if the node actually turns out to be an
6637 ERROR_MARK node. */
6639 static inline unsigned
6640 simple_type_align_in_bits (type)
6641 register tree type;
6643 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
6646 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
6647 node, return the size in bits for the type if it is a constant, or else
6648 return the alignment for the type if the type's size is not constant, or
6649 else return BITS_PER_WORD if the type actually turns out to be an
6650 ERROR_MARK node. */
6652 static inline unsigned
6653 simple_type_size_in_bits (type)
6654 register tree type;
6656 if (TREE_CODE (type) == ERROR_MARK)
6657 return BITS_PER_WORD;
6658 else
6660 register tree type_size_tree = TYPE_SIZE (type);
6662 if (TREE_CODE (type_size_tree) != INTEGER_CST)
6663 return TYPE_ALIGN (type);
6665 return (unsigned) TREE_INT_CST_LOW (type_size_tree);
6669 /* Given a pointer to what is assumed to be a FIELD_DECL node, compute and
6670 return the byte offset of the lowest addressed byte of the "containing
6671 object" for the given FIELD_DECL, or return 0 if we are unable to
6672 determine what that offset is, either because the argument turns out to
6673 be a pointer to an ERROR_MARK node, or because the offset is actually
6674 variable. (We can't handle the latter case just yet). */
6676 static unsigned
6677 field_byte_offset (decl)
6678 register tree decl;
6680 register unsigned type_align_in_bytes;
6681 register unsigned type_align_in_bits;
6682 register unsigned type_size_in_bits;
6683 register unsigned object_offset_in_align_units;
6684 register unsigned object_offset_in_bits;
6685 register unsigned object_offset_in_bytes;
6686 register tree type;
6687 register tree bitpos_tree;
6688 register tree field_size_tree;
6689 register unsigned bitpos_int;
6690 register unsigned deepest_bitpos;
6691 register unsigned field_size_in_bits;
6693 if (TREE_CODE (decl) == ERROR_MARK)
6694 return 0;
6696 if (TREE_CODE (decl) != FIELD_DECL)
6697 abort ();
6699 type = field_type (decl);
6701 bitpos_tree = DECL_FIELD_BITPOS (decl);
6702 field_size_tree = DECL_SIZE (decl);
6704 /* We cannot yet cope with fields whose positions or sizes are variable, so
6705 for now, when we see such things, we simply return 0. Someday, we may
6706 be able to handle such cases, but it will be damn difficult. */
6707 if (TREE_CODE (bitpos_tree) != INTEGER_CST)
6708 return 0;
6709 bitpos_int = (unsigned) TREE_INT_CST_LOW (bitpos_tree);
6711 if (TREE_CODE (field_size_tree) != INTEGER_CST)
6712 return 0;
6714 field_size_in_bits = (unsigned) TREE_INT_CST_LOW (field_size_tree);
6715 type_size_in_bits = simple_type_size_in_bits (type);
6716 type_align_in_bits = simple_type_align_in_bits (type);
6717 type_align_in_bytes = type_align_in_bits / BITS_PER_UNIT;
6719 /* Note that the GCC front-end doesn't make any attempt to keep track of
6720 the starting bit offset (relative to the start of the containing
6721 structure type) of the hypothetical "containing object" for a bit-
6722 field. Thus, when computing the byte offset value for the start of the
6723 "containing object" of a bit-field, we must deduce this information on
6724 our own. This can be rather tricky to do in some cases. For example,
6725 handling the following structure type definition when compiling for an
6726 i386/i486 target (which only aligns long long's to 32-bit boundaries)
6727 can be very tricky:
6729 struct S { int field1; long long field2:31; };
6731 Fortunately, there is a simple rule-of-thumb which can be
6732 used in such cases. When compiling for an i386/i486, GCC will allocate
6733 8 bytes for the structure shown above. It decides to do this based upon
6734 one simple rule for bit-field allocation. Quite simply, GCC allocates
6735 each "containing object" for each bit-field at the first (i.e. lowest
6736 addressed) legitimate alignment boundary (based upon the required
6737 minimum alignment for the declared type of the field) which it can
6738 possibly use, subject to the condition that there is still enough
6739 available space remaining in the containing object (when allocated at
6740 the selected point) to fully accommodate all of the bits of the
6741 bit-field itself. This simple rule makes it obvious why GCC allocates
6742 8 bytes for each object of the structure type shown above. When looking
6743 for a place to allocate the "containing object" for `field2', the
6744 compiler simply tries to allocate a 64-bit "containing object" at each
6745 successive 32-bit boundary (starting at zero) until it finds a place to
6746 allocate that 64- bit field such that at least 31 contiguous (and
6747 previously unallocated) bits remain within that selected 64 bit field.
6748 (As it turns out, for the example above, the compiler finds that it is
6749 OK to allocate the "containing object" 64-bit field at bit-offset zero
6750 within the structure type.) Here we attempt to work backwards from the
6751 limited set of facts we're given, and we try to deduce from those facts,
6752 where GCC must have believed that the containing object started (within
6753 the structure type). The value we deduce is then used (by the callers of
6754 this routine) to generate DW_AT_location and DW_AT_bit_offset attributes
6755 for fields (both bit-fields and, in the case of DW_AT_location, regular
6756 fields as well). */
6758 /* Figure out the bit-distance from the start of the structure to the
6759 "deepest" bit of the bit-field. */
6760 deepest_bitpos = bitpos_int + field_size_in_bits;
6762 /* This is the tricky part. Use some fancy footwork to deduce where the
6763 lowest addressed bit of the containing object must be. */
6764 object_offset_in_bits
6765 = ceiling (deepest_bitpos, type_align_in_bits) - type_size_in_bits;
6767 /* Compute the offset of the containing object in "alignment units". */
6768 object_offset_in_align_units = object_offset_in_bits / type_align_in_bits;
6770 /* Compute the offset of the containing object in bytes. */
6771 object_offset_in_bytes = object_offset_in_align_units * type_align_in_bytes;
6773 return object_offset_in_bytes;
6776 /* The following routines define various Dwarf attributes and any data
6777 associated with them. */
6779 /* Add a location description attribute value to a DIE.
6781 This emits location attributes suitable for whole variables and
6782 whole parameters. Note that the location attributes for struct fields are
6783 generated by the routine `data_member_location_attribute' below. */
6785 static void
6786 add_AT_location_description (die, attr_kind, rtl)
6787 dw_die_ref die;
6788 enum dwarf_attribute attr_kind;
6789 register rtx rtl;
6791 /* Handle a special case. If we are about to output a location descriptor
6792 for a variable or parameter which has been optimized out of existence,
6793 don't do that. A variable which has been optimized out
6794 of existence will have a DECL_RTL value which denotes a pseudo-reg.
6795 Currently, in some rare cases, variables can have DECL_RTL values which
6796 look like (MEM (REG pseudo-reg#)). These cases are due to bugs
6797 elsewhere in the compiler. We treat such cases as if the variable(s) in
6798 question had been optimized out of existence. */
6800 if (is_pseudo_reg (rtl)
6801 || (GET_CODE (rtl) == MEM
6802 && is_pseudo_reg (XEXP (rtl, 0)))
6803 || (GET_CODE (rtl) == CONCAT
6804 && is_pseudo_reg (XEXP (rtl, 0))
6805 && is_pseudo_reg (XEXP (rtl, 1))))
6806 return;
6808 add_AT_loc (die, attr_kind, loc_descriptor (rtl));
6811 /* Attach the specialized form of location attribute used for data
6812 members of struct and union types. In the special case of a
6813 FIELD_DECL node which represents a bit-field, the "offset" part
6814 of this special location descriptor must indicate the distance
6815 in bytes from the lowest-addressed byte of the containing struct
6816 or union type to the lowest-addressed byte of the "containing
6817 object" for the bit-field. (See the `field_byte_offset' function
6818 above).. For any given bit-field, the "containing object" is a
6819 hypothetical object (of some integral or enum type) within which
6820 the given bit-field lives. The type of this hypothetical
6821 "containing object" is always the same as the declared type of
6822 the individual bit-field itself (for GCC anyway... the DWARF
6823 spec doesn't actually mandate this). Note that it is the size
6824 (in bytes) of the hypothetical "containing object" which will
6825 be given in the DW_AT_byte_size attribute for this bit-field.
6826 (See the `byte_size_attribute' function below.) It is also used
6827 when calculating the value of the DW_AT_bit_offset attribute.
6828 (See the `bit_offset_attribute' function below). */
6830 static void
6831 add_data_member_location_attribute (die, decl)
6832 register dw_die_ref die;
6833 register tree decl;
6835 register unsigned long offset;
6836 register dw_loc_descr_ref loc_descr;
6837 register enum dwarf_location_atom op;
6839 if (TREE_CODE (decl) == TREE_VEC)
6840 offset = TREE_INT_CST_LOW (BINFO_OFFSET (decl));
6841 else
6842 offset = field_byte_offset (decl);
6844 /* The DWARF2 standard says that we should assume that the structure address
6845 is already on the stack, so we can specify a structure field address
6846 by using DW_OP_plus_uconst. */
6848 #ifdef MIPS_DEBUGGING_INFO
6849 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst operator
6850 correctly. It works only if we leave the offset on the stack. */
6851 op = DW_OP_constu;
6852 #else
6853 op = DW_OP_plus_uconst;
6854 #endif
6856 loc_descr = new_loc_descr (op, offset, 0);
6857 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
6860 /* Attach an DW_AT_const_value attribute for a variable or a parameter which
6861 does not have a "location" either in memory or in a register. These
6862 things can arise in GNU C when a constant is passed as an actual parameter
6863 to an inlined function. They can also arise in C++ where declared
6864 constants do not necessarily get memory "homes". */
6866 static void
6867 add_const_value_attribute (die, rtl)
6868 register dw_die_ref die;
6869 register rtx rtl;
6871 switch (GET_CODE (rtl))
6873 case CONST_INT:
6874 /* Note that a CONST_INT rtx could represent either an integer or a
6875 floating-point constant. A CONST_INT is used whenever the constant
6876 will fit into a single word. In all such cases, the original mode
6877 of the constant value is wiped out, and the CONST_INT rtx is
6878 assigned VOIDmode. */
6879 add_AT_unsigned (die, DW_AT_const_value, (unsigned) INTVAL (rtl));
6880 break;
6882 case CONST_DOUBLE:
6883 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
6884 floating-point constant. A CONST_DOUBLE is used whenever the
6885 constant requires more than one word in order to be adequately
6886 represented. We output CONST_DOUBLEs as blocks. */
6888 register enum machine_mode mode = GET_MODE (rtl);
6890 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
6892 register unsigned length = GET_MODE_SIZE (mode) / sizeof (long);
6893 long array[4];
6894 REAL_VALUE_TYPE rv;
6896 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
6897 switch (mode)
6899 case SFmode:
6900 REAL_VALUE_TO_TARGET_SINGLE (rv, array[0]);
6901 break;
6903 case DFmode:
6904 REAL_VALUE_TO_TARGET_DOUBLE (rv, array);
6905 break;
6907 case XFmode:
6908 case TFmode:
6909 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, array);
6910 break;
6912 default:
6913 abort ();
6916 add_AT_float (die, DW_AT_const_value, length, array);
6918 else
6919 add_AT_long_long (die, DW_AT_const_value,
6920 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
6922 break;
6924 case CONST_STRING:
6925 add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
6926 break;
6928 case SYMBOL_REF:
6929 case LABEL_REF:
6930 case CONST:
6931 add_AT_addr (die, DW_AT_const_value, addr_to_string (rtl));
6932 break;
6934 case PLUS:
6935 /* In cases where an inlined instance of an inline function is passed
6936 the address of an `auto' variable (which is local to the caller) we
6937 can get a situation where the DECL_RTL of the artificial local
6938 variable (for the inlining) which acts as a stand-in for the
6939 corresponding formal parameter (of the inline function) will look
6940 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
6941 exactly a compile-time constant expression, but it isn't the address
6942 of the (artificial) local variable either. Rather, it represents the
6943 *value* which the artificial local variable always has during its
6944 lifetime. We currently have no way to represent such quasi-constant
6945 values in Dwarf, so for now we just punt and generate nothing. */
6946 break;
6948 default:
6949 /* No other kinds of rtx should be possible here. */
6950 abort ();
6955 /* Generate *either* an DW_AT_location attribute or else an DW_AT_const_value
6956 data attribute for a variable or a parameter. We generate the
6957 DW_AT_const_value attribute only in those cases where the given variable
6958 or parameter does not have a true "location" either in memory or in a
6959 register. This can happen (for example) when a constant is passed as an
6960 actual argument in a call to an inline function. (It's possible that
6961 these things can crop up in other ways also.) Note that one type of
6962 constant value which can be passed into an inlined function is a constant
6963 pointer. This can happen for example if an actual argument in an inlined
6964 function call evaluates to a compile-time constant address. */
6966 static void
6967 add_location_or_const_value_attribute (die, decl)
6968 register dw_die_ref die;
6969 register tree decl;
6971 register rtx rtl;
6972 register tree declared_type;
6973 register tree passed_type;
6975 if (TREE_CODE (decl) == ERROR_MARK)
6976 return;
6978 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
6979 abort ();
6981 /* Here we have to decide where we are going to say the parameter "lives"
6982 (as far as the debugger is concerned). We only have a couple of
6983 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
6985 DECL_RTL normally indicates where the parameter lives during most of the
6986 activation of the function. If optimization is enabled however, this
6987 could be either NULL or else a pseudo-reg. Both of those cases indicate
6988 that the parameter doesn't really live anywhere (as far as the code
6989 generation parts of GCC are concerned) during most of the function's
6990 activation. That will happen (for example) if the parameter is never
6991 referenced within the function.
6993 We could just generate a location descriptor here for all non-NULL
6994 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
6995 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
6996 where DECL_RTL is NULL or is a pseudo-reg.
6998 Note however that we can only get away with using DECL_INCOMING_RTL as
6999 a backup substitute for DECL_RTL in certain limited cases. In cases
7000 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
7001 we can be sure that the parameter was passed using the same type as it is
7002 declared to have within the function, and that its DECL_INCOMING_RTL
7003 points us to a place where a value of that type is passed.
7005 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
7006 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
7007 because in these cases DECL_INCOMING_RTL points us to a value of some
7008 type which is *different* from the type of the parameter itself. Thus,
7009 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
7010 such cases, the debugger would end up (for example) trying to fetch a
7011 `float' from a place which actually contains the first part of a
7012 `double'. That would lead to really incorrect and confusing
7013 output at debug-time.
7015 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
7016 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
7017 are a couple of exceptions however. On little-endian machines we can
7018 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
7019 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
7020 an integral type that is smaller than TREE_TYPE (decl). These cases arise
7021 when (on a little-endian machine) a non-prototyped function has a
7022 parameter declared to be of type `short' or `char'. In such cases,
7023 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
7024 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
7025 passed `int' value. If the debugger then uses that address to fetch
7026 a `short' or a `char' (on a little-endian machine) the result will be
7027 the correct data, so we allow for such exceptional cases below.
7029 Note that our goal here is to describe the place where the given formal
7030 parameter lives during most of the function's activation (i.e. between
7031 the end of the prologue and the start of the epilogue). We'll do that
7032 as best as we can. Note however that if the given formal parameter is
7033 modified sometime during the execution of the function, then a stack
7034 backtrace (at debug-time) will show the function as having been
7035 called with the *new* value rather than the value which was
7036 originally passed in. This happens rarely enough that it is not
7037 a major problem, but it *is* a problem, and I'd like to fix it.
7039 A future version of dwarf2out.c may generate two additional
7040 attributes for any given DW_TAG_formal_parameter DIE which will
7041 describe the "passed type" and the "passed location" for the
7042 given formal parameter in addition to the attributes we now
7043 generate to indicate the "declared type" and the "active
7044 location" for each parameter. This additional set of attributes
7045 could be used by debuggers for stack backtraces. Separately, note
7046 that sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be
7047 NULL also. This happens (for example) for inlined-instances of
7048 inline function formal parameters which are never referenced.
7049 This really shouldn't be happening. All PARM_DECL nodes should
7050 get valid non-NULL DECL_INCOMING_RTL values, but integrate.c
7051 doesn't currently generate these values for inlined instances of
7052 inline function parameters, so when we see such cases, we are
7053 just out-of-luck for the time being (until integrate.c
7054 gets fixed). */
7056 /* Use DECL_RTL as the "location" unless we find something better. */
7057 rtl = DECL_RTL (decl);
7059 if (TREE_CODE (decl) == PARM_DECL)
7061 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
7063 declared_type = type_main_variant (TREE_TYPE (decl));
7064 passed_type = type_main_variant (DECL_ARG_TYPE (decl));
7066 /* This decl represents a formal parameter which was optimized out.
7067 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
7068 all* cases where (rtl == NULL_RTX) just below. */
7069 if (declared_type == passed_type)
7070 rtl = DECL_INCOMING_RTL (decl);
7071 else if (! BYTES_BIG_ENDIAN
7072 && TREE_CODE (declared_type) == INTEGER_TYPE
7073 && TYPE_SIZE (declared_type) <= TYPE_SIZE (passed_type))
7074 rtl = DECL_INCOMING_RTL (decl);
7078 if (rtl == NULL_RTX)
7079 return;
7081 rtl = eliminate_regs (rtl, 0, NULL_RTX);
7082 #ifdef LEAF_REG_REMAP
7083 if (leaf_function)
7084 leaf_renumber_regs_insn (rtl);
7085 #endif
7087 switch (GET_CODE (rtl))
7089 case ADDRESSOF:
7090 /* The address of a variable that was optimized away; don't emit
7091 anything. */
7092 break;
7094 case CONST_INT:
7095 case CONST_DOUBLE:
7096 case CONST_STRING:
7097 case SYMBOL_REF:
7098 case LABEL_REF:
7099 case CONST:
7100 case PLUS:
7101 /* DECL_RTL could be (plus (reg ...) (const_int ...)) */
7102 add_const_value_attribute (die, rtl);
7103 break;
7105 case MEM:
7106 case REG:
7107 case SUBREG:
7108 case CONCAT:
7109 add_AT_location_description (die, DW_AT_location, rtl);
7110 break;
7112 default:
7113 abort ();
7117 /* Generate an DW_AT_name attribute given some string value to be included as
7118 the value of the attribute. */
7120 static inline void
7121 add_name_attribute (die, name_string)
7122 register dw_die_ref die;
7123 register char *name_string;
7125 if (name_string != NULL && *name_string != 0)
7126 add_AT_string (die, DW_AT_name, name_string);
7129 /* Given a tree node describing an array bound (either lower or upper) output
7130 a representation for that bound. */
7132 static void
7133 add_bound_info (subrange_die, bound_attr, bound)
7134 register dw_die_ref subrange_die;
7135 register enum dwarf_attribute bound_attr;
7136 register tree bound;
7138 register unsigned bound_value = 0;
7140 /* If this is an Ada unconstrained array type, then don't emit any debug
7141 info because the array bounds are unknown. They are parameterized when
7142 the type is instantiated. */
7143 if (contains_placeholder_p (bound))
7144 return;
7146 switch (TREE_CODE (bound))
7148 case ERROR_MARK:
7149 return;
7151 /* All fixed-bounds are represented by INTEGER_CST nodes. */
7152 case INTEGER_CST:
7153 bound_value = TREE_INT_CST_LOW (bound);
7154 if (bound_attr == DW_AT_lower_bound
7155 && ((is_c_family () && bound_value == 0)
7156 || (is_fortran () && bound_value == 1)))
7157 /* use the default */;
7158 else
7159 add_AT_unsigned (subrange_die, bound_attr, bound_value);
7160 break;
7162 case CONVERT_EXPR:
7163 case NOP_EXPR:
7164 case NON_LVALUE_EXPR:
7165 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
7166 break;
7168 case SAVE_EXPR:
7169 /* If optimization is turned on, the SAVE_EXPRs that describe how to
7170 access the upper bound values may be bogus. If they refer to a
7171 register, they may only describe how to get at these values at the
7172 points in the generated code right after they have just been
7173 computed. Worse yet, in the typical case, the upper bound values
7174 will not even *be* computed in the optimized code (though the
7175 number of elements will), so these SAVE_EXPRs are entirely
7176 bogus. In order to compensate for this fact, we check here to see
7177 if optimization is enabled, and if so, we don't add an attribute
7178 for the (unknown and unknowable) upper bound. This should not
7179 cause too much trouble for existing (stupid?) debuggers because
7180 they have to deal with empty upper bounds location descriptions
7181 anyway in order to be able to deal with incomplete array types.
7182 Of course an intelligent debugger (GDB?) should be able to
7183 comprehend that a missing upper bound specification in a array
7184 type used for a storage class `auto' local array variable
7185 indicates that the upper bound is both unknown (at compile- time)
7186 and unknowable (at run-time) due to optimization.
7188 We assume that a MEM rtx is safe because gcc wouldn't put the
7189 value there unless it was going to be used repeatedly in the
7190 function, i.e. for cleanups. */
7191 if (! optimize || GET_CODE (SAVE_EXPR_RTL (bound)) == MEM)
7193 register dw_die_ref ctx = lookup_decl_die (current_function_decl);
7194 register dw_die_ref decl_die = new_die (DW_TAG_variable, ctx);
7195 register rtx loc = SAVE_EXPR_RTL (bound);
7197 /* If the RTL for the SAVE_EXPR is memory, handle the case where
7198 it references an outer function's frame. */
7200 if (GET_CODE (loc) == MEM)
7202 rtx new_addr = fix_lexical_addr (XEXP (loc, 0), bound);
7204 if (XEXP (loc, 0) != new_addr)
7205 loc = gen_rtx (MEM, GET_MODE (loc), new_addr);
7208 add_AT_flag (decl_die, DW_AT_artificial, 1);
7209 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
7210 add_AT_location_description (decl_die, DW_AT_location, loc);
7211 add_AT_die_ref (subrange_die, bound_attr, decl_die);
7214 /* Else leave out the attribute. */
7215 break;
7217 case MAX_EXPR:
7218 case VAR_DECL:
7219 case COMPONENT_REF:
7220 /* ??? These types of bounds can be created by the Ada front end,
7221 and it isn't clear how to emit debug info for them. */
7222 break;
7224 default:
7225 abort ();
7229 /* Note that the block of subscript information for an array type also
7230 includes information about the element type of type given array type. */
7232 static void
7233 add_subscript_info (type_die, type)
7234 register dw_die_ref type_die;
7235 register tree type;
7237 #ifndef MIPS_DEBUGGING_INFO
7238 register unsigned dimension_number;
7239 #endif
7240 register tree lower, upper;
7241 register dw_die_ref subrange_die;
7243 /* The GNU compilers represent multidimensional array types as sequences of
7244 one dimensional array types whose element types are themselves array
7245 types. Here we squish that down, so that each multidimensional array
7246 type gets only one array_type DIE in the Dwarf debugging info. The draft
7247 Dwarf specification say that we are allowed to do this kind of
7248 compression in C (because there is no difference between an array or
7249 arrays and a multidimensional array in C) but for other source languages
7250 (e.g. Ada) we probably shouldn't do this. */
7252 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
7253 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
7254 We work around this by disabling this feature. See also
7255 gen_array_type_die. */
7256 #ifndef MIPS_DEBUGGING_INFO
7257 for (dimension_number = 0;
7258 TREE_CODE (type) == ARRAY_TYPE;
7259 type = TREE_TYPE (type), dimension_number++)
7261 #endif
7262 register tree domain = TYPE_DOMAIN (type);
7264 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
7265 and (in GNU C only) variable bounds. Handle all three forms
7266 here. */
7267 subrange_die = new_die (DW_TAG_subrange_type, type_die);
7268 if (domain)
7270 /* We have an array type with specified bounds. */
7271 lower = TYPE_MIN_VALUE (domain);
7272 upper = TYPE_MAX_VALUE (domain);
7274 /* define the index type. */
7275 if (TREE_TYPE (domain))
7277 /* ??? This is probably an Ada unnamed subrange type. Ignore the
7278 TREE_TYPE field. We can't emit debug info for this
7279 because it is an unnamed integral type. */
7280 if (TREE_CODE (domain) == INTEGER_TYPE
7281 && TYPE_NAME (domain) == NULL_TREE
7282 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
7283 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
7285 else
7286 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
7287 type_die);
7290 /* ??? If upper is NULL, the array has unspecified length,
7291 but it does have a lower bound. This happens with Fortran
7292 dimension arr(N:*)
7293 Since the debugger is definitely going to need to know N
7294 to produce useful results, go ahead and output the lower
7295 bound solo, and hope the debugger can cope. */
7297 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
7298 if (upper)
7299 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
7301 else
7302 /* We have an array type with an unspecified length. The DWARF-2
7303 spec does not say how to handle this; let's just leave out the
7304 bounds. */
7308 #ifndef MIPS_DEBUGGING_INFO
7310 #endif
7313 static void
7314 add_byte_size_attribute (die, tree_node)
7315 dw_die_ref die;
7316 register tree tree_node;
7318 register unsigned size;
7320 switch (TREE_CODE (tree_node))
7322 case ERROR_MARK:
7323 size = 0;
7324 break;
7325 case ENUMERAL_TYPE:
7326 case RECORD_TYPE:
7327 case UNION_TYPE:
7328 case QUAL_UNION_TYPE:
7329 size = int_size_in_bytes (tree_node);
7330 break;
7331 case FIELD_DECL:
7332 /* For a data member of a struct or union, the DW_AT_byte_size is
7333 generally given as the number of bytes normally allocated for an
7334 object of the *declared* type of the member itself. This is true
7335 even for bit-fields. */
7336 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
7337 break;
7338 default:
7339 abort ();
7342 /* Note that `size' might be -1 when we get to this point. If it is, that
7343 indicates that the byte size of the entity in question is variable. We
7344 have no good way of expressing this fact in Dwarf at the present time,
7345 so just let the -1 pass on through. */
7347 add_AT_unsigned (die, DW_AT_byte_size, size);
7350 /* For a FIELD_DECL node which represents a bit-field, output an attribute
7351 which specifies the distance in bits from the highest order bit of the
7352 "containing object" for the bit-field to the highest order bit of the
7353 bit-field itself.
7355 For any given bit-field, the "containing object" is a hypothetical
7356 object (of some integral or enum type) within which the given bit-field
7357 lives. The type of this hypothetical "containing object" is always the
7358 same as the declared type of the individual bit-field itself. The
7359 determination of the exact location of the "containing object" for a
7360 bit-field is rather complicated. It's handled by the
7361 `field_byte_offset' function (above).
7363 Note that it is the size (in bytes) of the hypothetical "containing object"
7364 which will be given in the DW_AT_byte_size attribute for this bit-field.
7365 (See `byte_size_attribute' above). */
7367 static inline void
7368 add_bit_offset_attribute (die, decl)
7369 register dw_die_ref die;
7370 register tree decl;
7372 register unsigned object_offset_in_bytes = field_byte_offset (decl);
7373 register tree type = DECL_BIT_FIELD_TYPE (decl);
7374 register tree bitpos_tree = DECL_FIELD_BITPOS (decl);
7375 register unsigned bitpos_int;
7376 register unsigned highest_order_object_bit_offset;
7377 register unsigned highest_order_field_bit_offset;
7378 register unsigned bit_offset;
7380 /* Must be a field and a bit field. */
7381 if (!type
7382 || TREE_CODE (decl) != FIELD_DECL)
7383 abort ();
7385 /* We can't yet handle bit-fields whose offsets are variable, so if we
7386 encounter such things, just return without generating any attribute
7387 whatsoever. */
7388 if (TREE_CODE (bitpos_tree) != INTEGER_CST)
7389 return;
7391 bitpos_int = (unsigned) TREE_INT_CST_LOW (bitpos_tree);
7393 /* Note that the bit offset is always the distance (in bits) from the
7394 highest-order bit of the "containing object" to the highest-order bit of
7395 the bit-field itself. Since the "high-order end" of any object or field
7396 is different on big-endian and little-endian machines, the computation
7397 below must take account of these differences. */
7398 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
7399 highest_order_field_bit_offset = bitpos_int;
7401 if (! BYTES_BIG_ENDIAN)
7403 highest_order_field_bit_offset
7404 += (unsigned) TREE_INT_CST_LOW (DECL_SIZE (decl));
7406 highest_order_object_bit_offset += simple_type_size_in_bits (type);
7409 bit_offset
7410 = (! BYTES_BIG_ENDIAN
7411 ? highest_order_object_bit_offset - highest_order_field_bit_offset
7412 : highest_order_field_bit_offset - highest_order_object_bit_offset);
7414 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
7417 /* For a FIELD_DECL node which represents a bit field, output an attribute
7418 which specifies the length in bits of the given field. */
7420 static inline void
7421 add_bit_size_attribute (die, decl)
7422 register dw_die_ref die;
7423 register tree decl;
7425 /* Must be a field and a bit field. */
7426 if (TREE_CODE (decl) != FIELD_DECL
7427 || ! DECL_BIT_FIELD_TYPE (decl))
7428 abort ();
7429 add_AT_unsigned (die, DW_AT_bit_size,
7430 (unsigned) TREE_INT_CST_LOW (DECL_SIZE (decl)));
7433 /* If the compiled language is ANSI C, then add a 'prototyped'
7434 attribute, if arg types are given for the parameters of a function. */
7436 static inline void
7437 add_prototyped_attribute (die, func_type)
7438 register dw_die_ref die;
7439 register tree func_type;
7441 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
7442 && TYPE_ARG_TYPES (func_type) != NULL)
7443 add_AT_flag (die, DW_AT_prototyped, 1);
7447 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
7448 by looking in either the type declaration or object declaration
7449 equate table. */
7451 static inline void
7452 add_abstract_origin_attribute (die, origin)
7453 register dw_die_ref die;
7454 register tree origin;
7456 dw_die_ref origin_die = NULL;
7457 if (TREE_CODE_CLASS (TREE_CODE (origin)) == 'd')
7458 origin_die = lookup_decl_die (origin);
7459 else if (TREE_CODE_CLASS (TREE_CODE (origin)) == 't')
7460 origin_die = lookup_type_die (origin);
7462 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
7465 /* We do not currently support the pure_virtual attribute. */
7467 static inline void
7468 add_pure_or_virtual_attribute (die, func_decl)
7469 register dw_die_ref die;
7470 register tree func_decl;
7472 if (DECL_VINDEX (func_decl))
7474 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
7475 add_AT_loc (die, DW_AT_vtable_elem_location,
7476 new_loc_descr (DW_OP_constu,
7477 TREE_INT_CST_LOW (DECL_VINDEX (func_decl)),
7478 0));
7480 /* GNU extension: Record what type this method came from originally. */
7481 if (debug_info_level > DINFO_LEVEL_TERSE)
7482 add_AT_die_ref (die, DW_AT_containing_type,
7483 lookup_type_die (DECL_CONTEXT (func_decl)));
7487 /* Add source coordinate attributes for the given decl. */
7489 static void
7490 add_src_coords_attributes (die, decl)
7491 register dw_die_ref die;
7492 register tree decl;
7494 register unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
7496 add_AT_unsigned (die, DW_AT_decl_file, file_index);
7497 add_AT_unsigned (die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
7500 /* Add an DW_AT_name attribute and source coordinate attribute for the
7501 given decl, but only if it actually has a name. */
7503 static void
7504 add_name_and_src_coords_attributes (die, decl)
7505 register dw_die_ref die;
7506 register tree decl;
7508 register tree decl_name;
7510 decl_name = DECL_NAME (decl);
7511 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
7513 add_name_attribute (die, dwarf2_name (decl, 0));
7514 add_src_coords_attributes (die, decl);
7515 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
7516 && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
7517 add_AT_string (die, DW_AT_MIPS_linkage_name,
7518 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
7522 /* Push a new declaration scope. */
7524 static void
7525 push_decl_scope (scope)
7526 tree scope;
7528 tree containing_scope;
7529 int i;
7531 /* Make room in the decl_scope_table, if necessary. */
7532 if (decl_scope_table_allocated == decl_scope_depth)
7534 decl_scope_table_allocated += DECL_SCOPE_TABLE_INCREMENT;
7535 decl_scope_table
7536 = (decl_scope_node *) xrealloc (decl_scope_table,
7537 (decl_scope_table_allocated
7538 * sizeof (decl_scope_node)));
7541 decl_scope_table[decl_scope_depth].scope = scope;
7543 /* Sometimes, while recursively emitting subtypes within a class type,
7544 we end up recuring on a subtype at a higher level then the current
7545 subtype. In such a case, we need to search the decl_scope_table to
7546 find the parent of this subtype. */
7548 if (TREE_CODE_CLASS (TREE_CODE (scope)) == 't')
7549 containing_scope = TYPE_CONTEXT (scope);
7550 else
7551 containing_scope = NULL_TREE;
7553 /* The normal case. */
7554 if (decl_scope_depth == 0
7555 || containing_scope == NULL_TREE
7556 /* Ignore namespaces for the moment. */
7557 || TREE_CODE (containing_scope) == NAMESPACE_DECL
7558 || containing_scope == decl_scope_table[decl_scope_depth - 1].scope)
7559 decl_scope_table[decl_scope_depth].previous = decl_scope_depth - 1;
7560 else
7562 /* We need to search for the containing_scope. */
7563 for (i = 0; i < decl_scope_depth; i++)
7564 if (decl_scope_table[i].scope == containing_scope)
7565 break;
7567 if (i == decl_scope_depth)
7568 abort ();
7569 else
7570 decl_scope_table[decl_scope_depth].previous = i;
7573 decl_scope_depth++;
7576 /* Return the DIE for the scope that immediately contains this declaration. */
7578 static dw_die_ref
7579 scope_die_for (t, context_die)
7580 register tree t;
7581 register dw_die_ref context_die;
7583 register dw_die_ref scope_die = NULL;
7584 register tree containing_scope;
7585 register int i;
7587 /* Walk back up the declaration tree looking for a place to define
7588 this type. */
7589 if (TREE_CODE_CLASS (TREE_CODE (t)) == 't')
7590 containing_scope = TYPE_CONTEXT (t);
7591 else if (TREE_CODE (t) == FUNCTION_DECL && DECL_VINDEX (t))
7592 containing_scope = decl_class_context (t);
7593 else
7594 containing_scope = DECL_CONTEXT (t);
7596 /* Ignore namespaces for the moment. */
7597 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
7598 containing_scope = NULL_TREE;
7600 /* Function-local tags and functions get stuck in limbo until they are
7601 fixed up by decls_for_scope. */
7602 if (context_die == NULL && containing_scope != NULL_TREE
7603 && (TREE_CODE (t) == FUNCTION_DECL || is_tagged_type (t)))
7604 return NULL;
7606 if (containing_scope == NULL_TREE)
7607 scope_die = comp_unit_die;
7608 else
7610 for (i = decl_scope_depth - 1, scope_die = context_die;
7611 i >= 0 && decl_scope_table[i].scope != containing_scope;
7612 (scope_die = scope_die->die_parent,
7613 i = decl_scope_table[i].previous))
7616 /* ??? Integrate_decl_tree does not handle BLOCK_TYPE_TAGS, nor
7617 does it try to handle types defined by TYPE_DECLs. Such types
7618 thus have an incorrect TYPE_CONTEXT, which points to the block
7619 they were originally defined in, instead of the current block
7620 created by function inlining. We try to detect that here and
7621 work around it. */
7623 if (i < 0 && scope_die == comp_unit_die
7624 && TREE_CODE (containing_scope) == BLOCK
7625 && is_tagged_type (t)
7626 && (block_ultimate_origin (decl_scope_table[decl_scope_depth - 1].scope)
7627 == containing_scope))
7629 scope_die = context_die;
7630 /* Since the checks below are no longer applicable. */
7631 i = 0;
7634 if (i < 0)
7636 if (scope_die != comp_unit_die
7637 || TREE_CODE_CLASS (TREE_CODE (containing_scope)) != 't')
7638 abort ();
7639 if (debug_info_level > DINFO_LEVEL_TERSE
7640 && !TREE_ASM_WRITTEN (containing_scope))
7641 abort ();
7645 return scope_die;
7648 /* Pop a declaration scope. */
7649 static inline void
7650 pop_decl_scope ()
7652 if (decl_scope_depth <= 0)
7653 abort ();
7654 --decl_scope_depth;
7657 /* Many forms of DIEs require a "type description" attribute. This
7658 routine locates the proper "type descriptor" die for the type given
7659 by 'type', and adds an DW_AT_type attribute below the given die. */
7661 static void
7662 add_type_attribute (object_die, type, decl_const, decl_volatile, context_die)
7663 register dw_die_ref object_die;
7664 register tree type;
7665 register int decl_const;
7666 register int decl_volatile;
7667 register dw_die_ref context_die;
7669 register enum tree_code code = TREE_CODE (type);
7670 register dw_die_ref type_die = NULL;
7672 /* ??? If this type is an unnamed subrange type of an integral or
7673 floating-point type, use the inner type. This is because we have no
7674 support for unnamed types in base_type_die. This can happen if this is
7675 an Ada subrange type. Correct solution is emit a subrange type die. */
7676 if ((code == INTEGER_TYPE || code == REAL_TYPE)
7677 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
7678 type = TREE_TYPE (type), code = TREE_CODE (type);
7680 if (code == ERROR_MARK)
7681 return;
7683 /* Handle a special case. For functions whose return type is void, we
7684 generate *no* type attribute. (Note that no object may have type
7685 `void', so this only applies to function return types). */
7686 if (code == VOID_TYPE)
7687 return;
7689 type_die = modified_type_die (type,
7690 decl_const || TYPE_READONLY (type),
7691 decl_volatile || TYPE_VOLATILE (type),
7692 context_die);
7693 if (type_die != NULL)
7694 add_AT_die_ref (object_die, DW_AT_type, type_die);
7697 /* Given a tree pointer to a struct, class, union, or enum type node, return
7698 a pointer to the (string) tag name for the given type, or zero if the type
7699 was declared without a tag. */
7701 static char *
7702 type_tag (type)
7703 register tree type;
7705 register char *name = 0;
7707 if (TYPE_NAME (type) != 0)
7709 register tree t = 0;
7711 /* Find the IDENTIFIER_NODE for the type name. */
7712 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
7713 t = TYPE_NAME (type);
7715 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
7716 a TYPE_DECL node, regardless of whether or not a `typedef' was
7717 involved. */
7718 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7719 && ! DECL_IGNORED_P (TYPE_NAME (type)))
7720 t = DECL_NAME (TYPE_NAME (type));
7722 /* Now get the name as a string, or invent one. */
7723 if (t != 0)
7724 name = IDENTIFIER_POINTER (t);
7727 return (name == 0 || *name == '\0') ? 0 : name;
7730 /* Return the type associated with a data member, make a special check
7731 for bit field types. */
7733 static inline tree
7734 member_declared_type (member)
7735 register tree member;
7737 return (DECL_BIT_FIELD_TYPE (member)
7738 ? DECL_BIT_FIELD_TYPE (member)
7739 : TREE_TYPE (member));
7742 /* Get the decl's label, as described by its RTL. This may be different
7743 from the DECL_NAME name used in the source file. */
7745 #if 0
7746 static char *
7747 decl_start_label (decl)
7748 register tree decl;
7750 rtx x;
7751 char *fnname;
7752 x = DECL_RTL (decl);
7753 if (GET_CODE (x) != MEM)
7754 abort ();
7756 x = XEXP (x, 0);
7757 if (GET_CODE (x) != SYMBOL_REF)
7758 abort ();
7760 fnname = XSTR (x, 0);
7761 return fnname;
7763 #endif
7765 /* These routines generate the internal representation of the DIE's for
7766 the compilation unit. Debugging information is collected by walking
7767 the declaration trees passed in from dwarf2out_decl(). */
7769 static void
7770 gen_array_type_die (type, context_die)
7771 register tree type;
7772 register dw_die_ref context_die;
7774 register dw_die_ref scope_die = scope_die_for (type, context_die);
7775 register dw_die_ref array_die;
7776 register tree element_type;
7778 /* ??? The SGI dwarf reader fails for array of array of enum types unless
7779 the inner array type comes before the outer array type. Thus we must
7780 call gen_type_die before we call new_die. See below also. */
7781 #ifdef MIPS_DEBUGGING_INFO
7782 gen_type_die (TREE_TYPE (type), context_die);
7783 #endif
7785 array_die = new_die (DW_TAG_array_type, scope_die);
7787 #if 0
7788 /* We default the array ordering. SDB will probably do
7789 the right things even if DW_AT_ordering is not present. It's not even
7790 an issue until we start to get into multidimensional arrays anyway. If
7791 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
7792 then we'll have to put the DW_AT_ordering attribute back in. (But if
7793 and when we find out that we need to put these in, we will only do so
7794 for multidimensional arrays. */
7795 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
7796 #endif
7798 #ifdef MIPS_DEBUGGING_INFO
7799 /* The SGI compilers handle arrays of unknown bound by setting
7800 AT_declaration and not emitting any subrange DIEs. */
7801 if (! TYPE_DOMAIN (type))
7802 add_AT_unsigned (array_die, DW_AT_declaration, 1);
7803 else
7804 #endif
7805 add_subscript_info (array_die, type);
7807 equate_type_number_to_die (type, array_die);
7809 /* Add representation of the type of the elements of this array type. */
7810 element_type = TREE_TYPE (type);
7812 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
7813 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
7814 We work around this by disabling this feature. See also
7815 add_subscript_info. */
7816 #ifndef MIPS_DEBUGGING_INFO
7817 while (TREE_CODE (element_type) == ARRAY_TYPE)
7818 element_type = TREE_TYPE (element_type);
7820 gen_type_die (element_type, context_die);
7821 #endif
7823 add_type_attribute (array_die, element_type, 0, 0, context_die);
7826 static void
7827 gen_set_type_die (type, context_die)
7828 register tree type;
7829 register dw_die_ref context_die;
7831 register dw_die_ref type_die
7832 = new_die (DW_TAG_set_type, scope_die_for (type, context_die));
7834 equate_type_number_to_die (type, type_die);
7835 add_type_attribute (type_die, TREE_TYPE (type), 0, 0, context_die);
7838 #if 0
7839 static void
7840 gen_entry_point_die (decl, context_die)
7841 register tree decl;
7842 register dw_die_ref context_die;
7844 register tree origin = decl_ultimate_origin (decl);
7845 register dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die);
7846 if (origin != NULL)
7847 add_abstract_origin_attribute (decl_die, origin);
7848 else
7850 add_name_and_src_coords_attributes (decl_die, decl);
7851 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
7852 0, 0, context_die);
7855 if (DECL_ABSTRACT (decl))
7856 equate_decl_number_to_die (decl, decl_die);
7857 else
7858 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
7860 #endif
7862 /* Remember a type in the pending_types_list. */
7864 static void
7865 pend_type (type)
7866 register tree type;
7868 if (pending_types == pending_types_allocated)
7870 pending_types_allocated += PENDING_TYPES_INCREMENT;
7871 pending_types_list
7872 = (tree *) xrealloc (pending_types_list,
7873 sizeof (tree) * pending_types_allocated);
7876 pending_types_list[pending_types++] = type;
7879 /* Output any pending types (from the pending_types list) which we can output
7880 now (taking into account the scope that we are working on now).
7882 For each type output, remove the given type from the pending_types_list
7883 *before* we try to output it. */
7885 static void
7886 output_pending_types_for_scope (context_die)
7887 register dw_die_ref context_die;
7889 register tree type;
7891 while (pending_types)
7893 --pending_types;
7894 type = pending_types_list[pending_types];
7895 gen_type_die (type, context_die);
7896 if (!TREE_ASM_WRITTEN (type))
7897 abort ();
7901 /* Generate a DIE to represent an inlined instance of an enumeration type. */
7903 static void
7904 gen_inlined_enumeration_type_die (type, context_die)
7905 register tree type;
7906 register dw_die_ref context_die;
7908 register dw_die_ref type_die = new_die (DW_TAG_enumeration_type,
7909 scope_die_for (type, context_die));
7911 if (!TREE_ASM_WRITTEN (type))
7912 abort ();
7913 add_abstract_origin_attribute (type_die, type);
7916 /* Generate a DIE to represent an inlined instance of a structure type. */
7918 static void
7919 gen_inlined_structure_type_die (type, context_die)
7920 register tree type;
7921 register dw_die_ref context_die;
7923 register dw_die_ref type_die = new_die (DW_TAG_structure_type,
7924 scope_die_for (type, context_die));
7926 if (!TREE_ASM_WRITTEN (type))
7927 abort ();
7928 add_abstract_origin_attribute (type_die, type);
7931 /* Generate a DIE to represent an inlined instance of a union type. */
7933 static void
7934 gen_inlined_union_type_die (type, context_die)
7935 register tree type;
7936 register dw_die_ref context_die;
7938 register dw_die_ref type_die = new_die (DW_TAG_union_type,
7939 scope_die_for (type, context_die));
7941 if (!TREE_ASM_WRITTEN (type))
7942 abort ();
7943 add_abstract_origin_attribute (type_die, type);
7946 /* Generate a DIE to represent an enumeration type. Note that these DIEs
7947 include all of the information about the enumeration values also. Each
7948 enumerated type name/value is listed as a child of the enumerated type
7949 DIE. */
7951 static void
7952 gen_enumeration_type_die (type, context_die)
7953 register tree type;
7954 register dw_die_ref context_die;
7956 register dw_die_ref type_die = lookup_type_die (type);
7958 if (type_die == NULL)
7960 type_die = new_die (DW_TAG_enumeration_type,
7961 scope_die_for (type, context_die));
7962 equate_type_number_to_die (type, type_die);
7963 add_name_attribute (type_die, type_tag (type));
7965 else if (! TYPE_SIZE (type))
7966 return;
7967 else
7968 remove_AT (type_die, DW_AT_declaration);
7970 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
7971 given enum type is incomplete, do not generate the DW_AT_byte_size
7972 attribute or the DW_AT_element_list attribute. */
7973 if (TYPE_SIZE (type))
7975 register tree link;
7977 TREE_ASM_WRITTEN (type) = 1;
7978 add_byte_size_attribute (type_die, type);
7979 if (TYPE_STUB_DECL (type) != NULL_TREE)
7980 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
7982 /* If the first reference to this type was as the return type of an
7983 inline function, then it may not have a parent. Fix this now. */
7984 if (type_die->die_parent == NULL)
7985 add_child_die (scope_die_for (type, context_die), type_die);
7987 for (link = TYPE_FIELDS (type);
7988 link != NULL; link = TREE_CHAIN (link))
7990 register dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die);
7992 add_name_attribute (enum_die,
7993 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
7994 add_AT_unsigned (enum_die, DW_AT_const_value,
7995 (unsigned) TREE_INT_CST_LOW (TREE_VALUE (link)));
7998 else
7999 add_AT_flag (type_die, DW_AT_declaration, 1);
8003 /* Generate a DIE to represent either a real live formal parameter decl or to
8004 represent just the type of some formal parameter position in some function
8005 type.
8007 Note that this routine is a bit unusual because its argument may be a
8008 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
8009 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
8010 node. If it's the former then this function is being called to output a
8011 DIE to represent a formal parameter object (or some inlining thereof). If
8012 it's the latter, then this function is only being called to output a
8013 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
8014 argument type of some subprogram type. */
8016 static dw_die_ref
8017 gen_formal_parameter_die (node, context_die)
8018 register tree node;
8019 register dw_die_ref context_die;
8021 register dw_die_ref parm_die
8022 = new_die (DW_TAG_formal_parameter, context_die);
8023 register tree origin;
8025 switch (TREE_CODE_CLASS (TREE_CODE (node)))
8027 case 'd':
8028 origin = decl_ultimate_origin (node);
8029 if (origin != NULL)
8030 add_abstract_origin_attribute (parm_die, origin);
8031 else
8033 add_name_and_src_coords_attributes (parm_die, node);
8034 add_type_attribute (parm_die, TREE_TYPE (node),
8035 TREE_READONLY (node),
8036 TREE_THIS_VOLATILE (node),
8037 context_die);
8038 if (DECL_ARTIFICIAL (node))
8039 add_AT_flag (parm_die, DW_AT_artificial, 1);
8042 equate_decl_number_to_die (node, parm_die);
8043 if (! DECL_ABSTRACT (node))
8044 add_location_or_const_value_attribute (parm_die, node);
8046 break;
8048 case 't':
8049 /* We were called with some kind of a ..._TYPE node. */
8050 add_type_attribute (parm_die, node, 0, 0, context_die);
8051 break;
8053 default:
8054 abort ();
8057 return parm_die;
8060 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
8061 at the end of an (ANSI prototyped) formal parameters list. */
8063 static void
8064 gen_unspecified_parameters_die (decl_or_type, context_die)
8065 register tree decl_or_type;
8066 register dw_die_ref context_die;
8068 new_die (DW_TAG_unspecified_parameters, context_die);
8071 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
8072 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
8073 parameters as specified in some function type specification (except for
8074 those which appear as part of a function *definition*).
8076 Note we must be careful here to output all of the parameter DIEs before*
8077 we output any DIEs needed to represent the types of the formal parameters.
8078 This keeps svr4 SDB happy because it (incorrectly) thinks that the first
8079 non-parameter DIE it sees ends the formal parameter list. */
8081 static void
8082 gen_formal_types_die (function_or_method_type, context_die)
8083 register tree function_or_method_type;
8084 register dw_die_ref context_die;
8086 register tree link;
8087 register tree formal_type = NULL;
8088 register tree first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
8090 #if 0
8091 /* In the case where we are generating a formal types list for a C++
8092 non-static member function type, skip over the first thing on the
8093 TYPE_ARG_TYPES list because it only represents the type of the hidden
8094 `this pointer'. The debugger should be able to figure out (without
8095 being explicitly told) that this non-static member function type takes a
8096 `this pointer' and should be able to figure what the type of that hidden
8097 parameter is from the DW_AT_member attribute of the parent
8098 DW_TAG_subroutine_type DIE. */
8099 if (TREE_CODE (function_or_method_type) == METHOD_TYPE)
8100 first_parm_type = TREE_CHAIN (first_parm_type);
8101 #endif
8103 /* Make our first pass over the list of formal parameter types and output a
8104 DW_TAG_formal_parameter DIE for each one. */
8105 for (link = first_parm_type; link; link = TREE_CHAIN (link))
8107 register dw_die_ref parm_die;
8109 formal_type = TREE_VALUE (link);
8110 if (formal_type == void_type_node)
8111 break;
8113 /* Output a (nameless) DIE to represent the formal parameter itself. */
8114 parm_die = gen_formal_parameter_die (formal_type, context_die);
8115 if (TREE_CODE (function_or_method_type) == METHOD_TYPE
8116 && link == first_parm_type)
8117 add_AT_flag (parm_die, DW_AT_artificial, 1);
8120 /* If this function type has an ellipsis, add a
8121 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
8122 if (formal_type != void_type_node)
8123 gen_unspecified_parameters_die (function_or_method_type, context_die);
8125 /* Make our second (and final) pass over the list of formal parameter types
8126 and output DIEs to represent those types (as necessary). */
8127 for (link = TYPE_ARG_TYPES (function_or_method_type);
8128 link;
8129 link = TREE_CHAIN (link))
8131 formal_type = TREE_VALUE (link);
8132 if (formal_type == void_type_node)
8133 break;
8135 gen_type_die (formal_type, context_die);
8139 /* Generate a DIE to represent a declared function (either file-scope or
8140 block-local). */
8142 static void
8143 gen_subprogram_die (decl, context_die)
8144 register tree decl;
8145 register dw_die_ref context_die;
8147 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
8148 register tree origin = decl_ultimate_origin (decl);
8149 register dw_die_ref subr_die;
8150 register rtx fp_reg;
8151 register tree fn_arg_types;
8152 register tree outer_scope;
8153 register dw_die_ref old_die = lookup_decl_die (decl);
8154 register int declaration
8155 = (current_function_decl != decl
8156 || (context_die
8157 && (context_die->die_tag == DW_TAG_structure_type
8158 || context_die->die_tag == DW_TAG_union_type)));
8160 if (origin != NULL)
8162 subr_die = new_die (DW_TAG_subprogram, context_die);
8163 add_abstract_origin_attribute (subr_die, origin);
8165 else if (old_die && DECL_ABSTRACT (decl)
8166 && get_AT_unsigned (old_die, DW_AT_inline))
8168 /* This must be a redefinition of an extern inline function.
8169 We can just reuse the old die here. */
8170 subr_die = old_die;
8172 /* Clear out the inlined attribute and parm types. */
8173 remove_AT (subr_die, DW_AT_inline);
8174 remove_children (subr_die);
8176 else if (old_die)
8178 register unsigned file_index
8179 = lookup_filename (DECL_SOURCE_FILE (decl));
8181 if (get_AT_flag (old_die, DW_AT_declaration) != 1)
8183 /* ??? This can happen if there is a bug in the program, for
8184 instance, if it has duplicate function definitions. Ideally,
8185 we should detect this case and ignore it. For now, if we have
8186 already reported an error, any error at all, then assume that
8187 we got here because of a input error, not a dwarf2 bug. */
8188 extern int errorcount;
8189 if (errorcount)
8190 return;
8191 abort ();
8194 /* If the definition comes from the same place as the declaration,
8195 maybe use the old DIE. We always want the DIE for this function
8196 that has the *_pc attributes to be under comp_unit_die so the
8197 debugger can find it. For inlines, that is the concrete instance,
8198 so we can use the old DIE here. For non-inline methods, we want a
8199 specification DIE at toplevel, so we need a new DIE. For local
8200 class methods, this does not apply. */
8201 if ((DECL_ABSTRACT (decl) || old_die->die_parent == comp_unit_die
8202 || context_die == NULL)
8203 && get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
8204 && (get_AT_unsigned (old_die, DW_AT_decl_line)
8205 == DECL_SOURCE_LINE (decl)))
8207 subr_die = old_die;
8209 /* Clear out the declaration attribute and the parm types. */
8210 remove_AT (subr_die, DW_AT_declaration);
8211 remove_children (subr_die);
8213 else
8215 subr_die = new_die (DW_TAG_subprogram, context_die);
8216 add_AT_die_ref (subr_die, DW_AT_specification, old_die);
8217 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
8218 add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
8219 if (get_AT_unsigned (old_die, DW_AT_decl_line)
8220 != DECL_SOURCE_LINE (decl))
8221 add_AT_unsigned
8222 (subr_die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
8225 else
8227 register dw_die_ref scope_die;
8229 if (DECL_CONTEXT (decl))
8230 scope_die = scope_die_for (decl, context_die);
8231 else
8232 /* Don't put block extern declarations under comp_unit_die. */
8233 scope_die = context_die;
8235 subr_die = new_die (DW_TAG_subprogram, scope_die);
8237 if (TREE_PUBLIC (decl))
8238 add_AT_flag (subr_die, DW_AT_external, 1);
8240 add_name_and_src_coords_attributes (subr_die, decl);
8241 if (debug_info_level > DINFO_LEVEL_TERSE)
8243 register tree type = TREE_TYPE (decl);
8245 add_prototyped_attribute (subr_die, type);
8246 add_type_attribute (subr_die, TREE_TYPE (type), 0, 0, context_die);
8249 add_pure_or_virtual_attribute (subr_die, decl);
8250 if (DECL_ARTIFICIAL (decl))
8251 add_AT_flag (subr_die, DW_AT_artificial, 1);
8252 if (TREE_PROTECTED (decl))
8253 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
8254 else if (TREE_PRIVATE (decl))
8255 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
8258 if (declaration)
8260 add_AT_flag (subr_die, DW_AT_declaration, 1);
8262 /* The first time we see a member function, it is in the context of
8263 the class to which it belongs. We make sure of this by emitting
8264 the class first. The next time is the definition, which is
8265 handled above. The two may come from the same source text. */
8266 if (DECL_CONTEXT (decl))
8267 equate_decl_number_to_die (decl, subr_die);
8269 else if (DECL_ABSTRACT (decl))
8271 /* ??? Checking DECL_DEFER_OUTPUT is correct for static inline functions,
8272 but not for extern inline functions. We can't get this completely
8273 correct because information about whether the function was declared
8274 inline is not saved anywhere. */
8275 if (DECL_DEFER_OUTPUT (decl))
8277 if (DECL_INLINE (decl))
8278 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
8279 else
8280 add_AT_unsigned (subr_die, DW_AT_inline,
8281 DW_INL_declared_not_inlined);
8283 else if (DECL_INLINE (decl))
8284 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
8285 else
8286 abort ();
8288 equate_decl_number_to_die (decl, subr_die);
8290 else if (!DECL_EXTERNAL (decl))
8292 if (origin == NULL_TREE)
8293 equate_decl_number_to_die (decl, subr_die);
8295 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
8296 current_funcdef_number);
8297 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
8298 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
8299 current_funcdef_number);
8300 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
8302 add_pubname (decl, subr_die);
8303 add_arange (decl, subr_die);
8305 #ifdef MIPS_DEBUGGING_INFO
8306 /* Add a reference to the FDE for this routine. */
8307 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
8308 #endif
8310 /* Define the "frame base" location for this routine. We use the
8311 frame pointer or stack pointer registers, since the RTL for local
8312 variables is relative to one of them. */
8313 fp_reg
8314 = frame_pointer_needed ? hard_frame_pointer_rtx : stack_pointer_rtx;
8315 add_AT_loc (subr_die, DW_AT_frame_base, reg_loc_descriptor (fp_reg));
8317 #if 0
8318 /* ??? This fails for nested inline functions, because context_display
8319 is not part of the state saved/restored for inline functions. */
8320 if (current_function_needs_context)
8321 add_AT_location_description (subr_die, DW_AT_static_link,
8322 lookup_static_chain (decl));
8323 #endif
8326 /* Now output descriptions of the arguments for this function. This gets
8327 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
8328 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
8329 `...' at the end of the formal parameter list. In order to find out if
8330 there was a trailing ellipsis or not, we must instead look at the type
8331 associated with the FUNCTION_DECL. This will be a node of type
8332 FUNCTION_TYPE. If the chain of type nodes hanging off of this
8333 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
8334 an ellipsis at the end. */
8335 push_decl_scope (decl);
8337 /* In the case where we are describing a mere function declaration, all we
8338 need to do here (and all we *can* do here) is to describe the *types* of
8339 its formal parameters. */
8340 if (debug_info_level <= DINFO_LEVEL_TERSE)
8342 else if (declaration)
8343 gen_formal_types_die (TREE_TYPE (decl), subr_die);
8344 else
8346 /* Generate DIEs to represent all known formal parameters */
8347 register tree arg_decls = DECL_ARGUMENTS (decl);
8348 register tree parm;
8350 /* When generating DIEs, generate the unspecified_parameters DIE
8351 instead if we come across the arg "__builtin_va_alist" */
8352 for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
8353 if (TREE_CODE (parm) == PARM_DECL)
8355 if (DECL_NAME (parm)
8356 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
8357 "__builtin_va_alist"))
8358 gen_unspecified_parameters_die (parm, subr_die);
8359 else
8360 gen_decl_die (parm, subr_die);
8363 /* Decide whether we need a unspecified_parameters DIE at the end.
8364 There are 2 more cases to do this for: 1) the ansi ... declaration -
8365 this is detectable when the end of the arg list is not a
8366 void_type_node 2) an unprototyped function declaration (not a
8367 definition). This just means that we have no info about the
8368 parameters at all. */
8369 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
8370 if (fn_arg_types != NULL)
8372 /* this is the prototyped case, check for ... */
8373 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
8374 gen_unspecified_parameters_die (decl, subr_die);
8376 else if (DECL_INITIAL (decl) == NULL_TREE)
8377 gen_unspecified_parameters_die (decl, subr_die);
8380 /* Output Dwarf info for all of the stuff within the body of the function
8381 (if it has one - it may be just a declaration). */
8382 outer_scope = DECL_INITIAL (decl);
8384 /* Note that here, `outer_scope' is a pointer to the outermost BLOCK
8385 node created to represent a function. This outermost BLOCK actually
8386 represents the outermost binding contour for the function, i.e. the
8387 contour in which the function's formal parameters and labels get
8388 declared. Curiously, it appears that the front end doesn't actually
8389 put the PARM_DECL nodes for the current function onto the BLOCK_VARS
8390 list for this outer scope. (They are strung off of the DECL_ARGUMENTS
8391 list for the function instead.) The BLOCK_VARS list for the
8392 `outer_scope' does provide us with a list of the LABEL_DECL nodes for
8393 the function however, and we output DWARF info for those in
8394 decls_for_scope. Just within the `outer_scope' there will be a BLOCK
8395 node representing the function's outermost pair of curly braces, and
8396 any blocks used for the base and member initializers of a C++
8397 constructor function. */
8398 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
8400 current_function_has_inlines = 0;
8401 decls_for_scope (outer_scope, subr_die, 0);
8403 #if 0 && defined (MIPS_DEBUGGING_INFO)
8404 if (current_function_has_inlines)
8406 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
8407 if (! comp_unit_has_inlines)
8409 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
8410 comp_unit_has_inlines = 1;
8413 #endif
8416 pop_decl_scope ();
8419 /* Generate a DIE to represent a declared data object. */
8421 static void
8422 gen_variable_die (decl, context_die)
8423 register tree decl;
8424 register dw_die_ref context_die;
8426 register tree origin = decl_ultimate_origin (decl);
8427 register dw_die_ref var_die = new_die (DW_TAG_variable, context_die);
8429 dw_die_ref old_die = lookup_decl_die (decl);
8430 int declaration
8431 = (DECL_EXTERNAL (decl)
8432 || current_function_decl != decl_function_context (decl)
8433 || context_die->die_tag == DW_TAG_structure_type
8434 || context_die->die_tag == DW_TAG_union_type);
8436 if (origin != NULL)
8437 add_abstract_origin_attribute (var_die, origin);
8438 /* Loop unrolling can create multiple blocks that refer to the same
8439 static variable, so we must test for the DW_AT_declaration flag. */
8440 /* ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
8441 copy decls and set the DECL_ABSTRACT flag on them instead of
8442 sharing them. */
8443 else if (old_die && TREE_STATIC (decl)
8444 && get_AT_flag (old_die, DW_AT_declaration) == 1)
8446 /* ??? This is an instantiation of a C++ class level static. */
8447 add_AT_die_ref (var_die, DW_AT_specification, old_die);
8448 if (DECL_NAME (decl))
8450 register unsigned file_index
8451 = lookup_filename (DECL_SOURCE_FILE (decl));
8453 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
8454 add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
8456 if (get_AT_unsigned (old_die, DW_AT_decl_line)
8457 != DECL_SOURCE_LINE (decl))
8459 add_AT_unsigned (var_die, DW_AT_decl_line,
8460 DECL_SOURCE_LINE (decl));
8463 else
8465 add_name_and_src_coords_attributes (var_die, decl);
8466 add_type_attribute (var_die, TREE_TYPE (decl),
8467 TREE_READONLY (decl),
8468 TREE_THIS_VOLATILE (decl), context_die);
8470 if (TREE_PUBLIC (decl))
8471 add_AT_flag (var_die, DW_AT_external, 1);
8473 if (DECL_ARTIFICIAL (decl))
8474 add_AT_flag (var_die, DW_AT_artificial, 1);
8476 if (TREE_PROTECTED (decl))
8477 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
8479 else if (TREE_PRIVATE (decl))
8480 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
8483 if (declaration)
8484 add_AT_flag (var_die, DW_AT_declaration, 1);
8486 if ((declaration && decl_class_context (decl)) || DECL_ABSTRACT (decl))
8487 equate_decl_number_to_die (decl, var_die);
8489 if (! declaration && ! DECL_ABSTRACT (decl))
8491 equate_decl_number_to_die (decl, var_die);
8492 add_location_or_const_value_attribute (var_die, decl);
8493 add_pubname (decl, var_die);
8497 /* Generate a DIE to represent a label identifier. */
8499 static void
8500 gen_label_die (decl, context_die)
8501 register tree decl;
8502 register dw_die_ref context_die;
8504 register tree origin = decl_ultimate_origin (decl);
8505 register dw_die_ref lbl_die = new_die (DW_TAG_label, context_die);
8506 register rtx insn;
8507 char label[MAX_ARTIFICIAL_LABEL_BYTES];
8508 char label2[MAX_ARTIFICIAL_LABEL_BYTES];
8510 if (origin != NULL)
8511 add_abstract_origin_attribute (lbl_die, origin);
8512 else
8513 add_name_and_src_coords_attributes (lbl_die, decl);
8515 if (DECL_ABSTRACT (decl))
8516 equate_decl_number_to_die (decl, lbl_die);
8517 else
8519 insn = DECL_RTL (decl);
8520 if (GET_CODE (insn) == CODE_LABEL)
8522 /* When optimization is enabled (via -O) some parts of the compiler
8523 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
8524 represent source-level labels which were explicitly declared by
8525 the user. This really shouldn't be happening though, so catch
8526 it if it ever does happen. */
8527 if (INSN_DELETED_P (insn))
8528 abort ();
8530 sprintf (label2, INSN_LABEL_FMT, current_funcdef_number);
8531 ASM_GENERATE_INTERNAL_LABEL (label, label2,
8532 (unsigned) INSN_UID (insn));
8533 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
8538 /* Generate a DIE for a lexical block. */
8540 static void
8541 gen_lexical_block_die (stmt, context_die, depth)
8542 register tree stmt;
8543 register dw_die_ref context_die;
8544 int depth;
8546 register dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die);
8547 char label[MAX_ARTIFICIAL_LABEL_BYTES];
8549 if (! BLOCK_ABSTRACT (stmt))
8551 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
8552 next_block_number);
8553 add_AT_lbl_id (stmt_die, DW_AT_low_pc, label);
8554 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL, next_block_number);
8555 add_AT_lbl_id (stmt_die, DW_AT_high_pc, label);
8558 push_decl_scope (stmt);
8559 decls_for_scope (stmt, stmt_die, depth);
8560 pop_decl_scope ();
8563 /* Generate a DIE for an inlined subprogram. */
8565 static void
8566 gen_inlined_subroutine_die (stmt, context_die, depth)
8567 register tree stmt;
8568 register dw_die_ref context_die;
8569 int depth;
8571 if (! BLOCK_ABSTRACT (stmt))
8573 register dw_die_ref subr_die
8574 = new_die (DW_TAG_inlined_subroutine, context_die);
8575 register tree decl = block_ultimate_origin (stmt);
8576 char label[MAX_ARTIFICIAL_LABEL_BYTES];
8578 add_abstract_origin_attribute (subr_die, decl);
8579 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
8580 next_block_number);
8581 add_AT_lbl_id (subr_die, DW_AT_low_pc, label);
8582 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL, next_block_number);
8583 add_AT_lbl_id (subr_die, DW_AT_high_pc, label);
8584 push_decl_scope (decl);
8585 decls_for_scope (stmt, subr_die, depth);
8586 pop_decl_scope ();
8587 current_function_has_inlines = 1;
8591 /* Generate a DIE for a field in a record, or structure. */
8593 static void
8594 gen_field_die (decl, context_die)
8595 register tree decl;
8596 register dw_die_ref context_die;
8598 register dw_die_ref decl_die = new_die (DW_TAG_member, context_die);
8600 add_name_and_src_coords_attributes (decl_die, decl);
8601 add_type_attribute (decl_die, member_declared_type (decl),
8602 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
8603 context_die);
8605 /* If this is a bit field... */
8606 if (DECL_BIT_FIELD_TYPE (decl))
8608 add_byte_size_attribute (decl_die, decl);
8609 add_bit_size_attribute (decl_die, decl);
8610 add_bit_offset_attribute (decl_die, decl);
8613 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
8614 add_data_member_location_attribute (decl_die, decl);
8616 if (DECL_ARTIFICIAL (decl))
8617 add_AT_flag (decl_die, DW_AT_artificial, 1);
8619 if (TREE_PROTECTED (decl))
8620 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
8622 else if (TREE_PRIVATE (decl))
8623 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
8626 #if 0
8627 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
8628 Use modified_type_die instead.
8629 We keep this code here just in case these types of DIEs may be needed to
8630 represent certain things in other languages (e.g. Pascal) someday. */
8631 static void
8632 gen_pointer_type_die (type, context_die)
8633 register tree type;
8634 register dw_die_ref context_die;
8636 register dw_die_ref ptr_die
8637 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die));
8639 equate_type_number_to_die (type, ptr_die);
8640 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
8641 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
8644 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
8645 Use modified_type_die instead.
8646 We keep this code here just in case these types of DIEs may be needed to
8647 represent certain things in other languages (e.g. Pascal) someday. */
8648 static void
8649 gen_reference_type_die (type, context_die)
8650 register tree type;
8651 register dw_die_ref context_die;
8653 register dw_die_ref ref_die
8654 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die));
8656 equate_type_number_to_die (type, ref_die);
8657 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
8658 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
8660 #endif
8662 /* Generate a DIE for a pointer to a member type. */
8663 static void
8664 gen_ptr_to_mbr_type_die (type, context_die)
8665 register tree type;
8666 register dw_die_ref context_die;
8668 register dw_die_ref ptr_die
8669 = new_die (DW_TAG_ptr_to_member_type, scope_die_for (type, context_die));
8671 equate_type_number_to_die (type, ptr_die);
8672 add_AT_die_ref (ptr_die, DW_AT_containing_type,
8673 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
8674 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
8677 /* Generate the DIE for the compilation unit. */
8679 static void
8680 gen_compile_unit_die (main_input_filename)
8681 register char *main_input_filename;
8683 char producer[250];
8684 char *wd = getpwd ();
8686 comp_unit_die = new_die (DW_TAG_compile_unit, NULL);
8687 add_name_attribute (comp_unit_die, main_input_filename);
8689 if (wd != NULL)
8690 add_AT_string (comp_unit_die, DW_AT_comp_dir, wd);
8692 sprintf (producer, "%s %s", language_string, version_string);
8694 #ifdef MIPS_DEBUGGING_INFO
8695 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
8696 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
8697 not appear in the producer string, the debugger reaches the conclusion
8698 that the object file is stripped and has no debugging information.
8699 To get the MIPS/SGI debugger to believe that there is debugging
8700 information in the object file, we add a -g to the producer string. */
8701 if (debug_info_level > DINFO_LEVEL_TERSE)
8702 strcat (producer, " -g");
8703 #endif
8705 add_AT_string (comp_unit_die, DW_AT_producer, producer);
8707 if (strcmp (language_string, "GNU C++") == 0)
8708 add_AT_unsigned (comp_unit_die, DW_AT_language, DW_LANG_C_plus_plus);
8710 else if (strcmp (language_string, "GNU Ada") == 0)
8711 add_AT_unsigned (comp_unit_die, DW_AT_language, DW_LANG_Ada83);
8713 else if (strcmp (language_string, "GNU F77") == 0)
8714 add_AT_unsigned (comp_unit_die, DW_AT_language, DW_LANG_Fortran77);
8716 else if (strcmp (language_string, "GNU Pascal") == 0)
8717 add_AT_unsigned (comp_unit_die, DW_AT_language, DW_LANG_Pascal83);
8719 else if (flag_traditional)
8720 add_AT_unsigned (comp_unit_die, DW_AT_language, DW_LANG_C);
8722 else
8723 add_AT_unsigned (comp_unit_die, DW_AT_language, DW_LANG_C89);
8725 #if 0 /* unimplemented */
8726 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
8727 add_AT_unsigned (comp_unit_die, DW_AT_macro_info, 0);
8728 #endif
8731 /* Generate a DIE for a string type. */
8733 static void
8734 gen_string_type_die (type, context_die)
8735 register tree type;
8736 register dw_die_ref context_die;
8738 register dw_die_ref type_die
8739 = new_die (DW_TAG_string_type, scope_die_for (type, context_die));
8741 equate_type_number_to_die (type, type_die);
8743 /* Fudge the string length attribute for now. */
8745 /* TODO: add string length info.
8746 string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
8747 bound_representation (upper_bound, 0, 'u'); */
8750 /* Generate the DIE for a base class. */
8752 static void
8753 gen_inheritance_die (binfo, context_die)
8754 register tree binfo;
8755 register dw_die_ref context_die;
8757 dw_die_ref die = new_die (DW_TAG_inheritance, context_die);
8759 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
8760 add_data_member_location_attribute (die, binfo);
8762 if (TREE_VIA_VIRTUAL (binfo))
8763 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
8764 if (TREE_VIA_PUBLIC (binfo))
8765 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
8766 else if (TREE_VIA_PROTECTED (binfo))
8767 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
8770 /* Generate a DIE for a class member. */
8772 static void
8773 gen_member_die (type, context_die)
8774 register tree type;
8775 register dw_die_ref context_die;
8777 register tree member;
8779 /* If this is not an incomplete type, output descriptions of each of its
8780 members. Note that as we output the DIEs necessary to represent the
8781 members of this record or union type, we will also be trying to output
8782 DIEs to represent the *types* of those members. However the `type'
8783 function (above) will specifically avoid generating type DIEs for member
8784 types *within* the list of member DIEs for this (containing) type execpt
8785 for those types (of members) which are explicitly marked as also being
8786 members of this (containing) type themselves. The g++ front- end can
8787 force any given type to be treated as a member of some other
8788 (containing) type by setting the TYPE_CONTEXT of the given (member) type
8789 to point to the TREE node representing the appropriate (containing)
8790 type. */
8792 /* First output info about the base classes. */
8793 if (TYPE_BINFO (type) && TYPE_BINFO_BASETYPES (type))
8795 register tree bases = TYPE_BINFO_BASETYPES (type);
8796 register int n_bases = TREE_VEC_LENGTH (bases);
8797 register int i;
8799 for (i = 0; i < n_bases; i++)
8800 gen_inheritance_die (TREE_VEC_ELT (bases, i), context_die);
8803 /* Now output info about the data members and type members. */
8804 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
8805 gen_decl_die (member, context_die);
8807 /* Now output info about the function members (if any). */
8808 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
8809 gen_decl_die (member, context_die);
8812 /* Generate a DIE for a structure or union type. */
8814 static void
8815 gen_struct_or_union_type_die (type, context_die)
8816 register tree type;
8817 register dw_die_ref context_die;
8819 register dw_die_ref type_die = lookup_type_die (type);
8820 register dw_die_ref scope_die = 0;
8821 register int nested = 0;
8823 if (type_die && ! TYPE_SIZE (type))
8824 return;
8826 if (TYPE_CONTEXT (type) != NULL_TREE
8827 && TREE_CODE_CLASS (TREE_CODE (TYPE_CONTEXT (type))) == 't')
8828 nested = 1;
8830 scope_die = scope_die_for (type, context_die);
8832 if (! type_die || (nested && scope_die == comp_unit_die))
8833 /* First occurrence of type or toplevel definition of nested class. */
8835 register dw_die_ref old_die = type_die;
8837 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
8838 ? DW_TAG_structure_type : DW_TAG_union_type,
8839 scope_die);
8840 equate_type_number_to_die (type, type_die);
8841 add_name_attribute (type_die, type_tag (type));
8842 if (old_die)
8843 add_AT_die_ref (type_die, DW_AT_specification, old_die);
8845 else
8846 remove_AT (type_die, DW_AT_declaration);
8848 /* If we're not in the right context to be defining this type, defer to
8849 avoid tricky recursion. */
8850 if (TYPE_SIZE (type) && decl_scope_depth > 0 && scope_die == comp_unit_die)
8852 add_AT_flag (type_die, DW_AT_declaration, 1);
8853 pend_type (type);
8855 /* If this type has been completed, then give it a byte_size attribute and
8856 then give a list of members. */
8857 else if (TYPE_SIZE (type))
8859 /* Prevent infinite recursion in cases where the type of some member of
8860 this type is expressed in terms of this type itself. */
8861 TREE_ASM_WRITTEN (type) = 1;
8862 add_byte_size_attribute (type_die, type);
8863 if (TYPE_STUB_DECL (type) != NULL_TREE)
8864 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
8866 /* If the first reference to this type was as the return type of an
8867 inline function, then it may not have a parent. Fix this now. */
8868 if (type_die->die_parent == NULL)
8869 add_child_die (scope_die, type_die);
8871 push_decl_scope (type);
8872 gen_member_die (type, type_die);
8873 pop_decl_scope ();
8875 /* GNU extension: Record what type our vtable lives in. */
8876 if (TYPE_VFIELD (type))
8878 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
8880 gen_type_die (vtype, context_die);
8881 add_AT_die_ref (type_die, DW_AT_containing_type,
8882 lookup_type_die (vtype));
8885 else
8886 add_AT_flag (type_die, DW_AT_declaration, 1);
8889 /* Generate a DIE for a subroutine _type_. */
8891 static void
8892 gen_subroutine_type_die (type, context_die)
8893 register tree type;
8894 register dw_die_ref context_die;
8896 register tree return_type = TREE_TYPE (type);
8897 register dw_die_ref subr_die
8898 = new_die (DW_TAG_subroutine_type, scope_die_for (type, context_die));
8900 equate_type_number_to_die (type, subr_die);
8901 add_prototyped_attribute (subr_die, type);
8902 add_type_attribute (subr_die, return_type, 0, 0, context_die);
8903 gen_formal_types_die (type, subr_die);
8906 /* Generate a DIE for a type definition */
8908 static void
8909 gen_typedef_die (decl, context_die)
8910 register tree decl;
8911 register dw_die_ref context_die;
8913 register dw_die_ref type_die;
8914 register tree origin;
8916 if (TREE_ASM_WRITTEN (decl))
8917 return;
8918 TREE_ASM_WRITTEN (decl) = 1;
8920 type_die = new_die (DW_TAG_typedef, scope_die_for (decl, context_die));
8921 origin = decl_ultimate_origin (decl);
8922 if (origin != NULL)
8923 add_abstract_origin_attribute (type_die, origin);
8924 else
8926 register tree type;
8927 add_name_and_src_coords_attributes (type_die, decl);
8928 if (DECL_ORIGINAL_TYPE (decl))
8930 type = DECL_ORIGINAL_TYPE (decl);
8931 equate_type_number_to_die (TREE_TYPE (decl), type_die);
8933 else
8934 type = TREE_TYPE (decl);
8935 add_type_attribute (type_die, type, TREE_READONLY (decl),
8936 TREE_THIS_VOLATILE (decl), context_die);
8939 if (DECL_ABSTRACT (decl))
8940 equate_decl_number_to_die (decl, type_die);
8943 /* Generate a type description DIE. */
8945 static void
8946 gen_type_die (type, context_die)
8947 register tree type;
8948 register dw_die_ref context_die;
8950 if (type == NULL_TREE || type == error_mark_node)
8951 return;
8953 /* We are going to output a DIE to represent the unqualified version of
8954 this type (i.e. without any const or volatile qualifiers) so get the
8955 main variant (i.e. the unqualified version) of this type now. */
8956 type = type_main_variant (type);
8958 if (TREE_ASM_WRITTEN (type))
8959 return;
8961 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
8962 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
8964 TREE_ASM_WRITTEN (type) = 1;
8965 gen_decl_die (TYPE_NAME (type), context_die);
8966 return;
8969 switch (TREE_CODE (type))
8971 case ERROR_MARK:
8972 break;
8974 case POINTER_TYPE:
8975 case REFERENCE_TYPE:
8976 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
8977 ensures that the gen_type_die recursion will terminate even if the
8978 type is recursive. Recursive types are possible in Ada. */
8979 /* ??? We could perhaps do this for all types before the switch
8980 statement. */
8981 TREE_ASM_WRITTEN (type) = 1;
8983 /* For these types, all that is required is that we output a DIE (or a
8984 set of DIEs) to represent the "basis" type. */
8985 gen_type_die (TREE_TYPE (type), context_die);
8986 break;
8988 case OFFSET_TYPE:
8989 /* This code is used for C++ pointer-to-data-member types.
8990 Output a description of the relevant class type. */
8991 gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
8993 /* Output a description of the type of the object pointed to. */
8994 gen_type_die (TREE_TYPE (type), context_die);
8996 /* Now output a DIE to represent this pointer-to-data-member type
8997 itself. */
8998 gen_ptr_to_mbr_type_die (type, context_die);
8999 break;
9001 case SET_TYPE:
9002 gen_type_die (TYPE_DOMAIN (type), context_die);
9003 gen_set_type_die (type, context_die);
9004 break;
9006 case FILE_TYPE:
9007 gen_type_die (TREE_TYPE (type), context_die);
9008 abort (); /* No way to represent these in Dwarf yet! */
9009 break;
9011 case FUNCTION_TYPE:
9012 /* Force out return type (in case it wasn't forced out already). */
9013 gen_type_die (TREE_TYPE (type), context_die);
9014 gen_subroutine_type_die (type, context_die);
9015 break;
9017 case METHOD_TYPE:
9018 /* Force out return type (in case it wasn't forced out already). */
9019 gen_type_die (TREE_TYPE (type), context_die);
9020 gen_subroutine_type_die (type, context_die);
9021 break;
9023 case ARRAY_TYPE:
9024 if (TYPE_STRING_FLAG (type) && TREE_CODE (TREE_TYPE (type)) == CHAR_TYPE)
9026 gen_type_die (TREE_TYPE (type), context_die);
9027 gen_string_type_die (type, context_die);
9029 else
9030 gen_array_type_die (type, context_die);
9031 break;
9033 case ENUMERAL_TYPE:
9034 case RECORD_TYPE:
9035 case UNION_TYPE:
9036 case QUAL_UNION_TYPE:
9037 /* If this is a nested type whose containing class hasn't been
9038 written out yet, writing it out will cover this one, too. */
9039 if (TYPE_CONTEXT (type)
9040 && TREE_CODE_CLASS (TREE_CODE (TYPE_CONTEXT (type))) == 't'
9041 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
9043 gen_type_die (TYPE_CONTEXT (type), context_die);
9045 if (TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
9046 return;
9048 /* If that failed, attach ourselves to the stub. */
9049 push_decl_scope (TYPE_CONTEXT (type));
9050 context_die = lookup_type_die (TYPE_CONTEXT (type));
9053 if (TREE_CODE (type) == ENUMERAL_TYPE)
9054 gen_enumeration_type_die (type, context_die);
9055 else
9056 gen_struct_or_union_type_die (type, context_die);
9058 if (TYPE_CONTEXT (type)
9059 && TREE_CODE_CLASS (TREE_CODE (TYPE_CONTEXT (type))) == 't'
9060 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
9061 pop_decl_scope ();
9063 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
9064 it up if it is ever completed. gen_*_type_die will set it for us
9065 when appropriate. */
9066 return;
9068 case VOID_TYPE:
9069 case INTEGER_TYPE:
9070 case REAL_TYPE:
9071 case COMPLEX_TYPE:
9072 case BOOLEAN_TYPE:
9073 case CHAR_TYPE:
9074 /* No DIEs needed for fundamental types. */
9075 break;
9077 case LANG_TYPE:
9078 /* No Dwarf representation currently defined. */
9079 break;
9081 default:
9082 abort ();
9085 TREE_ASM_WRITTEN (type) = 1;
9088 /* Generate a DIE for a tagged type instantiation. */
9090 static void
9091 gen_tagged_type_instantiation_die (type, context_die)
9092 register tree type;
9093 register dw_die_ref context_die;
9095 if (type == NULL_TREE || type == error_mark_node)
9096 return;
9098 /* We are going to output a DIE to represent the unqualified version of
9099 this type (i.e. without any const or volatile qualifiers) so make sure
9100 that we have the main variant (i.e. the unqualified version) of this
9101 type now. */
9102 if (type != type_main_variant (type)
9103 || !TREE_ASM_WRITTEN (type))
9104 abort ();
9106 switch (TREE_CODE (type))
9108 case ERROR_MARK:
9109 break;
9111 case ENUMERAL_TYPE:
9112 gen_inlined_enumeration_type_die (type, context_die);
9113 break;
9115 case RECORD_TYPE:
9116 gen_inlined_structure_type_die (type, context_die);
9117 break;
9119 case UNION_TYPE:
9120 case QUAL_UNION_TYPE:
9121 gen_inlined_union_type_die (type, context_die);
9122 break;
9124 default:
9125 abort ();
9129 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
9130 things which are local to the given block. */
9132 static void
9133 gen_block_die (stmt, context_die, depth)
9134 register tree stmt;
9135 register dw_die_ref context_die;
9136 int depth;
9138 register int must_output_die = 0;
9139 register tree origin;
9140 register tree decl;
9141 register enum tree_code origin_code;
9143 /* Ignore blocks never really used to make RTL. */
9145 if (stmt == NULL_TREE || !TREE_USED (stmt))
9146 return;
9148 /* Determine the "ultimate origin" of this block. This block may be an
9149 inlined instance of an inlined instance of inline function, so we have
9150 to trace all of the way back through the origin chain to find out what
9151 sort of node actually served as the original seed for the creation of
9152 the current block. */
9153 origin = block_ultimate_origin (stmt);
9154 origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
9156 /* Determine if we need to output any Dwarf DIEs at all to represent this
9157 block. */
9158 if (origin_code == FUNCTION_DECL)
9159 /* The outer scopes for inlinings *must* always be represented. We
9160 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
9161 must_output_die = 1;
9162 else
9164 /* In the case where the current block represents an inlining of the
9165 "body block" of an inline function, we must *NOT* output any DIE for
9166 this block because we have already output a DIE to represent the
9167 whole inlined function scope and the "body block" of any function
9168 doesn't really represent a different scope according to ANSI C
9169 rules. So we check here to make sure that this block does not
9170 represent a "body block inlining" before trying to set the
9171 `must_output_die' flag. */
9172 if (! is_body_block (origin ? origin : stmt))
9174 /* Determine if this block directly contains any "significant"
9175 local declarations which we will need to output DIEs for. */
9176 if (debug_info_level > DINFO_LEVEL_TERSE)
9177 /* We are not in terse mode so *any* local declaration counts
9178 as being a "significant" one. */
9179 must_output_die = (BLOCK_VARS (stmt) != NULL);
9180 else
9181 /* We are in terse mode, so only local (nested) function
9182 definitions count as "significant" local declarations. */
9183 for (decl = BLOCK_VARS (stmt);
9184 decl != NULL; decl = TREE_CHAIN (decl))
9185 if (TREE_CODE (decl) == FUNCTION_DECL
9186 && DECL_INITIAL (decl))
9188 must_output_die = 1;
9189 break;
9194 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
9195 DIE for any block which contains no significant local declarations at
9196 all. Rather, in such cases we just call `decls_for_scope' so that any
9197 needed Dwarf info for any sub-blocks will get properly generated. Note
9198 that in terse mode, our definition of what constitutes a "significant"
9199 local declaration gets restricted to include only inlined function
9200 instances and local (nested) function definitions. */
9201 if (must_output_die)
9203 if (origin_code == FUNCTION_DECL)
9204 gen_inlined_subroutine_die (stmt, context_die, depth);
9205 else
9206 gen_lexical_block_die (stmt, context_die, depth);
9208 else
9209 decls_for_scope (stmt, context_die, depth);
9212 /* Generate all of the decls declared within a given scope and (recursively)
9213 all of its sub-blocks. */
9215 static void
9216 decls_for_scope (stmt, context_die, depth)
9217 register tree stmt;
9218 register dw_die_ref context_die;
9219 int depth;
9221 register tree decl;
9222 register tree subblocks;
9224 /* Ignore blocks never really used to make RTL. */
9225 if (stmt == NULL_TREE || ! TREE_USED (stmt))
9226 return;
9228 if (!BLOCK_ABSTRACT (stmt) && depth > 0)
9229 next_block_number++;
9231 /* Output the DIEs to represent all of the data objects and typedefs
9232 declared directly within this block but not within any nested
9233 sub-blocks. Also, nested function and tag DIEs have been
9234 generated with a parent of NULL; fix that up now. */
9235 for (decl = BLOCK_VARS (stmt);
9236 decl != NULL; decl = TREE_CHAIN (decl))
9238 register dw_die_ref die;
9240 if (TREE_CODE (decl) == FUNCTION_DECL)
9241 die = lookup_decl_die (decl);
9242 else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
9243 die = lookup_type_die (TREE_TYPE (decl));
9244 else
9245 die = NULL;
9247 if (die != NULL && die->die_parent == NULL)
9248 add_child_die (context_die, die);
9249 else
9250 gen_decl_die (decl, context_die);
9253 /* Output the DIEs to represent all sub-blocks (and the items declared
9254 therein) of this block. */
9255 for (subblocks = BLOCK_SUBBLOCKS (stmt);
9256 subblocks != NULL;
9257 subblocks = BLOCK_CHAIN (subblocks))
9258 gen_block_die (subblocks, context_die, depth + 1);
9261 /* Is this a typedef we can avoid emitting? */
9263 static inline int
9264 is_redundant_typedef (decl)
9265 register tree decl;
9267 if (TYPE_DECL_IS_STUB (decl))
9268 return 1;
9270 if (DECL_ARTIFICIAL (decl)
9271 && DECL_CONTEXT (decl)
9272 && is_tagged_type (DECL_CONTEXT (decl))
9273 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
9274 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
9275 /* Also ignore the artificial member typedef for the class name. */
9276 return 1;
9278 return 0;
9281 /* Generate Dwarf debug information for a decl described by DECL. */
9283 static void
9284 gen_decl_die (decl, context_die)
9285 register tree decl;
9286 register dw_die_ref context_die;
9288 register tree origin;
9290 /* Make a note of the decl node we are going to be working on. We may need
9291 to give the user the source coordinates of where it appeared in case we
9292 notice (later on) that something about it looks screwy. */
9293 dwarf_last_decl = decl;
9295 if (TREE_CODE (decl) == ERROR_MARK)
9296 return;
9298 /* If this ..._DECL node is marked to be ignored, then ignore it. But don't
9299 ignore a function definition, since that would screw up our count of
9300 blocks, and that in turn will completely screw up the labels we will
9301 reference in subsequent DW_AT_low_pc and DW_AT_high_pc attributes (for
9302 subsequent blocks). */
9303 if (DECL_IGNORED_P (decl) && TREE_CODE (decl) != FUNCTION_DECL)
9304 return;
9306 switch (TREE_CODE (decl))
9308 case CONST_DECL:
9309 /* The individual enumerators of an enum type get output when we output
9310 the Dwarf representation of the relevant enum type itself. */
9311 break;
9313 case FUNCTION_DECL:
9314 /* Don't output any DIEs to represent mere function declarations,
9315 unless they are class members or explicit block externs. */
9316 if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
9317 && (current_function_decl == NULL_TREE || ! DECL_ARTIFICIAL (decl)))
9318 break;
9320 if (debug_info_level > DINFO_LEVEL_TERSE)
9322 /* Before we describe the FUNCTION_DECL itself, make sure that we
9323 have described its return type. */
9324 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
9326 /* And its containing type. */
9327 origin = decl_class_context (decl);
9328 if (origin != NULL_TREE)
9329 gen_type_die (origin, context_die);
9331 /* And its virtual context. */
9332 if (DECL_VINDEX (decl) != NULL_TREE)
9333 gen_type_die (DECL_CONTEXT (decl), context_die);
9336 /* Now output a DIE to represent the function itself. */
9337 gen_subprogram_die (decl, context_die);
9338 break;
9340 case TYPE_DECL:
9341 /* If we are in terse mode, don't generate any DIEs to represent any
9342 actual typedefs. */
9343 if (debug_info_level <= DINFO_LEVEL_TERSE)
9344 break;
9346 /* In the special case of a TYPE_DECL node representing the
9347 declaration of some type tag, if the given TYPE_DECL is marked as
9348 having been instantiated from some other (original) TYPE_DECL node
9349 (e.g. one which was generated within the original definition of an
9350 inline function) we have to generate a special (abbreviated)
9351 DW_TAG_structure_type, DW_TAG_union_type, or DW_TAG_enumeration_type
9352 DIE here. */
9353 if (TYPE_DECL_IS_STUB (decl) && DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE)
9355 gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
9356 break;
9359 if (is_redundant_typedef (decl))
9360 gen_type_die (TREE_TYPE (decl), context_die);
9361 else
9362 /* Output a DIE to represent the typedef itself. */
9363 gen_typedef_die (decl, context_die);
9364 break;
9366 case LABEL_DECL:
9367 if (debug_info_level >= DINFO_LEVEL_NORMAL)
9368 gen_label_die (decl, context_die);
9369 break;
9371 case VAR_DECL:
9372 /* If we are in terse mode, don't generate any DIEs to represent any
9373 variable declarations or definitions. */
9374 if (debug_info_level <= DINFO_LEVEL_TERSE)
9375 break;
9377 /* Output any DIEs that are needed to specify the type of this data
9378 object. */
9379 gen_type_die (TREE_TYPE (decl), context_die);
9381 /* And its containing type. */
9382 origin = decl_class_context (decl);
9383 if (origin != NULL_TREE)
9384 gen_type_die (origin, context_die);
9386 /* Now output the DIE to represent the data object itself. This gets
9387 complicated because of the possibility that the VAR_DECL really
9388 represents an inlined instance of a formal parameter for an inline
9389 function. */
9390 origin = decl_ultimate_origin (decl);
9391 if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
9392 gen_formal_parameter_die (decl, context_die);
9393 else
9394 gen_variable_die (decl, context_die);
9395 break;
9397 case FIELD_DECL:
9398 /* Ignore the nameless fields that are used to skip bits, but
9399 handle C++ anonymous unions. */
9400 if (DECL_NAME (decl) != NULL_TREE
9401 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE)
9403 gen_type_die (member_declared_type (decl), context_die);
9404 gen_field_die (decl, context_die);
9406 break;
9408 case PARM_DECL:
9409 gen_type_die (TREE_TYPE (decl), context_die);
9410 gen_formal_parameter_die (decl, context_die);
9411 break;
9413 default:
9414 abort ();
9418 /* Write the debugging output for DECL. */
9420 void
9421 dwarf2out_decl (decl)
9422 register tree decl;
9424 register dw_die_ref context_die = comp_unit_die;
9426 if (TREE_CODE (decl) == ERROR_MARK)
9427 return;
9429 /* If this ..._DECL node is marked to be ignored, then ignore it. We gotta
9430 hope that the node in question doesn't represent a function definition.
9431 If it does, then totally ignoring it is bound to screw up our count of
9432 blocks, and that in turn will completely screw up the labels we will
9433 reference in subsequent DW_AT_low_pc and DW_AT_high_pc attributes (for
9434 subsequent blocks). (It's too bad that BLOCK nodes don't carry their
9435 own sequence numbers with them!) */
9436 if (DECL_IGNORED_P (decl))
9438 if (TREE_CODE (decl) == FUNCTION_DECL
9439 && DECL_INITIAL (decl) != NULL)
9440 abort ();
9442 return;
9445 switch (TREE_CODE (decl))
9447 case FUNCTION_DECL:
9448 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration of a
9449 builtin function. Explicit programmer-supplied declarations of
9450 these same functions should NOT be ignored however. */
9451 if (DECL_EXTERNAL (decl) && DECL_FUNCTION_CODE (decl))
9452 return;
9454 /* What we would really like to do here is to filter out all mere
9455 file-scope declarations of file-scope functions which are never
9456 referenced later within this translation unit (and keep all of ones
9457 that *are* referenced later on) but we aren't clairvoyant, so we have
9458 no idea which functions will be referenced in the future (i.e. later
9459 on within the current translation unit). So here we just ignore all
9460 file-scope function declarations which are not also definitions. If
9461 and when the debugger needs to know something about these functions,
9462 it wil have to hunt around and find the DWARF information associated
9463 with the definition of the function. Note that we can't just check
9464 `DECL_EXTERNAL' to find out which FUNCTION_DECL nodes represent
9465 definitions and which ones represent mere declarations. We have to
9466 check `DECL_INITIAL' instead. That's because the C front-end
9467 supports some weird semantics for "extern inline" function
9468 definitions. These can get inlined within the current translation
9469 unit (an thus, we need to generate DWARF info for their abstract
9470 instances so that the DWARF info for the concrete inlined instances
9471 can have something to refer to) but the compiler never generates any
9472 out-of-lines instances of such things (despite the fact that they
9473 *are* definitions). The important point is that the C front-end
9474 marks these "extern inline" functions as DECL_EXTERNAL, but we need
9475 to generate DWARF for them anyway. Note that the C++ front-end also
9476 plays some similar games for inline function definitions appearing
9477 within include files which also contain
9478 `#pragma interface' pragmas. */
9479 if (DECL_INITIAL (decl) == NULL_TREE)
9480 return;
9482 /* If we're a nested function, initially use a parent of NULL; if we're
9483 a plain function, this will be fixed up in decls_for_scope. If
9484 we're a method, it will be ignored, since we already have a DIE. */
9485 if (decl_function_context (decl))
9486 context_die = NULL;
9488 break;
9490 case VAR_DECL:
9491 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
9492 declaration and if the declaration was never even referenced from
9493 within this entire compilation unit. We suppress these DIEs in
9494 order to save space in the .debug section (by eliminating entries
9495 which are probably useless). Note that we must not suppress
9496 block-local extern declarations (whether used or not) because that
9497 would screw-up the debugger's name lookup mechanism and cause it to
9498 miss things which really ought to be in scope at a given point. */
9499 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
9500 return;
9502 /* If we are in terse mode, don't generate any DIEs to represent any
9503 variable declarations or definitions. */
9504 if (debug_info_level <= DINFO_LEVEL_TERSE)
9505 return;
9506 break;
9508 case TYPE_DECL:
9509 /* Don't bother trying to generate any DIEs to represent any of the
9510 normal built-in types for the language we are compiling. */
9511 if (DECL_SOURCE_LINE (decl) == 0)
9513 /* OK, we need to generate one for `bool' so GDB knows what type
9514 comparisons have. */
9515 if ((get_AT_unsigned (comp_unit_die, DW_AT_language)
9516 == DW_LANG_C_plus_plus)
9517 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE)
9518 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
9520 return;
9523 /* If we are in terse mode, don't generate any DIEs for types. */
9524 if (debug_info_level <= DINFO_LEVEL_TERSE)
9525 return;
9527 /* If we're a function-scope tag, initially use a parent of NULL;
9528 this will be fixed up in decls_for_scope. */
9529 if (decl_function_context (decl))
9530 context_die = NULL;
9532 break;
9534 default:
9535 return;
9538 gen_decl_die (decl, context_die);
9539 output_pending_types_for_scope (comp_unit_die);
9542 /* Output a marker (i.e. a label) for the beginning of the generated code for
9543 a lexical block. */
9545 void
9546 dwarf2out_begin_block (blocknum)
9547 register unsigned blocknum;
9549 function_section (current_function_decl);
9550 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
9553 /* Output a marker (i.e. a label) for the end of the generated code for a
9554 lexical block. */
9556 void
9557 dwarf2out_end_block (blocknum)
9558 register unsigned blocknum;
9560 function_section (current_function_decl);
9561 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
9564 /* Output a marker (i.e. a label) at a point in the assembly code which
9565 corresponds to a given source level label. */
9567 void
9568 dwarf2out_label (insn)
9569 register rtx insn;
9571 char label[MAX_ARTIFICIAL_LABEL_BYTES];
9573 if (debug_info_level >= DINFO_LEVEL_NORMAL)
9575 function_section (current_function_decl);
9576 sprintf (label, INSN_LABEL_FMT, current_funcdef_number);
9577 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, label,
9578 (unsigned) INSN_UID (insn));
9582 /* Lookup a filename (in the list of filenames that we know about here in
9583 dwarf2out.c) and return its "index". The index of each (known) filename is
9584 just a unique number which is associated with only that one filename.
9585 We need such numbers for the sake of generating labels
9586 (in the .debug_sfnames section) and references to those
9587 files numbers (in the .debug_srcinfo and.debug_macinfo sections).
9588 If the filename given as an argument is not found in our current list,
9589 add it to the list and assign it the next available unique index number.
9590 In order to speed up searches, we remember the index of the filename
9591 was looked up last. This handles the majority of all searches. */
9593 static unsigned
9594 lookup_filename (file_name)
9595 char *file_name;
9597 static unsigned last_file_lookup_index = 0;
9598 register unsigned i;
9600 /* Check to see if the file name that was searched on the previous call
9601 matches this file name. If so, return the index. */
9602 if (last_file_lookup_index != 0)
9603 if (strcmp (file_name, file_table[last_file_lookup_index]) == 0)
9604 return last_file_lookup_index;
9606 /* Didn't match the previous lookup, search the table */
9607 for (i = 1; i < file_table_in_use; ++i)
9608 if (strcmp (file_name, file_table[i]) == 0)
9610 last_file_lookup_index = i;
9611 return i;
9614 /* Prepare to add a new table entry by making sure there is enough space in
9615 the table to do so. If not, expand the current table. */
9616 if (file_table_in_use == file_table_allocated)
9618 file_table_allocated += FILE_TABLE_INCREMENT;
9619 file_table
9620 = (char **) xrealloc (file_table,
9621 file_table_allocated * sizeof (char *));
9624 /* Add the new entry to the end of the filename table. */
9625 file_table[file_table_in_use] = xstrdup (file_name);
9626 last_file_lookup_index = file_table_in_use++;
9628 return last_file_lookup_index;
9631 /* Output a label to mark the beginning of a source code line entry
9632 and record information relating to this source line, in
9633 'line_info_table' for later output of the .debug_line section. */
9635 void
9636 dwarf2out_line (filename, line)
9637 register char *filename;
9638 register unsigned line;
9640 if (debug_info_level >= DINFO_LEVEL_NORMAL)
9642 function_section (current_function_decl);
9644 if (DECL_SECTION_NAME (current_function_decl))
9646 register dw_separate_line_info_ref line_info;
9647 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, SEPARATE_LINE_CODE_LABEL,
9648 separate_line_info_table_in_use);
9649 fputc ('\n', asm_out_file);
9651 /* expand the line info table if necessary */
9652 if (separate_line_info_table_in_use
9653 == separate_line_info_table_allocated)
9655 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
9656 separate_line_info_table
9657 = (dw_separate_line_info_ref)
9658 xrealloc (separate_line_info_table,
9659 separate_line_info_table_allocated
9660 * sizeof (dw_separate_line_info_entry));
9663 /* Add the new entry at the end of the line_info_table. */
9664 line_info
9665 = &separate_line_info_table[separate_line_info_table_in_use++];
9666 line_info->dw_file_num = lookup_filename (filename);
9667 line_info->dw_line_num = line;
9668 line_info->function = current_funcdef_number;
9670 else
9672 register dw_line_info_ref line_info;
9674 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, LINE_CODE_LABEL,
9675 line_info_table_in_use);
9676 fputc ('\n', asm_out_file);
9678 /* Expand the line info table if necessary. */
9679 if (line_info_table_in_use == line_info_table_allocated)
9681 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
9682 line_info_table
9683 = (dw_line_info_ref)
9684 xrealloc (line_info_table,
9685 (line_info_table_allocated
9686 * sizeof (dw_line_info_entry)));
9689 /* Add the new entry at the end of the line_info_table. */
9690 line_info = &line_info_table[line_info_table_in_use++];
9691 line_info->dw_file_num = lookup_filename (filename);
9692 line_info->dw_line_num = line;
9697 /* Record the beginning of a new source file, for later output
9698 of the .debug_macinfo section. At present, unimplemented. */
9700 void
9701 dwarf2out_start_source_file (filename)
9702 register char *filename ATTRIBUTE_UNUSED;
9706 /* Record the end of a source file, for later output
9707 of the .debug_macinfo section. At present, unimplemented. */
9709 void
9710 dwarf2out_end_source_file ()
9714 /* Called from check_newline in c-parse.y. The `buffer' parameter contains
9715 the tail part of the directive line, i.e. the part which is past the
9716 initial whitespace, #, whitespace, directive-name, whitespace part. */
9718 void
9719 dwarf2out_define (lineno, buffer)
9720 register unsigned lineno;
9721 register char *buffer;
9723 static int initialized = 0;
9724 if (!initialized)
9726 dwarf2out_start_source_file (primary_filename);
9727 initialized = 1;
9731 /* Called from check_newline in c-parse.y. The `buffer' parameter contains
9732 the tail part of the directive line, i.e. the part which is past the
9733 initial whitespace, #, whitespace, directive-name, whitespace part. */
9735 void
9736 dwarf2out_undef (lineno, buffer)
9737 register unsigned lineno ATTRIBUTE_UNUSED;
9738 register char *buffer ATTRIBUTE_UNUSED;
9742 /* Set up for Dwarf output at the start of compilation. */
9744 void
9745 dwarf2out_init (asm_out_file, main_input_filename)
9746 register FILE *asm_out_file;
9747 register char *main_input_filename;
9749 /* Remember the name of the primary input file. */
9750 primary_filename = main_input_filename;
9752 /* Allocate the initial hunk of the file_table. */
9753 file_table = (char **) xmalloc (FILE_TABLE_INCREMENT * sizeof (char *));
9754 bzero ((char *) file_table, FILE_TABLE_INCREMENT * sizeof (char *));
9755 file_table_allocated = FILE_TABLE_INCREMENT;
9757 /* Skip the first entry - file numbers begin at 1. */
9758 file_table_in_use = 1;
9760 /* Allocate the initial hunk of the decl_die_table. */
9761 decl_die_table
9762 = (dw_die_ref *) xmalloc (DECL_DIE_TABLE_INCREMENT * sizeof (dw_die_ref));
9763 bzero ((char *) decl_die_table,
9764 DECL_DIE_TABLE_INCREMENT * sizeof (dw_die_ref));
9765 decl_die_table_allocated = DECL_DIE_TABLE_INCREMENT;
9766 decl_die_table_in_use = 0;
9768 /* Allocate the initial hunk of the decl_scope_table. */
9769 decl_scope_table
9770 = (decl_scope_node *) xmalloc (DECL_SCOPE_TABLE_INCREMENT
9771 * sizeof (decl_scope_node));
9772 bzero ((char *) decl_scope_table,
9773 DECL_SCOPE_TABLE_INCREMENT * sizeof (decl_scope_node));
9774 decl_scope_table_allocated = DECL_SCOPE_TABLE_INCREMENT;
9775 decl_scope_depth = 0;
9777 /* Allocate the initial hunk of the abbrev_die_table. */
9778 abbrev_die_table
9779 = (dw_die_ref *) xmalloc (ABBREV_DIE_TABLE_INCREMENT
9780 * sizeof (dw_die_ref));
9781 bzero ((char *) abbrev_die_table,
9782 ABBREV_DIE_TABLE_INCREMENT * sizeof (dw_die_ref));
9783 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
9784 /* Zero-th entry is allocated, but unused */
9785 abbrev_die_table_in_use = 1;
9787 /* Allocate the initial hunk of the line_info_table. */
9788 line_info_table
9789 = (dw_line_info_ref) xmalloc (LINE_INFO_TABLE_INCREMENT
9790 * sizeof (dw_line_info_entry));
9791 bzero ((char *) line_info_table,
9792 LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
9793 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
9794 /* Zero-th entry is allocated, but unused */
9795 line_info_table_in_use = 1;
9797 /* Generate the initial DIE for the .debug section. Note that the (string)
9798 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
9799 will (typically) be a relative pathname and that this pathname should be
9800 taken as being relative to the directory from which the compiler was
9801 invoked when the given (base) source file was compiled. */
9802 gen_compile_unit_die (main_input_filename);
9804 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
9807 /* Output stuff that dwarf requires at the end of every file,
9808 and generate the DWARF-2 debugging info. */
9810 void
9811 dwarf2out_finish ()
9813 limbo_die_node *node, *next_node;
9814 dw_die_ref die;
9815 dw_attr_ref a;
9817 /* Traverse the limbo die list, and add parent/child links. The only
9818 dies without parents that should be here are concrete instances of
9819 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
9820 For concrete instances, we can get the parent die from the abstract
9821 instance. */
9822 for (node = limbo_die_list; node; node = next_node)
9824 next_node = node->next;
9825 die = node->die;
9827 if (die->die_parent == NULL)
9829 a = get_AT (die, DW_AT_abstract_origin);
9830 if (a)
9831 add_child_die (a->dw_attr_val.v.val_die_ref->die_parent, die);
9832 else if (die == comp_unit_die)
9834 else
9835 abort ();
9837 free (node);
9840 /* Traverse the DIE tree and add sibling attributes to those DIE's
9841 that have children. */
9842 add_sibling_attributes (comp_unit_die);
9844 /* Output a terminator label for the .text section. */
9845 fputc ('\n', asm_out_file);
9846 ASM_OUTPUT_SECTION (asm_out_file, TEXT_SECTION);
9847 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, TEXT_END_LABEL, 0);
9849 #if 0
9850 /* Output a terminator label for the .data section. */
9851 fputc ('\n', asm_out_file);
9852 ASM_OUTPUT_SECTION (asm_out_file, DATA_SECTION);
9853 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, DATA_END_LABEL, 0);
9855 /* Output a terminator label for the .bss section. */
9856 fputc ('\n', asm_out_file);
9857 ASM_OUTPUT_SECTION (asm_out_file, BSS_SECTION);
9858 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, BSS_END_LABEL, 0);
9859 #endif
9861 /* Output the source line correspondence table. */
9862 if (line_info_table_in_use > 1 || separate_line_info_table_in_use)
9864 fputc ('\n', asm_out_file);
9865 ASM_OUTPUT_SECTION (asm_out_file, DEBUG_LINE_SECTION);
9866 output_line_info ();
9868 /* We can only use the low/high_pc attributes if all of the code
9869 was in .text. */
9870 if (separate_line_info_table_in_use == 0)
9872 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc,
9873 stripattributes (TEXT_SECTION));
9874 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
9877 add_AT_section_offset (comp_unit_die, DW_AT_stmt_list, DEBUG_LINE_SECTION);
9880 /* Output the abbreviation table. */
9881 fputc ('\n', asm_out_file);
9882 ASM_OUTPUT_SECTION (asm_out_file, ABBREV_SECTION);
9883 build_abbrev_table (comp_unit_die);
9884 output_abbrev_section ();
9886 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
9887 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
9888 calc_die_sizes (comp_unit_die);
9890 /* Output debugging information. */
9891 fputc ('\n', asm_out_file);
9892 ASM_OUTPUT_SECTION (asm_out_file, DEBUG_INFO_SECTION);
9893 output_compilation_unit_header ();
9894 output_die (comp_unit_die);
9896 if (pubname_table_in_use)
9898 /* Output public names table. */
9899 fputc ('\n', asm_out_file);
9900 ASM_OUTPUT_SECTION (asm_out_file, PUBNAMES_SECTION);
9901 output_pubnames ();
9904 if (fde_table_in_use)
9906 /* Output the address range information. */
9907 fputc ('\n', asm_out_file);
9908 ASM_OUTPUT_SECTION (asm_out_file, ARANGES_SECTION);
9909 output_aranges ();
9912 #endif /* DWARF2_DEBUGGING_INFO */