* Makefile.in (rtlanal.o): Depend on $(TM_P_H).
[official-gcc.git] / gcc / dwarf2out.c
blob1d245b7ad905b945609bac13f10d58b07fb83d43
1 /* Output Dwarf2 format symbol table information from the GNU C compiler.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
4 Contributed by Gary Funck (gary@intrepid.com).
5 Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
6 Extensively modified by Jason Merrill (jason@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 2, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING. If not, write to the Free
22 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 02111-1307, USA. */
25 /* TODO: Implement .debug_str handling, and share entries somehow.
26 Emit .debug_line header even when there are no functions, since
27 the file numbers are used by .debug_info. Alternately, leave
28 out locations for types and decls.
29 Avoid talking about ctors and op= for PODs.
30 Factor out common prologue sequences into multiple CIEs. */
32 /* The first part of this file deals with the DWARF 2 frame unwind
33 information, which is also used by the GCC efficient exception handling
34 mechanism. The second part, controlled only by an #ifdef
35 DWARF2_DEBUGGING_INFO, deals with the other DWARF 2 debugging
36 information. */
38 #include "config.h"
39 #include "system.h"
40 #include "tree.h"
41 #include "flags.h"
42 #include "rtl.h"
43 #include "hard-reg-set.h"
44 #include "regs.h"
45 #include "insn-config.h"
46 #include "reload.h"
47 #include "function.h"
48 #include "output.h"
49 #include "expr.h"
50 #include "libfuncs.h"
51 #include "except.h"
52 #include "dwarf2.h"
53 #include "dwarf2out.h"
54 #include "dwarf2asm.h"
55 #include "toplev.h"
56 #include "varray.h"
57 #include "ggc.h"
58 #include "md5.h"
59 #include "tm_p.h"
60 #include "diagnostic.h"
61 #include "debug.h"
63 #ifdef DWARF2_DEBUGGING_INFO
64 static void dwarf2out_source_line PARAMS ((unsigned int, const char *));
65 #endif
67 /* DWARF2 Abbreviation Glossary:
68 CFA = Canonical Frame Address
69 a fixed address on the stack which identifies a call frame.
70 We define it to be the value of SP just before the call insn.
71 The CFA register and offset, which may change during the course
72 of the function, are used to calculate its value at runtime.
73 CFI = Call Frame Instruction
74 an instruction for the DWARF2 abstract machine
75 CIE = Common Information Entry
76 information describing information common to one or more FDEs
77 DIE = Debugging Information Entry
78 FDE = Frame Description Entry
79 information describing the stack call frame, in particular,
80 how to restore registers
82 DW_CFA_... = DWARF2 CFA call frame instruction
83 DW_TAG_... = DWARF2 DIE tag */
85 /* Decide whether we want to emit frame unwind information for the current
86 translation unit. */
88 int
89 dwarf2out_do_frame ()
91 return (write_symbols == DWARF2_DEBUG
92 #ifdef DWARF2_FRAME_INFO
93 || DWARF2_FRAME_INFO
94 #endif
95 #ifdef DWARF2_UNWIND_INFO
96 || flag_unwind_tables
97 || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)
98 #endif
102 /* The number of the current function definition for which debugging
103 information is being generated. These numbers range from 1 up to the
104 maximum number of function definitions contained within the current
105 compilation unit. These numbers are used to create unique label id's
106 unique to each function definition. */
107 unsigned current_funcdef_number = 0;
109 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
111 /* How to start an assembler comment. */
112 #ifndef ASM_COMMENT_START
113 #define ASM_COMMENT_START ";#"
114 #endif
116 typedef struct dw_cfi_struct *dw_cfi_ref;
117 typedef struct dw_fde_struct *dw_fde_ref;
118 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
120 /* Call frames are described using a sequence of Call Frame
121 Information instructions. The register number, offset
122 and address fields are provided as possible operands;
123 their use is selected by the opcode field. */
125 typedef union dw_cfi_oprnd_struct
127 unsigned long dw_cfi_reg_num;
128 long int dw_cfi_offset;
129 const char *dw_cfi_addr;
130 struct dw_loc_descr_struct *dw_cfi_loc;
132 dw_cfi_oprnd;
134 typedef struct dw_cfi_struct
136 dw_cfi_ref dw_cfi_next;
137 enum dwarf_call_frame_info dw_cfi_opc;
138 dw_cfi_oprnd dw_cfi_oprnd1;
139 dw_cfi_oprnd dw_cfi_oprnd2;
141 dw_cfi_node;
143 /* This is how we define the location of the CFA. We use to handle it
144 as REG + OFFSET all the time, but now it can be more complex.
145 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
146 Instead of passing around REG and OFFSET, we pass a copy
147 of this structure. */
148 typedef struct cfa_loc
150 unsigned long reg;
151 long offset;
152 long base_offset;
153 int indirect; /* 1 if CFA is accessed via a dereference. */
154 } dw_cfa_location;
156 /* All call frame descriptions (FDE's) in the GCC generated DWARF
157 refer to a single Common Information Entry (CIE), defined at
158 the beginning of the .debug_frame section. This use of a single
159 CIE obviates the need to keep track of multiple CIE's
160 in the DWARF generation routines below. */
162 typedef struct dw_fde_struct
164 const char *dw_fde_begin;
165 const char *dw_fde_current_label;
166 const char *dw_fde_end;
167 dw_cfi_ref dw_fde_cfi;
168 unsigned funcdef_number;
169 unsigned nothrow : 1;
170 unsigned uses_eh_lsda : 1;
172 dw_fde_node;
174 /* Maximum size (in bytes) of an artificially generated label. */
175 #define MAX_ARTIFICIAL_LABEL_BYTES 30
177 /* The size of the target's pointer type. */
178 #ifndef PTR_SIZE
179 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
180 #endif
182 /* The size of addresses as they appear in the Dwarf 2 data.
183 Some architectures use word addresses to refer to code locations,
184 but Dwarf 2 info always uses byte addresses. On such machines,
185 Dwarf 2 addresses need to be larger than the architecture's
186 pointers. */
187 #ifndef DWARF2_ADDR_SIZE
188 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
189 #endif
191 /* The size in bytes of a DWARF field indicating an offset or length
192 relative to a debug info section, specified to be 4 bytes in the
193 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
194 as PTR_SIZE. */
196 #ifndef DWARF_OFFSET_SIZE
197 #define DWARF_OFFSET_SIZE 4
198 #endif
200 #define DWARF_VERSION 2
202 /* Round SIZE up to the nearest BOUNDARY. */
203 #define DWARF_ROUND(SIZE,BOUNDARY) \
204 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
206 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
207 #ifndef DWARF_CIE_DATA_ALIGNMENT
208 #ifdef STACK_GROWS_DOWNWARD
209 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
210 #else
211 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
212 #endif
213 #endif /* not DWARF_CIE_DATA_ALIGNMENT */
215 /* A pointer to the base of a table that contains frame description
216 information for each routine. */
217 static dw_fde_ref fde_table;
219 /* Number of elements currently allocated for fde_table. */
220 static unsigned fde_table_allocated;
222 /* Number of elements in fde_table currently in use. */
223 static unsigned fde_table_in_use;
225 /* Size (in elements) of increments by which we may expand the
226 fde_table. */
227 #define FDE_TABLE_INCREMENT 256
229 /* A list of call frame insns for the CIE. */
230 static dw_cfi_ref cie_cfi_head;
232 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
233 attribute that accelerates the lookup of the FDE associated
234 with the subprogram. This variable holds the table index of the FDE
235 associated with the current function (body) definition. */
236 static unsigned current_funcdef_fde;
238 /* Forward declarations for functions defined in this file. */
240 static char *stripattributes PARAMS ((const char *));
241 static const char *dwarf_cfi_name PARAMS ((unsigned));
242 static dw_cfi_ref new_cfi PARAMS ((void));
243 static void add_cfi PARAMS ((dw_cfi_ref *, dw_cfi_ref));
244 static void add_fde_cfi PARAMS ((const char *, dw_cfi_ref));
245 static void lookup_cfa_1 PARAMS ((dw_cfi_ref, dw_cfa_location *));
246 static void lookup_cfa PARAMS ((dw_cfa_location *));
247 static void reg_save PARAMS ((const char *, unsigned,
248 unsigned, long));
249 static void initial_return_save PARAMS ((rtx));
250 static long stack_adjust_offset PARAMS ((rtx));
251 static void output_cfi PARAMS ((dw_cfi_ref, dw_fde_ref, int));
252 static void output_call_frame_info PARAMS ((int));
253 static void dwarf2out_stack_adjust PARAMS ((rtx));
254 static void queue_reg_save PARAMS ((const char *, rtx, long));
255 static void flush_queued_reg_saves PARAMS ((void));
256 static bool clobbers_queued_reg_save PARAMS ((rtx));
257 static void dwarf2out_frame_debug_expr PARAMS ((rtx, const char *));
259 /* Support for complex CFA locations. */
260 static void output_cfa_loc PARAMS ((dw_cfi_ref));
261 static void get_cfa_from_loc_descr PARAMS ((dw_cfa_location *,
262 struct dw_loc_descr_struct *));
263 static struct dw_loc_descr_struct *build_cfa_loc
264 PARAMS ((dw_cfa_location *));
265 static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
267 /* How to start an assembler comment. */
268 #ifndef ASM_COMMENT_START
269 #define ASM_COMMENT_START ";#"
270 #endif
272 /* Data and reference forms for relocatable data. */
273 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
274 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
276 /* Pseudo-op for defining a new section. */
277 #ifndef SECTION_ASM_OP
278 #define SECTION_ASM_OP "\t.section\t"
279 #endif
281 #ifndef DEBUG_FRAME_SECTION
282 #define DEBUG_FRAME_SECTION ".debug_frame"
283 #endif
285 #ifndef FUNC_BEGIN_LABEL
286 #define FUNC_BEGIN_LABEL "LFB"
287 #endif
288 #ifndef FUNC_END_LABEL
289 #define FUNC_END_LABEL "LFE"
290 #endif
291 #define FRAME_BEGIN_LABEL "Lframe"
292 #define CIE_AFTER_SIZE_LABEL "LSCIE"
293 #define CIE_END_LABEL "LECIE"
294 #define CIE_LENGTH_LABEL "LLCIE"
295 #define FDE_LABEL "LSFDE"
296 #define FDE_AFTER_SIZE_LABEL "LASFDE"
297 #define FDE_END_LABEL "LEFDE"
298 #define FDE_LENGTH_LABEL "LLFDE"
299 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
300 #define LINE_NUMBER_END_LABEL "LELT"
301 #define LN_PROLOG_AS_LABEL "LASLTP"
302 #define LN_PROLOG_END_LABEL "LELTP"
303 #define DIE_LABEL_PREFIX "DW"
305 /* Definitions of defaults for various types of primitive assembly language
306 output operations. These may be overridden from within the tm.h file,
307 but typically, that is unnecessary. */
309 #ifdef SET_ASM_OP
310 #ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
311 #define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \
312 do { \
313 fprintf (FILE, "%s", SET_ASM_OP); \
314 assemble_name (FILE, SY); \
315 fputc (',', FILE); \
316 assemble_name (FILE, HI); \
317 fputc ('-', FILE); \
318 assemble_name (FILE, LO); \
319 } while (0)
320 #endif
321 #endif /* SET_ASM_OP */
323 /* The DWARF 2 CFA column which tracks the return address. Normally this
324 is the column for PC, or the first column after all of the hard
325 registers. */
326 #ifndef DWARF_FRAME_RETURN_COLUMN
327 #ifdef PC_REGNUM
328 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
329 #else
330 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
331 #endif
332 #endif
334 /* The mapping from gcc register number to DWARF 2 CFA column number. By
335 default, we just provide columns for all registers. */
336 #ifndef DWARF_FRAME_REGNUM
337 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
338 #endif
340 /* Hook used by __throw. */
343 expand_builtin_dwarf_fp_regnum ()
345 return GEN_INT (DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM));
348 /* The offset from the incoming value of %sp to the top of the stack frame
349 for the current function. */
350 #ifndef INCOMING_FRAME_SP_OFFSET
351 #define INCOMING_FRAME_SP_OFFSET 0
352 #endif
354 /* Return a pointer to a copy of the section string name S with all
355 attributes stripped off, and an asterisk prepended (for assemble_name). */
357 static inline char *
358 stripattributes (s)
359 const char *s;
361 char *stripped = xmalloc (strlen (s) + 2);
362 char *p = stripped;
364 *p++ = '*';
366 while (*s && *s != ',')
367 *p++ = *s++;
369 *p = '\0';
370 return stripped;
373 /* Generate code to initialize the register size table. */
375 void
376 expand_builtin_init_dwarf_reg_sizes (address)
377 tree address;
379 int i;
380 enum machine_mode mode = TYPE_MODE (char_type_node);
381 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0);
382 rtx mem = gen_rtx_MEM (mode, addr);
384 for (i = 0; i < DWARF_FRAME_REGISTERS; ++i)
386 int offset = DWARF_FRAME_REGNUM (i) * GET_MODE_SIZE (mode);
387 int size = GET_MODE_SIZE (reg_raw_mode[i]);
389 if (offset < 0)
390 continue;
392 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
396 /* Convert a DWARF call frame info. operation to its string name */
398 static const char *
399 dwarf_cfi_name (cfi_opc)
400 unsigned cfi_opc;
402 switch (cfi_opc)
404 case DW_CFA_advance_loc:
405 return "DW_CFA_advance_loc";
406 case DW_CFA_offset:
407 return "DW_CFA_offset";
408 case DW_CFA_restore:
409 return "DW_CFA_restore";
410 case DW_CFA_nop:
411 return "DW_CFA_nop";
412 case DW_CFA_set_loc:
413 return "DW_CFA_set_loc";
414 case DW_CFA_advance_loc1:
415 return "DW_CFA_advance_loc1";
416 case DW_CFA_advance_loc2:
417 return "DW_CFA_advance_loc2";
418 case DW_CFA_advance_loc4:
419 return "DW_CFA_advance_loc4";
420 case DW_CFA_offset_extended:
421 return "DW_CFA_offset_extended";
422 case DW_CFA_restore_extended:
423 return "DW_CFA_restore_extended";
424 case DW_CFA_undefined:
425 return "DW_CFA_undefined";
426 case DW_CFA_same_value:
427 return "DW_CFA_same_value";
428 case DW_CFA_register:
429 return "DW_CFA_register";
430 case DW_CFA_remember_state:
431 return "DW_CFA_remember_state";
432 case DW_CFA_restore_state:
433 return "DW_CFA_restore_state";
434 case DW_CFA_def_cfa:
435 return "DW_CFA_def_cfa";
436 case DW_CFA_def_cfa_register:
437 return "DW_CFA_def_cfa_register";
438 case DW_CFA_def_cfa_offset:
439 return "DW_CFA_def_cfa_offset";
440 case DW_CFA_def_cfa_expression:
441 return "DW_CFA_def_cfa_expression";
443 /* SGI/MIPS specific */
444 case DW_CFA_MIPS_advance_loc8:
445 return "DW_CFA_MIPS_advance_loc8";
447 /* GNU extensions */
448 case DW_CFA_GNU_window_save:
449 return "DW_CFA_GNU_window_save";
450 case DW_CFA_GNU_args_size:
451 return "DW_CFA_GNU_args_size";
452 case DW_CFA_GNU_negative_offset_extended:
453 return "DW_CFA_GNU_negative_offset_extended";
455 default:
456 return "DW_CFA_<unknown>";
460 /* Return a pointer to a newly allocated Call Frame Instruction. */
462 static inline dw_cfi_ref
463 new_cfi ()
465 dw_cfi_ref cfi = (dw_cfi_ref) xmalloc (sizeof (dw_cfi_node));
467 cfi->dw_cfi_next = NULL;
468 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
469 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
471 return cfi;
474 /* Add a Call Frame Instruction to list of instructions. */
476 static inline void
477 add_cfi (list_head, cfi)
478 dw_cfi_ref *list_head;
479 dw_cfi_ref cfi;
481 dw_cfi_ref *p;
483 /* Find the end of the chain. */
484 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
487 *p = cfi;
490 /* Generate a new label for the CFI info to refer to. */
492 char *
493 dwarf2out_cfi_label ()
495 static char label[20];
496 static unsigned long label_num = 0;
498 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", label_num++);
499 ASM_OUTPUT_LABEL (asm_out_file, label);
501 return label;
504 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
505 or to the CIE if LABEL is NULL. */
507 static void
508 add_fde_cfi (label, cfi)
509 const char *label;
510 dw_cfi_ref cfi;
512 if (label)
514 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
516 if (*label == 0)
517 label = dwarf2out_cfi_label ();
519 if (fde->dw_fde_current_label == NULL
520 || strcmp (label, fde->dw_fde_current_label) != 0)
522 dw_cfi_ref xcfi;
524 fde->dw_fde_current_label = label = xstrdup (label);
526 /* Set the location counter to the new label. */
527 xcfi = new_cfi ();
528 xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
529 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
530 add_cfi (&fde->dw_fde_cfi, xcfi);
533 add_cfi (&fde->dw_fde_cfi, cfi);
536 else
537 add_cfi (&cie_cfi_head, cfi);
540 /* Subroutine of lookup_cfa. */
542 static inline void
543 lookup_cfa_1 (cfi, loc)
544 dw_cfi_ref cfi;
545 dw_cfa_location *loc;
547 switch (cfi->dw_cfi_opc)
549 case DW_CFA_def_cfa_offset:
550 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
551 break;
552 case DW_CFA_def_cfa_register:
553 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
554 break;
555 case DW_CFA_def_cfa:
556 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
557 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
558 break;
559 case DW_CFA_def_cfa_expression:
560 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
561 break;
562 default:
563 break;
567 /* Find the previous value for the CFA. */
569 static void
570 lookup_cfa (loc)
571 dw_cfa_location *loc;
573 dw_cfi_ref cfi;
575 loc->reg = (unsigned long) -1;
576 loc->offset = 0;
577 loc->indirect = 0;
578 loc->base_offset = 0;
580 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
581 lookup_cfa_1 (cfi, loc);
583 if (fde_table_in_use)
585 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
586 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
587 lookup_cfa_1 (cfi, loc);
591 /* The current rule for calculating the DWARF2 canonical frame address. */
592 static dw_cfa_location cfa;
594 /* The register used for saving registers to the stack, and its offset
595 from the CFA. */
596 static dw_cfa_location cfa_store;
598 /* The running total of the size of arguments pushed onto the stack. */
599 static long args_size;
601 /* The last args_size we actually output. */
602 static long old_args_size;
604 /* Entry point to update the canonical frame address (CFA).
605 LABEL is passed to add_fde_cfi. The value of CFA is now to be
606 calculated from REG+OFFSET. */
608 void
609 dwarf2out_def_cfa (label, reg, offset)
610 const char *label;
611 unsigned reg;
612 long offset;
614 dw_cfa_location loc;
615 loc.indirect = 0;
616 loc.base_offset = 0;
617 loc.reg = reg;
618 loc.offset = offset;
619 def_cfa_1 (label, &loc);
622 /* This routine does the actual work. The CFA is now calculated from
623 the dw_cfa_location structure. */
624 static void
625 def_cfa_1 (label, loc_p)
626 const char *label;
627 dw_cfa_location *loc_p;
629 dw_cfi_ref cfi;
630 dw_cfa_location old_cfa, loc;
632 cfa = *loc_p;
633 loc = *loc_p;
635 if (cfa_store.reg == loc.reg && loc.indirect == 0)
636 cfa_store.offset = loc.offset;
638 loc.reg = DWARF_FRAME_REGNUM (loc.reg);
639 lookup_cfa (&old_cfa);
641 if (loc.reg == old_cfa.reg && loc.offset == old_cfa.offset &&
642 loc.indirect == old_cfa.indirect)
644 if (loc.indirect == 0
645 || loc.base_offset == old_cfa.base_offset)
646 /* Nothing changed so no need to issue any call frame
647 instructions. */
648 return;
651 cfi = new_cfi ();
653 if (loc.reg == old_cfa.reg && !loc.indirect)
655 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction,
656 indicating the CFA register did not change but the offset
657 did. */
658 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
659 cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
662 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
663 else if (loc.offset == old_cfa.offset && old_cfa.reg != (unsigned long) -1
664 && !loc.indirect)
666 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
667 indicating the CFA register has changed to <register> but the
668 offset has not changed. */
669 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
670 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
672 #endif
674 else if (loc.indirect == 0)
676 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
677 indicating the CFA register has changed to <register> with
678 the specified offset. */
679 cfi->dw_cfi_opc = DW_CFA_def_cfa;
680 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
681 cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
683 else
685 /* Construct a DW_CFA_def_cfa_expression instruction to
686 calculate the CFA using a full location expression since no
687 register-offset pair is available. */
688 struct dw_loc_descr_struct *loc_list;
689 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
690 loc_list = build_cfa_loc (&loc);
691 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
694 add_fde_cfi (label, cfi);
697 /* Add the CFI for saving a register. REG is the CFA column number.
698 LABEL is passed to add_fde_cfi.
699 If SREG is -1, the register is saved at OFFSET from the CFA;
700 otherwise it is saved in SREG. */
702 static void
703 reg_save (label, reg, sreg, offset)
704 const char *label;
705 unsigned reg;
706 unsigned sreg;
707 long offset;
709 dw_cfi_ref cfi = new_cfi ();
711 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
713 /* The following comparison is correct. -1 is used to indicate that
714 the value isn't a register number. */
715 if (sreg == (unsigned int) -1)
717 if (reg & ~0x3f)
718 /* The register number won't fit in 6 bits, so we have to use
719 the long form. */
720 cfi->dw_cfi_opc = DW_CFA_offset_extended;
721 else
722 cfi->dw_cfi_opc = DW_CFA_offset;
724 #ifdef ENABLE_CHECKING
726 /* If we get an offset that is not a multiple of
727 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
728 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
729 description. */
730 long check_offset = offset / DWARF_CIE_DATA_ALIGNMENT;
732 if (check_offset * DWARF_CIE_DATA_ALIGNMENT != offset)
733 abort ();
735 #endif
736 offset /= DWARF_CIE_DATA_ALIGNMENT;
737 if (offset < 0)
739 cfi->dw_cfi_opc = DW_CFA_GNU_negative_offset_extended;
740 offset = -offset;
742 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
744 else if (sreg == reg)
745 /* We could emit a DW_CFA_same_value in this case, but don't bother. */
746 return;
747 else
749 cfi->dw_cfi_opc = DW_CFA_register;
750 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
753 add_fde_cfi (label, cfi);
756 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
757 This CFI tells the unwinder that it needs to restore the window registers
758 from the previous frame's window save area.
760 ??? Perhaps we should note in the CIE where windows are saved (instead of
761 assuming 0(cfa)) and what registers are in the window. */
763 void
764 dwarf2out_window_save (label)
765 const char *label;
767 dw_cfi_ref cfi = new_cfi ();
768 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
769 add_fde_cfi (label, cfi);
772 /* Add a CFI to update the running total of the size of arguments
773 pushed onto the stack. */
775 void
776 dwarf2out_args_size (label, size)
777 const char *label;
778 long size;
780 dw_cfi_ref cfi;
782 if (size == old_args_size)
783 return;
784 old_args_size = size;
786 cfi = new_cfi ();
787 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
788 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
789 add_fde_cfi (label, cfi);
792 /* Entry point for saving a register to the stack. REG is the GCC register
793 number. LABEL and OFFSET are passed to reg_save. */
795 void
796 dwarf2out_reg_save (label, reg, offset)
797 const char *label;
798 unsigned reg;
799 long offset;
801 reg_save (label, DWARF_FRAME_REGNUM (reg), -1, offset);
804 /* Entry point for saving the return address in the stack.
805 LABEL and OFFSET are passed to reg_save. */
807 void
808 dwarf2out_return_save (label, offset)
809 const char *label;
810 long offset;
812 reg_save (label, DWARF_FRAME_RETURN_COLUMN, -1, offset);
815 /* Entry point for saving the return address in a register.
816 LABEL and SREG are passed to reg_save. */
818 void
819 dwarf2out_return_reg (label, sreg)
820 const char *label;
821 unsigned sreg;
823 reg_save (label, DWARF_FRAME_RETURN_COLUMN, sreg, 0);
826 /* Record the initial position of the return address. RTL is
827 INCOMING_RETURN_ADDR_RTX. */
829 static void
830 initial_return_save (rtl)
831 rtx rtl;
833 unsigned int reg = (unsigned int) -1;
834 long offset = 0;
836 switch (GET_CODE (rtl))
838 case REG:
839 /* RA is in a register. */
840 reg = DWARF_FRAME_REGNUM (REGNO (rtl));
841 break;
842 case MEM:
843 /* RA is on the stack. */
844 rtl = XEXP (rtl, 0);
845 switch (GET_CODE (rtl))
847 case REG:
848 if (REGNO (rtl) != STACK_POINTER_REGNUM)
849 abort ();
850 offset = 0;
851 break;
852 case PLUS:
853 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
854 abort ();
855 offset = INTVAL (XEXP (rtl, 1));
856 break;
857 case MINUS:
858 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
859 abort ();
860 offset = -INTVAL (XEXP (rtl, 1));
861 break;
862 default:
863 abort ();
865 break;
866 case PLUS:
867 /* The return address is at some offset from any value we can
868 actually load. For instance, on the SPARC it is in %i7+8. Just
869 ignore the offset for now; it doesn't matter for unwinding frames. */
870 if (GET_CODE (XEXP (rtl, 1)) != CONST_INT)
871 abort ();
872 initial_return_save (XEXP (rtl, 0));
873 return;
874 default:
875 abort ();
878 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
881 /* Given a SET, calculate the amount of stack adjustment it
882 contains. */
884 static long
885 stack_adjust_offset (pattern)
886 rtx pattern;
888 rtx src = SET_SRC (pattern);
889 rtx dest = SET_DEST (pattern);
890 long offset = 0;
891 enum rtx_code code;
893 if (dest == stack_pointer_rtx)
895 /* (set (reg sp) (plus (reg sp) (const_int))) */
896 code = GET_CODE (src);
897 if (! (code == PLUS || code == MINUS)
898 || XEXP (src, 0) != stack_pointer_rtx
899 || GET_CODE (XEXP (src, 1)) != CONST_INT)
900 return 0;
902 offset = INTVAL (XEXP (src, 1));
904 else if (GET_CODE (dest) == MEM)
906 /* (set (mem (pre_dec (reg sp))) (foo)) */
907 src = XEXP (dest, 0);
908 code = GET_CODE (src);
910 if (! (code == PRE_DEC || code == PRE_INC
911 || code == PRE_MODIFY)
912 || XEXP (src, 0) != stack_pointer_rtx)
913 return 0;
915 if (code == PRE_MODIFY)
917 rtx val = XEXP (XEXP (src, 1), 1);
918 /* We handle only adjustments by constant amount. */
919 if (GET_CODE (XEXP (src, 1)) != PLUS ||
920 GET_CODE (val) != CONST_INT)
921 abort();
922 offset = -INTVAL (val);
924 else offset = GET_MODE_SIZE (GET_MODE (dest));
926 else
927 return 0;
929 if (code == PLUS || code == PRE_INC)
930 offset = -offset;
932 return offset;
935 /* Check INSN to see if it looks like a push or a stack adjustment, and
936 make a note of it if it does. EH uses this information to find out how
937 much extra space it needs to pop off the stack. */
939 static void
940 dwarf2out_stack_adjust (insn)
941 rtx insn;
943 long offset;
944 const char *label;
946 if (! flag_non_call_exceptions && GET_CODE (insn) == CALL_INSN)
948 /* Extract the size of the args from the CALL rtx itself. */
950 insn = PATTERN (insn);
951 if (GET_CODE (insn) == PARALLEL)
952 insn = XVECEXP (insn, 0, 0);
953 if (GET_CODE (insn) == SET)
954 insn = SET_SRC (insn);
955 if (GET_CODE (insn) != CALL)
956 abort ();
957 dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
958 return;
961 /* If only calls can throw, and we have a frame pointer,
962 save up adjustments until we see the CALL_INSN. */
963 else if (! flag_non_call_exceptions
964 && cfa.reg != STACK_POINTER_REGNUM)
965 return;
967 if (GET_CODE (insn) == BARRIER)
969 /* When we see a BARRIER, we know to reset args_size to 0. Usually
970 the compiler will have already emitted a stack adjustment, but
971 doesn't bother for calls to noreturn functions. */
972 #ifdef STACK_GROWS_DOWNWARD
973 offset = -args_size;
974 #else
975 offset = args_size;
976 #endif
978 else if (GET_CODE (PATTERN (insn)) == SET)
980 offset = stack_adjust_offset (PATTERN (insn));
982 else if (GET_CODE (PATTERN (insn)) == PARALLEL
983 || GET_CODE (PATTERN (insn)) == SEQUENCE)
985 /* There may be stack adjustments inside compound insns. Search
986 for them. */
987 int j;
989 offset = 0;
990 for (j = XVECLEN (PATTERN (insn), 0) - 1; j >= 0; j--)
992 rtx pattern = XVECEXP (PATTERN (insn), 0, j);
993 if (GET_CODE (pattern) == SET)
994 offset += stack_adjust_offset (pattern);
997 else
998 return;
1000 if (offset == 0)
1001 return;
1003 if (cfa.reg == STACK_POINTER_REGNUM)
1004 cfa.offset += offset;
1006 #ifndef STACK_GROWS_DOWNWARD
1007 offset = -offset;
1008 #endif
1009 args_size += offset;
1010 if (args_size < 0)
1011 args_size = 0;
1013 label = dwarf2out_cfi_label ();
1014 def_cfa_1 (label, &cfa);
1015 dwarf2out_args_size (label, args_size);
1018 /* We delay emitting a register save until either (a) we reach the end
1019 of the prologue or (b) the register is clobbered. This clusters
1020 register saves so that there are fewer pc advances. */
1022 struct queued_reg_save
1024 struct queued_reg_save *next;
1025 rtx reg;
1026 long cfa_offset;
1029 static struct queued_reg_save *queued_reg_saves;
1030 static const char *last_reg_save_label;
1032 static void
1033 queue_reg_save (label, reg, offset)
1034 const char *label;
1035 rtx reg;
1036 long offset;
1038 struct queued_reg_save *q = (struct queued_reg_save *) xmalloc (sizeof (*q));
1040 q->next = queued_reg_saves;
1041 q->reg = reg;
1042 q->cfa_offset = offset;
1043 queued_reg_saves = q;
1045 last_reg_save_label = label;
1048 static void
1049 flush_queued_reg_saves ()
1051 struct queued_reg_save *q, *next;
1053 for (q = queued_reg_saves; q ; q = next)
1055 dwarf2out_reg_save (last_reg_save_label, REGNO (q->reg), q->cfa_offset);
1056 next = q->next;
1057 free (q);
1060 queued_reg_saves = NULL;
1061 last_reg_save_label = NULL;
1064 static bool
1065 clobbers_queued_reg_save (insn)
1066 rtx insn;
1068 struct queued_reg_save *q;
1070 for (q = queued_reg_saves; q ; q = q->next)
1071 if (modified_in_p (q->reg, insn))
1072 return true;
1074 return false;
1078 /* A temporary register holding an integral value used in adjusting SP
1079 or setting up the store_reg. The "offset" field holds the integer
1080 value, not an offset. */
1081 static dw_cfa_location cfa_temp;
1083 /* Record call frame debugging information for an expression EXPR,
1084 which either sets SP or FP (adjusting how we calculate the frame
1085 address) or saves a register to the stack. LABEL indicates the
1086 address of EXPR.
1088 This function encodes a state machine mapping rtxes to actions on
1089 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1090 users need not read the source code.
1092 The High-Level Picture
1094 Changes in the register we use to calculate the CFA: Currently we
1095 assume that if you copy the CFA register into another register, we
1096 should take the other one as the new CFA register; this seems to
1097 work pretty well. If it's wrong for some target, it's simple
1098 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1100 Changes in the register we use for saving registers to the stack:
1101 This is usually SP, but not always. Again, we deduce that if you
1102 copy SP into another register (and SP is not the CFA register),
1103 then the new register is the one we will be using for register
1104 saves. This also seems to work.
1106 Register saves: There's not much guesswork about this one; if
1107 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1108 register save, and the register used to calculate the destination
1109 had better be the one we think we're using for this purpose.
1111 Except: If the register being saved is the CFA register, and the
1112 offset is non-zero, we are saving the CFA, so we assume we have to
1113 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1114 the intent is to save the value of SP from the previous frame.
1116 Invariants / Summaries of Rules
1118 cfa current rule for calculating the CFA. It usually
1119 consists of a register and an offset.
1120 cfa_store register used by prologue code to save things to the stack
1121 cfa_store.offset is the offset from the value of
1122 cfa_store.reg to the actual CFA
1123 cfa_temp register holding an integral value. cfa_temp.offset
1124 stores the value, which will be used to adjust the
1125 stack pointer. cfa_temp is also used like cfa_store,
1126 to track stores to the stack via fp or a temp reg.
1128 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1129 with cfa.reg as the first operand changes the cfa.reg and its
1130 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1131 cfa_temp.offset.
1133 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1134 expression yielding a constant. This sets cfa_temp.reg
1135 and cfa_temp.offset.
1137 Rule 5: Create a new register cfa_store used to save items to the
1138 stack.
1140 Rules 10-14: Save a register to the stack. Define offset as the
1141 difference of the original location and cfa_store's
1142 location (or cfa_temp's location if cfa_temp is used).
1144 The Rules
1146 "{a,b}" indicates a choice of a xor b.
1147 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1149 Rule 1:
1150 (set <reg1> <reg2>:cfa.reg)
1151 effects: cfa.reg = <reg1>
1152 cfa.offset unchanged
1153 cfa_temp.reg = <reg1>
1154 cfa_temp.offset = cfa.offset
1156 Rule 2:
1157 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg {<const_int>,<reg>:cfa_temp.reg}))
1158 effects: cfa.reg = sp if fp used
1159 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1160 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1161 if cfa_store.reg==sp
1163 Rule 3:
1164 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1165 effects: cfa.reg = fp
1166 cfa_offset += +/- <const_int>
1168 Rule 4:
1169 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1170 constraints: <reg1> != fp
1171 <reg1> != sp
1172 effects: cfa.reg = <reg1>
1173 cfa_temp.reg = <reg1>
1174 cfa_temp.offset = cfa.offset
1176 Rule 5:
1177 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1178 constraints: <reg1> != fp
1179 <reg1> != sp
1180 effects: cfa_store.reg = <reg1>
1181 cfa_store.offset = cfa.offset - cfa_temp.offset
1183 Rule 6:
1184 (set <reg> <const_int>)
1185 effects: cfa_temp.reg = <reg>
1186 cfa_temp.offset = <const_int>
1188 Rule 7:
1189 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1190 effects: cfa_temp.reg = <reg1>
1191 cfa_temp.offset |= <const_int>
1193 Rule 8:
1194 (set <reg> (high <exp>))
1195 effects: none
1197 Rule 9:
1198 (set <reg> (lo_sum <exp> <const_int>))
1199 effects: cfa_temp.reg = <reg>
1200 cfa_temp.offset = <const_int>
1202 Rule 10:
1203 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1204 effects: cfa_store.offset -= <const_int>
1205 cfa.offset = cfa_store.offset if cfa.reg == sp
1206 cfa.reg = sp
1207 cfa.base_offset = -cfa_store.offset
1209 Rule 11:
1210 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1211 effects: cfa_store.offset += -/+ mode_size(mem)
1212 cfa.offset = cfa_store.offset if cfa.reg == sp
1213 cfa.reg = sp
1214 cfa.base_offset = -cfa_store.offset
1216 Rule 12:
1217 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>)) <reg2>)
1218 effects: cfa.reg = <reg1>
1219 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1221 Rule 13:
1222 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1223 effects: cfa.reg = <reg1>
1224 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1226 Rule 14:
1227 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1228 effects: cfa.reg = <reg1>
1229 cfa.base_offset = -cfa_temp.offset
1230 cfa_temp.offset -= mode_size(mem) */
1232 static void
1233 dwarf2out_frame_debug_expr (expr, label)
1234 rtx expr;
1235 const char *label;
1237 rtx src, dest;
1238 long offset;
1240 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1241 the PARALLEL independently. The first element is always processed if
1242 it is a SET. This is for backward compatibility. Other elements
1243 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1244 flag is set in them. */
1246 if (GET_CODE (expr) == PARALLEL
1247 || GET_CODE (expr) == SEQUENCE)
1249 int par_index;
1250 int limit = XVECLEN (expr, 0);
1252 for (par_index = 0; par_index < limit; par_index++)
1254 rtx x = XVECEXP (expr, 0, par_index);
1256 if (GET_CODE (x) == SET &&
1257 (RTX_FRAME_RELATED_P (x) || par_index == 0))
1258 dwarf2out_frame_debug_expr (x, label);
1260 return;
1263 if (GET_CODE (expr) != SET)
1264 abort ();
1266 src = SET_SRC (expr);
1267 dest = SET_DEST (expr);
1269 switch (GET_CODE (dest))
1271 case REG:
1272 /* Rule 1 */
1273 /* Update the CFA rule wrt SP or FP. Make sure src is
1274 relative to the current CFA register. */
1275 switch (GET_CODE (src))
1277 /* Setting FP from SP. */
1278 case REG:
1279 if (cfa.reg == (unsigned) REGNO (src))
1280 /* OK. */
1282 else
1283 abort ();
1285 /* We used to require that dest be either SP or FP, but the
1286 ARM copies SP to a temporary register, and from there to
1287 FP. So we just rely on the backends to only set
1288 RTX_FRAME_RELATED_P on appropriate insns. */
1289 cfa.reg = REGNO (dest);
1290 cfa_temp.reg = cfa.reg;
1291 cfa_temp.offset = cfa.offset;
1292 break;
1294 case PLUS:
1295 case MINUS:
1296 case LO_SUM:
1297 if (dest == stack_pointer_rtx)
1299 /* Rule 2 */
1300 /* Adjusting SP. */
1301 switch (GET_CODE (XEXP (src, 1)))
1303 case CONST_INT:
1304 offset = INTVAL (XEXP (src, 1));
1305 break;
1306 case REG:
1307 if ((unsigned) REGNO (XEXP (src, 1)) != cfa_temp.reg)
1308 abort ();
1309 offset = cfa_temp.offset;
1310 break;
1311 default:
1312 abort ();
1315 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1317 /* Restoring SP from FP in the epilogue. */
1318 if (cfa.reg != (unsigned) HARD_FRAME_POINTER_REGNUM)
1319 abort ();
1320 cfa.reg = STACK_POINTER_REGNUM;
1322 else if (GET_CODE (src) == LO_SUM)
1323 /* Assume we've set the source reg of the LO_SUM from sp. */
1325 else if (XEXP (src, 0) != stack_pointer_rtx)
1326 abort ();
1328 if (GET_CODE (src) != MINUS)
1329 offset = -offset;
1330 if (cfa.reg == STACK_POINTER_REGNUM)
1331 cfa.offset += offset;
1332 if (cfa_store.reg == STACK_POINTER_REGNUM)
1333 cfa_store.offset += offset;
1335 else if (dest == hard_frame_pointer_rtx)
1337 /* Rule 3 */
1338 /* Either setting the FP from an offset of the SP,
1339 or adjusting the FP */
1340 if (! frame_pointer_needed)
1341 abort ();
1343 if (GET_CODE (XEXP (src, 0)) == REG
1344 && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
1345 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1347 offset = INTVAL (XEXP (src, 1));
1348 if (GET_CODE (src) != MINUS)
1349 offset = -offset;
1350 cfa.offset += offset;
1351 cfa.reg = HARD_FRAME_POINTER_REGNUM;
1353 else
1354 abort ();
1356 else
1358 if (GET_CODE (src) == MINUS)
1359 abort ();
1361 /* Rule 4 */
1362 if (GET_CODE (XEXP (src, 0)) == REG
1363 && REGNO (XEXP (src, 0)) == cfa.reg
1364 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1366 /* Setting a temporary CFA register that will be copied
1367 into the FP later on. */
1368 offset = - INTVAL (XEXP (src, 1));
1369 cfa.offset += offset;
1370 cfa.reg = REGNO (dest);
1371 /* Or used to save regs to the stack. */
1372 cfa_temp.reg = cfa.reg;
1373 cfa_temp.offset = cfa.offset;
1375 /* Rule 5 */
1376 else if (GET_CODE (XEXP (src, 0)) == REG
1377 && REGNO (XEXP (src, 0)) == cfa_temp.reg
1378 && XEXP (src, 1) == stack_pointer_rtx)
1380 /* Setting a scratch register that we will use instead
1381 of SP for saving registers to the stack. */
1382 if (cfa.reg != STACK_POINTER_REGNUM)
1383 abort ();
1384 cfa_store.reg = REGNO (dest);
1385 cfa_store.offset = cfa.offset - cfa_temp.offset;
1387 /* Rule 9 */
1388 else if (GET_CODE (src) == LO_SUM
1389 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1391 cfa_temp.reg = REGNO (dest);
1392 cfa_temp.offset = INTVAL (XEXP (src, 1));
1394 else
1395 abort ();
1397 break;
1399 /* Rule 6 */
1400 case CONST_INT:
1401 cfa_temp.reg = REGNO (dest);
1402 cfa_temp.offset = INTVAL (src);
1403 break;
1405 /* Rule 7 */
1406 case IOR:
1407 if (GET_CODE (XEXP (src, 0)) != REG
1408 || (unsigned) REGNO (XEXP (src, 0)) != cfa_temp.reg
1409 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1410 abort ();
1411 if ((unsigned) REGNO (dest) != cfa_temp.reg)
1412 cfa_temp.reg = REGNO (dest);
1413 cfa_temp.offset |= INTVAL (XEXP (src, 1));
1414 break;
1416 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1417 which will fill in all of the bits. */
1418 /* Rule 8 */
1419 case HIGH:
1420 break;
1422 default:
1423 abort ();
1425 def_cfa_1 (label, &cfa);
1426 break;
1428 case MEM:
1429 if (GET_CODE (src) != REG)
1430 abort ();
1432 /* Saving a register to the stack. Make sure dest is relative to the
1433 CFA register. */
1434 switch (GET_CODE (XEXP (dest, 0)))
1436 /* Rule 10 */
1437 /* With a push. */
1438 case PRE_MODIFY:
1439 /* We can't handle variable size modifications. */
1440 if (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1)) != CONST_INT)
1441 abort();
1442 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1444 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1445 || cfa_store.reg != STACK_POINTER_REGNUM)
1446 abort ();
1447 cfa_store.offset += offset;
1448 if (cfa.reg == STACK_POINTER_REGNUM)
1449 cfa.offset = cfa_store.offset;
1451 offset = -cfa_store.offset;
1452 break;
1453 /* Rule 11 */
1454 case PRE_INC:
1455 case PRE_DEC:
1456 offset = GET_MODE_SIZE (GET_MODE (dest));
1457 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1458 offset = -offset;
1460 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1461 || cfa_store.reg != STACK_POINTER_REGNUM)
1462 abort ();
1463 cfa_store.offset += offset;
1464 if (cfa.reg == STACK_POINTER_REGNUM)
1465 cfa.offset = cfa_store.offset;
1467 offset = -cfa_store.offset;
1468 break;
1470 /* Rule 12 */
1471 /* With an offset. */
1472 case PLUS:
1473 case MINUS:
1474 case LO_SUM:
1475 if (GET_CODE (XEXP (XEXP (dest, 0), 1)) != CONST_INT)
1476 abort ();
1477 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1478 if (GET_CODE (XEXP (dest, 0)) == MINUS)
1479 offset = -offset;
1481 if (cfa_store.reg == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1482 offset -= cfa_store.offset;
1483 else if (cfa_temp.reg == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1484 offset -= cfa_temp.offset;
1485 else
1486 abort ();
1487 break;
1489 /* Rule 13 */
1490 /* Without an offset. */
1491 case REG:
1492 if (cfa_store.reg == (unsigned) REGNO (XEXP (dest, 0)))
1493 offset = -cfa_store.offset;
1494 else if (cfa_temp.reg == (unsigned) REGNO (XEXP (dest, 0)))
1495 offset = -cfa_temp.offset;
1496 else
1497 abort ();
1498 break;
1500 /* Rule 14 */
1501 case POST_INC:
1502 if (cfa_temp.reg != (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1503 abort ();
1504 offset = -cfa_temp.offset;
1505 cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1506 break;
1508 default:
1509 abort ();
1512 if (REGNO (src) != STACK_POINTER_REGNUM
1513 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1514 && (unsigned) REGNO (src) == cfa.reg)
1516 /* We're storing the current CFA reg into the stack. */
1518 if (cfa.offset == 0)
1520 /* If the source register is exactly the CFA, assume
1521 we're saving SP like any other register; this happens
1522 on the ARM. */
1524 def_cfa_1 (label, &cfa);
1525 queue_reg_save (label, stack_pointer_rtx, offset);
1526 break;
1528 else
1530 /* Otherwise, we'll need to look in the stack to
1531 calculate the CFA. */
1533 rtx x = XEXP (dest, 0);
1534 if (GET_CODE (x) != REG)
1535 x = XEXP (x, 0);
1536 if (GET_CODE (x) != REG)
1537 abort ();
1538 cfa.reg = (unsigned) REGNO (x);
1539 cfa.base_offset = offset;
1540 cfa.indirect = 1;
1541 def_cfa_1 (label, &cfa);
1542 break;
1546 def_cfa_1 (label, &cfa);
1547 queue_reg_save (label, src, offset);
1548 break;
1550 default:
1551 abort ();
1555 /* Record call frame debugging information for INSN, which either
1556 sets SP or FP (adjusting how we calculate the frame address) or saves a
1557 register to the stack. If INSN is NULL_RTX, initialize our state. */
1559 void
1560 dwarf2out_frame_debug (insn)
1561 rtx insn;
1563 const char *label;
1564 rtx src;
1566 if (insn == NULL_RTX)
1568 /* Flush any queued register saves. */
1569 flush_queued_reg_saves ();
1571 /* Set up state for generating call frame debug info. */
1572 lookup_cfa (&cfa);
1573 if (cfa.reg != (unsigned long) DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM))
1574 abort ();
1575 cfa.reg = STACK_POINTER_REGNUM;
1576 cfa_store = cfa;
1577 cfa_temp.reg = -1;
1578 cfa_temp.offset = 0;
1579 return;
1582 if (GET_CODE (insn) != INSN || clobbers_queued_reg_save (insn))
1583 flush_queued_reg_saves ();
1585 if (! RTX_FRAME_RELATED_P (insn))
1587 if (!ACCUMULATE_OUTGOING_ARGS)
1588 dwarf2out_stack_adjust (insn);
1589 return;
1592 label = dwarf2out_cfi_label ();
1594 src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1595 if (src)
1596 insn = XEXP (src, 0);
1597 else
1598 insn = PATTERN (insn);
1600 dwarf2out_frame_debug_expr (insn, label);
1603 /* Output a Call Frame Information opcode and its operand(s). */
1605 static void
1606 output_cfi (cfi, fde, for_eh)
1607 dw_cfi_ref cfi;
1608 dw_fde_ref fde;
1609 int for_eh;
1611 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
1613 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1614 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
1615 "DW_CFA_advance_loc 0x%lx",
1616 cfi->dw_cfi_oprnd1.dw_cfi_offset);
1618 else if (cfi->dw_cfi_opc == DW_CFA_offset)
1620 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1621 | (cfi->dw_cfi_oprnd1.dw_cfi_reg_num & 0x3f)),
1622 "DW_CFA_offset, column 0x%lx",
1623 cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1624 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1626 else if (cfi->dw_cfi_opc == DW_CFA_restore)
1628 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1629 | (cfi->dw_cfi_oprnd1.dw_cfi_reg_num & 0x3f)),
1630 "DW_CFA_restore, column 0x%lx",
1631 cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1633 else
1635 dw2_asm_output_data (1, cfi->dw_cfi_opc,
1636 "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
1638 switch (cfi->dw_cfi_opc)
1640 case DW_CFA_set_loc:
1641 if (for_eh)
1642 dw2_asm_output_encoded_addr_rtx (
1643 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
1644 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
1645 NULL);
1646 else
1647 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
1648 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
1649 break;
1650 case DW_CFA_advance_loc1:
1651 dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1652 fde->dw_fde_current_label, NULL);
1653 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1654 break;
1655 case DW_CFA_advance_loc2:
1656 dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1657 fde->dw_fde_current_label, NULL);
1658 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1659 break;
1660 case DW_CFA_advance_loc4:
1661 dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1662 fde->dw_fde_current_label, NULL);
1663 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1664 break;
1665 case DW_CFA_MIPS_advance_loc8:
1666 dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1667 fde->dw_fde_current_label, NULL);
1668 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1669 break;
1670 case DW_CFA_offset_extended:
1671 case DW_CFA_GNU_negative_offset_extended:
1672 case DW_CFA_def_cfa:
1673 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, NULL);
1674 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1675 break;
1676 case DW_CFA_restore_extended:
1677 case DW_CFA_undefined:
1678 case DW_CFA_same_value:
1679 case DW_CFA_def_cfa_register:
1680 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, NULL);
1681 break;
1682 case DW_CFA_register:
1683 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, NULL);
1684 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, NULL);
1685 break;
1686 case DW_CFA_def_cfa_offset:
1687 case DW_CFA_GNU_args_size:
1688 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
1689 break;
1690 case DW_CFA_GNU_window_save:
1691 break;
1692 case DW_CFA_def_cfa_expression:
1693 output_cfa_loc (cfi);
1694 break;
1695 default:
1696 break;
1701 /* Output the call frame information used to used to record information
1702 that relates to calculating the frame pointer, and records the
1703 location of saved registers. */
1705 static void
1706 output_call_frame_info (for_eh)
1707 int for_eh;
1709 unsigned int i;
1710 dw_fde_ref fde;
1711 dw_cfi_ref cfi;
1712 char l1[20], l2[20], section_start_label[20];
1713 int any_lsda_needed = 0;
1714 char augmentation[6];
1715 int augmentation_size;
1716 int fde_encoding = DW_EH_PE_absptr;
1717 int per_encoding = DW_EH_PE_absptr;
1718 int lsda_encoding = DW_EH_PE_absptr;
1720 /* If we don't have any functions we'll want to unwind out of, don't
1721 emit any EH unwind information. */
1722 if (for_eh)
1724 int any_eh_needed = 0;
1725 for (i = 0; i < fde_table_in_use; ++i)
1726 if (fde_table[i].uses_eh_lsda)
1727 any_eh_needed = any_lsda_needed = 1;
1728 else if (! fde_table[i].nothrow)
1729 any_eh_needed = 1;
1731 if (! any_eh_needed)
1732 return;
1735 /* We're going to be generating comments, so turn on app. */
1736 if (flag_debug_asm)
1737 app_enable ();
1739 if (for_eh)
1741 #ifdef EH_FRAME_SECTION_NAME
1742 named_section_flags (EH_FRAME_SECTION_NAME, SECTION_WRITE);
1743 #else
1744 tree label = get_file_function_name ('F');
1746 data_section ();
1747 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
1748 ASM_GLOBALIZE_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
1749 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
1750 #endif
1752 else
1753 named_section_flags (DEBUG_FRAME_SECTION, SECTION_DEBUG);
1755 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
1756 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
1758 /* Output the CIE. */
1759 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
1760 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
1761 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
1762 "Length of Common Information Entry");
1763 ASM_OUTPUT_LABEL (asm_out_file, l1);
1765 /* Now that the CIE pointer is PC-relative for EH,
1766 use 0 to identify the CIE. */
1767 dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
1768 (for_eh ? 0 : DW_CIE_ID),
1769 "CIE Identifier Tag");
1771 dw2_asm_output_data (1, DW_CIE_VERSION, "CIE Version");
1773 augmentation[0] = 0;
1774 augmentation_size = 0;
1775 if (for_eh)
1777 char *p;
1779 /* Augmentation:
1780 z Indicates that a uleb128 is present to size the
1781 augmentation section.
1782 L Indicates the encoding (and thus presence) of
1783 an LSDA pointer in the FDE augmentation.
1784 R Indicates a non-default pointer encoding for
1785 FDE code pointers.
1786 P Indicates the presence of an encoding + language
1787 personality routine in the CIE augmentation. */
1789 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
1790 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
1791 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
1793 p = augmentation + 1;
1794 if (eh_personality_libfunc)
1796 *p++ = 'P';
1797 augmentation_size += 1 + size_of_encoded_value (per_encoding);
1799 if (any_lsda_needed)
1801 *p++ = 'L';
1802 augmentation_size += 1;
1804 if (fde_encoding != DW_EH_PE_absptr)
1806 *p++ = 'R';
1807 augmentation_size += 1;
1809 if (p > augmentation + 1)
1811 augmentation[0] = 'z';
1812 *p = '\0';
1815 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
1816 if (eh_personality_libfunc && per_encoding == DW_EH_PE_aligned)
1818 int offset = ( 4 /* Length */
1819 + 4 /* CIE Id */
1820 + 1 /* CIE version */
1821 + strlen (augmentation) + 1 /* Augmentation */
1822 + size_of_uleb128 (1) /* Code alignment */
1823 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
1824 + 1 /* RA column */
1825 + 1 /* Augmentation size */
1826 + 1 /* Personality encoding */ );
1827 int pad = -offset & (PTR_SIZE - 1);
1829 augmentation_size += pad;
1831 /* Augmentations should be small, so there's scarce need to
1832 iterate for a solution. Die if we exceed one uleb128 byte. */
1833 if (size_of_uleb128 (augmentation_size) != 1)
1834 abort ();
1837 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
1839 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
1841 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
1842 "CIE Data Alignment Factor");
1844 dw2_asm_output_data (1, DWARF_FRAME_RETURN_COLUMN, "CIE RA Column");
1846 if (augmentation[0])
1848 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
1849 if (eh_personality_libfunc)
1851 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
1852 eh_data_format_name (per_encoding));
1853 dw2_asm_output_encoded_addr_rtx (per_encoding,
1854 eh_personality_libfunc, NULL);
1856 if (any_lsda_needed)
1857 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
1858 eh_data_format_name (lsda_encoding));
1859 if (fde_encoding != DW_EH_PE_absptr)
1860 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
1861 eh_data_format_name (fde_encoding));
1864 for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
1865 output_cfi (cfi, NULL, for_eh);
1867 /* Pad the CIE out to an address sized boundary. */
1868 ASM_OUTPUT_ALIGN (asm_out_file,
1869 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
1870 ASM_OUTPUT_LABEL (asm_out_file, l2);
1872 /* Loop through all of the FDE's. */
1873 for (i = 0; i < fde_table_in_use; ++i)
1875 fde = &fde_table[i];
1877 /* Don't emit EH unwind info for leaf functions that don't need it. */
1878 if (for_eh && fde->nothrow && ! fde->uses_eh_lsda)
1879 continue;
1881 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, FDE_LABEL, for_eh + i * 2);
1882 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + i * 2);
1883 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + i * 2);
1884 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
1885 "FDE Length");
1886 ASM_OUTPUT_LABEL (asm_out_file, l1);
1888 if (for_eh)
1889 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
1890 else
1891 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
1892 "FDE CIE offset");
1894 if (for_eh)
1896 dw2_asm_output_encoded_addr_rtx (fde_encoding,
1897 gen_rtx_SYMBOL_REF (Pmode, fde->dw_fde_begin),
1898 "FDE initial location");
1899 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
1900 fde->dw_fde_end, fde->dw_fde_begin,
1901 "FDE address range");
1903 else
1905 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
1906 "FDE initial location");
1907 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
1908 fde->dw_fde_end, fde->dw_fde_begin,
1909 "FDE address range");
1912 if (augmentation[0])
1914 if (any_lsda_needed)
1916 int size = size_of_encoded_value (lsda_encoding);
1918 if (lsda_encoding == DW_EH_PE_aligned)
1920 int offset = ( 4 /* Length */
1921 + 4 /* CIE offset */
1922 + 2 * size_of_encoded_value (fde_encoding)
1923 + 1 /* Augmentation size */ );
1924 int pad = -offset & (PTR_SIZE - 1);
1926 size += pad;
1927 if (size_of_uleb128 (size) != 1)
1928 abort ();
1931 dw2_asm_output_data_uleb128 (size, "Augmentation size");
1933 if (fde->uses_eh_lsda)
1935 ASM_GENERATE_INTERNAL_LABEL (l1, "LLSDA",
1936 fde->funcdef_number);
1937 dw2_asm_output_encoded_addr_rtx (
1938 lsda_encoding, gen_rtx_SYMBOL_REF (Pmode, l1),
1939 "Language Specific Data Area");
1941 else
1943 if (lsda_encoding == DW_EH_PE_aligned)
1944 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
1945 dw2_asm_output_data (size_of_encoded_value (lsda_encoding),
1946 0, "Language Specific Data Area (none)");
1949 else
1950 dw2_asm_output_data_uleb128 (0, "Augmentation size");
1953 /* Loop through the Call Frame Instructions associated with
1954 this FDE. */
1955 fde->dw_fde_current_label = fde->dw_fde_begin;
1956 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
1957 output_cfi (cfi, fde, for_eh);
1959 /* Pad the FDE out to an address sized boundary. */
1960 ASM_OUTPUT_ALIGN (asm_out_file,
1961 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
1962 ASM_OUTPUT_LABEL (asm_out_file, l2);
1965 #ifndef EH_FRAME_SECTION_NAME
1966 if (for_eh)
1967 dw2_asm_output_data (4, 0, "End of Table");
1968 #endif
1969 #ifdef MIPS_DEBUGGING_INFO
1970 /* Work around Irix 6 assembler bug whereby labels at the end of a section
1971 get a value of 0. Putting .align 0 after the label fixes it. */
1972 ASM_OUTPUT_ALIGN (asm_out_file, 0);
1973 #endif
1975 /* Turn off app to make assembly quicker. */
1976 if (flag_debug_asm)
1977 app_disable ();
1980 /* Output a marker (i.e. a label) for the beginning of a function, before
1981 the prologue. */
1983 void
1984 dwarf2out_begin_prologue (line, file)
1985 unsigned int line ATTRIBUTE_UNUSED;
1986 const char *file ATTRIBUTE_UNUSED;
1988 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1989 dw_fde_ref fde;
1991 current_function_func_begin_label = 0;
1993 #ifdef IA64_UNWIND_INFO
1994 /* ??? current_function_func_begin_label is also used by except.c
1995 for call-site information. We must emit this label if it might
1996 be used. */
1997 if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
1998 && ! dwarf2out_do_frame ())
1999 return;
2000 #else
2001 if (! dwarf2out_do_frame ())
2002 return;
2003 #endif
2005 ++current_funcdef_number;
2007 function_section (current_function_decl);
2008 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
2009 current_funcdef_number);
2010 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
2011 current_funcdef_number);
2012 current_function_func_begin_label = get_identifier (label);
2014 #ifdef IA64_UNWIND_INFO
2015 /* We can elide the fde allocation if we're not emitting debug info. */
2016 if (! dwarf2out_do_frame ())
2017 return;
2018 #endif
2020 /* Expand the fde table if necessary. */
2021 if (fde_table_in_use == fde_table_allocated)
2023 fde_table_allocated += FDE_TABLE_INCREMENT;
2024 fde_table
2025 = (dw_fde_ref) xrealloc (fde_table,
2026 fde_table_allocated * sizeof (dw_fde_node));
2029 /* Record the FDE associated with this function. */
2030 current_funcdef_fde = fde_table_in_use;
2032 /* Add the new FDE at the end of the fde_table. */
2033 fde = &fde_table[fde_table_in_use++];
2034 fde->dw_fde_begin = xstrdup (label);
2035 fde->dw_fde_current_label = NULL;
2036 fde->dw_fde_end = NULL;
2037 fde->dw_fde_cfi = NULL;
2038 fde->funcdef_number = current_funcdef_number;
2039 fde->nothrow = current_function_nothrow;
2040 fde->uses_eh_lsda = cfun->uses_eh_lsda;
2042 args_size = old_args_size = 0;
2044 /* We only want to output line number information for the genuine
2045 dwarf2 prologue case, not the eh frame case. */
2046 #ifdef DWARF2_DEBUGGING_INFO
2047 if (file)
2048 dwarf2out_source_line (line, file);
2049 #endif
2052 /* Output a marker (i.e. a label) for the absolute end of the generated code
2053 for a function definition. This gets called *after* the epilogue code has
2054 been generated. */
2056 void
2057 dwarf2out_end_epilogue ()
2059 dw_fde_ref fde;
2060 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2062 /* Output a label to mark the endpoint of the code generated for this
2063 function. */
2064 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL, current_funcdef_number);
2065 ASM_OUTPUT_LABEL (asm_out_file, label);
2066 fde = &fde_table[fde_table_in_use - 1];
2067 fde->dw_fde_end = xstrdup (label);
2070 void
2071 dwarf2out_frame_init ()
2073 /* Allocate the initial hunk of the fde_table. */
2074 fde_table = (dw_fde_ref) xcalloc (FDE_TABLE_INCREMENT, sizeof (dw_fde_node));
2075 fde_table_allocated = FDE_TABLE_INCREMENT;
2076 fde_table_in_use = 0;
2078 /* Generate the CFA instructions common to all FDE's. Do it now for the
2079 sake of lookup_cfa. */
2081 #ifdef DWARF2_UNWIND_INFO
2082 /* On entry, the Canonical Frame Address is at SP. */
2083 dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
2084 initial_return_save (INCOMING_RETURN_ADDR_RTX);
2085 #endif
2088 void
2089 dwarf2out_frame_finish ()
2091 /* Output call frame information. */
2092 if (write_symbols == DWARF2_DEBUG)
2093 output_call_frame_info (0);
2094 if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
2095 output_call_frame_info (1);
2098 /* And now, the subset of the debugging information support code necessary
2099 for emitting location expressions. */
2101 typedef struct dw_val_struct *dw_val_ref;
2102 typedef struct die_struct *dw_die_ref;
2103 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
2104 typedef struct dw_loc_list_struct *dw_loc_list_ref;
2106 /* Each DIE may have a series of attribute/value pairs. Values
2107 can take on several forms. The forms that are used in this
2108 implementation are listed below. */
2110 typedef enum
2112 dw_val_class_addr,
2113 dw_val_class_offset,
2114 dw_val_class_loc,
2115 dw_val_class_loc_list,
2116 dw_val_class_const,
2117 dw_val_class_unsigned_const,
2118 dw_val_class_long_long,
2119 dw_val_class_float,
2120 dw_val_class_flag,
2121 dw_val_class_die_ref,
2122 dw_val_class_fde_ref,
2123 dw_val_class_lbl_id,
2124 dw_val_class_lbl_offset,
2125 dw_val_class_str
2127 dw_val_class;
2129 /* Describe a double word constant value. */
2130 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2132 typedef struct dw_long_long_struct
2134 unsigned long hi;
2135 unsigned long low;
2137 dw_long_long_const;
2139 /* Describe a floating point constant value. */
2141 typedef struct dw_fp_struct
2143 long *array;
2144 unsigned length;
2146 dw_float_const;
2148 /* The dw_val_node describes an attribute's value, as it is
2149 represented internally. */
2151 typedef struct dw_val_struct
2153 dw_val_class val_class;
2154 union
2156 rtx val_addr;
2157 long unsigned val_offset;
2158 dw_loc_list_ref val_loc_list;
2159 dw_loc_descr_ref val_loc;
2160 long int val_int;
2161 long unsigned val_unsigned;
2162 dw_long_long_const val_long_long;
2163 dw_float_const val_float;
2164 struct {
2165 dw_die_ref die;
2166 int external;
2167 } val_die_ref;
2168 unsigned val_fde_index;
2169 char *val_str;
2170 char *val_lbl_id;
2171 unsigned char val_flag;
2175 dw_val_node;
2177 /* Locations in memory are described using a sequence of stack machine
2178 operations. */
2180 typedef struct dw_loc_descr_struct
2182 dw_loc_descr_ref dw_loc_next;
2183 enum dwarf_location_atom dw_loc_opc;
2184 dw_val_node dw_loc_oprnd1;
2185 dw_val_node dw_loc_oprnd2;
2186 int dw_loc_addr;
2188 dw_loc_descr_node;
2190 /* Location lists are ranges + location descriptions for that range,
2191 so you can track variables that are in different places over
2192 their entire life. */
2193 typedef struct dw_loc_list_struct
2195 dw_loc_list_ref dw_loc_next;
2196 const char *begin; /* Label for begin address of range */
2197 const char *end; /* Label for end address of range */
2198 char *ll_symbol; /* Label for beginning of location list. Only on head of list */
2199 const char *section; /* Section this loclist is relative to */
2200 dw_loc_descr_ref expr;
2201 } dw_loc_list_node;
2203 static const char *dwarf_stack_op_name PARAMS ((unsigned));
2204 static dw_loc_descr_ref new_loc_descr PARAMS ((enum dwarf_location_atom,
2205 unsigned long,
2206 unsigned long));
2207 static void add_loc_descr PARAMS ((dw_loc_descr_ref *,
2208 dw_loc_descr_ref));
2209 static unsigned long size_of_loc_descr PARAMS ((dw_loc_descr_ref));
2210 static unsigned long size_of_locs PARAMS ((dw_loc_descr_ref));
2211 static void output_loc_operands PARAMS ((dw_loc_descr_ref));
2212 static void output_loc_sequence PARAMS ((dw_loc_descr_ref));
2214 /* Convert a DWARF stack opcode into its string name. */
2216 static const char *
2217 dwarf_stack_op_name (op)
2218 unsigned op;
2220 switch (op)
2222 case DW_OP_addr:
2223 return "DW_OP_addr";
2224 case DW_OP_deref:
2225 return "DW_OP_deref";
2226 case DW_OP_const1u:
2227 return "DW_OP_const1u";
2228 case DW_OP_const1s:
2229 return "DW_OP_const1s";
2230 case DW_OP_const2u:
2231 return "DW_OP_const2u";
2232 case DW_OP_const2s:
2233 return "DW_OP_const2s";
2234 case DW_OP_const4u:
2235 return "DW_OP_const4u";
2236 case DW_OP_const4s:
2237 return "DW_OP_const4s";
2238 case DW_OP_const8u:
2239 return "DW_OP_const8u";
2240 case DW_OP_const8s:
2241 return "DW_OP_const8s";
2242 case DW_OP_constu:
2243 return "DW_OP_constu";
2244 case DW_OP_consts:
2245 return "DW_OP_consts";
2246 case DW_OP_dup:
2247 return "DW_OP_dup";
2248 case DW_OP_drop:
2249 return "DW_OP_drop";
2250 case DW_OP_over:
2251 return "DW_OP_over";
2252 case DW_OP_pick:
2253 return "DW_OP_pick";
2254 case DW_OP_swap:
2255 return "DW_OP_swap";
2256 case DW_OP_rot:
2257 return "DW_OP_rot";
2258 case DW_OP_xderef:
2259 return "DW_OP_xderef";
2260 case DW_OP_abs:
2261 return "DW_OP_abs";
2262 case DW_OP_and:
2263 return "DW_OP_and";
2264 case DW_OP_div:
2265 return "DW_OP_div";
2266 case DW_OP_minus:
2267 return "DW_OP_minus";
2268 case DW_OP_mod:
2269 return "DW_OP_mod";
2270 case DW_OP_mul:
2271 return "DW_OP_mul";
2272 case DW_OP_neg:
2273 return "DW_OP_neg";
2274 case DW_OP_not:
2275 return "DW_OP_not";
2276 case DW_OP_or:
2277 return "DW_OP_or";
2278 case DW_OP_plus:
2279 return "DW_OP_plus";
2280 case DW_OP_plus_uconst:
2281 return "DW_OP_plus_uconst";
2282 case DW_OP_shl:
2283 return "DW_OP_shl";
2284 case DW_OP_shr:
2285 return "DW_OP_shr";
2286 case DW_OP_shra:
2287 return "DW_OP_shra";
2288 case DW_OP_xor:
2289 return "DW_OP_xor";
2290 case DW_OP_bra:
2291 return "DW_OP_bra";
2292 case DW_OP_eq:
2293 return "DW_OP_eq";
2294 case DW_OP_ge:
2295 return "DW_OP_ge";
2296 case DW_OP_gt:
2297 return "DW_OP_gt";
2298 case DW_OP_le:
2299 return "DW_OP_le";
2300 case DW_OP_lt:
2301 return "DW_OP_lt";
2302 case DW_OP_ne:
2303 return "DW_OP_ne";
2304 case DW_OP_skip:
2305 return "DW_OP_skip";
2306 case DW_OP_lit0:
2307 return "DW_OP_lit0";
2308 case DW_OP_lit1:
2309 return "DW_OP_lit1";
2310 case DW_OP_lit2:
2311 return "DW_OP_lit2";
2312 case DW_OP_lit3:
2313 return "DW_OP_lit3";
2314 case DW_OP_lit4:
2315 return "DW_OP_lit4";
2316 case DW_OP_lit5:
2317 return "DW_OP_lit5";
2318 case DW_OP_lit6:
2319 return "DW_OP_lit6";
2320 case DW_OP_lit7:
2321 return "DW_OP_lit7";
2322 case DW_OP_lit8:
2323 return "DW_OP_lit8";
2324 case DW_OP_lit9:
2325 return "DW_OP_lit9";
2326 case DW_OP_lit10:
2327 return "DW_OP_lit10";
2328 case DW_OP_lit11:
2329 return "DW_OP_lit11";
2330 case DW_OP_lit12:
2331 return "DW_OP_lit12";
2332 case DW_OP_lit13:
2333 return "DW_OP_lit13";
2334 case DW_OP_lit14:
2335 return "DW_OP_lit14";
2336 case DW_OP_lit15:
2337 return "DW_OP_lit15";
2338 case DW_OP_lit16:
2339 return "DW_OP_lit16";
2340 case DW_OP_lit17:
2341 return "DW_OP_lit17";
2342 case DW_OP_lit18:
2343 return "DW_OP_lit18";
2344 case DW_OP_lit19:
2345 return "DW_OP_lit19";
2346 case DW_OP_lit20:
2347 return "DW_OP_lit20";
2348 case DW_OP_lit21:
2349 return "DW_OP_lit21";
2350 case DW_OP_lit22:
2351 return "DW_OP_lit22";
2352 case DW_OP_lit23:
2353 return "DW_OP_lit23";
2354 case DW_OP_lit24:
2355 return "DW_OP_lit24";
2356 case DW_OP_lit25:
2357 return "DW_OP_lit25";
2358 case DW_OP_lit26:
2359 return "DW_OP_lit26";
2360 case DW_OP_lit27:
2361 return "DW_OP_lit27";
2362 case DW_OP_lit28:
2363 return "DW_OP_lit28";
2364 case DW_OP_lit29:
2365 return "DW_OP_lit29";
2366 case DW_OP_lit30:
2367 return "DW_OP_lit30";
2368 case DW_OP_lit31:
2369 return "DW_OP_lit31";
2370 case DW_OP_reg0:
2371 return "DW_OP_reg0";
2372 case DW_OP_reg1:
2373 return "DW_OP_reg1";
2374 case DW_OP_reg2:
2375 return "DW_OP_reg2";
2376 case DW_OP_reg3:
2377 return "DW_OP_reg3";
2378 case DW_OP_reg4:
2379 return "DW_OP_reg4";
2380 case DW_OP_reg5:
2381 return "DW_OP_reg5";
2382 case DW_OP_reg6:
2383 return "DW_OP_reg6";
2384 case DW_OP_reg7:
2385 return "DW_OP_reg7";
2386 case DW_OP_reg8:
2387 return "DW_OP_reg8";
2388 case DW_OP_reg9:
2389 return "DW_OP_reg9";
2390 case DW_OP_reg10:
2391 return "DW_OP_reg10";
2392 case DW_OP_reg11:
2393 return "DW_OP_reg11";
2394 case DW_OP_reg12:
2395 return "DW_OP_reg12";
2396 case DW_OP_reg13:
2397 return "DW_OP_reg13";
2398 case DW_OP_reg14:
2399 return "DW_OP_reg14";
2400 case DW_OP_reg15:
2401 return "DW_OP_reg15";
2402 case DW_OP_reg16:
2403 return "DW_OP_reg16";
2404 case DW_OP_reg17:
2405 return "DW_OP_reg17";
2406 case DW_OP_reg18:
2407 return "DW_OP_reg18";
2408 case DW_OP_reg19:
2409 return "DW_OP_reg19";
2410 case DW_OP_reg20:
2411 return "DW_OP_reg20";
2412 case DW_OP_reg21:
2413 return "DW_OP_reg21";
2414 case DW_OP_reg22:
2415 return "DW_OP_reg22";
2416 case DW_OP_reg23:
2417 return "DW_OP_reg23";
2418 case DW_OP_reg24:
2419 return "DW_OP_reg24";
2420 case DW_OP_reg25:
2421 return "DW_OP_reg25";
2422 case DW_OP_reg26:
2423 return "DW_OP_reg26";
2424 case DW_OP_reg27:
2425 return "DW_OP_reg27";
2426 case DW_OP_reg28:
2427 return "DW_OP_reg28";
2428 case DW_OP_reg29:
2429 return "DW_OP_reg29";
2430 case DW_OP_reg30:
2431 return "DW_OP_reg30";
2432 case DW_OP_reg31:
2433 return "DW_OP_reg31";
2434 case DW_OP_breg0:
2435 return "DW_OP_breg0";
2436 case DW_OP_breg1:
2437 return "DW_OP_breg1";
2438 case DW_OP_breg2:
2439 return "DW_OP_breg2";
2440 case DW_OP_breg3:
2441 return "DW_OP_breg3";
2442 case DW_OP_breg4:
2443 return "DW_OP_breg4";
2444 case DW_OP_breg5:
2445 return "DW_OP_breg5";
2446 case DW_OP_breg6:
2447 return "DW_OP_breg6";
2448 case DW_OP_breg7:
2449 return "DW_OP_breg7";
2450 case DW_OP_breg8:
2451 return "DW_OP_breg8";
2452 case DW_OP_breg9:
2453 return "DW_OP_breg9";
2454 case DW_OP_breg10:
2455 return "DW_OP_breg10";
2456 case DW_OP_breg11:
2457 return "DW_OP_breg11";
2458 case DW_OP_breg12:
2459 return "DW_OP_breg12";
2460 case DW_OP_breg13:
2461 return "DW_OP_breg13";
2462 case DW_OP_breg14:
2463 return "DW_OP_breg14";
2464 case DW_OP_breg15:
2465 return "DW_OP_breg15";
2466 case DW_OP_breg16:
2467 return "DW_OP_breg16";
2468 case DW_OP_breg17:
2469 return "DW_OP_breg17";
2470 case DW_OP_breg18:
2471 return "DW_OP_breg18";
2472 case DW_OP_breg19:
2473 return "DW_OP_breg19";
2474 case DW_OP_breg20:
2475 return "DW_OP_breg20";
2476 case DW_OP_breg21:
2477 return "DW_OP_breg21";
2478 case DW_OP_breg22:
2479 return "DW_OP_breg22";
2480 case DW_OP_breg23:
2481 return "DW_OP_breg23";
2482 case DW_OP_breg24:
2483 return "DW_OP_breg24";
2484 case DW_OP_breg25:
2485 return "DW_OP_breg25";
2486 case DW_OP_breg26:
2487 return "DW_OP_breg26";
2488 case DW_OP_breg27:
2489 return "DW_OP_breg27";
2490 case DW_OP_breg28:
2491 return "DW_OP_breg28";
2492 case DW_OP_breg29:
2493 return "DW_OP_breg29";
2494 case DW_OP_breg30:
2495 return "DW_OP_breg30";
2496 case DW_OP_breg31:
2497 return "DW_OP_breg31";
2498 case DW_OP_regx:
2499 return "DW_OP_regx";
2500 case DW_OP_fbreg:
2501 return "DW_OP_fbreg";
2502 case DW_OP_bregx:
2503 return "DW_OP_bregx";
2504 case DW_OP_piece:
2505 return "DW_OP_piece";
2506 case DW_OP_deref_size:
2507 return "DW_OP_deref_size";
2508 case DW_OP_xderef_size:
2509 return "DW_OP_xderef_size";
2510 case DW_OP_nop:
2511 return "DW_OP_nop";
2512 default:
2513 return "OP_<unknown>";
2517 /* Return a pointer to a newly allocated location description. Location
2518 descriptions are simple expression terms that can be strung
2519 together to form more complicated location (address) descriptions. */
2521 static inline dw_loc_descr_ref
2522 new_loc_descr (op, oprnd1, oprnd2)
2523 enum dwarf_location_atom op;
2524 unsigned long oprnd1;
2525 unsigned long oprnd2;
2527 /* Use xcalloc here so we clear out all of the long_long constant in
2528 the union. */
2529 dw_loc_descr_ref descr
2530 = (dw_loc_descr_ref) xcalloc (1, sizeof (dw_loc_descr_node));
2532 descr->dw_loc_opc = op;
2533 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
2534 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
2535 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
2536 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
2538 return descr;
2542 /* Add a location description term to a location description expression. */
2544 static inline void
2545 add_loc_descr (list_head, descr)
2546 dw_loc_descr_ref *list_head;
2547 dw_loc_descr_ref descr;
2549 dw_loc_descr_ref *d;
2551 /* Find the end of the chain. */
2552 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
2555 *d = descr;
2558 /* Return the size of a location descriptor. */
2560 static unsigned long
2561 size_of_loc_descr (loc)
2562 dw_loc_descr_ref loc;
2564 unsigned long size = 1;
2566 switch (loc->dw_loc_opc)
2568 case DW_OP_addr:
2569 size += DWARF2_ADDR_SIZE;
2570 break;
2571 case DW_OP_const1u:
2572 case DW_OP_const1s:
2573 size += 1;
2574 break;
2575 case DW_OP_const2u:
2576 case DW_OP_const2s:
2577 size += 2;
2578 break;
2579 case DW_OP_const4u:
2580 case DW_OP_const4s:
2581 size += 4;
2582 break;
2583 case DW_OP_const8u:
2584 case DW_OP_const8s:
2585 size += 8;
2586 break;
2587 case DW_OP_constu:
2588 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2589 break;
2590 case DW_OP_consts:
2591 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2592 break;
2593 case DW_OP_pick:
2594 size += 1;
2595 break;
2596 case DW_OP_plus_uconst:
2597 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2598 break;
2599 case DW_OP_skip:
2600 case DW_OP_bra:
2601 size += 2;
2602 break;
2603 case DW_OP_breg0:
2604 case DW_OP_breg1:
2605 case DW_OP_breg2:
2606 case DW_OP_breg3:
2607 case DW_OP_breg4:
2608 case DW_OP_breg5:
2609 case DW_OP_breg6:
2610 case DW_OP_breg7:
2611 case DW_OP_breg8:
2612 case DW_OP_breg9:
2613 case DW_OP_breg10:
2614 case DW_OP_breg11:
2615 case DW_OP_breg12:
2616 case DW_OP_breg13:
2617 case DW_OP_breg14:
2618 case DW_OP_breg15:
2619 case DW_OP_breg16:
2620 case DW_OP_breg17:
2621 case DW_OP_breg18:
2622 case DW_OP_breg19:
2623 case DW_OP_breg20:
2624 case DW_OP_breg21:
2625 case DW_OP_breg22:
2626 case DW_OP_breg23:
2627 case DW_OP_breg24:
2628 case DW_OP_breg25:
2629 case DW_OP_breg26:
2630 case DW_OP_breg27:
2631 case DW_OP_breg28:
2632 case DW_OP_breg29:
2633 case DW_OP_breg30:
2634 case DW_OP_breg31:
2635 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2636 break;
2637 case DW_OP_regx:
2638 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2639 break;
2640 case DW_OP_fbreg:
2641 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2642 break;
2643 case DW_OP_bregx:
2644 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2645 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
2646 break;
2647 case DW_OP_piece:
2648 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2649 break;
2650 case DW_OP_deref_size:
2651 case DW_OP_xderef_size:
2652 size += 1;
2653 break;
2654 default:
2655 break;
2658 return size;
2661 /* Return the size of a series of location descriptors. */
2663 static unsigned long
2664 size_of_locs (loc)
2665 dw_loc_descr_ref loc;
2667 unsigned long size = 0;
2669 for (; loc != NULL; loc = loc->dw_loc_next)
2671 loc->dw_loc_addr = size;
2672 size += size_of_loc_descr (loc);
2675 return size;
2678 /* Output location description stack opcode's operands (if any). */
2680 static void
2681 output_loc_operands (loc)
2682 dw_loc_descr_ref loc;
2684 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2685 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2687 switch (loc->dw_loc_opc)
2689 #ifdef DWARF2_DEBUGGING_INFO
2690 case DW_OP_addr:
2691 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
2692 break;
2693 case DW_OP_const2u:
2694 case DW_OP_const2s:
2695 dw2_asm_output_data (2, val1->v.val_int, NULL);
2696 break;
2697 case DW_OP_const4u:
2698 case DW_OP_const4s:
2699 dw2_asm_output_data (4, val1->v.val_int, NULL);
2700 break;
2701 case DW_OP_const8u:
2702 case DW_OP_const8s:
2703 if (HOST_BITS_PER_LONG < 64)
2704 abort ();
2705 dw2_asm_output_data (8, val1->v.val_int, NULL);
2706 break;
2707 case DW_OP_skip:
2708 case DW_OP_bra:
2710 int offset;
2712 if (val1->val_class == dw_val_class_loc)
2713 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2714 else
2715 abort ();
2717 dw2_asm_output_data (2, offset, NULL);
2719 break;
2720 #else
2721 case DW_OP_addr:
2722 case DW_OP_const2u:
2723 case DW_OP_const2s:
2724 case DW_OP_const4u:
2725 case DW_OP_const4s:
2726 case DW_OP_const8u:
2727 case DW_OP_const8s:
2728 case DW_OP_skip:
2729 case DW_OP_bra:
2730 /* We currently don't make any attempt to make sure these are
2731 aligned properly like we do for the main unwind info, so
2732 don't support emitting things larger than a byte if we're
2733 only doing unwinding. */
2734 abort ();
2735 #endif
2736 case DW_OP_const1u:
2737 case DW_OP_const1s:
2738 dw2_asm_output_data (1, val1->v.val_int, NULL);
2739 break;
2740 case DW_OP_constu:
2741 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2742 break;
2743 case DW_OP_consts:
2744 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2745 break;
2746 case DW_OP_pick:
2747 dw2_asm_output_data (1, val1->v.val_int, NULL);
2748 break;
2749 case DW_OP_plus_uconst:
2750 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2751 break;
2752 case DW_OP_breg0:
2753 case DW_OP_breg1:
2754 case DW_OP_breg2:
2755 case DW_OP_breg3:
2756 case DW_OP_breg4:
2757 case DW_OP_breg5:
2758 case DW_OP_breg6:
2759 case DW_OP_breg7:
2760 case DW_OP_breg8:
2761 case DW_OP_breg9:
2762 case DW_OP_breg10:
2763 case DW_OP_breg11:
2764 case DW_OP_breg12:
2765 case DW_OP_breg13:
2766 case DW_OP_breg14:
2767 case DW_OP_breg15:
2768 case DW_OP_breg16:
2769 case DW_OP_breg17:
2770 case DW_OP_breg18:
2771 case DW_OP_breg19:
2772 case DW_OP_breg20:
2773 case DW_OP_breg21:
2774 case DW_OP_breg22:
2775 case DW_OP_breg23:
2776 case DW_OP_breg24:
2777 case DW_OP_breg25:
2778 case DW_OP_breg26:
2779 case DW_OP_breg27:
2780 case DW_OP_breg28:
2781 case DW_OP_breg29:
2782 case DW_OP_breg30:
2783 case DW_OP_breg31:
2784 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2785 break;
2786 case DW_OP_regx:
2787 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2788 break;
2789 case DW_OP_fbreg:
2790 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2791 break;
2792 case DW_OP_bregx:
2793 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2794 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
2795 break;
2796 case DW_OP_piece:
2797 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2798 break;
2799 case DW_OP_deref_size:
2800 case DW_OP_xderef_size:
2801 dw2_asm_output_data (1, val1->v.val_int, NULL);
2802 break;
2803 default:
2804 /* Other codes have no operands. */
2805 break;
2809 /* Output a sequence of location operations. */
2811 static void
2812 output_loc_sequence (loc)
2813 dw_loc_descr_ref loc;
2815 for (; loc != NULL; loc = loc->dw_loc_next)
2817 /* Output the opcode. */
2818 dw2_asm_output_data (1, loc->dw_loc_opc,
2819 "%s", dwarf_stack_op_name (loc->dw_loc_opc));
2821 /* Output the operand(s) (if any). */
2822 output_loc_operands (loc);
2826 /* This routine will generate the correct assembly data for a location
2827 description based on a cfi entry with a complex address. */
2829 static void
2830 output_cfa_loc (cfi)
2831 dw_cfi_ref cfi;
2833 dw_loc_descr_ref loc;
2834 unsigned long size;
2836 /* Output the size of the block. */
2837 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
2838 size = size_of_locs (loc);
2839 dw2_asm_output_data_uleb128 (size, NULL);
2841 /* Now output the operations themselves. */
2842 output_loc_sequence (loc);
2845 /* This function builds a dwarf location descriptor sequence from
2846 a dw_cfa_location. */
2848 static struct dw_loc_descr_struct *
2849 build_cfa_loc (cfa)
2850 dw_cfa_location *cfa;
2852 struct dw_loc_descr_struct *head, *tmp;
2854 if (cfa->indirect == 0)
2855 abort ();
2857 if (cfa->base_offset)
2859 if (cfa->reg <= 31)
2860 head = new_loc_descr (DW_OP_breg0 + cfa->reg, cfa->base_offset, 0);
2861 else
2862 head = new_loc_descr (DW_OP_bregx, cfa->reg, cfa->base_offset);
2864 else if (cfa->reg <= 31)
2865 head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
2866 else
2867 head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
2868 head->dw_loc_oprnd1.val_class = dw_val_class_const;
2869 tmp = new_loc_descr (DW_OP_deref, 0, 0);
2870 add_loc_descr (&head, tmp);
2871 if (cfa->offset != 0)
2873 tmp = new_loc_descr (DW_OP_plus_uconst, cfa->offset, 0);
2874 add_loc_descr (&head, tmp);
2876 return head;
2879 /* This function fills in aa dw_cfa_location structure from a
2880 dwarf location descriptor sequence. */
2882 static void
2883 get_cfa_from_loc_descr (cfa, loc)
2884 dw_cfa_location *cfa;
2885 struct dw_loc_descr_struct *loc;
2887 struct dw_loc_descr_struct *ptr;
2888 cfa->offset = 0;
2889 cfa->base_offset = 0;
2890 cfa->indirect = 0;
2891 cfa->reg = -1;
2893 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
2895 enum dwarf_location_atom op = ptr->dw_loc_opc;
2896 switch (op)
2898 case DW_OP_reg0:
2899 case DW_OP_reg1:
2900 case DW_OP_reg2:
2901 case DW_OP_reg3:
2902 case DW_OP_reg4:
2903 case DW_OP_reg5:
2904 case DW_OP_reg6:
2905 case DW_OP_reg7:
2906 case DW_OP_reg8:
2907 case DW_OP_reg9:
2908 case DW_OP_reg10:
2909 case DW_OP_reg11:
2910 case DW_OP_reg12:
2911 case DW_OP_reg13:
2912 case DW_OP_reg14:
2913 case DW_OP_reg15:
2914 case DW_OP_reg16:
2915 case DW_OP_reg17:
2916 case DW_OP_reg18:
2917 case DW_OP_reg19:
2918 case DW_OP_reg20:
2919 case DW_OP_reg21:
2920 case DW_OP_reg22:
2921 case DW_OP_reg23:
2922 case DW_OP_reg24:
2923 case DW_OP_reg25:
2924 case DW_OP_reg26:
2925 case DW_OP_reg27:
2926 case DW_OP_reg28:
2927 case DW_OP_reg29:
2928 case DW_OP_reg30:
2929 case DW_OP_reg31:
2930 cfa->reg = op - DW_OP_reg0;
2931 break;
2932 case DW_OP_regx:
2933 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
2934 break;
2935 case DW_OP_breg0:
2936 case DW_OP_breg1:
2937 case DW_OP_breg2:
2938 case DW_OP_breg3:
2939 case DW_OP_breg4:
2940 case DW_OP_breg5:
2941 case DW_OP_breg6:
2942 case DW_OP_breg7:
2943 case DW_OP_breg8:
2944 case DW_OP_breg9:
2945 case DW_OP_breg10:
2946 case DW_OP_breg11:
2947 case DW_OP_breg12:
2948 case DW_OP_breg13:
2949 case DW_OP_breg14:
2950 case DW_OP_breg15:
2951 case DW_OP_breg16:
2952 case DW_OP_breg17:
2953 case DW_OP_breg18:
2954 case DW_OP_breg19:
2955 case DW_OP_breg20:
2956 case DW_OP_breg21:
2957 case DW_OP_breg22:
2958 case DW_OP_breg23:
2959 case DW_OP_breg24:
2960 case DW_OP_breg25:
2961 case DW_OP_breg26:
2962 case DW_OP_breg27:
2963 case DW_OP_breg28:
2964 case DW_OP_breg29:
2965 case DW_OP_breg30:
2966 case DW_OP_breg31:
2967 cfa->reg = op - DW_OP_breg0;
2968 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
2969 break;
2970 case DW_OP_bregx:
2971 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
2972 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
2973 break;
2974 case DW_OP_deref:
2975 cfa->indirect = 1;
2976 break;
2977 case DW_OP_plus_uconst:
2978 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
2979 break;
2980 default:
2981 internal_error ("DW_LOC_OP %s not implememnted\n",
2982 dwarf_stack_op_name (ptr->dw_loc_opc));
2986 #endif /* .debug_frame support */
2988 /* And now, the support for symbolic debugging information. */
2989 #ifdef DWARF2_DEBUGGING_INFO
2991 static void dwarf2out_init PARAMS ((const char *));
2992 static void dwarf2out_finish PARAMS ((const char *));
2993 static void dwarf2out_define PARAMS ((unsigned int, const char *));
2994 static void dwarf2out_undef PARAMS ((unsigned int, const char *));
2995 static void dwarf2out_start_source_file PARAMS ((unsigned, const char *));
2996 static void dwarf2out_end_source_file PARAMS ((unsigned));
2997 static void dwarf2out_begin_block PARAMS ((unsigned, unsigned));
2998 static void dwarf2out_end_block PARAMS ((unsigned, unsigned));
2999 static bool dwarf2out_ignore_block PARAMS ((tree));
3000 static void dwarf2out_global_decl PARAMS ((tree));
3001 static void dwarf2out_abstract_function PARAMS ((tree));
3003 /* The debug hooks structure. */
3005 struct gcc_debug_hooks dwarf2_debug_hooks =
3007 dwarf2out_init,
3008 dwarf2out_finish,
3009 dwarf2out_define,
3010 dwarf2out_undef,
3011 dwarf2out_start_source_file,
3012 dwarf2out_end_source_file,
3013 dwarf2out_begin_block,
3014 dwarf2out_end_block,
3015 dwarf2out_ignore_block,
3016 dwarf2out_source_line,
3017 dwarf2out_begin_prologue,
3018 debug_nothing_int, /* end_prologue */
3019 dwarf2out_end_epilogue,
3020 debug_nothing_tree, /* begin_function */
3021 debug_nothing_int, /* end_function */
3022 dwarf2out_decl, /* function_decl */
3023 dwarf2out_global_decl,
3024 debug_nothing_tree, /* deferred_inline_function */
3025 /* The DWARF 2 backend tries to reduce debugging bloat by not
3026 emitting the abstract description of inline functions until
3027 something tries to reference them. */
3028 dwarf2out_abstract_function, /* outlining_inline_function */
3029 debug_nothing_rtx /* label */
3032 /* NOTE: In the comments in this file, many references are made to
3033 "Debugging Information Entries". This term is abbreviated as `DIE'
3034 throughout the remainder of this file. */
3036 /* An internal representation of the DWARF output is built, and then
3037 walked to generate the DWARF debugging info. The walk of the internal
3038 representation is done after the entire program has been compiled.
3039 The types below are used to describe the internal representation. */
3041 /* Various DIE's use offsets relative to the beginning of the
3042 .debug_info section to refer to each other. */
3044 typedef long int dw_offset;
3046 /* Define typedefs here to avoid circular dependencies. */
3048 typedef struct dw_attr_struct *dw_attr_ref;
3049 typedef struct dw_line_info_struct *dw_line_info_ref;
3050 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3051 typedef struct pubname_struct *pubname_ref;
3052 typedef struct dw_ranges_struct *dw_ranges_ref;
3054 /* Each entry in the line_info_table maintains the file and
3055 line number associated with the label generated for that
3056 entry. The label gives the PC value associated with
3057 the line number entry. */
3059 typedef struct dw_line_info_struct
3061 unsigned long dw_file_num;
3062 unsigned long dw_line_num;
3064 dw_line_info_entry;
3066 /* Line information for functions in separate sections; each one gets its
3067 own sequence. */
3068 typedef struct dw_separate_line_info_struct
3070 unsigned long dw_file_num;
3071 unsigned long dw_line_num;
3072 unsigned long function;
3074 dw_separate_line_info_entry;
3076 /* Each DIE attribute has a field specifying the attribute kind,
3077 a link to the next attribute in the chain, and an attribute value.
3078 Attributes are typically linked below the DIE they modify. */
3080 typedef struct dw_attr_struct
3082 enum dwarf_attribute dw_attr;
3083 dw_attr_ref dw_attr_next;
3084 dw_val_node dw_attr_val;
3086 dw_attr_node;
3088 /* The Debugging Information Entry (DIE) structure */
3090 typedef struct die_struct
3092 enum dwarf_tag die_tag;
3093 char *die_symbol;
3094 dw_attr_ref die_attr;
3095 dw_die_ref die_parent;
3096 dw_die_ref die_child;
3097 dw_die_ref die_sib;
3098 dw_offset die_offset;
3099 unsigned long die_abbrev;
3100 int die_mark;
3102 die_node;
3104 /* The pubname structure */
3106 typedef struct pubname_struct
3108 dw_die_ref die;
3109 char *name;
3111 pubname_entry;
3113 struct dw_ranges_struct
3115 int block_num;
3118 /* The limbo die list structure. */
3119 typedef struct limbo_die_struct
3121 dw_die_ref die;
3122 struct limbo_die_struct *next;
3124 limbo_die_node;
3126 /* How to start an assembler comment. */
3127 #ifndef ASM_COMMENT_START
3128 #define ASM_COMMENT_START ";#"
3129 #endif
3131 /* Define a macro which returns non-zero for a TYPE_DECL which was
3132 implicitly generated for a tagged type.
3134 Note that unlike the gcc front end (which generates a NULL named
3135 TYPE_DECL node for each complete tagged type, each array type, and
3136 each function type node created) the g++ front end generates a
3137 _named_ TYPE_DECL node for each tagged type node created.
3138 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3139 generate a DW_TAG_typedef DIE for them. */
3141 #define TYPE_DECL_IS_STUB(decl) \
3142 (DECL_NAME (decl) == NULL_TREE \
3143 || (DECL_ARTIFICIAL (decl) \
3144 && is_tagged_type (TREE_TYPE (decl)) \
3145 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3146 /* This is necessary for stub decls that \
3147 appear in nested inline functions. */ \
3148 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3149 && (decl_ultimate_origin (decl) \
3150 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3152 /* Information concerning the compilation unit's programming
3153 language, and compiler version. */
3155 extern int flag_traditional;
3157 /* Fixed size portion of the DWARF compilation unit header. */
3158 #define DWARF_COMPILE_UNIT_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 3)
3160 /* Fixed size portion of debugging line information prolog. */
3161 #define DWARF_LINE_PROLOG_HEADER_SIZE 5
3163 /* Fixed size portion of public names info. */
3164 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3166 /* Fixed size portion of the address range info. */
3167 #define DWARF_ARANGES_HEADER_SIZE \
3168 (DWARF_ROUND (2 * DWARF_OFFSET_SIZE + 4, DWARF2_ADDR_SIZE * 2) \
3169 - DWARF_OFFSET_SIZE)
3171 /* Size of padding portion in the address range info. It must be
3172 aligned to twice the pointer size. */
3173 #define DWARF_ARANGES_PAD_SIZE \
3174 (DWARF_ROUND (2 * DWARF_OFFSET_SIZE + 4, DWARF2_ADDR_SIZE * 2) \
3175 - (2 * DWARF_OFFSET_SIZE + 4))
3177 /* Use assembler line directives if available. */
3178 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3179 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3180 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3181 #else
3182 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3183 #endif
3184 #endif
3186 /* Define the architecture-dependent minimum instruction length (in bytes).
3187 In this implementation of DWARF, this field is used for information
3188 purposes only. Since GCC generates assembly language, we have
3189 no a priori knowledge of how many instruction bytes are generated
3190 for each source line, and therefore can use only the DW_LNE_set_address
3191 and DW_LNS_fixed_advance_pc line information commands. */
3193 #ifndef DWARF_LINE_MIN_INSTR_LENGTH
3194 #define DWARF_LINE_MIN_INSTR_LENGTH 4
3195 #endif
3197 /* Minimum line offset in a special line info. opcode.
3198 This value was chosen to give a reasonable range of values. */
3199 #define DWARF_LINE_BASE -10
3201 /* First special line opcde - leave room for the standard opcodes. */
3202 #define DWARF_LINE_OPCODE_BASE 10
3204 /* Range of line offsets in a special line info. opcode. */
3205 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3207 /* Flag that indicates the initial value of the is_stmt_start flag.
3208 In the present implementation, we do not mark any lines as
3209 the beginning of a source statement, because that information
3210 is not made available by the GCC front-end. */
3211 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3213 /* This location is used by calc_die_sizes() to keep track
3214 the offset of each DIE within the .debug_info section. */
3215 static unsigned long next_die_offset;
3217 /* Record the root of the DIE's built for the current compilation unit. */
3218 static dw_die_ref comp_unit_die;
3220 /* A list of DIEs with a NULL parent waiting to be relocated. */
3221 static limbo_die_node *limbo_die_list = 0;
3223 /* Structure used by lookup_filename to manage sets of filenames. */
3224 struct file_table
3226 char **table;
3227 unsigned allocated;
3228 unsigned in_use;
3229 unsigned last_lookup_index;
3232 /* Size (in elements) of increments by which we may expand the filename
3233 table. */
3234 #define FILE_TABLE_INCREMENT 64
3236 /* Filenames referenced by this compilation unit. */
3237 static struct file_table file_table;
3239 /* Local pointer to the name of the main input file. Initialized in
3240 dwarf2out_init. */
3241 static const char *primary_filename;
3243 /* A pointer to the base of a table of references to DIE's that describe
3244 declarations. The table is indexed by DECL_UID() which is a unique
3245 number identifying each decl. */
3246 static dw_die_ref *decl_die_table;
3248 /* Number of elements currently allocated for the decl_die_table. */
3249 static unsigned decl_die_table_allocated;
3251 /* Number of elements in decl_die_table currently in use. */
3252 static unsigned decl_die_table_in_use;
3254 /* Size (in elements) of increments by which we may expand the
3255 decl_die_table. */
3256 #define DECL_DIE_TABLE_INCREMENT 256
3258 /* A pointer to the base of a table of references to declaration
3259 scopes. This table is a display which tracks the nesting
3260 of declaration scopes at the current scope and containing
3261 scopes. This table is used to find the proper place to
3262 define type declaration DIE's. */
3263 varray_type decl_scope_table;
3265 /* A pointer to the base of a list of references to DIE's that
3266 are uniquely identified by their tag, presence/absence of
3267 children DIE's, and list of attribute/value pairs. */
3268 static dw_die_ref *abbrev_die_table;
3270 /* Number of elements currently allocated for abbrev_die_table. */
3271 static unsigned abbrev_die_table_allocated;
3273 /* Number of elements in type_die_table currently in use. */
3274 static unsigned abbrev_die_table_in_use;
3276 /* Size (in elements) of increments by which we may expand the
3277 abbrev_die_table. */
3278 #define ABBREV_DIE_TABLE_INCREMENT 256
3280 /* A pointer to the base of a table that contains line information
3281 for each source code line in .text in the compilation unit. */
3282 static dw_line_info_ref line_info_table;
3284 /* Number of elements currently allocated for line_info_table. */
3285 static unsigned line_info_table_allocated;
3287 /* Number of elements in separate_line_info_table currently in use. */
3288 static unsigned separate_line_info_table_in_use;
3290 /* A pointer to the base of a table that contains line information
3291 for each source code line outside of .text in the compilation unit. */
3292 static dw_separate_line_info_ref separate_line_info_table;
3294 /* Number of elements currently allocated for separate_line_info_table. */
3295 static unsigned separate_line_info_table_allocated;
3297 /* Number of elements in line_info_table currently in use. */
3298 static unsigned line_info_table_in_use;
3300 /* Size (in elements) of increments by which we may expand the
3301 line_info_table. */
3302 #define LINE_INFO_TABLE_INCREMENT 1024
3304 /* A pointer to the base of a table that contains a list of publicly
3305 accessible names. */
3306 static pubname_ref pubname_table;
3308 /* Number of elements currently allocated for pubname_table. */
3309 static unsigned pubname_table_allocated;
3311 /* Number of elements in pubname_table currently in use. */
3312 static unsigned pubname_table_in_use;
3314 /* Size (in elements) of increments by which we may expand the
3315 pubname_table. */
3316 #define PUBNAME_TABLE_INCREMENT 64
3318 /* Array of dies for which we should generate .debug_arange info. */
3319 static dw_die_ref *arange_table;
3321 /* Number of elements currently allocated for arange_table. */
3322 static unsigned arange_table_allocated;
3324 /* Number of elements in arange_table currently in use. */
3325 static unsigned arange_table_in_use;
3327 /* Size (in elements) of increments by which we may expand the
3328 arange_table. */
3329 #define ARANGE_TABLE_INCREMENT 64
3331 /* Array of dies for which we should generate .debug_ranges info. */
3332 static dw_ranges_ref ranges_table;
3334 /* Number of elements currently allocated for ranges_table. */
3335 static unsigned ranges_table_allocated;
3337 /* Number of elements in ranges_table currently in use. */
3338 static unsigned ranges_table_in_use;
3340 /* Size (in elements) of increments by which we may expand the
3341 ranges_table. */
3342 #define RANGES_TABLE_INCREMENT 64
3344 /* Whether we have location lists that need outputting */
3345 static unsigned have_location_lists;
3347 /* A pointer to the base of a list of incomplete types which might be
3348 completed at some later time. incomplete_types_list needs to be a VARRAY
3349 because we want to tell the garbage collector about it. If we don't tell
3350 the garbage collector about it, we can garbage collect live data.
3351 Bug 4215.*/
3352 varray_type incomplete_types;
3354 /* Record whether the function being analyzed contains inlined functions. */
3355 static int current_function_has_inlines;
3356 #if 0 && defined (MIPS_DEBUGGING_INFO)
3357 static int comp_unit_has_inlines;
3358 #endif
3360 /* Array of RTXes referenced by the debugging information, which therefore
3361 must be kept around forever. We do this rather than perform GC on
3362 the dwarf info because almost all of the dwarf info lives forever, and
3363 it's easier to support non-GC frontends this way. */
3364 static varray_type used_rtx_varray;
3366 /* Forward declarations for functions defined in this file. */
3368 static int is_pseudo_reg PARAMS ((rtx));
3369 static tree type_main_variant PARAMS ((tree));
3370 static int is_tagged_type PARAMS ((tree));
3371 static const char *dwarf_tag_name PARAMS ((unsigned));
3372 static const char *dwarf_attr_name PARAMS ((unsigned));
3373 static const char *dwarf_form_name PARAMS ((unsigned));
3374 #if 0
3375 static const char *dwarf_type_encoding_name PARAMS ((unsigned));
3376 #endif
3377 static tree decl_ultimate_origin PARAMS ((tree));
3378 static tree block_ultimate_origin PARAMS ((tree));
3379 static tree decl_class_context PARAMS ((tree));
3380 static void add_dwarf_attr PARAMS ((dw_die_ref, dw_attr_ref));
3381 static void add_AT_flag PARAMS ((dw_die_ref,
3382 enum dwarf_attribute,
3383 unsigned));
3384 static void add_AT_int PARAMS ((dw_die_ref,
3385 enum dwarf_attribute, long));
3386 static void add_AT_unsigned PARAMS ((dw_die_ref,
3387 enum dwarf_attribute,
3388 unsigned long));
3389 static void add_AT_long_long PARAMS ((dw_die_ref,
3390 enum dwarf_attribute,
3391 unsigned long,
3392 unsigned long));
3393 static void add_AT_float PARAMS ((dw_die_ref,
3394 enum dwarf_attribute,
3395 unsigned, long *));
3396 static void add_AT_string PARAMS ((dw_die_ref,
3397 enum dwarf_attribute,
3398 const char *));
3399 static void add_AT_die_ref PARAMS ((dw_die_ref,
3400 enum dwarf_attribute,
3401 dw_die_ref));
3402 static void add_AT_fde_ref PARAMS ((dw_die_ref,
3403 enum dwarf_attribute,
3404 unsigned));
3405 static void add_AT_loc PARAMS ((dw_die_ref,
3406 enum dwarf_attribute,
3407 dw_loc_descr_ref));
3408 static void add_AT_loc_list PARAMS ((dw_die_ref,
3409 enum dwarf_attribute,
3410 dw_loc_list_ref));
3411 static void add_AT_addr PARAMS ((dw_die_ref,
3412 enum dwarf_attribute,
3413 rtx));
3414 static void add_AT_lbl_id PARAMS ((dw_die_ref,
3415 enum dwarf_attribute,
3416 const char *));
3417 static void add_AT_lbl_offset PARAMS ((dw_die_ref,
3418 enum dwarf_attribute,
3419 const char *));
3420 static void add_AT_offset PARAMS ((dw_die_ref,
3421 enum dwarf_attribute,
3422 unsigned long));
3423 static dw_attr_ref get_AT PARAMS ((dw_die_ref,
3424 enum dwarf_attribute));
3425 static const char *get_AT_low_pc PARAMS ((dw_die_ref));
3426 static const char *get_AT_hi_pc PARAMS ((dw_die_ref));
3427 static const char *get_AT_string PARAMS ((dw_die_ref,
3428 enum dwarf_attribute));
3429 static int get_AT_flag PARAMS ((dw_die_ref,
3430 enum dwarf_attribute));
3431 static unsigned get_AT_unsigned PARAMS ((dw_die_ref,
3432 enum dwarf_attribute));
3433 static inline dw_die_ref get_AT_ref PARAMS ((dw_die_ref,
3434 enum dwarf_attribute));
3435 static int is_c_family PARAMS ((void));
3436 static int is_java PARAMS ((void));
3437 static int is_fortran PARAMS ((void));
3438 static void remove_AT PARAMS ((dw_die_ref,
3439 enum dwarf_attribute));
3440 static void remove_children PARAMS ((dw_die_ref));
3441 static void add_child_die PARAMS ((dw_die_ref, dw_die_ref));
3442 static dw_die_ref new_die PARAMS ((enum dwarf_tag, dw_die_ref));
3443 static dw_die_ref lookup_type_die PARAMS ((tree));
3444 static void equate_type_number_to_die PARAMS ((tree, dw_die_ref));
3445 static dw_die_ref lookup_decl_die PARAMS ((tree));
3446 static void equate_decl_number_to_die PARAMS ((tree, dw_die_ref));
3447 static void print_spaces PARAMS ((FILE *));
3448 static void print_die PARAMS ((dw_die_ref, FILE *));
3449 static void print_dwarf_line_table PARAMS ((FILE *));
3450 static void reverse_die_lists PARAMS ((dw_die_ref));
3451 static void reverse_all_dies PARAMS ((dw_die_ref));
3452 static dw_die_ref push_new_compile_unit PARAMS ((dw_die_ref, dw_die_ref));
3453 static dw_die_ref pop_compile_unit PARAMS ((dw_die_ref));
3454 static void loc_checksum PARAMS ((dw_loc_descr_ref, struct md5_ctx *));
3455 static void attr_checksum PARAMS ((dw_attr_ref, struct md5_ctx *));
3456 static void die_checksum PARAMS ((dw_die_ref, struct md5_ctx *));
3457 static void compute_section_prefix PARAMS ((dw_die_ref));
3458 static int is_type_die PARAMS ((dw_die_ref));
3459 static int is_comdat_die PARAMS ((dw_die_ref));
3460 static int is_symbol_die PARAMS ((dw_die_ref));
3461 static void assign_symbol_names PARAMS ((dw_die_ref));
3462 static void break_out_includes PARAMS ((dw_die_ref));
3463 static void add_sibling_attributes PARAMS ((dw_die_ref));
3464 static void build_abbrev_table PARAMS ((dw_die_ref));
3465 static void output_location_lists PARAMS ((dw_die_ref));
3466 static unsigned long size_of_string PARAMS ((const char *));
3467 static int constant_size PARAMS ((long unsigned));
3468 static unsigned long size_of_die PARAMS ((dw_die_ref));
3469 static void calc_die_sizes PARAMS ((dw_die_ref));
3470 static void mark_dies PARAMS ((dw_die_ref));
3471 static void unmark_dies PARAMS ((dw_die_ref));
3472 static unsigned long size_of_pubnames PARAMS ((void));
3473 static unsigned long size_of_aranges PARAMS ((void));
3474 static enum dwarf_form value_format PARAMS ((dw_attr_ref));
3475 static void output_value_format PARAMS ((dw_attr_ref));
3476 static void output_abbrev_section PARAMS ((void));
3477 static void output_die_symbol PARAMS ((dw_die_ref));
3478 static void output_die PARAMS ((dw_die_ref));
3479 static void output_compilation_unit_header PARAMS ((void));
3480 static void output_comp_unit PARAMS ((dw_die_ref));
3481 static const char *dwarf2_name PARAMS ((tree, int));
3482 static void add_pubname PARAMS ((tree, dw_die_ref));
3483 static void output_pubnames PARAMS ((void));
3484 static void add_arange PARAMS ((tree, dw_die_ref));
3485 static void output_aranges PARAMS ((void));
3486 static unsigned int add_ranges PARAMS ((tree));
3487 static void output_ranges PARAMS ((void));
3488 static void output_line_info PARAMS ((void));
3489 static void output_file_names PARAMS ((void));
3490 static dw_die_ref base_type_die PARAMS ((tree));
3491 static tree root_type PARAMS ((tree));
3492 static int is_base_type PARAMS ((tree));
3493 static dw_die_ref modified_type_die PARAMS ((tree, int, int, dw_die_ref));
3494 static int type_is_enum PARAMS ((tree));
3495 static unsigned int reg_number PARAMS ((rtx));
3496 static dw_loc_descr_ref reg_loc_descriptor PARAMS ((rtx));
3497 static dw_loc_descr_ref int_loc_descriptor PARAMS ((HOST_WIDE_INT));
3498 static dw_loc_descr_ref based_loc_descr PARAMS ((unsigned, long));
3499 static int is_based_loc PARAMS ((rtx));
3500 static dw_loc_descr_ref mem_loc_descriptor PARAMS ((rtx, enum machine_mode mode));
3501 static dw_loc_descr_ref concat_loc_descriptor PARAMS ((rtx, rtx));
3502 static dw_loc_descr_ref loc_descriptor PARAMS ((rtx));
3503 static dw_loc_descr_ref loc_descriptor_from_tree PARAMS ((tree, int));
3504 static HOST_WIDE_INT ceiling PARAMS ((HOST_WIDE_INT, unsigned int));
3505 static tree field_type PARAMS ((tree));
3506 static unsigned int simple_type_align_in_bits PARAMS ((tree));
3507 static unsigned int simple_decl_align_in_bits PARAMS ((tree));
3508 static unsigned HOST_WIDE_INT simple_type_size_in_bits PARAMS ((tree));
3509 static HOST_WIDE_INT field_byte_offset PARAMS ((tree));
3510 static void add_AT_location_description PARAMS ((dw_die_ref,
3511 enum dwarf_attribute, rtx));
3512 static void add_data_member_location_attribute PARAMS ((dw_die_ref, tree));
3513 static void add_const_value_attribute PARAMS ((dw_die_ref, rtx));
3514 static rtx rtl_for_decl_location PARAMS ((tree));
3515 static void add_location_or_const_value_attribute PARAMS ((dw_die_ref, tree));
3516 static void tree_add_const_value_attribute PARAMS ((dw_die_ref, tree));
3517 static void add_name_attribute PARAMS ((dw_die_ref, const char *));
3518 static void add_bound_info PARAMS ((dw_die_ref,
3519 enum dwarf_attribute, tree));
3520 static void add_subscript_info PARAMS ((dw_die_ref, tree));
3521 static void add_byte_size_attribute PARAMS ((dw_die_ref, tree));
3522 static void add_bit_offset_attribute PARAMS ((dw_die_ref, tree));
3523 static void add_bit_size_attribute PARAMS ((dw_die_ref, tree));
3524 static void add_prototyped_attribute PARAMS ((dw_die_ref, tree));
3525 static void add_abstract_origin_attribute PARAMS ((dw_die_ref, tree));
3526 static void add_pure_or_virtual_attribute PARAMS ((dw_die_ref, tree));
3527 static void add_src_coords_attributes PARAMS ((dw_die_ref, tree));
3528 static void add_name_and_src_coords_attributes PARAMS ((dw_die_ref, tree));
3529 static void push_decl_scope PARAMS ((tree));
3530 static dw_die_ref scope_die_for PARAMS ((tree, dw_die_ref));
3531 static void pop_decl_scope PARAMS ((void));
3532 static void add_type_attribute PARAMS ((dw_die_ref, tree, int, int,
3533 dw_die_ref));
3534 static const char *type_tag PARAMS ((tree));
3535 static tree member_declared_type PARAMS ((tree));
3536 #if 0
3537 static const char *decl_start_label PARAMS ((tree));
3538 #endif
3539 static void gen_array_type_die PARAMS ((tree, dw_die_ref));
3540 static void gen_set_type_die PARAMS ((tree, dw_die_ref));
3541 #if 0
3542 static void gen_entry_point_die PARAMS ((tree, dw_die_ref));
3543 #endif
3544 static void gen_inlined_enumeration_type_die PARAMS ((tree, dw_die_ref));
3545 static void gen_inlined_structure_type_die PARAMS ((tree, dw_die_ref));
3546 static void gen_inlined_union_type_die PARAMS ((tree, dw_die_ref));
3547 static void gen_enumeration_type_die PARAMS ((tree, dw_die_ref));
3548 static dw_die_ref gen_formal_parameter_die PARAMS ((tree, dw_die_ref));
3549 static void gen_unspecified_parameters_die PARAMS ((tree, dw_die_ref));
3550 static void gen_formal_types_die PARAMS ((tree, dw_die_ref));
3551 static void gen_subprogram_die PARAMS ((tree, dw_die_ref));
3552 static void gen_variable_die PARAMS ((tree, dw_die_ref));
3553 static void gen_label_die PARAMS ((tree, dw_die_ref));
3554 static void gen_lexical_block_die PARAMS ((tree, dw_die_ref, int));
3555 static void gen_inlined_subroutine_die PARAMS ((tree, dw_die_ref, int));
3556 static void gen_field_die PARAMS ((tree, dw_die_ref));
3557 static void gen_ptr_to_mbr_type_die PARAMS ((tree, dw_die_ref));
3558 static dw_die_ref gen_compile_unit_die PARAMS ((const char *));
3559 static void gen_string_type_die PARAMS ((tree, dw_die_ref));
3560 static void gen_inheritance_die PARAMS ((tree, dw_die_ref));
3561 static void gen_member_die PARAMS ((tree, dw_die_ref));
3562 static void gen_struct_or_union_type_die PARAMS ((tree, dw_die_ref));
3563 static void gen_subroutine_type_die PARAMS ((tree, dw_die_ref));
3564 static void gen_typedef_die PARAMS ((tree, dw_die_ref));
3565 static void gen_type_die PARAMS ((tree, dw_die_ref));
3566 static void gen_tagged_type_instantiation_die PARAMS ((tree, dw_die_ref));
3567 static void gen_block_die PARAMS ((tree, dw_die_ref, int));
3568 static void decls_for_scope PARAMS ((tree, dw_die_ref, int));
3569 static int is_redundant_typedef PARAMS ((tree));
3570 static void gen_decl_die PARAMS ((tree, dw_die_ref));
3571 static unsigned lookup_filename PARAMS ((const char *));
3572 static void init_file_table PARAMS ((void));
3573 static void add_incomplete_type PARAMS ((tree));
3574 static void retry_incomplete_types PARAMS ((void));
3575 static void gen_type_die_for_member PARAMS ((tree, tree, dw_die_ref));
3576 static rtx save_rtx PARAMS ((rtx));
3577 static void splice_child_die PARAMS ((dw_die_ref, dw_die_ref));
3578 static int file_info_cmp PARAMS ((const void *, const void *));
3579 static dw_loc_list_ref new_loc_list PARAMS ((dw_loc_descr_ref,
3580 const char *, const char *,
3581 const char *, unsigned));
3582 static void add_loc_descr_to_loc_list PARAMS ((dw_loc_list_ref *,
3583 dw_loc_descr_ref,
3584 const char *, const char *, const char *));
3585 static void output_loc_list PARAMS ((dw_loc_list_ref));
3586 static char *gen_internal_sym PARAMS ((const char *));
3588 /* Section names used to hold DWARF debugging information. */
3589 #ifndef DEBUG_INFO_SECTION
3590 #define DEBUG_INFO_SECTION ".debug_info"
3591 #endif
3592 #ifndef DEBUG_ABBREV_SECTION
3593 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3594 #endif
3595 #ifndef DEBUG_ARANGES_SECTION
3596 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3597 #endif
3598 #ifndef DEBUG_MACINFO_SECTION
3599 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
3600 #endif
3601 #ifndef DEBUG_LINE_SECTION
3602 #define DEBUG_LINE_SECTION ".debug_line"
3603 #endif
3604 #ifndef DEBUG_LOC_SECTION
3605 #define DEBUG_LOC_SECTION ".debug_loc"
3606 #endif
3607 #ifndef DEBUG_PUBNAMES_SECTION
3608 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
3609 #endif
3610 #ifndef DEBUG_STR_SECTION
3611 #define DEBUG_STR_SECTION ".debug_str"
3612 #endif
3613 #ifndef DEBUG_RANGES_SECTION
3614 #define DEBUG_RANGES_SECTION ".debug_ranges"
3615 #endif
3617 /* Standard ELF section names for compiled code and data. */
3618 #ifndef TEXT_SECTION_NAME
3619 #define TEXT_SECTION_NAME ".text"
3620 #endif
3622 /* Labels we insert at beginning sections we can reference instead of
3623 the section names themselves. */
3625 #ifndef TEXT_SECTION_LABEL
3626 #define TEXT_SECTION_LABEL "Ltext"
3627 #endif
3628 #ifndef DEBUG_LINE_SECTION_LABEL
3629 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
3630 #endif
3631 #ifndef DEBUG_INFO_SECTION_LABEL
3632 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
3633 #endif
3634 #ifndef DEBUG_ABBREV_SECTION_LABEL
3635 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
3636 #endif
3637 #ifndef DEBUG_LOC_SECTION_LABEL
3638 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
3639 #endif
3640 #ifndef DEBUG_MACINFO_SECTION_LABEL
3641 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
3642 #endif
3644 /* Definitions of defaults for formats and names of various special
3645 (artificial) labels which may be generated within this file (when the -g
3646 options is used and DWARF_DEBUGGING_INFO is in effect.
3647 If necessary, these may be overridden from within the tm.h file, but
3648 typically, overriding these defaults is unnecessary. */
3650 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
3651 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3652 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3653 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3654 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3655 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3656 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3657 #ifndef TEXT_END_LABEL
3658 #define TEXT_END_LABEL "Letext"
3659 #endif
3660 #ifndef DATA_END_LABEL
3661 #define DATA_END_LABEL "Ledata"
3662 #endif
3663 #ifndef BSS_END_LABEL
3664 #define BSS_END_LABEL "Lebss"
3665 #endif
3666 #ifndef BLOCK_BEGIN_LABEL
3667 #define BLOCK_BEGIN_LABEL "LBB"
3668 #endif
3669 #ifndef BLOCK_END_LABEL
3670 #define BLOCK_END_LABEL "LBE"
3671 #endif
3672 #ifndef BODY_BEGIN_LABEL
3673 #define BODY_BEGIN_LABEL "Lbb"
3674 #endif
3675 #ifndef BODY_END_LABEL
3676 #define BODY_END_LABEL "Lbe"
3677 #endif
3678 #ifndef LINE_CODE_LABEL
3679 #define LINE_CODE_LABEL "LM"
3680 #endif
3681 #ifndef SEPARATE_LINE_CODE_LABEL
3682 #define SEPARATE_LINE_CODE_LABEL "LSM"
3683 #endif
3685 /* We allow a language front-end to designate a function that is to be
3686 called to "demangle" any name before it it put into a DIE. */
3688 static const char *(*demangle_name_func) PARAMS ((const char *));
3690 void
3691 dwarf2out_set_demangle_name_func (func)
3692 const char *(*func) PARAMS ((const char *));
3694 demangle_name_func = func;
3697 /* Return an rtx like ORIG which lives forever. If we're doing GC,
3698 that means adding it to used_rtx_varray. If not, that means making
3699 a copy on the permanent_obstack. */
3701 static rtx
3702 save_rtx (orig)
3703 rtx orig;
3705 VARRAY_PUSH_RTX (used_rtx_varray, orig);
3707 return orig;
3710 /* Test if rtl node points to a pseudo register. */
3712 static inline int
3713 is_pseudo_reg (rtl)
3714 rtx rtl;
3716 return ((GET_CODE (rtl) == REG && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
3717 || (GET_CODE (rtl) == SUBREG
3718 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
3721 /* Return a reference to a type, with its const and volatile qualifiers
3722 removed. */
3724 static inline tree
3725 type_main_variant (type)
3726 tree type;
3728 type = TYPE_MAIN_VARIANT (type);
3730 /* There really should be only one main variant among any group of variants
3731 of a given type (and all of the MAIN_VARIANT values for all members of
3732 the group should point to that one type) but sometimes the C front-end
3733 messes this up for array types, so we work around that bug here. */
3735 if (TREE_CODE (type) == ARRAY_TYPE)
3736 while (type != TYPE_MAIN_VARIANT (type))
3737 type = TYPE_MAIN_VARIANT (type);
3739 return type;
3742 /* Return non-zero if the given type node represents a tagged type. */
3744 static inline int
3745 is_tagged_type (type)
3746 tree type;
3748 enum tree_code code = TREE_CODE (type);
3750 return (code == RECORD_TYPE || code == UNION_TYPE
3751 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
3754 /* Convert a DIE tag into its string name. */
3756 static const char *
3757 dwarf_tag_name (tag)
3758 unsigned tag;
3760 switch (tag)
3762 case DW_TAG_padding:
3763 return "DW_TAG_padding";
3764 case DW_TAG_array_type:
3765 return "DW_TAG_array_type";
3766 case DW_TAG_class_type:
3767 return "DW_TAG_class_type";
3768 case DW_TAG_entry_point:
3769 return "DW_TAG_entry_point";
3770 case DW_TAG_enumeration_type:
3771 return "DW_TAG_enumeration_type";
3772 case DW_TAG_formal_parameter:
3773 return "DW_TAG_formal_parameter";
3774 case DW_TAG_imported_declaration:
3775 return "DW_TAG_imported_declaration";
3776 case DW_TAG_label:
3777 return "DW_TAG_label";
3778 case DW_TAG_lexical_block:
3779 return "DW_TAG_lexical_block";
3780 case DW_TAG_member:
3781 return "DW_TAG_member";
3782 case DW_TAG_pointer_type:
3783 return "DW_TAG_pointer_type";
3784 case DW_TAG_reference_type:
3785 return "DW_TAG_reference_type";
3786 case DW_TAG_compile_unit:
3787 return "DW_TAG_compile_unit";
3788 case DW_TAG_string_type:
3789 return "DW_TAG_string_type";
3790 case DW_TAG_structure_type:
3791 return "DW_TAG_structure_type";
3792 case DW_TAG_subroutine_type:
3793 return "DW_TAG_subroutine_type";
3794 case DW_TAG_typedef:
3795 return "DW_TAG_typedef";
3796 case DW_TAG_union_type:
3797 return "DW_TAG_union_type";
3798 case DW_TAG_unspecified_parameters:
3799 return "DW_TAG_unspecified_parameters";
3800 case DW_TAG_variant:
3801 return "DW_TAG_variant";
3802 case DW_TAG_common_block:
3803 return "DW_TAG_common_block";
3804 case DW_TAG_common_inclusion:
3805 return "DW_TAG_common_inclusion";
3806 case DW_TAG_inheritance:
3807 return "DW_TAG_inheritance";
3808 case DW_TAG_inlined_subroutine:
3809 return "DW_TAG_inlined_subroutine";
3810 case DW_TAG_module:
3811 return "DW_TAG_module";
3812 case DW_TAG_ptr_to_member_type:
3813 return "DW_TAG_ptr_to_member_type";
3814 case DW_TAG_set_type:
3815 return "DW_TAG_set_type";
3816 case DW_TAG_subrange_type:
3817 return "DW_TAG_subrange_type";
3818 case DW_TAG_with_stmt:
3819 return "DW_TAG_with_stmt";
3820 case DW_TAG_access_declaration:
3821 return "DW_TAG_access_declaration";
3822 case DW_TAG_base_type:
3823 return "DW_TAG_base_type";
3824 case DW_TAG_catch_block:
3825 return "DW_TAG_catch_block";
3826 case DW_TAG_const_type:
3827 return "DW_TAG_const_type";
3828 case DW_TAG_constant:
3829 return "DW_TAG_constant";
3830 case DW_TAG_enumerator:
3831 return "DW_TAG_enumerator";
3832 case DW_TAG_file_type:
3833 return "DW_TAG_file_type";
3834 case DW_TAG_friend:
3835 return "DW_TAG_friend";
3836 case DW_TAG_namelist:
3837 return "DW_TAG_namelist";
3838 case DW_TAG_namelist_item:
3839 return "DW_TAG_namelist_item";
3840 case DW_TAG_packed_type:
3841 return "DW_TAG_packed_type";
3842 case DW_TAG_subprogram:
3843 return "DW_TAG_subprogram";
3844 case DW_TAG_template_type_param:
3845 return "DW_TAG_template_type_param";
3846 case DW_TAG_template_value_param:
3847 return "DW_TAG_template_value_param";
3848 case DW_TAG_thrown_type:
3849 return "DW_TAG_thrown_type";
3850 case DW_TAG_try_block:
3851 return "DW_TAG_try_block";
3852 case DW_TAG_variant_part:
3853 return "DW_TAG_variant_part";
3854 case DW_TAG_variable:
3855 return "DW_TAG_variable";
3856 case DW_TAG_volatile_type:
3857 return "DW_TAG_volatile_type";
3858 case DW_TAG_MIPS_loop:
3859 return "DW_TAG_MIPS_loop";
3860 case DW_TAG_format_label:
3861 return "DW_TAG_format_label";
3862 case DW_TAG_function_template:
3863 return "DW_TAG_function_template";
3864 case DW_TAG_class_template:
3865 return "DW_TAG_class_template";
3866 case DW_TAG_GNU_BINCL:
3867 return "DW_TAG_GNU_BINCL";
3868 case DW_TAG_GNU_EINCL:
3869 return "DW_TAG_GNU_EINCL";
3870 default:
3871 return "DW_TAG_<unknown>";
3875 /* Convert a DWARF attribute code into its string name. */
3877 static const char *
3878 dwarf_attr_name (attr)
3879 unsigned attr;
3881 switch (attr)
3883 case DW_AT_sibling:
3884 return "DW_AT_sibling";
3885 case DW_AT_location:
3886 return "DW_AT_location";
3887 case DW_AT_name:
3888 return "DW_AT_name";
3889 case DW_AT_ordering:
3890 return "DW_AT_ordering";
3891 case DW_AT_subscr_data:
3892 return "DW_AT_subscr_data";
3893 case DW_AT_byte_size:
3894 return "DW_AT_byte_size";
3895 case DW_AT_bit_offset:
3896 return "DW_AT_bit_offset";
3897 case DW_AT_bit_size:
3898 return "DW_AT_bit_size";
3899 case DW_AT_element_list:
3900 return "DW_AT_element_list";
3901 case DW_AT_stmt_list:
3902 return "DW_AT_stmt_list";
3903 case DW_AT_low_pc:
3904 return "DW_AT_low_pc";
3905 case DW_AT_high_pc:
3906 return "DW_AT_high_pc";
3907 case DW_AT_language:
3908 return "DW_AT_language";
3909 case DW_AT_member:
3910 return "DW_AT_member";
3911 case DW_AT_discr:
3912 return "DW_AT_discr";
3913 case DW_AT_discr_value:
3914 return "DW_AT_discr_value";
3915 case DW_AT_visibility:
3916 return "DW_AT_visibility";
3917 case DW_AT_import:
3918 return "DW_AT_import";
3919 case DW_AT_string_length:
3920 return "DW_AT_string_length";
3921 case DW_AT_common_reference:
3922 return "DW_AT_common_reference";
3923 case DW_AT_comp_dir:
3924 return "DW_AT_comp_dir";
3925 case DW_AT_const_value:
3926 return "DW_AT_const_value";
3927 case DW_AT_containing_type:
3928 return "DW_AT_containing_type";
3929 case DW_AT_default_value:
3930 return "DW_AT_default_value";
3931 case DW_AT_inline:
3932 return "DW_AT_inline";
3933 case DW_AT_is_optional:
3934 return "DW_AT_is_optional";
3935 case DW_AT_lower_bound:
3936 return "DW_AT_lower_bound";
3937 case DW_AT_producer:
3938 return "DW_AT_producer";
3939 case DW_AT_prototyped:
3940 return "DW_AT_prototyped";
3941 case DW_AT_return_addr:
3942 return "DW_AT_return_addr";
3943 case DW_AT_start_scope:
3944 return "DW_AT_start_scope";
3945 case DW_AT_stride_size:
3946 return "DW_AT_stride_size";
3947 case DW_AT_upper_bound:
3948 return "DW_AT_upper_bound";
3949 case DW_AT_abstract_origin:
3950 return "DW_AT_abstract_origin";
3951 case DW_AT_accessibility:
3952 return "DW_AT_accessibility";
3953 case DW_AT_address_class:
3954 return "DW_AT_address_class";
3955 case DW_AT_artificial:
3956 return "DW_AT_artificial";
3957 case DW_AT_base_types:
3958 return "DW_AT_base_types";
3959 case DW_AT_calling_convention:
3960 return "DW_AT_calling_convention";
3961 case DW_AT_count:
3962 return "DW_AT_count";
3963 case DW_AT_data_member_location:
3964 return "DW_AT_data_member_location";
3965 case DW_AT_decl_column:
3966 return "DW_AT_decl_column";
3967 case DW_AT_decl_file:
3968 return "DW_AT_decl_file";
3969 case DW_AT_decl_line:
3970 return "DW_AT_decl_line";
3971 case DW_AT_declaration:
3972 return "DW_AT_declaration";
3973 case DW_AT_discr_list:
3974 return "DW_AT_discr_list";
3975 case DW_AT_encoding:
3976 return "DW_AT_encoding";
3977 case DW_AT_external:
3978 return "DW_AT_external";
3979 case DW_AT_frame_base:
3980 return "DW_AT_frame_base";
3981 case DW_AT_friend:
3982 return "DW_AT_friend";
3983 case DW_AT_identifier_case:
3984 return "DW_AT_identifier_case";
3985 case DW_AT_macro_info:
3986 return "DW_AT_macro_info";
3987 case DW_AT_namelist_items:
3988 return "DW_AT_namelist_items";
3989 case DW_AT_priority:
3990 return "DW_AT_priority";
3991 case DW_AT_segment:
3992 return "DW_AT_segment";
3993 case DW_AT_specification:
3994 return "DW_AT_specification";
3995 case DW_AT_static_link:
3996 return "DW_AT_static_link";
3997 case DW_AT_type:
3998 return "DW_AT_type";
3999 case DW_AT_use_location:
4000 return "DW_AT_use_location";
4001 case DW_AT_variable_parameter:
4002 return "DW_AT_variable_parameter";
4003 case DW_AT_virtuality:
4004 return "DW_AT_virtuality";
4005 case DW_AT_vtable_elem_location:
4006 return "DW_AT_vtable_elem_location";
4008 case DW_AT_allocated:
4009 return "DW_AT_allocated";
4010 case DW_AT_associated:
4011 return "DW_AT_associated";
4012 case DW_AT_data_location:
4013 return "DW_AT_data_location";
4014 case DW_AT_stride:
4015 return "DW_AT_stride";
4016 case DW_AT_entry_pc:
4017 return "DW_AT_entry_pc";
4018 case DW_AT_use_UTF8:
4019 return "DW_AT_use_UTF8";
4020 case DW_AT_extension:
4021 return "DW_AT_extension";
4022 case DW_AT_ranges:
4023 return "DW_AT_ranges";
4024 case DW_AT_trampoline:
4025 return "DW_AT_trampoline";
4026 case DW_AT_call_column:
4027 return "DW_AT_call_column";
4028 case DW_AT_call_file:
4029 return "DW_AT_call_file";
4030 case DW_AT_call_line:
4031 return "DW_AT_call_line";
4033 case DW_AT_MIPS_fde:
4034 return "DW_AT_MIPS_fde";
4035 case DW_AT_MIPS_loop_begin:
4036 return "DW_AT_MIPS_loop_begin";
4037 case DW_AT_MIPS_tail_loop_begin:
4038 return "DW_AT_MIPS_tail_loop_begin";
4039 case DW_AT_MIPS_epilog_begin:
4040 return "DW_AT_MIPS_epilog_begin";
4041 case DW_AT_MIPS_loop_unroll_factor:
4042 return "DW_AT_MIPS_loop_unroll_factor";
4043 case DW_AT_MIPS_software_pipeline_depth:
4044 return "DW_AT_MIPS_software_pipeline_depth";
4045 case DW_AT_MIPS_linkage_name:
4046 return "DW_AT_MIPS_linkage_name";
4047 case DW_AT_MIPS_stride:
4048 return "DW_AT_MIPS_stride";
4049 case DW_AT_MIPS_abstract_name:
4050 return "DW_AT_MIPS_abstract_name";
4051 case DW_AT_MIPS_clone_origin:
4052 return "DW_AT_MIPS_clone_origin";
4053 case DW_AT_MIPS_has_inlines:
4054 return "DW_AT_MIPS_has_inlines";
4056 case DW_AT_sf_names:
4057 return "DW_AT_sf_names";
4058 case DW_AT_src_info:
4059 return "DW_AT_src_info";
4060 case DW_AT_mac_info:
4061 return "DW_AT_mac_info";
4062 case DW_AT_src_coords:
4063 return "DW_AT_src_coords";
4064 case DW_AT_body_begin:
4065 return "DW_AT_body_begin";
4066 case DW_AT_body_end:
4067 return "DW_AT_body_end";
4068 default:
4069 return "DW_AT_<unknown>";
4073 /* Convert a DWARF value form code into its string name. */
4075 static const char *
4076 dwarf_form_name (form)
4077 unsigned form;
4079 switch (form)
4081 case DW_FORM_addr:
4082 return "DW_FORM_addr";
4083 case DW_FORM_block2:
4084 return "DW_FORM_block2";
4085 case DW_FORM_block4:
4086 return "DW_FORM_block4";
4087 case DW_FORM_data2:
4088 return "DW_FORM_data2";
4089 case DW_FORM_data4:
4090 return "DW_FORM_data4";
4091 case DW_FORM_data8:
4092 return "DW_FORM_data8";
4093 case DW_FORM_string:
4094 return "DW_FORM_string";
4095 case DW_FORM_block:
4096 return "DW_FORM_block";
4097 case DW_FORM_block1:
4098 return "DW_FORM_block1";
4099 case DW_FORM_data1:
4100 return "DW_FORM_data1";
4101 case DW_FORM_flag:
4102 return "DW_FORM_flag";
4103 case DW_FORM_sdata:
4104 return "DW_FORM_sdata";
4105 case DW_FORM_strp:
4106 return "DW_FORM_strp";
4107 case DW_FORM_udata:
4108 return "DW_FORM_udata";
4109 case DW_FORM_ref_addr:
4110 return "DW_FORM_ref_addr";
4111 case DW_FORM_ref1:
4112 return "DW_FORM_ref1";
4113 case DW_FORM_ref2:
4114 return "DW_FORM_ref2";
4115 case DW_FORM_ref4:
4116 return "DW_FORM_ref4";
4117 case DW_FORM_ref8:
4118 return "DW_FORM_ref8";
4119 case DW_FORM_ref_udata:
4120 return "DW_FORM_ref_udata";
4121 case DW_FORM_indirect:
4122 return "DW_FORM_indirect";
4123 default:
4124 return "DW_FORM_<unknown>";
4128 /* Convert a DWARF type code into its string name. */
4130 #if 0
4131 static const char *
4132 dwarf_type_encoding_name (enc)
4133 unsigned enc;
4135 switch (enc)
4137 case DW_ATE_address:
4138 return "DW_ATE_address";
4139 case DW_ATE_boolean:
4140 return "DW_ATE_boolean";
4141 case DW_ATE_complex_float:
4142 return "DW_ATE_complex_float";
4143 case DW_ATE_float:
4144 return "DW_ATE_float";
4145 case DW_ATE_signed:
4146 return "DW_ATE_signed";
4147 case DW_ATE_signed_char:
4148 return "DW_ATE_signed_char";
4149 case DW_ATE_unsigned:
4150 return "DW_ATE_unsigned";
4151 case DW_ATE_unsigned_char:
4152 return "DW_ATE_unsigned_char";
4153 default:
4154 return "DW_ATE_<unknown>";
4157 #endif
4159 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4160 instance of an inlined instance of a decl which is local to an inline
4161 function, so we have to trace all of the way back through the origin chain
4162 to find out what sort of node actually served as the original seed for the
4163 given block. */
4165 static tree
4166 decl_ultimate_origin (decl)
4167 tree decl;
4169 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4170 nodes in the function to point to themselves; ignore that if
4171 we're trying to output the abstract instance of this function. */
4172 if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4173 return NULL_TREE;
4175 #ifdef ENABLE_CHECKING
4176 if (DECL_FROM_INLINE (DECL_ORIGIN (decl)))
4177 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4178 most distant ancestor, this should never happen. */
4179 abort ();
4180 #endif
4182 return DECL_ABSTRACT_ORIGIN (decl);
4185 /* Determine the "ultimate origin" of a block. The block may be an inlined
4186 instance of an inlined instance of a block which is local to an inline
4187 function, so we have to trace all of the way back through the origin chain
4188 to find out what sort of node actually served as the original seed for the
4189 given block. */
4191 static tree
4192 block_ultimate_origin (block)
4193 tree block;
4195 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4197 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4198 nodes in the function to point to themselves; ignore that if
4199 we're trying to output the abstract instance of this function. */
4200 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4201 return NULL_TREE;
4203 if (immediate_origin == NULL_TREE)
4204 return NULL_TREE;
4205 else
4207 tree ret_val;
4208 tree lookahead = immediate_origin;
4212 ret_val = lookahead;
4213 lookahead = (TREE_CODE (ret_val) == BLOCK)
4214 ? BLOCK_ABSTRACT_ORIGIN (ret_val)
4215 : NULL;
4217 while (lookahead != NULL && lookahead != ret_val);
4219 return ret_val;
4223 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4224 of a virtual function may refer to a base class, so we check the 'this'
4225 parameter. */
4227 static tree
4228 decl_class_context (decl)
4229 tree decl;
4231 tree context = NULL_TREE;
4233 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4234 context = DECL_CONTEXT (decl);
4235 else
4236 context = TYPE_MAIN_VARIANT
4237 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4239 if (context && !TYPE_P (context))
4240 context = NULL_TREE;
4242 return context;
4245 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4246 addition order, and correct that in reverse_all_dies. */
4248 static inline void
4249 add_dwarf_attr (die, attr)
4250 dw_die_ref die;
4251 dw_attr_ref attr;
4253 if (die != NULL && attr != NULL)
4255 attr->dw_attr_next = die->die_attr;
4256 die->die_attr = attr;
4260 static inline dw_val_class AT_class PARAMS ((dw_attr_ref));
4261 static inline dw_val_class
4262 AT_class (a)
4263 dw_attr_ref a;
4265 return a->dw_attr_val.val_class;
4268 /* Add a flag value attribute to a DIE. */
4270 static inline void
4271 add_AT_flag (die, attr_kind, flag)
4272 dw_die_ref die;
4273 enum dwarf_attribute attr_kind;
4274 unsigned flag;
4276 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4278 attr->dw_attr_next = NULL;
4279 attr->dw_attr = attr_kind;
4280 attr->dw_attr_val.val_class = dw_val_class_flag;
4281 attr->dw_attr_val.v.val_flag = flag;
4282 add_dwarf_attr (die, attr);
4285 static inline unsigned AT_flag PARAMS ((dw_attr_ref));
4286 static inline unsigned
4287 AT_flag (a)
4288 dw_attr_ref a;
4290 if (a && AT_class (a) == dw_val_class_flag)
4291 return a->dw_attr_val.v.val_flag;
4293 abort ();
4296 /* Add a signed integer attribute value to a DIE. */
4298 static inline void
4299 add_AT_int (die, attr_kind, int_val)
4300 dw_die_ref die;
4301 enum dwarf_attribute attr_kind;
4302 long int int_val;
4304 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4306 attr->dw_attr_next = NULL;
4307 attr->dw_attr = attr_kind;
4308 attr->dw_attr_val.val_class = dw_val_class_const;
4309 attr->dw_attr_val.v.val_int = int_val;
4310 add_dwarf_attr (die, attr);
4313 static inline long int AT_int PARAMS ((dw_attr_ref));
4314 static inline long int
4315 AT_int (a)
4316 dw_attr_ref a;
4318 if (a && AT_class (a) == dw_val_class_const)
4319 return a->dw_attr_val.v.val_int;
4321 abort ();
4324 /* Add an unsigned integer attribute value to a DIE. */
4326 static inline void
4327 add_AT_unsigned (die, attr_kind, unsigned_val)
4328 dw_die_ref die;
4329 enum dwarf_attribute attr_kind;
4330 unsigned long unsigned_val;
4332 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4334 attr->dw_attr_next = NULL;
4335 attr->dw_attr = attr_kind;
4336 attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
4337 attr->dw_attr_val.v.val_unsigned = unsigned_val;
4338 add_dwarf_attr (die, attr);
4341 static inline unsigned long AT_unsigned PARAMS ((dw_attr_ref));
4342 static inline unsigned long
4343 AT_unsigned (a)
4344 dw_attr_ref a;
4346 if (a && AT_class (a) == dw_val_class_unsigned_const)
4347 return a->dw_attr_val.v.val_unsigned;
4349 abort ();
4352 /* Add an unsigned double integer attribute value to a DIE. */
4354 static inline void
4355 add_AT_long_long (die, attr_kind, val_hi, val_low)
4356 dw_die_ref die;
4357 enum dwarf_attribute attr_kind;
4358 unsigned long val_hi;
4359 unsigned long val_low;
4361 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4363 attr->dw_attr_next = NULL;
4364 attr->dw_attr = attr_kind;
4365 attr->dw_attr_val.val_class = dw_val_class_long_long;
4366 attr->dw_attr_val.v.val_long_long.hi = val_hi;
4367 attr->dw_attr_val.v.val_long_long.low = val_low;
4368 add_dwarf_attr (die, attr);
4371 /* Add a floating point attribute value to a DIE and return it. */
4373 static inline void
4374 add_AT_float (die, attr_kind, length, array)
4375 dw_die_ref die;
4376 enum dwarf_attribute attr_kind;
4377 unsigned length;
4378 long *array;
4380 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4382 attr->dw_attr_next = NULL;
4383 attr->dw_attr = attr_kind;
4384 attr->dw_attr_val.val_class = dw_val_class_float;
4385 attr->dw_attr_val.v.val_float.length = length;
4386 attr->dw_attr_val.v.val_float.array = array;
4387 add_dwarf_attr (die, attr);
4390 /* Add a string attribute value to a DIE. */
4392 static inline void
4393 add_AT_string (die, attr_kind, str)
4394 dw_die_ref die;
4395 enum dwarf_attribute attr_kind;
4396 const char *str;
4398 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4400 attr->dw_attr_next = NULL;
4401 attr->dw_attr = attr_kind;
4402 attr->dw_attr_val.val_class = dw_val_class_str;
4403 attr->dw_attr_val.v.val_str = xstrdup (str);
4404 add_dwarf_attr (die, attr);
4407 static inline const char *AT_string PARAMS ((dw_attr_ref));
4408 static inline const char *
4409 AT_string (a)
4410 dw_attr_ref a;
4412 if (a && AT_class (a) == dw_val_class_str)
4413 return a->dw_attr_val.v.val_str;
4415 abort ();
4418 /* Add a DIE reference attribute value to a DIE. */
4420 static inline void
4421 add_AT_die_ref (die, attr_kind, targ_die)
4422 dw_die_ref die;
4423 enum dwarf_attribute attr_kind;
4424 dw_die_ref targ_die;
4426 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4428 attr->dw_attr_next = NULL;
4429 attr->dw_attr = attr_kind;
4430 attr->dw_attr_val.val_class = dw_val_class_die_ref;
4431 attr->dw_attr_val.v.val_die_ref.die = targ_die;
4432 attr->dw_attr_val.v.val_die_ref.external = 0;
4433 add_dwarf_attr (die, attr);
4436 static inline dw_die_ref AT_ref PARAMS ((dw_attr_ref));
4437 static inline dw_die_ref
4438 AT_ref (a)
4439 dw_attr_ref a;
4441 if (a && AT_class (a) == dw_val_class_die_ref)
4442 return a->dw_attr_val.v.val_die_ref.die;
4444 abort ();
4447 static inline int AT_ref_external PARAMS ((dw_attr_ref));
4448 static inline int
4449 AT_ref_external (a)
4450 dw_attr_ref a;
4452 if (a && AT_class (a) == dw_val_class_die_ref)
4453 return a->dw_attr_val.v.val_die_ref.external;
4455 return 0;
4458 static inline void set_AT_ref_external PARAMS ((dw_attr_ref, int));
4459 static inline void
4460 set_AT_ref_external (a, i)
4461 dw_attr_ref a;
4462 int i;
4464 if (a && AT_class (a) == dw_val_class_die_ref)
4465 a->dw_attr_val.v.val_die_ref.external = i;
4466 else
4467 abort ();
4470 /* Add an FDE reference attribute value to a DIE. */
4472 static inline void
4473 add_AT_fde_ref (die, attr_kind, targ_fde)
4474 dw_die_ref die;
4475 enum dwarf_attribute attr_kind;
4476 unsigned targ_fde;
4478 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4480 attr->dw_attr_next = NULL;
4481 attr->dw_attr = attr_kind;
4482 attr->dw_attr_val.val_class = dw_val_class_fde_ref;
4483 attr->dw_attr_val.v.val_fde_index = targ_fde;
4484 add_dwarf_attr (die, attr);
4487 /* Add a location description attribute value to a DIE. */
4489 static inline void
4490 add_AT_loc (die, attr_kind, loc)
4491 dw_die_ref die;
4492 enum dwarf_attribute attr_kind;
4493 dw_loc_descr_ref loc;
4495 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4497 attr->dw_attr_next = NULL;
4498 attr->dw_attr = attr_kind;
4499 attr->dw_attr_val.val_class = dw_val_class_loc;
4500 attr->dw_attr_val.v.val_loc = loc;
4501 add_dwarf_attr (die, attr);
4504 static inline dw_loc_descr_ref AT_loc PARAMS ((dw_attr_ref));
4505 static inline dw_loc_descr_ref
4506 AT_loc (a)
4507 dw_attr_ref a;
4509 if (a && AT_class (a) == dw_val_class_loc)
4510 return a->dw_attr_val.v.val_loc;
4512 abort ();
4515 static inline void
4516 add_AT_loc_list (die, attr_kind, loc_list)
4517 dw_die_ref die;
4518 enum dwarf_attribute attr_kind;
4519 dw_loc_list_ref loc_list;
4521 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4523 attr->dw_attr_next = NULL;
4524 attr->dw_attr = attr_kind;
4525 attr->dw_attr_val.val_class = dw_val_class_loc_list;
4526 attr->dw_attr_val.v.val_loc_list = loc_list;
4527 add_dwarf_attr (die, attr);
4528 have_location_lists = 1;
4531 static inline dw_loc_list_ref AT_loc_list PARAMS ((dw_attr_ref));
4533 static inline dw_loc_list_ref
4534 AT_loc_list (a)
4535 dw_attr_ref a;
4537 if (a && AT_class (a) == dw_val_class_loc_list)
4538 return a->dw_attr_val.v.val_loc_list;
4540 abort ();
4543 /* Add an address constant attribute value to a DIE. */
4545 static inline void
4546 add_AT_addr (die, attr_kind, addr)
4547 dw_die_ref die;
4548 enum dwarf_attribute attr_kind;
4549 rtx addr;
4551 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4553 attr->dw_attr_next = NULL;
4554 attr->dw_attr = attr_kind;
4555 attr->dw_attr_val.val_class = dw_val_class_addr;
4556 attr->dw_attr_val.v.val_addr = addr;
4557 add_dwarf_attr (die, attr);
4560 static inline rtx AT_addr PARAMS ((dw_attr_ref));
4561 static inline rtx
4562 AT_addr (a)
4563 dw_attr_ref a;
4565 if (a && AT_class (a) == dw_val_class_addr)
4566 return a->dw_attr_val.v.val_addr;
4568 abort ();
4571 /* Add a label identifier attribute value to a DIE. */
4573 static inline void
4574 add_AT_lbl_id (die, attr_kind, lbl_id)
4575 dw_die_ref die;
4576 enum dwarf_attribute attr_kind;
4577 const char *lbl_id;
4579 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4581 attr->dw_attr_next = NULL;
4582 attr->dw_attr = attr_kind;
4583 attr->dw_attr_val.val_class = dw_val_class_lbl_id;
4584 attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
4585 add_dwarf_attr (die, attr);
4588 /* Add a section offset attribute value to a DIE. */
4590 static inline void
4591 add_AT_lbl_offset (die, attr_kind, label)
4592 dw_die_ref die;
4593 enum dwarf_attribute attr_kind;
4594 const char *label;
4596 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4598 attr->dw_attr_next = NULL;
4599 attr->dw_attr = attr_kind;
4600 attr->dw_attr_val.val_class = dw_val_class_lbl_offset;
4601 attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
4602 add_dwarf_attr (die, attr);
4605 /* Add an offset attribute value to a DIE. */
4607 static void
4608 add_AT_offset (die, attr_kind, offset)
4609 dw_die_ref die;
4610 enum dwarf_attribute attr_kind;
4611 unsigned long offset;
4613 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4615 attr->dw_attr_next = NULL;
4616 attr->dw_attr = attr_kind;
4617 attr->dw_attr_val.val_class = dw_val_class_offset;
4618 attr->dw_attr_val.v.val_offset = offset;
4619 add_dwarf_attr (die, attr);
4622 static inline const char *AT_lbl PARAMS ((dw_attr_ref));
4623 static inline const char *
4624 AT_lbl (a)
4625 dw_attr_ref a;
4627 if (a && (AT_class (a) == dw_val_class_lbl_id
4628 || AT_class (a) == dw_val_class_lbl_offset))
4629 return a->dw_attr_val.v.val_lbl_id;
4631 abort ();
4634 /* Get the attribute of type attr_kind. */
4636 static inline dw_attr_ref
4637 get_AT (die, attr_kind)
4638 dw_die_ref die;
4639 enum dwarf_attribute attr_kind;
4641 dw_attr_ref a;
4642 dw_die_ref spec = NULL;
4644 if (die != NULL)
4646 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
4648 if (a->dw_attr == attr_kind)
4649 return a;
4651 if (a->dw_attr == DW_AT_specification
4652 || a->dw_attr == DW_AT_abstract_origin)
4653 spec = AT_ref (a);
4656 if (spec)
4657 return get_AT (spec, attr_kind);
4660 return NULL;
4663 /* Return the "low pc" attribute value, typically associated with
4664 a subprogram DIE. Return null if the "low pc" attribute is
4665 either not prsent, or if it cannot be represented as an
4666 assembler label identifier. */
4668 static inline const char *
4669 get_AT_low_pc (die)
4670 dw_die_ref die;
4672 dw_attr_ref a = get_AT (die, DW_AT_low_pc);
4673 return a ? AT_lbl (a) : NULL;
4676 /* Return the "high pc" attribute value, typically associated with
4677 a subprogram DIE. Return null if the "high pc" attribute is
4678 either not prsent, or if it cannot be represented as an
4679 assembler label identifier. */
4681 static inline const char *
4682 get_AT_hi_pc (die)
4683 dw_die_ref die;
4685 dw_attr_ref a = get_AT (die, DW_AT_high_pc);
4686 return a ? AT_lbl (a) : NULL;
4689 /* Return the value of the string attribute designated by ATTR_KIND, or
4690 NULL if it is not present. */
4692 static inline const char *
4693 get_AT_string (die, attr_kind)
4694 dw_die_ref die;
4695 enum dwarf_attribute attr_kind;
4697 dw_attr_ref a = get_AT (die, attr_kind);
4698 return a ? AT_string (a) : NULL;
4701 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
4702 if it is not present. */
4704 static inline int
4705 get_AT_flag (die, attr_kind)
4706 dw_die_ref die;
4707 enum dwarf_attribute attr_kind;
4709 dw_attr_ref a = get_AT (die, attr_kind);
4710 return a ? AT_flag (a) : 0;
4713 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
4714 if it is not present. */
4716 static inline unsigned
4717 get_AT_unsigned (die, attr_kind)
4718 dw_die_ref die;
4719 enum dwarf_attribute attr_kind;
4721 dw_attr_ref a = get_AT (die, attr_kind);
4722 return a ? AT_unsigned (a) : 0;
4725 static inline dw_die_ref
4726 get_AT_ref (die, attr_kind)
4727 dw_die_ref die;
4728 enum dwarf_attribute attr_kind;
4730 dw_attr_ref a = get_AT (die, attr_kind);
4731 return a ? AT_ref (a) : NULL;
4734 static inline int
4735 is_c_family ()
4737 unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4739 return (lang == DW_LANG_C || lang == DW_LANG_C89
4740 || lang == DW_LANG_C_plus_plus);
4743 static inline int
4744 is_fortran ()
4746 unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4748 return (lang == DW_LANG_Fortran77 || lang == DW_LANG_Fortran90);
4751 static inline int
4752 is_java ()
4754 unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4756 return (lang == DW_LANG_Java);
4759 /* Free up the memory used by A. */
4761 static inline void free_AT PARAMS ((dw_attr_ref));
4762 static inline void
4763 free_AT (a)
4764 dw_attr_ref a;
4766 switch (AT_class (a))
4768 case dw_val_class_str:
4769 case dw_val_class_lbl_id:
4770 case dw_val_class_lbl_offset:
4771 free (a->dw_attr_val.v.val_str);
4772 break;
4774 case dw_val_class_float:
4775 free (a->dw_attr_val.v.val_float.array);
4776 break;
4778 default:
4779 break;
4782 free (a);
4785 /* Remove the specified attribute if present. */
4787 static void
4788 remove_AT (die, attr_kind)
4789 dw_die_ref die;
4790 enum dwarf_attribute attr_kind;
4792 dw_attr_ref *p;
4793 dw_attr_ref removed = NULL;
4795 if (die != NULL)
4797 for (p = &(die->die_attr); *p; p = &((*p)->dw_attr_next))
4798 if ((*p)->dw_attr == attr_kind)
4800 removed = *p;
4801 *p = (*p)->dw_attr_next;
4802 break;
4805 if (removed != 0)
4806 free_AT (removed);
4810 /* Free up the memory used by DIE. */
4812 static inline void free_die PARAMS ((dw_die_ref));
4813 static inline void
4814 free_die (die)
4815 dw_die_ref die;
4817 remove_children (die);
4818 free (die);
4821 /* Discard the children of this DIE. */
4823 static void
4824 remove_children (die)
4825 dw_die_ref die;
4827 dw_die_ref child_die = die->die_child;
4829 die->die_child = NULL;
4831 while (child_die != NULL)
4833 dw_die_ref tmp_die = child_die;
4834 dw_attr_ref a;
4836 child_die = child_die->die_sib;
4838 for (a = tmp_die->die_attr; a != NULL;)
4840 dw_attr_ref tmp_a = a;
4842 a = a->dw_attr_next;
4843 free_AT (tmp_a);
4846 free_die (tmp_die);
4850 /* Add a child DIE below its parent. We build the lists up in reverse
4851 addition order, and correct that in reverse_all_dies. */
4853 static inline void
4854 add_child_die (die, child_die)
4855 dw_die_ref die;
4856 dw_die_ref child_die;
4858 if (die != NULL && child_die != NULL)
4860 if (die == child_die)
4861 abort ();
4862 child_die->die_parent = die;
4863 child_die->die_sib = die->die_child;
4864 die->die_child = child_die;
4868 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
4869 is the specification, to the front of PARENT's list of children. */
4871 static void
4872 splice_child_die (parent, child)
4873 dw_die_ref parent, child;
4875 dw_die_ref *p;
4877 /* We want the declaration DIE from inside the class, not the
4878 specification DIE at toplevel. */
4879 if (child->die_parent != parent)
4881 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
4882 if (tmp)
4883 child = tmp;
4886 if (child->die_parent != parent
4887 && child->die_parent != get_AT_ref (parent, DW_AT_specification))
4888 abort ();
4890 for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
4891 if (*p == child)
4893 *p = child->die_sib;
4894 break;
4897 child->die_sib = parent->die_child;
4898 parent->die_child = child;
4901 /* Return a pointer to a newly created DIE node. */
4903 static inline dw_die_ref
4904 new_die (tag_value, parent_die)
4905 enum dwarf_tag tag_value;
4906 dw_die_ref parent_die;
4908 dw_die_ref die = (dw_die_ref) xcalloc (1, sizeof (die_node));
4910 die->die_tag = tag_value;
4912 if (parent_die != NULL)
4913 add_child_die (parent_die, die);
4914 else
4916 limbo_die_node *limbo_node;
4918 limbo_node = (limbo_die_node *) xmalloc (sizeof (limbo_die_node));
4919 limbo_node->die = die;
4920 limbo_node->next = limbo_die_list;
4921 limbo_die_list = limbo_node;
4924 return die;
4927 /* Return the DIE associated with the given type specifier. */
4929 static inline dw_die_ref
4930 lookup_type_die (type)
4931 tree type;
4933 if (TREE_CODE (type) == VECTOR_TYPE)
4934 type = TYPE_DEBUG_REPRESENTATION_TYPE (type);
4935 return (dw_die_ref) TYPE_SYMTAB_POINTER (type);
4938 /* Equate a DIE to a given type specifier. */
4940 static inline void
4941 equate_type_number_to_die (type, type_die)
4942 tree type;
4943 dw_die_ref type_die;
4945 TYPE_SYMTAB_POINTER (type) = (char *) type_die;
4948 /* Return the DIE associated with a given declaration. */
4950 static inline dw_die_ref
4951 lookup_decl_die (decl)
4952 tree decl;
4954 unsigned decl_id = DECL_UID (decl);
4956 return (decl_id < decl_die_table_in_use
4957 ? decl_die_table[decl_id] : NULL);
4960 /* Equate a DIE to a particular declaration. */
4962 static void
4963 equate_decl_number_to_die (decl, decl_die)
4964 tree decl;
4965 dw_die_ref decl_die;
4967 unsigned decl_id = DECL_UID (decl);
4968 unsigned num_allocated;
4970 if (decl_id >= decl_die_table_allocated)
4972 num_allocated
4973 = ((decl_id + 1 + DECL_DIE_TABLE_INCREMENT - 1)
4974 / DECL_DIE_TABLE_INCREMENT)
4975 * DECL_DIE_TABLE_INCREMENT;
4977 decl_die_table
4978 = (dw_die_ref *) xrealloc (decl_die_table,
4979 sizeof (dw_die_ref) * num_allocated);
4981 memset ((char *) &decl_die_table[decl_die_table_allocated], 0,
4982 (num_allocated - decl_die_table_allocated) * sizeof (dw_die_ref));
4983 decl_die_table_allocated = num_allocated;
4986 if (decl_id >= decl_die_table_in_use)
4987 decl_die_table_in_use = (decl_id + 1);
4989 decl_die_table[decl_id] = decl_die;
4992 /* Keep track of the number of spaces used to indent the
4993 output of the debugging routines that print the structure of
4994 the DIE internal representation. */
4995 static int print_indent;
4997 /* Indent the line the number of spaces given by print_indent. */
4999 static inline void
5000 print_spaces (outfile)
5001 FILE *outfile;
5003 fprintf (outfile, "%*s", print_indent, "");
5006 /* Print the information associated with a given DIE, and its children.
5007 This routine is a debugging aid only. */
5009 static void
5010 print_die (die, outfile)
5011 dw_die_ref die;
5012 FILE *outfile;
5014 dw_attr_ref a;
5015 dw_die_ref c;
5017 print_spaces (outfile);
5018 fprintf (outfile, "DIE %4lu: %s\n",
5019 die->die_offset, dwarf_tag_name (die->die_tag));
5020 print_spaces (outfile);
5021 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
5022 fprintf (outfile, " offset: %lu\n", die->die_offset);
5024 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5026 print_spaces (outfile);
5027 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
5029 switch (AT_class (a))
5031 case dw_val_class_addr:
5032 fprintf (outfile, "address");
5033 break;
5034 case dw_val_class_offset:
5035 fprintf (outfile, "offset");
5036 break;
5037 case dw_val_class_loc:
5038 fprintf (outfile, "location descriptor");
5039 break;
5040 case dw_val_class_loc_list:
5041 fprintf (outfile, "location list -> label:%s",
5042 AT_loc_list (a)->ll_symbol);
5043 break;
5044 case dw_val_class_const:
5045 fprintf (outfile, "%ld", AT_int (a));
5046 break;
5047 case dw_val_class_unsigned_const:
5048 fprintf (outfile, "%lu", AT_unsigned (a));
5049 break;
5050 case dw_val_class_long_long:
5051 fprintf (outfile, "constant (%lu,%lu)",
5052 a->dw_attr_val.v.val_long_long.hi,
5053 a->dw_attr_val.v.val_long_long.low);
5054 break;
5055 case dw_val_class_float:
5056 fprintf (outfile, "floating-point constant");
5057 break;
5058 case dw_val_class_flag:
5059 fprintf (outfile, "%u", AT_flag (a));
5060 break;
5061 case dw_val_class_die_ref:
5062 if (AT_ref (a) != NULL)
5064 if (AT_ref (a)->die_symbol)
5065 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5066 else
5067 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5069 else
5070 fprintf (outfile, "die -> <null>");
5071 break;
5072 case dw_val_class_lbl_id:
5073 case dw_val_class_lbl_offset:
5074 fprintf (outfile, "label: %s", AT_lbl (a));
5075 break;
5076 case dw_val_class_str:
5077 if (AT_string (a) != NULL)
5078 fprintf (outfile, "\"%s\"", AT_string (a));
5079 else
5080 fprintf (outfile, "<null>");
5081 break;
5082 default:
5083 break;
5086 fprintf (outfile, "\n");
5089 if (die->die_child != NULL)
5091 print_indent += 4;
5092 for (c = die->die_child; c != NULL; c = c->die_sib)
5093 print_die (c, outfile);
5095 print_indent -= 4;
5097 if (print_indent == 0)
5098 fprintf (outfile, "\n");
5101 /* Print the contents of the source code line number correspondence table.
5102 This routine is a debugging aid only. */
5104 static void
5105 print_dwarf_line_table (outfile)
5106 FILE *outfile;
5108 unsigned i;
5109 dw_line_info_ref line_info;
5111 fprintf (outfile, "\n\nDWARF source line information\n");
5112 for (i = 1; i < line_info_table_in_use; ++i)
5114 line_info = &line_info_table[i];
5115 fprintf (outfile, "%5d: ", i);
5116 fprintf (outfile, "%-20s", file_table.table[line_info->dw_file_num]);
5117 fprintf (outfile, "%6ld", line_info->dw_line_num);
5118 fprintf (outfile, "\n");
5121 fprintf (outfile, "\n\n");
5124 /* Print the information collected for a given DIE. */
5126 void
5127 debug_dwarf_die (die)
5128 dw_die_ref die;
5130 print_die (die, stderr);
5133 /* Print all DWARF information collected for the compilation unit.
5134 This routine is a debugging aid only. */
5136 void
5137 debug_dwarf ()
5139 print_indent = 0;
5140 print_die (comp_unit_die, stderr);
5141 if (! DWARF2_ASM_LINE_DEBUG_INFO)
5142 print_dwarf_line_table (stderr);
5145 /* We build up the lists of children and attributes by pushing new ones
5146 onto the beginning of the list. Reverse the lists for DIE so that
5147 they are in order of addition. */
5149 static void
5150 reverse_die_lists (die)
5151 dw_die_ref die;
5153 dw_die_ref c, cp, cn;
5154 dw_attr_ref a, ap, an;
5156 for (a = die->die_attr, ap = 0; a; a = an)
5158 an = a->dw_attr_next;
5159 a->dw_attr_next = ap;
5160 ap = a;
5162 die->die_attr = ap;
5164 for (c = die->die_child, cp = 0; c; c = cn)
5166 cn = c->die_sib;
5167 c->die_sib = cp;
5168 cp = c;
5170 die->die_child = cp;
5173 /* reverse_die_lists only reverses the single die you pass it. Since
5174 we used to reverse all dies in add_sibling_attributes, which runs
5175 through all the dies, it would reverse all the dies. Now, however,
5176 since we don't call reverse_die_lists in add_sibling_attributes, we
5177 need a routine to recursively reverse all the dies. This is that
5178 routine. */
5180 static void
5181 reverse_all_dies (die)
5182 dw_die_ref die;
5184 dw_die_ref c;
5186 reverse_die_lists (die);
5188 for (c = die->die_child; c; c = c->die_sib)
5189 reverse_all_dies (c);
5192 /* Start a new compilation unit DIE for an include file. OLD_UNIT is
5193 the CU for the enclosing include file, if any. BINCL_DIE is the
5194 DW_TAG_GNU_BINCL DIE that marks the start of the DIEs for this
5195 include file. */
5197 static dw_die_ref
5198 push_new_compile_unit (old_unit, bincl_die)
5199 dw_die_ref old_unit, bincl_die;
5201 const char *filename = get_AT_string (bincl_die, DW_AT_name);
5202 dw_die_ref new_unit = gen_compile_unit_die (filename);
5203 new_unit->die_sib = old_unit;
5204 return new_unit;
5207 /* Close an include-file CU and reopen the enclosing one. */
5209 static dw_die_ref
5210 pop_compile_unit (old_unit)
5211 dw_die_ref old_unit;
5213 dw_die_ref new_unit = old_unit->die_sib;
5214 old_unit->die_sib = NULL;
5215 return new_unit;
5218 #define PROCESS(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5219 #define PROCESS_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5221 /* Calculate the checksum of a location expression. */
5223 static inline void
5224 loc_checksum (loc, ctx)
5225 dw_loc_descr_ref loc;
5226 struct md5_ctx *ctx;
5228 PROCESS (loc->dw_loc_opc);
5229 PROCESS (loc->dw_loc_oprnd1);
5230 PROCESS (loc->dw_loc_oprnd2);
5233 /* Calculate the checksum of an attribute. */
5235 static void
5236 attr_checksum (at, ctx)
5237 dw_attr_ref at;
5238 struct md5_ctx *ctx;
5240 dw_loc_descr_ref loc;
5241 rtx r;
5243 PROCESS (at->dw_attr);
5245 /* We don't care about differences in file numbering. */
5246 if (at->dw_attr == DW_AT_decl_file
5247 /* Or that this was compiled with a different compiler snapshot; if
5248 the output is the same, that's what matters. */
5249 || at->dw_attr == DW_AT_producer)
5250 return;
5252 switch (AT_class (at))
5254 case dw_val_class_const:
5255 PROCESS (at->dw_attr_val.v.val_int);
5256 break;
5257 case dw_val_class_unsigned_const:
5258 PROCESS (at->dw_attr_val.v.val_unsigned);
5259 break;
5260 case dw_val_class_long_long:
5261 PROCESS (at->dw_attr_val.v.val_long_long);
5262 break;
5263 case dw_val_class_float:
5264 PROCESS (at->dw_attr_val.v.val_float);
5265 break;
5266 case dw_val_class_flag:
5267 PROCESS (at->dw_attr_val.v.val_flag);
5268 break;
5270 case dw_val_class_str:
5271 PROCESS_STRING (AT_string (at));
5272 break;
5274 case dw_val_class_addr:
5275 r = AT_addr (at);
5276 switch (GET_CODE (r))
5278 case SYMBOL_REF:
5279 PROCESS_STRING (XSTR (r, 0));
5280 break;
5282 default:
5283 abort ();
5285 break;
5287 case dw_val_class_offset:
5288 PROCESS (at->dw_attr_val.v.val_offset);
5289 break;
5291 case dw_val_class_loc:
5292 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5293 loc_checksum (loc, ctx);
5294 break;
5296 case dw_val_class_die_ref:
5297 if (AT_ref (at)->die_offset)
5298 PROCESS (AT_ref (at)->die_offset);
5299 /* FIXME else use target die name or something. */
5301 case dw_val_class_fde_ref:
5302 case dw_val_class_lbl_id:
5303 case dw_val_class_lbl_offset:
5304 break;
5306 default:
5307 break;
5311 /* Calculate the checksum of a DIE. */
5313 static void
5314 die_checksum (die, ctx)
5315 dw_die_ref die;
5316 struct md5_ctx *ctx;
5318 dw_die_ref c;
5319 dw_attr_ref a;
5321 PROCESS (die->die_tag);
5323 for (a = die->die_attr; a; a = a->dw_attr_next)
5324 attr_checksum (a, ctx);
5326 for (c = die->die_child; c; c = c->die_sib)
5327 die_checksum (c, ctx);
5330 #undef PROCESS
5331 #undef PROCESS_STRING
5333 /* The prefix to attach to symbols on DIEs in the current comdat debug
5334 info section. */
5335 static char *comdat_symbol_id;
5337 /* The index of the current symbol within the current comdat CU. */
5338 static unsigned int comdat_symbol_number;
5340 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
5341 children, and set comdat_symbol_id accordingly. */
5343 static void
5344 compute_section_prefix (unit_die)
5345 dw_die_ref unit_die;
5347 char *name;
5348 int i;
5349 unsigned char checksum[16];
5350 struct md5_ctx ctx;
5352 md5_init_ctx (&ctx);
5353 die_checksum (unit_die, &ctx);
5354 md5_finish_ctx (&ctx, checksum);
5357 const char *p = lbasename (get_AT_string (unit_die, DW_AT_name));
5358 name = (char *) alloca (strlen (p) + 64);
5359 sprintf (name, "%s.", p);
5362 clean_symbol_name (name);
5365 char *p = name + strlen (name);
5366 for (i = 0; i < 4; ++i)
5368 sprintf (p, "%.2x", checksum[i]);
5369 p += 2;
5373 comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
5374 comdat_symbol_number = 0;
5377 /* Returns nonzero iff DIE represents a type, in the sense of TYPE_P. */
5379 static int
5380 is_type_die (die)
5381 dw_die_ref die;
5383 switch (die->die_tag)
5385 case DW_TAG_array_type:
5386 case DW_TAG_class_type:
5387 case DW_TAG_enumeration_type:
5388 case DW_TAG_pointer_type:
5389 case DW_TAG_reference_type:
5390 case DW_TAG_string_type:
5391 case DW_TAG_structure_type:
5392 case DW_TAG_subroutine_type:
5393 case DW_TAG_union_type:
5394 case DW_TAG_ptr_to_member_type:
5395 case DW_TAG_set_type:
5396 case DW_TAG_subrange_type:
5397 case DW_TAG_base_type:
5398 case DW_TAG_const_type:
5399 case DW_TAG_file_type:
5400 case DW_TAG_packed_type:
5401 case DW_TAG_volatile_type:
5402 return 1;
5403 default:
5404 return 0;
5408 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
5409 Basically, we want to choose the bits that are likely to be shared between
5410 compilations (types) and leave out the bits that are specific to individual
5411 compilations (functions). */
5413 static int
5414 is_comdat_die (c)
5415 dw_die_ref c;
5417 #if 1
5418 /* I think we want to leave base types and __vtbl_ptr_type in the
5419 main CU, as we do for stabs. The advantage is a greater
5420 likelihood of sharing between objects that don't include headers
5421 in the same order (and therefore would put the base types in a
5422 different comdat). jason 8/28/00 */
5423 if (c->die_tag == DW_TAG_base_type)
5424 return 0;
5426 if (c->die_tag == DW_TAG_pointer_type
5427 || c->die_tag == DW_TAG_reference_type
5428 || c->die_tag == DW_TAG_const_type
5429 || c->die_tag == DW_TAG_volatile_type)
5431 dw_die_ref t = get_AT_ref (c, DW_AT_type);
5432 return t ? is_comdat_die (t) : 0;
5434 #endif
5436 return is_type_die (c);
5439 /* Returns 1 iff C is the sort of DIE that might be referred to from another
5440 compilation unit. */
5442 static int
5443 is_symbol_die (c)
5444 dw_die_ref c;
5446 if (is_type_die (c))
5447 return 1;
5448 if (get_AT (c, DW_AT_declaration)
5449 && ! get_AT (c, DW_AT_specification))
5450 return 1;
5451 return 0;
5454 static char *
5455 gen_internal_sym (prefix)
5456 const char *prefix;
5458 char buf[256];
5459 static int label_num;
5460 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
5461 return xstrdup (buf);
5464 /* Assign symbols to all worthy DIEs under DIE. */
5466 static void
5467 assign_symbol_names (die)
5468 dw_die_ref die;
5470 dw_die_ref c;
5472 if (is_symbol_die (die))
5474 if (comdat_symbol_id)
5476 char *p = alloca (strlen (comdat_symbol_id) + 64);
5477 sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
5478 comdat_symbol_id, comdat_symbol_number++);
5479 die->die_symbol = xstrdup (p);
5481 else
5482 die->die_symbol = gen_internal_sym ("LDIE");
5485 for (c = die->die_child; c != NULL; c = c->die_sib)
5486 assign_symbol_names (c);
5489 /* Traverse the DIE (which is always comp_unit_die), and set up
5490 additional compilation units for each of the include files we see
5491 bracketed by BINCL/EINCL. */
5493 static void
5494 break_out_includes (die)
5495 dw_die_ref die;
5497 dw_die_ref *ptr;
5498 dw_die_ref unit = NULL;
5499 limbo_die_node *node;
5501 for (ptr = &(die->die_child); *ptr; )
5503 dw_die_ref c = *ptr;
5505 if (c->die_tag == DW_TAG_GNU_BINCL
5506 || c->die_tag == DW_TAG_GNU_EINCL
5507 || (unit && is_comdat_die (c)))
5509 /* This DIE is for a secondary CU; remove it from the main one. */
5510 *ptr = c->die_sib;
5512 if (c->die_tag == DW_TAG_GNU_BINCL)
5514 unit = push_new_compile_unit (unit, c);
5515 free_die (c);
5517 else if (c->die_tag == DW_TAG_GNU_EINCL)
5519 unit = pop_compile_unit (unit);
5520 free_die (c);
5522 else
5523 add_child_die (unit, c);
5525 else
5527 /* Leave this DIE in the main CU. */
5528 ptr = &(c->die_sib);
5529 continue;
5533 #if 0
5534 /* We can only use this in debugging, since the frontend doesn't check
5535 to make sure that we leave every include file we enter. */
5536 if (unit != NULL)
5537 abort ();
5538 #endif
5540 assign_symbol_names (die);
5541 for (node = limbo_die_list; node; node = node->next)
5543 compute_section_prefix (node->die);
5544 assign_symbol_names (node->die);
5548 /* Traverse the DIE and add a sibling attribute if it may have the
5549 effect of speeding up access to siblings. To save some space,
5550 avoid generating sibling attributes for DIE's without children. */
5552 static void
5553 add_sibling_attributes (die)
5554 dw_die_ref die;
5556 dw_die_ref c;
5558 if (die->die_tag != DW_TAG_compile_unit
5559 && die->die_sib && die->die_child != NULL)
5560 /* Add the sibling link to the front of the attribute list. */
5561 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
5563 for (c = die->die_child; c != NULL; c = c->die_sib)
5564 add_sibling_attributes (c);
5567 /* Output all location lists for the DIE and it's children */
5568 static void
5569 output_location_lists (die)
5570 dw_die_ref die;
5572 dw_die_ref c;
5573 dw_attr_ref d_attr;
5574 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
5576 if (AT_class (d_attr) == dw_val_class_loc_list)
5578 output_loc_list (AT_loc_list (d_attr));
5581 for (c = die->die_child; c != NULL; c = c->die_sib)
5582 output_location_lists (c);
5585 /* The format of each DIE (and its attribute value pairs)
5586 is encoded in an abbreviation table. This routine builds the
5587 abbreviation table and assigns a unique abbreviation id for
5588 each abbreviation entry. The children of each die are visited
5589 recursively. */
5591 static void
5592 build_abbrev_table (die)
5593 dw_die_ref die;
5595 unsigned long abbrev_id;
5596 unsigned int n_alloc;
5597 dw_die_ref c;
5598 dw_attr_ref d_attr, a_attr;
5600 /* Scan the DIE references, and mark as external any that refer to
5601 DIEs from other CUs (i.e. those which are not marked). */
5602 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
5604 if (AT_class (d_attr) == dw_val_class_die_ref
5605 && AT_ref (d_attr)->die_mark == 0)
5607 if (AT_ref (d_attr)->die_symbol == 0)
5608 abort ();
5609 set_AT_ref_external (d_attr, 1);
5613 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
5615 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
5617 if (abbrev->die_tag == die->die_tag)
5619 if ((abbrev->die_child != NULL) == (die->die_child != NULL))
5621 a_attr = abbrev->die_attr;
5622 d_attr = die->die_attr;
5624 while (a_attr != NULL && d_attr != NULL)
5626 if ((a_attr->dw_attr != d_attr->dw_attr)
5627 || (value_format (a_attr) != value_format (d_attr)))
5628 break;
5630 a_attr = a_attr->dw_attr_next;
5631 d_attr = d_attr->dw_attr_next;
5634 if (a_attr == NULL && d_attr == NULL)
5635 break;
5640 if (abbrev_id >= abbrev_die_table_in_use)
5642 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
5644 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
5645 abbrev_die_table
5646 = (dw_die_ref *) xrealloc (abbrev_die_table,
5647 sizeof (dw_die_ref) * n_alloc);
5649 memset ((char *) &abbrev_die_table[abbrev_die_table_allocated], 0,
5650 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
5651 abbrev_die_table_allocated = n_alloc;
5654 ++abbrev_die_table_in_use;
5655 abbrev_die_table[abbrev_id] = die;
5658 die->die_abbrev = abbrev_id;
5659 for (c = die->die_child; c != NULL; c = c->die_sib)
5660 build_abbrev_table (c);
5663 /* Return the size of a string, including the null byte.
5665 This used to treat backslashes as escapes, and hence they were not included
5666 in the count. However, that conflicts with what ASM_OUTPUT_ASCII does,
5667 which treats a backslash as a backslash, escaping it if necessary, and hence
5668 we must include them in the count. */
5670 static unsigned long
5671 size_of_string (str)
5672 const char *str;
5674 return strlen (str) + 1;
5677 /* Return the power-of-two number of bytes necessary to represent VALUE. */
5679 static int
5680 constant_size (value)
5681 long unsigned value;
5683 int log;
5685 if (value == 0)
5686 log = 0;
5687 else
5688 log = floor_log2 (value);
5690 log = log / 8;
5691 log = 1 << (floor_log2 (log) + 1);
5693 return log;
5696 /* Return the size of a DIE, as it is represented in the
5697 .debug_info section. */
5699 static unsigned long
5700 size_of_die (die)
5701 dw_die_ref die;
5703 unsigned long size = 0;
5704 dw_attr_ref a;
5706 size += size_of_uleb128 (die->die_abbrev);
5707 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5709 switch (AT_class (a))
5711 case dw_val_class_addr:
5712 size += DWARF2_ADDR_SIZE;
5713 break;
5714 case dw_val_class_offset:
5715 size += DWARF_OFFSET_SIZE;
5716 break;
5717 case dw_val_class_loc:
5719 unsigned long lsize = size_of_locs (AT_loc (a));
5721 /* Block length. */
5722 size += constant_size (lsize);
5723 size += lsize;
5725 break;
5726 case dw_val_class_loc_list:
5727 size += DWARF_OFFSET_SIZE;
5728 break;
5729 case dw_val_class_const:
5730 size += size_of_sleb128 (AT_int (a));
5731 break;
5732 case dw_val_class_unsigned_const:
5733 size += constant_size (AT_unsigned (a));
5734 break;
5735 case dw_val_class_long_long:
5736 size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
5737 break;
5738 case dw_val_class_float:
5739 size += 1 + a->dw_attr_val.v.val_float.length * 4; /* block */
5740 break;
5741 case dw_val_class_flag:
5742 size += 1;
5743 break;
5744 case dw_val_class_die_ref:
5745 size += DWARF_OFFSET_SIZE;
5746 break;
5747 case dw_val_class_fde_ref:
5748 size += DWARF_OFFSET_SIZE;
5749 break;
5750 case dw_val_class_lbl_id:
5751 size += DWARF2_ADDR_SIZE;
5752 break;
5753 case dw_val_class_lbl_offset:
5754 size += DWARF_OFFSET_SIZE;
5755 break;
5756 case dw_val_class_str:
5757 size += size_of_string (AT_string (a));
5758 break;
5759 default:
5760 abort ();
5764 return size;
5767 /* Size the debugging information associated with a given DIE.
5768 Visits the DIE's children recursively. Updates the global
5769 variable next_die_offset, on each time through. Uses the
5770 current value of next_die_offset to update the die_offset
5771 field in each DIE. */
5773 static void
5774 calc_die_sizes (die)
5775 dw_die_ref die;
5777 dw_die_ref c;
5778 die->die_offset = next_die_offset;
5779 next_die_offset += size_of_die (die);
5781 for (c = die->die_child; c != NULL; c = c->die_sib)
5782 calc_die_sizes (c);
5784 if (die->die_child != NULL)
5785 /* Count the null byte used to terminate sibling lists. */
5786 next_die_offset += 1;
5789 /* Set the marks for a die and its children. We do this so
5790 that we know whether or not a reference needs to use FORM_ref_addr; only
5791 DIEs in the same CU will be marked. We used to clear out the offset
5792 and use that as the flag, but ran into ordering problems. */
5794 static void
5795 mark_dies (die)
5796 dw_die_ref die;
5798 dw_die_ref c;
5799 die->die_mark = 1;
5800 for (c = die->die_child; c; c = c->die_sib)
5801 mark_dies (c);
5804 /* Clear the marks for a die and its children. */
5806 static void
5807 unmark_dies (die)
5808 dw_die_ref die;
5810 dw_die_ref c;
5811 die->die_mark = 0;
5812 for (c = die->die_child; c; c = c->die_sib)
5813 unmark_dies (c);
5816 /* Return the size of the .debug_pubnames table generated for the
5817 compilation unit. */
5819 static unsigned long
5820 size_of_pubnames ()
5822 unsigned long size;
5823 unsigned i;
5825 size = DWARF_PUBNAMES_HEADER_SIZE;
5826 for (i = 0; i < pubname_table_in_use; ++i)
5828 pubname_ref p = &pubname_table[i];
5829 size += DWARF_OFFSET_SIZE + size_of_string (p->name);
5832 size += DWARF_OFFSET_SIZE;
5833 return size;
5836 /* Return the size of the information in the .debug_aranges section. */
5838 static unsigned long
5839 size_of_aranges ()
5841 unsigned long size;
5843 size = DWARF_ARANGES_HEADER_SIZE;
5845 /* Count the address/length pair for this compilation unit. */
5846 size += 2 * DWARF2_ADDR_SIZE;
5847 size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
5849 /* Count the two zero words used to terminated the address range table. */
5850 size += 2 * DWARF2_ADDR_SIZE;
5851 return size;
5854 /* Select the encoding of an attribute value. */
5856 static enum dwarf_form
5857 value_format (a)
5858 dw_attr_ref a;
5860 switch (a->dw_attr_val.val_class)
5862 case dw_val_class_addr:
5863 return DW_FORM_addr;
5864 case dw_val_class_offset:
5865 if (DWARF_OFFSET_SIZE == 4)
5866 return DW_FORM_data4;
5867 if (DWARF_OFFSET_SIZE == 8)
5868 return DW_FORM_data8;
5869 abort ();
5870 case dw_val_class_loc_list:
5871 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
5872 .debug_loc section */
5873 return DW_FORM_data4;
5874 case dw_val_class_loc:
5875 switch (constant_size (size_of_locs (AT_loc (a))))
5877 case 1:
5878 return DW_FORM_block1;
5879 case 2:
5880 return DW_FORM_block2;
5881 default:
5882 abort ();
5884 case dw_val_class_const:
5885 return DW_FORM_sdata;
5886 case dw_val_class_unsigned_const:
5887 switch (constant_size (AT_unsigned (a)))
5889 case 1:
5890 return DW_FORM_data1;
5891 case 2:
5892 return DW_FORM_data2;
5893 case 4:
5894 return DW_FORM_data4;
5895 case 8:
5896 return DW_FORM_data8;
5897 default:
5898 abort ();
5900 case dw_val_class_long_long:
5901 return DW_FORM_block1;
5902 case dw_val_class_float:
5903 return DW_FORM_block1;
5904 case dw_val_class_flag:
5905 return DW_FORM_flag;
5906 case dw_val_class_die_ref:
5907 if (AT_ref_external (a))
5908 return DW_FORM_ref_addr;
5909 else
5910 return DW_FORM_ref;
5911 case dw_val_class_fde_ref:
5912 return DW_FORM_data;
5913 case dw_val_class_lbl_id:
5914 return DW_FORM_addr;
5915 case dw_val_class_lbl_offset:
5916 return DW_FORM_data;
5917 case dw_val_class_str:
5918 return DW_FORM_string;
5920 default:
5921 abort ();
5925 /* Output the encoding of an attribute value. */
5927 static void
5928 output_value_format (a)
5929 dw_attr_ref a;
5931 enum dwarf_form form = value_format (a);
5932 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
5935 /* Output the .debug_abbrev section which defines the DIE abbreviation
5936 table. */
5938 static void
5939 output_abbrev_section ()
5941 unsigned long abbrev_id;
5943 dw_attr_ref a_attr;
5944 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
5946 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
5948 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
5950 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
5951 dwarf_tag_name (abbrev->die_tag));
5953 if (abbrev->die_child != NULL)
5954 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
5955 else
5956 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
5958 for (a_attr = abbrev->die_attr; a_attr != NULL;
5959 a_attr = a_attr->dw_attr_next)
5961 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
5962 dwarf_attr_name (a_attr->dw_attr));
5963 output_value_format (a_attr);
5966 dw2_asm_output_data (1, 0, NULL);
5967 dw2_asm_output_data (1, 0, NULL);
5970 /* Terminate the table. */
5971 dw2_asm_output_data (1, 0, NULL);
5974 /* Output a symbol we can use to refer to this DIE from another CU. */
5976 static inline void
5977 output_die_symbol (die)
5978 dw_die_ref die;
5980 char *sym = die->die_symbol;
5982 if (sym == 0)
5983 return;
5985 if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
5986 /* We make these global, not weak; if the target doesn't support
5987 .linkonce, it doesn't support combining the sections, so debugging
5988 will break. */
5989 ASM_GLOBALIZE_LABEL (asm_out_file, sym);
5990 ASM_OUTPUT_LABEL (asm_out_file, sym);
5993 /* Return a new location list, given the begin and end range, and the
5994 expression. gensym tells us whether to generate a new internal
5995 symbol for this location list node, which is done for the head of
5996 the list only. */
5997 static inline dw_loc_list_ref
5998 new_loc_list (expr, begin, end, section, gensym)
5999 dw_loc_descr_ref expr;
6000 const char *begin;
6001 const char *end;
6002 const char *section;
6003 unsigned gensym;
6005 dw_loc_list_ref retlist
6006 = (dw_loc_list_ref) xcalloc (1, sizeof (dw_loc_list_node));
6007 retlist->begin = begin;
6008 retlist->end = end;
6009 retlist->expr = expr;
6010 retlist->section = section;
6011 if (gensym)
6012 retlist->ll_symbol = gen_internal_sym ("LLST");
6013 return retlist;
6016 /* Add a location description expression to a location list */
6017 static inline void
6018 add_loc_descr_to_loc_list (list_head, descr, begin, end, section)
6019 dw_loc_list_ref *list_head;
6020 dw_loc_descr_ref descr;
6021 const char *begin;
6022 const char *end;
6023 const char *section;
6025 dw_loc_list_ref *d;
6027 /* Find the end of the chain. */
6028 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6030 /* Add a new location list node to the list */
6031 *d = new_loc_list (descr, begin, end, section, 0);
6034 /* Output the location list given to us */
6035 static void
6036 output_loc_list (list_head)
6037 dw_loc_list_ref list_head;
6039 dw_loc_list_ref curr=list_head;
6040 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6042 /* ??? This shouldn't be needed now that we've forced the
6043 compilation unit base address to zero when there is code
6044 in more than one section. */
6045 if (strcmp (curr->section, ".text") == 0)
6047 /* dw2_asm_output_data will mask off any extra bits in the ~0. */
6048 dw2_asm_output_data (DWARF2_ADDR_SIZE, ~(unsigned HOST_WIDE_INT)0,
6049 "Location list base address specifier fake entry");
6050 dw2_asm_output_offset (DWARF2_ADDR_SIZE, curr->section,
6051 "Location list base address specifier base");
6053 for (curr = list_head; curr != NULL; curr=curr->dw_loc_next)
6055 int size;
6056 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6057 "Location list begin address (%s)",
6058 list_head->ll_symbol);
6059 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6060 "Location list end address (%s)",
6061 list_head->ll_symbol);
6062 size = size_of_locs (curr->expr);
6064 /* Output the block length for this list of location operations. */
6065 dw2_asm_output_data (constant_size (size), size, "%s",
6066 "Location expression size");
6068 output_loc_sequence (curr->expr);
6070 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0,
6071 "Location list terminator begin (%s)",
6072 list_head->ll_symbol);
6073 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0,
6074 "Location list terminator end (%s)",
6075 list_head->ll_symbol);
6077 /* Output the DIE and its attributes. Called recursively to generate
6078 the definitions of each child DIE. */
6080 static void
6081 output_die (die)
6082 dw_die_ref die;
6084 dw_attr_ref a;
6085 dw_die_ref c;
6086 unsigned long size;
6088 /* If someone in another CU might refer to us, set up a symbol for
6089 them to point to. */
6090 if (die->die_symbol)
6091 output_die_symbol (die);
6093 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
6094 die->die_offset, dwarf_tag_name (die->die_tag));
6096 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6098 const char *name = dwarf_attr_name (a->dw_attr);
6100 switch (AT_class (a))
6102 case dw_val_class_addr:
6103 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
6104 break;
6106 case dw_val_class_offset:
6107 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
6108 "%s", name);
6109 break;
6111 case dw_val_class_loc:
6112 size = size_of_locs (AT_loc (a));
6114 /* Output the block length for this list of location operations. */
6115 dw2_asm_output_data (constant_size (size), size, "%s", name);
6117 output_loc_sequence (AT_loc (a));
6118 break;
6120 case dw_val_class_const:
6121 /* ??? It would be slightly more efficient to use a scheme like is
6122 used for unsigned constants below, but gdb 4.x does not sign
6123 extend. Gdb 5.x does sign extend. */
6124 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
6125 break;
6127 case dw_val_class_unsigned_const:
6128 dw2_asm_output_data (constant_size (AT_unsigned (a)),
6129 AT_unsigned (a), "%s", name);
6130 break;
6132 case dw_val_class_long_long:
6134 unsigned HOST_WIDE_INT first, second;
6136 dw2_asm_output_data (1, 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR,
6137 "%s", name);
6139 if (WORDS_BIG_ENDIAN)
6141 first = a->dw_attr_val.v.val_long_long.hi;
6142 second = a->dw_attr_val.v.val_long_long.low;
6144 else
6146 first = a->dw_attr_val.v.val_long_long.low;
6147 second = a->dw_attr_val.v.val_long_long.hi;
6149 dw2_asm_output_data (HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR,
6150 first, "long long constant");
6151 dw2_asm_output_data (HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR,
6152 second, NULL);
6154 break;
6156 case dw_val_class_float:
6158 unsigned int i;
6160 dw2_asm_output_data (1, a->dw_attr_val.v.val_float.length * 4,
6161 "%s", name);
6163 for (i = 0; i < a->dw_attr_val.v.val_float.length; ++i)
6164 dw2_asm_output_data (4, a->dw_attr_val.v.val_float.array[i],
6165 "fp constant word %u", i);
6166 break;
6169 case dw_val_class_flag:
6170 dw2_asm_output_data (1, AT_flag (a), "%s", name);
6171 break;
6173 case dw_val_class_loc_list:
6175 char *sym = AT_loc_list (a)->ll_symbol;
6176 if (sym == 0)
6177 abort();
6178 dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym,
6179 loc_section_label, "%s", name);
6181 break;
6183 case dw_val_class_die_ref:
6184 if (AT_ref_external (a))
6186 char *sym = AT_ref (a)->die_symbol;
6187 if (sym == 0)
6188 abort ();
6189 dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, "%s", name);
6191 else if (AT_ref (a)->die_offset == 0)
6192 abort ();
6193 else
6194 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
6195 "%s", name);
6196 break;
6198 case dw_val_class_fde_ref:
6200 char l1[20];
6201 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
6202 a->dw_attr_val.v.val_fde_index * 2);
6203 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, "%s", name);
6205 break;
6207 case dw_val_class_lbl_id:
6208 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
6209 break;
6211 case dw_val_class_lbl_offset:
6212 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a), "%s", name);
6213 break;
6215 case dw_val_class_str:
6216 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
6217 break;
6219 default:
6220 abort ();
6224 for (c = die->die_child; c != NULL; c = c->die_sib)
6225 output_die (c);
6227 if (die->die_child != NULL)
6229 /* Add null byte to terminate sibling list. */
6230 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
6231 die->die_offset);
6235 /* Output the compilation unit that appears at the beginning of the
6236 .debug_info section, and precedes the DIE descriptions. */
6238 static void
6239 output_compilation_unit_header ()
6241 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset - DWARF_OFFSET_SIZE,
6242 "Length of Compilation Unit Info");
6244 dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
6246 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
6247 "Offset Into Abbrev. Section");
6249 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
6252 /* Output the compilation unit DIE and its children. */
6254 static void
6255 output_comp_unit (die)
6256 dw_die_ref die;
6258 const char *secname;
6260 /* Even if there are no children of this DIE, we must output the
6261 information about the compilation unit. Otherwise, on an empty
6262 translation unit, we will generate a present, but empty,
6263 .debug_info section. IRIX 6.5 `nm' will then complain when
6264 examining the file.
6266 Mark all the DIEs in this CU so we know which get local refs. */
6267 mark_dies (die);
6269 build_abbrev_table (die);
6271 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
6272 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
6273 calc_die_sizes (die);
6275 if (die->die_symbol)
6277 char *tmp = (char *) alloca (strlen (die->die_symbol) + 24);
6278 sprintf (tmp, ".gnu.linkonce.wi.%s", die->die_symbol);
6279 secname = tmp;
6280 die->die_symbol = NULL;
6282 else
6283 secname = (const char *) DEBUG_INFO_SECTION;
6285 /* Output debugging information. */
6286 named_section_flags (secname, SECTION_DEBUG);
6287 output_compilation_unit_header ();
6288 output_die (die);
6290 /* Leave the marks on the main CU, so we can check them in
6291 output_pubnames. */
6292 if (die->die_symbol)
6293 unmark_dies (die);
6296 /* The DWARF2 pubname for a nested thingy looks like "A::f". The output
6297 of decl_printable_name for C++ looks like "A::f(int)". Let's drop the
6298 argument list, and maybe the scope. */
6300 static const char *
6301 dwarf2_name (decl, scope)
6302 tree decl;
6303 int scope;
6305 return (*decl_printable_name) (decl, scope ? 1 : 0);
6308 /* Add a new entry to .debug_pubnames if appropriate. */
6310 static void
6311 add_pubname (decl, die)
6312 tree decl;
6313 dw_die_ref die;
6315 pubname_ref p;
6317 if (! TREE_PUBLIC (decl))
6318 return;
6320 if (pubname_table_in_use == pubname_table_allocated)
6322 pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
6323 pubname_table = (pubname_ref) xrealloc
6324 (pubname_table, pubname_table_allocated * sizeof (pubname_entry));
6327 p = &pubname_table[pubname_table_in_use++];
6328 p->die = die;
6330 p->name = xstrdup (dwarf2_name (decl, 1));
6333 /* Output the public names table used to speed up access to externally
6334 visible names. For now, only generate entries for externally
6335 visible procedures. */
6337 static void
6338 output_pubnames ()
6340 unsigned i;
6341 unsigned long pubnames_length = size_of_pubnames ();
6343 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
6344 "Length of Public Names Info");
6346 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6348 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
6349 "Offset of Compilation Unit Info");
6351 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
6352 "Compilation Unit Length");
6354 for (i = 0; i < pubname_table_in_use; ++i)
6356 pubname_ref pub = &pubname_table[i];
6358 /* We shouldn't see pubnames for DIEs outside of the main CU. */
6359 if (pub->die->die_mark == 0)
6360 abort ();
6362 dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
6363 "DIE offset");
6365 dw2_asm_output_nstring (pub->name, -1, "external name");
6368 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
6371 /* Add a new entry to .debug_aranges if appropriate. */
6373 static void
6374 add_arange (decl, die)
6375 tree decl;
6376 dw_die_ref die;
6378 if (! DECL_SECTION_NAME (decl))
6379 return;
6381 if (arange_table_in_use == arange_table_allocated)
6383 arange_table_allocated += ARANGE_TABLE_INCREMENT;
6384 arange_table = (dw_die_ref *)
6385 xrealloc (arange_table, arange_table_allocated * sizeof (dw_die_ref));
6388 arange_table[arange_table_in_use++] = die;
6391 /* Output the information that goes into the .debug_aranges table.
6392 Namely, define the beginning and ending address range of the
6393 text section generated for this compilation unit. */
6395 static void
6396 output_aranges ()
6398 unsigned i;
6399 unsigned long aranges_length = size_of_aranges ();
6401 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
6402 "Length of Address Ranges Info");
6404 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6406 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
6407 "Offset of Compilation Unit Info");
6409 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
6411 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
6413 /* We need to align to twice the pointer size here. */
6414 if (DWARF_ARANGES_PAD_SIZE)
6416 /* Pad using a 2 byte words so that padding is correct for any
6417 pointer size. */
6418 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
6419 2 * DWARF2_ADDR_SIZE);
6420 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
6421 dw2_asm_output_data (2, 0, NULL);
6424 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
6425 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
6426 text_section_label, "Length");
6428 for (i = 0; i < arange_table_in_use; ++i)
6430 dw_die_ref die = arange_table[i];
6432 /* We shouldn't see aranges for DIEs outside of the main CU. */
6433 if (die->die_mark == 0)
6434 abort ();
6436 if (die->die_tag == DW_TAG_subprogram)
6438 dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
6439 "Address");
6440 dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
6441 get_AT_low_pc (die), "Length");
6443 else
6445 /* A static variable; extract the symbol from DW_AT_location.
6446 Note that this code isn't currently hit, as we only emit
6447 aranges for functions (jason 9/23/99). */
6449 dw_attr_ref a = get_AT (die, DW_AT_location);
6450 dw_loc_descr_ref loc;
6451 if (! a || AT_class (a) != dw_val_class_loc)
6452 abort ();
6454 loc = AT_loc (a);
6455 if (loc->dw_loc_opc != DW_OP_addr)
6456 abort ();
6458 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
6459 loc->dw_loc_oprnd1.v.val_addr, "Address");
6460 dw2_asm_output_data (DWARF2_ADDR_SIZE,
6461 get_AT_unsigned (die, DW_AT_byte_size),
6462 "Length");
6466 /* Output the terminator words. */
6467 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6468 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6471 /* Add a new entry to .debug_ranges. Return the offset at which it
6472 was placed. */
6474 static unsigned int
6475 add_ranges (block)
6476 tree block;
6478 unsigned int in_use = ranges_table_in_use;
6480 if (in_use == ranges_table_allocated)
6482 ranges_table_allocated += RANGES_TABLE_INCREMENT;
6483 ranges_table = (dw_ranges_ref)
6484 xrealloc (ranges_table, (ranges_table_allocated
6485 * sizeof (struct dw_ranges_struct)));
6488 ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
6489 ranges_table_in_use = in_use + 1;
6491 return in_use * 2 * DWARF2_ADDR_SIZE;
6494 static void
6495 output_ranges ()
6497 unsigned i;
6498 static const char *const start_fmt = "Offset 0x%x";
6499 const char *fmt = start_fmt;
6501 for (i = 0; i < ranges_table_in_use; ++i)
6503 int block_num = ranges_table[i].block_num;
6505 if (block_num)
6507 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
6508 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
6510 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
6511 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
6513 /* If all code is in the text section, then the compilation
6514 unit base address defaults to DW_AT_low_pc, which is the
6515 base of the text section. */
6516 if (separate_line_info_table_in_use == 0)
6518 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
6519 text_section_label,
6520 fmt, i * 2 * DWARF2_ADDR_SIZE);
6521 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
6522 text_section_label, NULL);
6524 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
6525 compilation unit base address to zero, which allows us to
6526 use absolute addresses, and not worry about whether the
6527 target supports cross-section arithmetic. */
6528 else
6530 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
6531 fmt, i * 2 * DWARF2_ADDR_SIZE);
6532 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
6535 fmt = NULL;
6537 else
6539 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6540 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6541 fmt = start_fmt;
6546 /* Data structure containing information about input files. */
6547 struct file_info
6549 char *path; /* Complete file name. */
6550 char *fname; /* File name part. */
6551 int length; /* Length of entire string. */
6552 int file_idx; /* Index in input file table. */
6553 int dir_idx; /* Index in directory table. */
6556 /* Data structure containing information about directories with source
6557 files. */
6558 struct dir_info
6560 char *path; /* Path including directory name. */
6561 int length; /* Path length. */
6562 int prefix; /* Index of directory entry which is a prefix. */
6563 int count; /* Number of files in this directory. */
6564 int dir_idx; /* Index of directory used as base. */
6565 int used; /* Used in the end? */
6568 /* Callback function for file_info comparison. We sort by looking at
6569 the directories in the path. */
6570 static int
6571 file_info_cmp (p1, p2)
6572 const void *p1;
6573 const void *p2;
6575 const struct file_info *s1 = p1;
6576 const struct file_info *s2 = p2;
6577 unsigned char *cp1;
6578 unsigned char *cp2;
6580 /* Take care of file names without directories. */
6581 if (s1->path == s1->fname)
6582 return -1;
6583 else if (s2->path == s2->fname)
6584 return 1;
6586 cp1 = (unsigned char *) s1->path;
6587 cp2 = (unsigned char *) s2->path;
6589 while (1)
6591 ++cp1;
6592 ++cp2;
6593 /* Reached the end of the first path? */
6594 if (cp1 == (unsigned char *) s1->fname)
6595 /* It doesn't really matter in which order files from the
6596 same directory are sorted in. Therefore don't test for
6597 the second path reaching the end. */
6598 return -1;
6599 else if (cp2 == (unsigned char *) s2->fname)
6600 return 1;
6602 /* Character of current path component the same? */
6603 if (*cp1 != *cp2)
6604 return *cp1 - *cp2;
6608 /* Output the directory table and the file name table. We try to minimize
6609 the total amount of memory needed. A heuristic is used to avoid large
6610 slowdowns with many input files. */
6611 static void
6612 output_file_names ()
6614 struct file_info *files;
6615 struct dir_info *dirs;
6616 int *saved;
6617 int *savehere;
6618 int *backmap;
6619 int ndirs;
6620 int idx_offset;
6621 int i;
6622 int idx;
6624 /* Allocate the various arrays we need. */
6625 files = (struct file_info *) alloca (file_table.in_use
6626 * sizeof (struct file_info));
6627 dirs = (struct dir_info *) alloca (file_table.in_use
6628 * sizeof (struct dir_info));
6630 /* Sort the file names. */
6631 for (i = 1; i < (int) file_table.in_use; ++i)
6633 char *f;
6635 /* Skip all leading "./". */
6636 f = file_table.table[i];
6637 while (f[0] == '.' && f[1] == '/')
6638 f += 2;
6640 /* Create a new array entry. */
6641 files[i].path = f;
6642 files[i].length = strlen (f);
6643 files[i].file_idx = i;
6645 /* Search for the file name part. */
6646 f = strrchr (f, '/');
6647 files[i].fname = f == NULL ? files[i].path : f + 1;
6649 qsort (files + 1, file_table.in_use - 1, sizeof (files[0]), file_info_cmp);
6651 /* Find all the different directories used. */
6652 dirs[0].path = files[1].path;
6653 dirs[0].length = files[1].fname - files[1].path;
6654 dirs[0].prefix = -1;
6655 dirs[0].count = 1;
6656 dirs[0].dir_idx = 0;
6657 dirs[0].used = 0;
6658 files[1].dir_idx = 0;
6659 ndirs = 1;
6661 for (i = 2; i < (int) file_table.in_use; ++i)
6662 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
6663 && memcmp (dirs[ndirs - 1].path, files[i].path,
6664 dirs[ndirs - 1].length) == 0)
6666 /* Same directory as last entry. */
6667 files[i].dir_idx = ndirs - 1;
6668 ++dirs[ndirs - 1].count;
6670 else
6672 int j;
6674 /* This is a new directory. */
6675 dirs[ndirs].path = files[i].path;
6676 dirs[ndirs].length = files[i].fname - files[i].path;
6677 dirs[ndirs].count = 1;
6678 dirs[ndirs].dir_idx = ndirs;
6679 dirs[ndirs].used = 0;
6680 files[i].dir_idx = ndirs;
6682 /* Search for a prefix. */
6683 dirs[ndirs].prefix = -1;
6684 for (j = 0; j < ndirs; ++j)
6685 if (dirs[j].length < dirs[ndirs].length
6686 && dirs[j].length > 1
6687 && (dirs[ndirs].prefix == -1
6688 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
6689 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
6690 dirs[ndirs].prefix = j;
6692 ++ndirs;
6695 /* Now to the actual work. We have to find a subset of the
6696 directories which allow expressing the file name using references
6697 to the directory table with the least amount of characters. We
6698 do not do an exhaustive search where we would have to check out
6699 every combination of every single possible prefix. Instead we
6700 use a heuristic which provides nearly optimal results in most
6701 cases and never is much off. */
6702 saved = (int *) alloca (ndirs * sizeof (int));
6703 savehere = (int *) alloca (ndirs * sizeof (int));
6705 memset (saved, '\0', ndirs * sizeof (saved[0]));
6706 for (i = 0; i < ndirs; ++i)
6708 int j;
6709 int total;
6711 /* We can always save some space for the current directory. But
6712 this does not mean it will be enough to justify adding the
6713 directory. */
6714 savehere[i] = dirs[i].length;
6715 total = (savehere[i] - saved[i]) * dirs[i].count;
6717 for (j = i + 1; j < ndirs; ++j)
6719 savehere[j] = 0;
6721 if (saved[j] < dirs[i].length)
6723 /* Determine whether the dirs[i] path is a prefix of the
6724 dirs[j] path. */
6725 int k;
6727 k = dirs[j].prefix;
6728 while (k != -1 && k != i)
6729 k = dirs[k].prefix;
6731 if (k == i)
6733 /* Yes it is. We can possibly safe some memory but
6734 writing the filenames in dirs[j] relative to
6735 dirs[i]. */
6736 savehere[j] = dirs[i].length;
6737 total += (savehere[j] - saved[j]) * dirs[j].count;
6742 /* Check whether we can safe enough to justify adding the dirs[i]
6743 directory. */
6744 if (total > dirs[i].length + 1)
6746 /* It's worthwhile adding. */
6747 for (j = i; j < ndirs; ++j)
6748 if (savehere[j] > 0)
6750 /* Remember how much we saved for this directory so far. */
6751 saved[j] = savehere[j];
6753 /* Remember the prefix directory. */
6754 dirs[j].dir_idx = i;
6759 /* We have to emit them in the order they appear in the file_table
6760 array since the index is used in the debug info generation. To
6761 do this efficiently we generate a back-mapping of the indices
6762 first. */
6763 backmap = (int *) alloca (file_table.in_use * sizeof (int));
6764 for (i = 1; i < (int) file_table.in_use; ++i)
6766 backmap[files[i].file_idx] = i;
6767 /* Mark this directory as used. */
6768 dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
6771 /* That was it. We are ready to emit the information. First the
6772 directory name table. Here we have to make sure that the first
6773 actually emitted directory name has the index one. Zero is
6774 reserved for the current working directory. Make sure we do not
6775 confuse these indices with the one for the constructed table
6776 (even though most of the time they are identical). */
6777 idx = 1;
6778 idx_offset = dirs[0].length > 0 ? 1 : 0;
6779 for (i = 1 - idx_offset; i < ndirs; ++i)
6780 if (dirs[i].used != 0)
6782 dirs[i].used = idx++;
6783 dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
6784 "Directory Entry: 0x%x", dirs[i].used);
6786 dw2_asm_output_data (1, 0, "End directory table");
6788 /* Correct the index for the current working directory entry if it
6789 exists. */
6790 if (idx_offset == 0)
6791 dirs[0].used = 0;
6793 /* Now write all the file names. */
6794 for (i = 1; i < (int) file_table.in_use; ++i)
6796 int file_idx = backmap[i];
6797 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
6799 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
6800 "File Entry: 0x%x", i);
6802 /* Include directory index. */
6803 dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
6805 /* Modification time. */
6806 dw2_asm_output_data_uleb128 (0, NULL);
6808 /* File length in bytes. */
6809 dw2_asm_output_data_uleb128 (0, NULL);
6811 dw2_asm_output_data (1, 0, "End file name table");
6815 /* Output the source line number correspondence information. This
6816 information goes into the .debug_line section. */
6818 static void
6819 output_line_info ()
6821 char l1[20], l2[20], p1[20], p2[20];
6822 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
6823 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
6824 unsigned opc;
6825 unsigned n_op_args;
6826 unsigned long lt_index;
6827 unsigned long current_line;
6828 long line_offset;
6829 long line_delta;
6830 unsigned long current_file;
6831 unsigned long function;
6833 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
6834 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
6835 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
6836 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
6838 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
6839 "Length of Source Line Info");
6840 ASM_OUTPUT_LABEL (asm_out_file, l1);
6842 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6844 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
6845 ASM_OUTPUT_LABEL (asm_out_file, p1);
6847 dw2_asm_output_data (1, DWARF_LINE_MIN_INSTR_LENGTH,
6848 "Minimum Instruction Length");
6850 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
6851 "Default is_stmt_start flag");
6853 dw2_asm_output_data (1, DWARF_LINE_BASE,
6854 "Line Base Value (Special Opcodes)");
6856 dw2_asm_output_data (1, DWARF_LINE_RANGE,
6857 "Line Range Value (Special Opcodes)");
6859 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
6860 "Special Opcode Base");
6862 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; ++opc)
6864 switch (opc)
6866 case DW_LNS_advance_pc:
6867 case DW_LNS_advance_line:
6868 case DW_LNS_set_file:
6869 case DW_LNS_set_column:
6870 case DW_LNS_fixed_advance_pc:
6871 n_op_args = 1;
6872 break;
6873 default:
6874 n_op_args = 0;
6875 break;
6878 dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
6879 opc, n_op_args);
6882 /* Write out the information about the files we use. */
6883 output_file_names ();
6884 ASM_OUTPUT_LABEL (asm_out_file, p2);
6886 /* We used to set the address register to the first location in the text
6887 section here, but that didn't accomplish anything since we already
6888 have a line note for the opening brace of the first function. */
6890 /* Generate the line number to PC correspondence table, encoded as
6891 a series of state machine operations. */
6892 current_file = 1;
6893 current_line = 1;
6894 strcpy (prev_line_label, text_section_label);
6895 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
6897 dw_line_info_ref line_info = &line_info_table[lt_index];
6899 #if 0
6900 /* Disable this optimization for now; GDB wants to see two line notes
6901 at the beginning of a function so it can find the end of the
6902 prologue. */
6904 /* Don't emit anything for redundant notes. Just updating the
6905 address doesn't accomplish anything, because we already assume
6906 that anything after the last address is this line. */
6907 if (line_info->dw_line_num == current_line
6908 && line_info->dw_file_num == current_file)
6909 continue;
6910 #endif
6912 /* Emit debug info for the address of the current line.
6914 Unfortunately, we have little choice here currently, and must always
6915 use the most general form. Gcc does not know the address delta
6916 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
6917 attributes which will give an upper bound on the address range. We
6918 could perhaps use length attributes to determine when it is safe to
6919 use DW_LNS_fixed_advance_pc. */
6921 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
6922 if (0)
6924 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
6925 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
6926 "DW_LNS_fixed_advance_pc");
6927 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
6929 else
6931 /* This can handle any delta. This takes
6932 4+DWARF2_ADDR_SIZE bytes. */
6933 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
6934 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
6935 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
6936 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
6938 strcpy (prev_line_label, line_label);
6940 /* Emit debug info for the source file of the current line, if
6941 different from the previous line. */
6942 if (line_info->dw_file_num != current_file)
6944 current_file = line_info->dw_file_num;
6945 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
6946 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
6947 file_table.table[current_file]);
6950 /* Emit debug info for the current line number, choosing the encoding
6951 that uses the least amount of space. */
6952 if (line_info->dw_line_num != current_line)
6954 line_offset = line_info->dw_line_num - current_line;
6955 line_delta = line_offset - DWARF_LINE_BASE;
6956 current_line = line_info->dw_line_num;
6957 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
6959 /* This can handle deltas from -10 to 234, using the current
6960 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
6961 takes 1 byte. */
6962 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
6963 "line %lu", current_line);
6965 else
6967 /* This can handle any delta. This takes at least 4 bytes,
6968 depending on the value being encoded. */
6969 dw2_asm_output_data (1, DW_LNS_advance_line,
6970 "advance to line %lu", current_line);
6971 dw2_asm_output_data_sleb128 (line_offset, NULL);
6972 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
6975 else
6977 /* We still need to start a new row, so output a copy insn. */
6978 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
6982 /* Emit debug info for the address of the end of the function. */
6983 if (0)
6985 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
6986 "DW_LNS_fixed_advance_pc");
6987 dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
6989 else
6991 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
6992 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
6993 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
6994 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
6997 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
6998 dw2_asm_output_data_uleb128 (1, NULL);
6999 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7001 function = 0;
7002 current_file = 1;
7003 current_line = 1;
7004 for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
7006 dw_separate_line_info_ref line_info
7007 = &separate_line_info_table[lt_index];
7009 #if 0
7010 /* Don't emit anything for redundant notes. */
7011 if (line_info->dw_line_num == current_line
7012 && line_info->dw_file_num == current_file
7013 && line_info->function == function)
7014 goto cont;
7015 #endif
7017 /* Emit debug info for the address of the current line. If this is
7018 a new function, or the first line of a function, then we need
7019 to handle it differently. */
7020 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
7021 lt_index);
7022 if (function != line_info->function)
7024 function = line_info->function;
7026 /* Set the address register to the first line in the function */
7027 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7028 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7029 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7030 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7032 else
7034 /* ??? See the DW_LNS_advance_pc comment above. */
7035 if (0)
7037 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7038 "DW_LNS_fixed_advance_pc");
7039 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7041 else
7043 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7044 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7045 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7046 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7049 strcpy (prev_line_label, line_label);
7051 /* Emit debug info for the source file of the current line, if
7052 different from the previous line. */
7053 if (line_info->dw_file_num != current_file)
7055 current_file = line_info->dw_file_num;
7056 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7057 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7058 file_table.table[current_file]);
7061 /* Emit debug info for the current line number, choosing the encoding
7062 that uses the least amount of space. */
7063 if (line_info->dw_line_num != current_line)
7065 line_offset = line_info->dw_line_num - current_line;
7066 line_delta = line_offset - DWARF_LINE_BASE;
7067 current_line = line_info->dw_line_num;
7068 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7069 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7070 "line %lu", current_line);
7071 else
7073 dw2_asm_output_data (1, DW_LNS_advance_line,
7074 "advance to line %lu", current_line);
7075 dw2_asm_output_data_sleb128 (line_offset, NULL);
7076 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7079 else
7080 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7082 #if 0
7083 cont:
7084 #endif
7085 ++lt_index;
7087 /* If we're done with a function, end its sequence. */
7088 if (lt_index == separate_line_info_table_in_use
7089 || separate_line_info_table[lt_index].function != function)
7091 current_file = 1;
7092 current_line = 1;
7094 /* Emit debug info for the address of the end of the function. */
7095 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
7096 if (0)
7098 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7099 "DW_LNS_fixed_advance_pc");
7100 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7102 else
7104 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7105 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7106 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7107 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7110 /* Output the marker for the end of this sequence. */
7111 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7112 dw2_asm_output_data_uleb128 (1, NULL);
7113 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7117 /* Output the marker for the end of the line number info. */
7118 ASM_OUTPUT_LABEL (asm_out_file, l2);
7121 /* Given a pointer to a tree node for some base type, return a pointer to
7122 a DIE that describes the given type.
7124 This routine must only be called for GCC type nodes that correspond to
7125 Dwarf base (fundamental) types. */
7127 static dw_die_ref
7128 base_type_die (type)
7129 tree type;
7131 dw_die_ref base_type_result;
7132 const char *type_name;
7133 enum dwarf_type encoding;
7134 tree name = TYPE_NAME (type);
7136 if (TREE_CODE (type) == ERROR_MARK
7137 || TREE_CODE (type) == VOID_TYPE)
7138 return 0;
7140 if (name)
7142 if (TREE_CODE (name) == TYPE_DECL)
7143 name = DECL_NAME (name);
7145 type_name = IDENTIFIER_POINTER (name);
7147 else
7148 type_name = "__unknown__";
7150 switch (TREE_CODE (type))
7152 case INTEGER_TYPE:
7153 /* Carefully distinguish the C character types, without messing
7154 up if the language is not C. Note that we check only for the names
7155 that contain spaces; other names might occur by coincidence in other
7156 languages. */
7157 if (! (TYPE_PRECISION (type) == CHAR_TYPE_SIZE
7158 && (type == char_type_node
7159 || ! strcmp (type_name, "signed char")
7160 || ! strcmp (type_name, "unsigned char"))))
7162 if (TREE_UNSIGNED (type))
7163 encoding = DW_ATE_unsigned;
7164 else
7165 encoding = DW_ATE_signed;
7166 break;
7168 /* else fall through. */
7170 case CHAR_TYPE:
7171 /* GNU Pascal/Ada CHAR type. Not used in C. */
7172 if (TREE_UNSIGNED (type))
7173 encoding = DW_ATE_unsigned_char;
7174 else
7175 encoding = DW_ATE_signed_char;
7176 break;
7178 case REAL_TYPE:
7179 encoding = DW_ATE_float;
7180 break;
7182 /* Dwarf2 doesn't know anything about complex ints, so use
7183 a user defined type for it. */
7184 case COMPLEX_TYPE:
7185 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
7186 encoding = DW_ATE_complex_float;
7187 else
7188 encoding = DW_ATE_lo_user;
7189 break;
7191 case BOOLEAN_TYPE:
7192 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
7193 encoding = DW_ATE_boolean;
7194 break;
7196 default:
7197 abort (); /* No other TREE_CODEs are Dwarf fundamental types. */
7200 base_type_result = new_die (DW_TAG_base_type, comp_unit_die);
7201 if (demangle_name_func)
7202 type_name = (*demangle_name_func) (type_name);
7204 add_AT_string (base_type_result, DW_AT_name, type_name);
7205 add_AT_unsigned (base_type_result, DW_AT_byte_size,
7206 int_size_in_bytes (type));
7207 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
7209 return base_type_result;
7212 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
7213 the Dwarf "root" type for the given input type. The Dwarf "root" type of
7214 a given type is generally the same as the given type, except that if the
7215 given type is a pointer or reference type, then the root type of the given
7216 type is the root type of the "basis" type for the pointer or reference
7217 type. (This definition of the "root" type is recursive.) Also, the root
7218 type of a `const' qualified type or a `volatile' qualified type is the
7219 root type of the given type without the qualifiers. */
7221 static tree
7222 root_type (type)
7223 tree type;
7225 if (TREE_CODE (type) == ERROR_MARK)
7226 return error_mark_node;
7228 switch (TREE_CODE (type))
7230 case ERROR_MARK:
7231 return error_mark_node;
7233 case POINTER_TYPE:
7234 case REFERENCE_TYPE:
7235 return type_main_variant (root_type (TREE_TYPE (type)));
7237 default:
7238 return type_main_variant (type);
7242 /* Given a pointer to an arbitrary ..._TYPE tree node, return non-zero if the
7243 given input type is a Dwarf "fundamental" type. Otherwise return null. */
7245 static inline int
7246 is_base_type (type)
7247 tree type;
7249 switch (TREE_CODE (type))
7251 case ERROR_MARK:
7252 case VOID_TYPE:
7253 case INTEGER_TYPE:
7254 case REAL_TYPE:
7255 case COMPLEX_TYPE:
7256 case BOOLEAN_TYPE:
7257 case CHAR_TYPE:
7258 return 1;
7260 case SET_TYPE:
7261 case ARRAY_TYPE:
7262 case RECORD_TYPE:
7263 case UNION_TYPE:
7264 case QUAL_UNION_TYPE:
7265 case ENUMERAL_TYPE:
7266 case FUNCTION_TYPE:
7267 case METHOD_TYPE:
7268 case POINTER_TYPE:
7269 case REFERENCE_TYPE:
7270 case FILE_TYPE:
7271 case OFFSET_TYPE:
7272 case LANG_TYPE:
7273 case VECTOR_TYPE:
7274 return 0;
7276 default:
7277 abort ();
7280 return 0;
7283 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
7284 entry that chains various modifiers in front of the given type. */
7286 static dw_die_ref
7287 modified_type_die (type, is_const_type, is_volatile_type, context_die)
7288 tree type;
7289 int is_const_type;
7290 int is_volatile_type;
7291 dw_die_ref context_die;
7293 enum tree_code code = TREE_CODE (type);
7294 dw_die_ref mod_type_die = NULL;
7295 dw_die_ref sub_die = NULL;
7296 tree item_type = NULL;
7298 if (code != ERROR_MARK)
7300 tree qualified_type;
7302 /* See if we already have the appropriately qualified variant of
7303 this type. */
7304 qualified_type
7305 = get_qualified_type (type,
7306 ((is_const_type ? TYPE_QUAL_CONST : 0)
7307 | (is_volatile_type
7308 ? TYPE_QUAL_VOLATILE : 0)));
7309 /* If we do, then we can just use its DIE, if it exists. */
7310 if (qualified_type)
7312 mod_type_die = lookup_type_die (qualified_type);
7313 if (mod_type_die)
7314 return mod_type_die;
7317 /* Handle C typedef types. */
7318 if (qualified_type && TYPE_NAME (qualified_type)
7319 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL
7320 && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type)))
7322 tree type_name = TYPE_NAME (qualified_type);
7323 tree dtype = TREE_TYPE (type_name);
7324 if (qualified_type == dtype)
7326 /* For a named type, use the typedef. */
7327 gen_type_die (qualified_type, context_die);
7328 mod_type_die = lookup_type_die (qualified_type);
7331 else if (is_const_type < TYPE_READONLY (dtype)
7332 || is_volatile_type < TYPE_VOLATILE (dtype))
7333 /* cv-unqualified version of named type. Just use the unnamed
7334 type to which it refers. */
7335 mod_type_die
7336 = modified_type_die (DECL_ORIGINAL_TYPE (type_name),
7337 is_const_type, is_volatile_type,
7338 context_die);
7339 /* Else cv-qualified version of named type; fall through. */
7342 if (mod_type_die)
7343 /* OK. */
7345 else if (is_const_type)
7347 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die);
7348 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
7350 else if (is_volatile_type)
7352 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die);
7353 sub_die = modified_type_die (type, 0, 0, context_die);
7355 else if (code == POINTER_TYPE)
7357 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die);
7358 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
7359 #if 0
7360 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
7361 #endif
7362 item_type = TREE_TYPE (type);
7364 else if (code == REFERENCE_TYPE)
7366 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die);
7367 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
7368 #if 0
7369 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
7370 #endif
7371 item_type = TREE_TYPE (type);
7373 else if (is_base_type (type))
7374 mod_type_die = base_type_die (type);
7375 else
7377 gen_type_die (type, context_die);
7379 /* We have to get the type_main_variant here (and pass that to the
7380 `lookup_type_die' routine) because the ..._TYPE node we have
7381 might simply be a *copy* of some original type node (where the
7382 copy was created to help us keep track of typedef names) and
7383 that copy might have a different TYPE_UID from the original
7384 ..._TYPE node. */
7385 mod_type_die = lookup_type_die (type_main_variant (type));
7386 if (mod_type_die == NULL)
7387 abort ();
7390 /* We want to equate the qualified type to the die below. */
7391 if (qualified_type)
7392 type = qualified_type;
7395 equate_type_number_to_die (type, mod_type_die);
7396 if (item_type)
7397 /* We must do this after the equate_type_number_to_die call, in case
7398 this is a recursive type. This ensures that the modified_type_die
7399 recursion will terminate even if the type is recursive. Recursive
7400 types are possible in Ada. */
7401 sub_die = modified_type_die (item_type,
7402 TYPE_READONLY (item_type),
7403 TYPE_VOLATILE (item_type),
7404 context_die);
7406 if (sub_die != NULL)
7407 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
7409 return mod_type_die;
7412 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
7413 an enumerated type. */
7415 static inline int
7416 type_is_enum (type)
7417 tree type;
7419 return TREE_CODE (type) == ENUMERAL_TYPE;
7422 /* Return the register number described by a given RTL node. */
7424 static unsigned int
7425 reg_number (rtl)
7426 rtx rtl;
7428 unsigned regno = REGNO (rtl);
7430 if (regno >= FIRST_PSEUDO_REGISTER)
7432 warning ("internal regno botch: regno = %d\n", regno);
7433 regno = 0;
7436 regno = DBX_REGISTER_NUMBER (regno);
7437 return regno;
7440 /* Return a location descriptor that designates a machine register. */
7442 static dw_loc_descr_ref
7443 reg_loc_descriptor (rtl)
7444 rtx rtl;
7446 dw_loc_descr_ref loc_result = NULL;
7447 unsigned reg = reg_number (rtl);
7449 if (reg <= 31)
7450 loc_result = new_loc_descr (DW_OP_reg0 + reg, 0, 0);
7451 else
7452 loc_result = new_loc_descr (DW_OP_regx, reg, 0);
7454 return loc_result;
7457 /* Return a location descriptor that designates a constant. */
7459 static dw_loc_descr_ref
7460 int_loc_descriptor (i)
7461 HOST_WIDE_INT i;
7463 enum dwarf_location_atom op;
7465 /* Pick the smallest representation of a constant, rather than just
7466 defaulting to the LEB encoding. */
7467 if (i >= 0)
7469 if (i <= 31)
7470 op = DW_OP_lit0 + i;
7471 else if (i <= 0xff)
7472 op = DW_OP_const1u;
7473 else if (i <= 0xffff)
7474 op = DW_OP_const2u;
7475 else if (HOST_BITS_PER_WIDE_INT == 32
7476 || i <= 0xffffffff)
7477 op = DW_OP_const4u;
7478 else
7479 op = DW_OP_constu;
7481 else
7483 if (i >= -0x80)
7484 op = DW_OP_const1s;
7485 else if (i >= -0x8000)
7486 op = DW_OP_const2s;
7487 else if (HOST_BITS_PER_WIDE_INT == 32
7488 || i >= -0x80000000)
7489 op = DW_OP_const4s;
7490 else
7491 op = DW_OP_consts;
7494 return new_loc_descr (op, i, 0);
7497 /* Return a location descriptor that designates a base+offset location. */
7499 static dw_loc_descr_ref
7500 based_loc_descr (reg, offset)
7501 unsigned reg;
7502 long int offset;
7504 dw_loc_descr_ref loc_result;
7505 /* For the "frame base", we use the frame pointer or stack pointer
7506 registers, since the RTL for local variables is relative to one of
7507 them. */
7508 unsigned fp_reg = DBX_REGISTER_NUMBER (frame_pointer_needed
7509 ? HARD_FRAME_POINTER_REGNUM
7510 : STACK_POINTER_REGNUM);
7512 if (reg == fp_reg)
7513 loc_result = new_loc_descr (DW_OP_fbreg, offset, 0);
7514 else if (reg <= 31)
7515 loc_result = new_loc_descr (DW_OP_breg0 + reg, offset, 0);
7516 else
7517 loc_result = new_loc_descr (DW_OP_bregx, reg, offset);
7519 return loc_result;
7522 /* Return true if this RTL expression describes a base+offset calculation. */
7524 static inline int
7525 is_based_loc (rtl)
7526 rtx rtl;
7528 return (GET_CODE (rtl) == PLUS
7529 && ((GET_CODE (XEXP (rtl, 0)) == REG
7530 && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
7533 /* The following routine converts the RTL for a variable or parameter
7534 (resident in memory) into an equivalent Dwarf representation of a
7535 mechanism for getting the address of that same variable onto the top of a
7536 hypothetical "address evaluation" stack.
7538 When creating memory location descriptors, we are effectively transforming
7539 the RTL for a memory-resident object into its Dwarf postfix expression
7540 equivalent. This routine recursively descends an RTL tree, turning
7541 it into Dwarf postfix code as it goes.
7543 MODE is the mode of the memory reference, needed to handle some
7544 autoincrement addressing modes. */
7546 static dw_loc_descr_ref
7547 mem_loc_descriptor (rtl, mode)
7548 rtx rtl;
7549 enum machine_mode mode;
7551 dw_loc_descr_ref mem_loc_result = NULL;
7552 /* Note that for a dynamically sized array, the location we will generate a
7553 description of here will be the lowest numbered location which is
7554 actually within the array. That's *not* necessarily the same as the
7555 zeroth element of the array. */
7557 #ifdef ASM_SIMPLIFY_DWARF_ADDR
7558 rtl = ASM_SIMPLIFY_DWARF_ADDR (rtl);
7559 #endif
7561 switch (GET_CODE (rtl))
7563 case POST_INC:
7564 case POST_DEC:
7565 case POST_MODIFY:
7566 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
7567 just fall into the SUBREG code. */
7569 /* Fall through. */
7571 case SUBREG:
7572 /* The case of a subreg may arise when we have a local (register)
7573 variable or a formal (register) parameter which doesn't quite fill
7574 up an entire register. For now, just assume that it is
7575 legitimate to make the Dwarf info refer to the whole register which
7576 contains the given subreg. */
7577 rtl = SUBREG_REG (rtl);
7579 /* Fall through. */
7581 case REG:
7582 /* Whenever a register number forms a part of the description of the
7583 method for calculating the (dynamic) address of a memory resident
7584 object, DWARF rules require the register number be referred to as
7585 a "base register". This distinction is not based in any way upon
7586 what category of register the hardware believes the given register
7587 belongs to. This is strictly DWARF terminology we're dealing with
7588 here. Note that in cases where the location of a memory-resident
7589 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
7590 OP_CONST (0)) the actual DWARF location descriptor that we generate
7591 may just be OP_BASEREG (basereg). This may look deceptively like
7592 the object in question was allocated to a register (rather than in
7593 memory) so DWARF consumers need to be aware of the subtle
7594 distinction between OP_REG and OP_BASEREG. */
7595 mem_loc_result = based_loc_descr (reg_number (rtl), 0);
7596 break;
7598 case MEM:
7599 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
7600 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
7601 break;
7603 case LABEL_REF:
7604 /* Some ports can transform a symbol ref into a label ref, because
7605 the symbol ref is too far away and has to be dumped into a constant
7606 pool. */
7607 case CONST:
7608 case SYMBOL_REF:
7609 /* Alternatively, the symbol in the constant pool might be referenced
7610 by a different symbol. */
7611 if (GET_CODE (rtl) == SYMBOL_REF
7612 && CONSTANT_POOL_ADDRESS_P (rtl))
7614 rtx tmp = get_pool_constant (rtl);
7615 if (GET_CODE (tmp) == SYMBOL_REF)
7616 rtl = tmp;
7619 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
7620 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
7621 mem_loc_result->dw_loc_oprnd1.v.val_addr = save_rtx (rtl);
7622 break;
7624 case PRE_MODIFY:
7625 /* Extract the PLUS expression nested inside and fall into
7626 PLUS code below. */
7627 rtl = XEXP (rtl, 1);
7628 goto plus;
7630 case PRE_INC:
7631 case PRE_DEC:
7632 /* Turn these into a PLUS expression and fall into the PLUS code
7633 below. */
7634 rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
7635 GEN_INT (GET_CODE (rtl) == PRE_INC
7636 ? GET_MODE_UNIT_SIZE (mode)
7637 : -GET_MODE_UNIT_SIZE (mode)));
7639 /* Fall through. */
7641 case PLUS:
7642 plus:
7643 if (is_based_loc (rtl))
7644 mem_loc_result = based_loc_descr (reg_number (XEXP (rtl, 0)),
7645 INTVAL (XEXP (rtl, 1)));
7646 else
7648 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode);
7650 if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
7651 && INTVAL (XEXP (rtl, 1)) >= 0)
7653 add_loc_descr (&mem_loc_result,
7654 new_loc_descr (DW_OP_plus_uconst,
7655 INTVAL (XEXP (rtl, 1)), 0));
7657 else
7659 add_loc_descr (&mem_loc_result,
7660 mem_loc_descriptor (XEXP (rtl, 1), mode));
7661 add_loc_descr (&mem_loc_result,
7662 new_loc_descr (DW_OP_plus, 0, 0));
7665 break;
7667 case MULT:
7668 /* If a pseudo-reg is optimized away, it is possible for it to
7669 be replaced with a MEM containing a multiply. */
7670 add_loc_descr (&mem_loc_result,
7671 mem_loc_descriptor (XEXP (rtl, 0), mode));
7672 add_loc_descr (&mem_loc_result,
7673 mem_loc_descriptor (XEXP (rtl, 1), mode));
7674 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
7675 break;
7677 case CONST_INT:
7678 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
7679 break;
7681 default:
7682 abort ();
7685 return mem_loc_result;
7688 /* Return a descriptor that describes the concatenation of two locations.
7689 This is typically a complex variable. */
7691 static dw_loc_descr_ref
7692 concat_loc_descriptor (x0, x1)
7693 rtx x0, x1;
7695 dw_loc_descr_ref cc_loc_result = NULL;
7697 if (!is_pseudo_reg (x0)
7698 && (GET_CODE (x0) != MEM || !is_pseudo_reg (XEXP (x0, 0))))
7699 add_loc_descr (&cc_loc_result, loc_descriptor (x0));
7700 add_loc_descr (&cc_loc_result,
7701 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (GET_MODE (x0)), 0));
7703 if (!is_pseudo_reg (x1)
7704 && (GET_CODE (x1) != MEM || !is_pseudo_reg (XEXP (x1, 0))))
7705 add_loc_descr (&cc_loc_result, loc_descriptor (x1));
7706 add_loc_descr (&cc_loc_result,
7707 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (GET_MODE (x1)), 0));
7709 return cc_loc_result;
7712 /* Output a proper Dwarf location descriptor for a variable or parameter
7713 which is either allocated in a register or in a memory location. For a
7714 register, we just generate an OP_REG and the register number. For a
7715 memory location we provide a Dwarf postfix expression describing how to
7716 generate the (dynamic) address of the object onto the address stack. */
7718 static dw_loc_descr_ref
7719 loc_descriptor (rtl)
7720 rtx rtl;
7722 dw_loc_descr_ref loc_result = NULL;
7723 switch (GET_CODE (rtl))
7725 case SUBREG:
7726 /* The case of a subreg may arise when we have a local (register)
7727 variable or a formal (register) parameter which doesn't quite fill
7728 up an entire register. For now, just assume that it is
7729 legitimate to make the Dwarf info refer to the whole register which
7730 contains the given subreg. */
7731 rtl = SUBREG_REG (rtl);
7733 /* Fall through. */
7735 case REG:
7736 loc_result = reg_loc_descriptor (rtl);
7737 break;
7739 case MEM:
7740 loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
7741 break;
7743 case CONCAT:
7744 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
7745 break;
7747 default:
7748 abort ();
7751 return loc_result;
7754 /* Similar, but generate the descriptor from trees instead of rtl.
7755 This comes up particularly with variable length arrays. */
7757 static dw_loc_descr_ref
7758 loc_descriptor_from_tree (loc, addressp)
7759 tree loc;
7760 int addressp;
7762 dw_loc_descr_ref ret = NULL;
7763 int indirect_size = 0;
7764 int unsignedp = TREE_UNSIGNED (TREE_TYPE (loc));
7765 enum dwarf_location_atom op;
7767 /* ??? Most of the time we do not take proper care for sign/zero
7768 extending the values properly. Hopefully this won't be a real
7769 problem... */
7771 switch (TREE_CODE (loc))
7773 case ERROR_MARK:
7774 break;
7776 case WITH_RECORD_EXPR:
7777 /* This case involves extracting fields from an object to determine the
7778 position of other fields. We don't try to encode this here. The
7779 only user of this is Ada, which encodes the needed information using
7780 the names of types. */
7781 return ret;
7783 case VAR_DECL:
7784 case PARM_DECL:
7786 rtx rtl = rtl_for_decl_location (loc);
7787 enum machine_mode mode = DECL_MODE (loc);
7789 if (rtl == NULL_RTX)
7790 break;
7791 else if (CONSTANT_P (rtl))
7793 ret = new_loc_descr (DW_OP_addr, 0, 0);
7794 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
7795 ret->dw_loc_oprnd1.v.val_addr = rtl;
7796 indirect_size = GET_MODE_SIZE (mode);
7798 else
7800 if (GET_CODE (rtl) == MEM)
7802 indirect_size = GET_MODE_SIZE (mode);
7803 rtl = XEXP (rtl, 0);
7805 ret = mem_loc_descriptor (rtl, mode);
7808 break;
7810 case INDIRECT_REF:
7811 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
7812 indirect_size = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (loc)));
7813 break;
7815 case NOP_EXPR:
7816 case CONVERT_EXPR:
7817 case NON_LVALUE_EXPR:
7818 case SAVE_EXPR:
7819 return loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp);
7821 case COMPONENT_REF:
7822 case BIT_FIELD_REF:
7823 case ARRAY_REF:
7824 case ARRAY_RANGE_REF:
7826 tree obj, offset;
7827 HOST_WIDE_INT bitsize, bitpos, bytepos;
7828 enum machine_mode mode;
7829 int volatilep;
7830 unsigned int alignment;
7832 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
7833 &unsignedp, &volatilep, &alignment);
7834 ret = loc_descriptor_from_tree (obj, 1);
7836 if (offset != NULL_TREE)
7838 /* Variable offset. */
7839 add_loc_descr (&ret, loc_descriptor_from_tree (offset, 0));
7840 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
7843 if (addressp)
7845 /* We cannot address anything not on a unit boundary. */
7846 if (bitpos % BITS_PER_UNIT != 0)
7847 abort ();
7849 else
7851 if (bitpos % BITS_PER_UNIT != 0
7852 || bitsize % BITS_PER_UNIT != 0)
7854 /* ??? We could handle this by loading and shifting etc.
7855 Wait until someone needs it before expending the effort. */
7856 abort ();
7859 indirect_size = bitsize / BITS_PER_UNIT;
7862 bytepos = bitpos / BITS_PER_UNIT;
7863 if (bytepos > 0)
7864 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
7865 else if (bytepos < 0)
7867 add_loc_descr (&ret, int_loc_descriptor (bytepos));
7868 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
7870 break;
7873 case INTEGER_CST:
7874 if (host_integerp (loc, 0))
7875 ret = int_loc_descriptor (tree_low_cst (loc, 0));
7876 break;
7878 case BIT_AND_EXPR:
7879 op = DW_OP_and;
7880 goto do_binop;
7881 case BIT_XOR_EXPR:
7882 op = DW_OP_xor;
7883 goto do_binop;
7884 case BIT_IOR_EXPR:
7885 op = DW_OP_or;
7886 goto do_binop;
7887 case TRUNC_DIV_EXPR:
7888 op = DW_OP_div;
7889 goto do_binop;
7890 case MINUS_EXPR:
7891 op = DW_OP_minus;
7892 goto do_binop;
7893 case TRUNC_MOD_EXPR:
7894 op = DW_OP_mod;
7895 goto do_binop;
7896 case MULT_EXPR:
7897 op = DW_OP_mul;
7898 goto do_binop;
7899 case LSHIFT_EXPR:
7900 op = DW_OP_shl;
7901 goto do_binop;
7902 case RSHIFT_EXPR:
7903 op = (unsignedp ? DW_OP_shr : DW_OP_shra);
7904 goto do_binop;
7905 case PLUS_EXPR:
7906 if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
7907 && host_integerp (TREE_OPERAND (loc, 1), 0))
7909 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
7910 add_loc_descr (&ret,
7911 new_loc_descr (DW_OP_plus_uconst,
7912 tree_low_cst (TREE_OPERAND (loc, 1),
7914 0));
7915 break;
7917 op = DW_OP_plus;
7918 goto do_binop;
7919 case LE_EXPR:
7920 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
7921 break;
7922 op = DW_OP_le;
7923 goto do_binop;
7924 case GE_EXPR:
7925 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
7926 break;
7927 op = DW_OP_ge;
7928 goto do_binop;
7929 case LT_EXPR:
7930 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
7931 break;
7932 op = DW_OP_lt;
7933 goto do_binop;
7934 case GT_EXPR:
7935 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
7936 break;
7937 op = DW_OP_gt;
7938 goto do_binop;
7939 case EQ_EXPR:
7940 op = DW_OP_eq;
7941 goto do_binop;
7942 case NE_EXPR:
7943 op = DW_OP_ne;
7944 goto do_binop;
7946 do_binop:
7947 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
7948 add_loc_descr (&ret, loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0));
7949 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
7950 break;
7952 case BIT_NOT_EXPR:
7953 op = DW_OP_not;
7954 goto do_unop;
7955 case ABS_EXPR:
7956 op = DW_OP_abs;
7957 goto do_unop;
7958 case NEGATE_EXPR:
7959 op = DW_OP_neg;
7960 goto do_unop;
7962 do_unop:
7963 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
7964 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
7965 break;
7967 case MAX_EXPR:
7968 loc = build (COND_EXPR, TREE_TYPE (loc),
7969 build (LT_EXPR, integer_type_node,
7970 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
7971 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
7972 /* FALLTHRU */
7974 case COND_EXPR:
7976 dw_loc_descr_ref bra_node, jump_node, tmp;
7978 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
7979 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
7980 add_loc_descr (&ret, bra_node);
7982 tmp = loc_descriptor_from_tree (TREE_OPERAND (loc, 2), 0);
7983 add_loc_descr (&ret, tmp);
7984 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
7985 add_loc_descr (&ret, jump_node);
7987 tmp = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
7988 add_loc_descr (&ret, tmp);
7989 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
7990 bra_node->dw_loc_oprnd1.v.val_loc = tmp;
7992 /* ??? Need a node to point the skip at. Use a nop. */
7993 tmp = new_loc_descr (DW_OP_nop, 0, 0);
7994 add_loc_descr (&ret, tmp);
7995 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
7996 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
7998 break;
8000 default:
8001 abort ();
8004 /* If we can't fill the request for an address, die. */
8005 if (addressp && indirect_size == 0)
8006 abort ();
8008 /* If we've got an address and don't want one, dereference. */
8009 if (!addressp && indirect_size > 0)
8011 if (indirect_size > DWARF2_ADDR_SIZE)
8012 abort ();
8013 if (indirect_size == DWARF2_ADDR_SIZE)
8014 op = DW_OP_deref;
8015 else
8016 op = DW_OP_deref_size;
8017 add_loc_descr (&ret, new_loc_descr (op, indirect_size, 0));
8020 return ret;
8023 /* Given a value, round it up to the lowest multiple of `boundary'
8024 which is not less than the value itself. */
8026 static inline HOST_WIDE_INT
8027 ceiling (value, boundary)
8028 HOST_WIDE_INT value;
8029 unsigned int boundary;
8031 return (((value + boundary - 1) / boundary) * boundary);
8034 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
8035 pointer to the declared type for the relevant field variable, or return
8036 `integer_type_node' if the given node turns out to be an
8037 ERROR_MARK node. */
8039 static inline tree
8040 field_type (decl)
8041 tree decl;
8043 tree type;
8045 if (TREE_CODE (decl) == ERROR_MARK)
8046 return integer_type_node;
8048 type = DECL_BIT_FIELD_TYPE (decl);
8049 if (type == NULL_TREE)
8050 type = TREE_TYPE (decl);
8052 return type;
8055 /* Given a pointer to a tree node, return the alignment in bits for
8056 it, or else return BITS_PER_WORD if the node actually turns out to
8057 be an ERROR_MARK node. */
8059 static inline unsigned
8060 simple_type_align_in_bits (type)
8061 tree type;
8063 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
8066 static inline unsigned
8067 simple_decl_align_in_bits (decl)
8068 tree decl;
8070 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
8073 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8074 node, return the size in bits for the type if it is a constant, or else
8075 return the alignment for the type if the type's size is not constant, or
8076 else return BITS_PER_WORD if the type actually turns out to be an
8077 ERROR_MARK node. */
8079 static inline unsigned HOST_WIDE_INT
8080 simple_type_size_in_bits (type)
8081 tree type;
8083 tree type_size_tree;
8085 if (TREE_CODE (type) == ERROR_MARK)
8086 return BITS_PER_WORD;
8087 type_size_tree = TYPE_SIZE (type);
8089 if (type_size_tree == NULL_TREE)
8090 return 0;
8091 if (! host_integerp (type_size_tree, 1))
8092 return TYPE_ALIGN (type);
8093 return tree_low_cst (type_size_tree, 1);
8096 /* Given a pointer to what is assumed to be a FIELD_DECL node, compute and
8097 return the byte offset of the lowest addressed byte of the "containing
8098 object" for the given FIELD_DECL, or return 0 if we are unable to
8099 determine what that offset is, either because the argument turns out to
8100 be a pointer to an ERROR_MARK node, or because the offset is actually
8101 variable. (We can't handle the latter case just yet). */
8103 static HOST_WIDE_INT
8104 field_byte_offset (decl)
8105 tree decl;
8107 unsigned int type_align_in_bits;
8108 unsigned int decl_align_in_bits;
8109 unsigned HOST_WIDE_INT type_size_in_bits;
8110 HOST_WIDE_INT object_offset_in_bits;
8111 HOST_WIDE_INT object_offset_in_bytes;
8112 tree type;
8113 tree field_size_tree;
8114 HOST_WIDE_INT bitpos_int;
8115 HOST_WIDE_INT deepest_bitpos;
8116 unsigned HOST_WIDE_INT field_size_in_bits;
8118 if (TREE_CODE (decl) == ERROR_MARK)
8119 return 0;
8121 if (TREE_CODE (decl) != FIELD_DECL)
8122 abort ();
8124 type = field_type (decl);
8125 field_size_tree = DECL_SIZE (decl);
8127 /* The size could be unspecified if there was an error, or for
8128 a flexible array member. */
8129 if (! field_size_tree)
8130 field_size_tree = bitsize_zero_node;
8132 /* We cannot yet cope with fields whose positions are variable, so
8133 for now, when we see such things, we simply return 0. Someday, we may
8134 be able to handle such cases, but it will be damn difficult. */
8135 if (! host_integerp (bit_position (decl), 0))
8136 return 0;
8138 bitpos_int = int_bit_position (decl);
8140 /* If we don't know the size of the field, pretend it's a full word. */
8141 if (host_integerp (field_size_tree, 1))
8142 field_size_in_bits = tree_low_cst (field_size_tree, 1);
8143 else
8144 field_size_in_bits = BITS_PER_WORD;
8146 type_size_in_bits = simple_type_size_in_bits (type);
8147 type_align_in_bits = simple_type_align_in_bits (type);
8148 decl_align_in_bits = simple_decl_align_in_bits (decl);
8150 /* Note that the GCC front-end doesn't make any attempt to keep track of
8151 the starting bit offset (relative to the start of the containing
8152 structure type) of the hypothetical "containing object" for a bit-
8153 field. Thus, when computing the byte offset value for the start of the
8154 "containing object" of a bit-field, we must deduce this information on
8155 our own. This can be rather tricky to do in some cases. For example,
8156 handling the following structure type definition when compiling for an
8157 i386/i486 target (which only aligns long long's to 32-bit boundaries)
8158 can be very tricky:
8160 struct S { int field1; long long field2:31; };
8162 Fortunately, there is a simple rule-of-thumb which can be
8163 used in such cases. When compiling for an i386/i486, GCC will allocate
8164 8 bytes for the structure shown above. It decides to do this based upon
8165 one simple rule for bit-field allocation. Quite simply, GCC allocates
8166 each "containing object" for each bit-field at the first (i.e. lowest
8167 addressed) legitimate alignment boundary (based upon the required
8168 minimum alignment for the declared type of the field) which it can
8169 possibly use, subject to the condition that there is still enough
8170 available space remaining in the containing object (when allocated at
8171 the selected point) to fully accommodate all of the bits of the
8172 bit-field itself. This simple rule makes it obvious why GCC allocates
8173 8 bytes for each object of the structure type shown above. When looking
8174 for a place to allocate the "containing object" for `field2', the
8175 compiler simply tries to allocate a 64-bit "containing object" at each
8176 successive 32-bit boundary (starting at zero) until it finds a place to
8177 allocate that 64- bit field such that at least 31 contiguous (and
8178 previously unallocated) bits remain within that selected 64 bit field.
8179 (As it turns out, for the example above, the compiler finds that it is
8180 OK to allocate the "containing object" 64-bit field at bit-offset zero
8181 within the structure type.) Here we attempt to work backwards from the
8182 limited set of facts we're given, and we try to deduce from those facts,
8183 where GCC must have believed that the containing object started (within
8184 the structure type). The value we deduce is then used (by the callers of
8185 this routine) to generate DW_AT_location and DW_AT_bit_offset attributes
8186 for fields (both bit-fields and, in the case of DW_AT_location, regular
8187 fields as well). */
8189 /* Figure out the bit-distance from the start of the structure to the
8190 "deepest" bit of the bit-field. */
8191 deepest_bitpos = bitpos_int + field_size_in_bits;
8193 /* This is the tricky part. Use some fancy footwork to deduce where the
8194 lowest addressed bit of the containing object must be. */
8195 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
8197 /* Round up to type_align by default. This works best for bitfields. */
8198 object_offset_in_bits += type_align_in_bits - 1;
8199 object_offset_in_bits /= type_align_in_bits;
8200 object_offset_in_bits *= type_align_in_bits;
8202 if (object_offset_in_bits > bitpos_int)
8204 /* Sigh, the decl must be packed. */
8205 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
8207 /* Round up to decl_align instead. */
8208 object_offset_in_bits += decl_align_in_bits - 1;
8209 object_offset_in_bits /= decl_align_in_bits;
8210 object_offset_in_bits *= decl_align_in_bits;
8213 object_offset_in_bytes = object_offset_in_bits / BITS_PER_UNIT;
8215 return object_offset_in_bytes;
8218 /* The following routines define various Dwarf attributes and any data
8219 associated with them. */
8221 /* Add a location description attribute value to a DIE.
8223 This emits location attributes suitable for whole variables and
8224 whole parameters. Note that the location attributes for struct fields are
8225 generated by the routine `data_member_location_attribute' below. */
8227 static void
8228 add_AT_location_description (die, attr_kind, rtl)
8229 dw_die_ref die;
8230 enum dwarf_attribute attr_kind;
8231 rtx rtl;
8233 /* Handle a special case. If we are about to output a location descriptor
8234 for a variable or parameter which has been optimized out of existence,
8235 don't do that. A variable which has been optimized out
8236 of existence will have a DECL_RTL value which denotes a pseudo-reg.
8237 Currently, in some rare cases, variables can have DECL_RTL values which
8238 look like (MEM (REG pseudo-reg#)). These cases are due to bugs
8239 elsewhere in the compiler. We treat such cases as if the variable(s) in
8240 question had been optimized out of existence. */
8242 if (is_pseudo_reg (rtl)
8243 || (GET_CODE (rtl) == MEM
8244 && is_pseudo_reg (XEXP (rtl, 0)))
8245 /* This can happen for a PARM_DECL with a DECL_INCOMING_RTL which
8246 references the internal argument pointer (a pseudo) in a function
8247 where all references to the internal argument pointer were
8248 eliminated via the optimizers. */
8249 || (GET_CODE (rtl) == MEM
8250 && GET_CODE (XEXP (rtl, 0)) == PLUS
8251 && is_pseudo_reg (XEXP (XEXP (rtl, 0), 0)))
8252 || (GET_CODE (rtl) == CONCAT
8253 && is_pseudo_reg (XEXP (rtl, 0))
8254 && is_pseudo_reg (XEXP (rtl, 1))))
8255 return;
8257 add_AT_loc (die, attr_kind, loc_descriptor (rtl));
8260 /* Attach the specialized form of location attribute used for data
8261 members of struct and union types. In the special case of a
8262 FIELD_DECL node which represents a bit-field, the "offset" part
8263 of this special location descriptor must indicate the distance
8264 in bytes from the lowest-addressed byte of the containing struct
8265 or union type to the lowest-addressed byte of the "containing
8266 object" for the bit-field. (See the `field_byte_offset' function
8267 above).. For any given bit-field, the "containing object" is a
8268 hypothetical object (of some integral or enum type) within which
8269 the given bit-field lives. The type of this hypothetical
8270 "containing object" is always the same as the declared type of
8271 the individual bit-field itself (for GCC anyway... the DWARF
8272 spec doesn't actually mandate this). Note that it is the size
8273 (in bytes) of the hypothetical "containing object" which will
8274 be given in the DW_AT_byte_size attribute for this bit-field.
8275 (See the `byte_size_attribute' function below.) It is also used
8276 when calculating the value of the DW_AT_bit_offset attribute.
8277 (See the `bit_offset_attribute' function below). */
8279 static void
8280 add_data_member_location_attribute (die, decl)
8281 dw_die_ref die;
8282 tree decl;
8284 unsigned long offset;
8285 dw_loc_descr_ref loc_descr;
8286 enum dwarf_location_atom op;
8288 if (TREE_CODE (decl) == TREE_VEC)
8289 offset = tree_low_cst (BINFO_OFFSET (decl), 0);
8290 else
8291 offset = field_byte_offset (decl);
8293 /* The DWARF2 standard says that we should assume that the structure address
8294 is already on the stack, so we can specify a structure field address
8295 by using DW_OP_plus_uconst. */
8297 #ifdef MIPS_DEBUGGING_INFO
8298 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst operator
8299 correctly. It works only if we leave the offset on the stack. */
8300 op = DW_OP_constu;
8301 #else
8302 op = DW_OP_plus_uconst;
8303 #endif
8305 loc_descr = new_loc_descr (op, offset, 0);
8306 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
8309 /* Attach an DW_AT_const_value attribute for a variable or a parameter which
8310 does not have a "location" either in memory or in a register. These
8311 things can arise in GNU C when a constant is passed as an actual parameter
8312 to an inlined function. They can also arise in C++ where declared
8313 constants do not necessarily get memory "homes". */
8315 static void
8316 add_const_value_attribute (die, rtl)
8317 dw_die_ref die;
8318 rtx rtl;
8320 switch (GET_CODE (rtl))
8322 case CONST_INT:
8323 /* Note that a CONST_INT rtx could represent either an integer
8324 or a floating-point constant. A CONST_INT is used whenever
8325 the constant will fit into a single word. In all such
8326 cases, the original mode of the constant value is wiped
8327 out, and the CONST_INT rtx is assigned VOIDmode. */
8329 HOST_WIDE_INT val = INTVAL (rtl);
8331 /* ??? We really should be using HOST_WIDE_INT throughout. */
8332 if (val < 0 && (long) val == val)
8333 add_AT_int (die, DW_AT_const_value, (long) val);
8334 else if ((unsigned long) val == (unsigned HOST_WIDE_INT) val)
8335 add_AT_unsigned (die, DW_AT_const_value, (unsigned long) val);
8336 else if (2*HOST_BITS_PER_LONG == HOST_BITS_PER_WIDE_INT)
8337 add_AT_long_long (die, DW_AT_const_value,
8338 val >> HOST_BITS_PER_LONG, val);
8339 else
8340 abort ();
8342 break;
8344 case CONST_DOUBLE:
8345 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
8346 floating-point constant. A CONST_DOUBLE is used whenever the
8347 constant requires more than one word in order to be adequately
8348 represented. We output CONST_DOUBLEs as blocks. */
8350 enum machine_mode mode = GET_MODE (rtl);
8352 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
8354 unsigned length = GET_MODE_SIZE (mode) / 4;
8355 long *array = (long *) xmalloc (sizeof (long) * length);
8356 REAL_VALUE_TYPE rv;
8358 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
8359 switch (mode)
8361 case SFmode:
8362 REAL_VALUE_TO_TARGET_SINGLE (rv, array[0]);
8363 break;
8365 case DFmode:
8366 REAL_VALUE_TO_TARGET_DOUBLE (rv, array);
8367 break;
8369 case XFmode:
8370 case TFmode:
8371 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, array);
8372 break;
8374 default:
8375 abort ();
8378 add_AT_float (die, DW_AT_const_value, length, array);
8380 else
8382 /* ??? We really should be using HOST_WIDE_INT throughout. */
8383 if (HOST_BITS_PER_LONG != HOST_BITS_PER_WIDE_INT)
8384 abort ();
8385 add_AT_long_long (die, DW_AT_const_value,
8386 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
8389 break;
8391 case CONST_STRING:
8392 add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
8393 break;
8395 case SYMBOL_REF:
8396 case LABEL_REF:
8397 case CONST:
8398 add_AT_addr (die, DW_AT_const_value, save_rtx (rtl));
8399 break;
8401 case PLUS:
8402 /* In cases where an inlined instance of an inline function is passed
8403 the address of an `auto' variable (which is local to the caller) we
8404 can get a situation where the DECL_RTL of the artificial local
8405 variable (for the inlining) which acts as a stand-in for the
8406 corresponding formal parameter (of the inline function) will look
8407 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
8408 exactly a compile-time constant expression, but it isn't the address
8409 of the (artificial) local variable either. Rather, it represents the
8410 *value* which the artificial local variable always has during its
8411 lifetime. We currently have no way to represent such quasi-constant
8412 values in Dwarf, so for now we just punt and generate nothing. */
8413 break;
8415 default:
8416 /* No other kinds of rtx should be possible here. */
8417 abort ();
8422 static rtx
8423 rtl_for_decl_location (decl)
8424 tree decl;
8426 rtx rtl;
8428 /* Here we have to decide where we are going to say the parameter "lives"
8429 (as far as the debugger is concerned). We only have a couple of
8430 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
8432 DECL_RTL normally indicates where the parameter lives during most of the
8433 activation of the function. If optimization is enabled however, this
8434 could be either NULL or else a pseudo-reg. Both of those cases indicate
8435 that the parameter doesn't really live anywhere (as far as the code
8436 generation parts of GCC are concerned) during most of the function's
8437 activation. That will happen (for example) if the parameter is never
8438 referenced within the function.
8440 We could just generate a location descriptor here for all non-NULL
8441 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
8442 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
8443 where DECL_RTL is NULL or is a pseudo-reg.
8445 Note however that we can only get away with using DECL_INCOMING_RTL as
8446 a backup substitute for DECL_RTL in certain limited cases. In cases
8447 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
8448 we can be sure that the parameter was passed using the same type as it is
8449 declared to have within the function, and that its DECL_INCOMING_RTL
8450 points us to a place where a value of that type is passed.
8452 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
8453 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
8454 because in these cases DECL_INCOMING_RTL points us to a value of some
8455 type which is *different* from the type of the parameter itself. Thus,
8456 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
8457 such cases, the debugger would end up (for example) trying to fetch a
8458 `float' from a place which actually contains the first part of a
8459 `double'. That would lead to really incorrect and confusing
8460 output at debug-time.
8462 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
8463 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
8464 are a couple of exceptions however. On little-endian machines we can
8465 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
8466 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
8467 an integral type that is smaller than TREE_TYPE (decl). These cases arise
8468 when (on a little-endian machine) a non-prototyped function has a
8469 parameter declared to be of type `short' or `char'. In such cases,
8470 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
8471 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
8472 passed `int' value. If the debugger then uses that address to fetch
8473 a `short' or a `char' (on a little-endian machine) the result will be
8474 the correct data, so we allow for such exceptional cases below.
8476 Note that our goal here is to describe the place where the given formal
8477 parameter lives during most of the function's activation (i.e. between
8478 the end of the prologue and the start of the epilogue). We'll do that
8479 as best as we can. Note however that if the given formal parameter is
8480 modified sometime during the execution of the function, then a stack
8481 backtrace (at debug-time) will show the function as having been
8482 called with the *new* value rather than the value which was
8483 originally passed in. This happens rarely enough that it is not
8484 a major problem, but it *is* a problem, and I'd like to fix it.
8486 A future version of dwarf2out.c may generate two additional
8487 attributes for any given DW_TAG_formal_parameter DIE which will
8488 describe the "passed type" and the "passed location" for the
8489 given formal parameter in addition to the attributes we now
8490 generate to indicate the "declared type" and the "active
8491 location" for each parameter. This additional set of attributes
8492 could be used by debuggers for stack backtraces. Separately, note
8493 that sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be
8494 NULL also. This happens (for example) for inlined-instances of
8495 inline function formal parameters which are never referenced.
8496 This really shouldn't be happening. All PARM_DECL nodes should
8497 get valid non-NULL DECL_INCOMING_RTL values, but integrate.c
8498 doesn't currently generate these values for inlined instances of
8499 inline function parameters, so when we see such cases, we are
8500 just out-of-luck for the time being (until integrate.c
8501 gets fixed). */
8503 /* Use DECL_RTL as the "location" unless we find something better. */
8504 rtl = DECL_RTL_IF_SET (decl);
8506 if (TREE_CODE (decl) == PARM_DECL)
8508 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
8510 tree declared_type = type_main_variant (TREE_TYPE (decl));
8511 tree passed_type = type_main_variant (DECL_ARG_TYPE (decl));
8513 /* This decl represents a formal parameter which was optimized out.
8514 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
8515 all* cases where (rtl == NULL_RTX) just below. */
8516 if (declared_type == passed_type)
8517 rtl = DECL_INCOMING_RTL (decl);
8518 else if (! BYTES_BIG_ENDIAN
8519 && TREE_CODE (declared_type) == INTEGER_TYPE
8520 && (GET_MODE_SIZE (TYPE_MODE (declared_type))
8521 <= GET_MODE_SIZE (TYPE_MODE (passed_type))))
8522 rtl = DECL_INCOMING_RTL (decl);
8525 /* If the parm was passed in registers, but lives on the stack, then
8526 make a big endian correction if the mode of the type of the
8527 parameter is not the same as the mode of the rtl. */
8528 /* ??? This is the same series of checks that are made in dbxout.c before
8529 we reach the big endian correction code there. It isn't clear if all
8530 of these checks are necessary here, but keeping them all is the safe
8531 thing to do. */
8532 else if (GET_CODE (rtl) == MEM
8533 && XEXP (rtl, 0) != const0_rtx
8534 && ! CONSTANT_P (XEXP (rtl, 0))
8535 /* Not passed in memory. */
8536 && GET_CODE (DECL_INCOMING_RTL (decl)) != MEM
8537 /* Not passed by invisible reference. */
8538 && (GET_CODE (XEXP (rtl, 0)) != REG
8539 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
8540 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
8541 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
8542 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
8543 #endif
8545 /* Big endian correction check. */
8546 && BYTES_BIG_ENDIAN
8547 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
8548 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
8549 < UNITS_PER_WORD))
8551 int offset = (UNITS_PER_WORD
8552 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
8553 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
8554 plus_constant (XEXP (rtl, 0), offset));
8558 if (rtl != NULL_RTX)
8560 rtl = eliminate_regs (rtl, 0, NULL_RTX);
8561 #ifdef LEAF_REG_REMAP
8562 if (current_function_uses_only_leaf_regs)
8563 leaf_renumber_regs_insn (rtl);
8564 #endif
8567 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time
8568 constant, and will have been substituted directly into all
8569 expressions that use it. C does not have such a concept, but
8570 C++ and other languages do. */
8571 else if (DECL_INITIAL (decl))
8573 rtl = expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
8574 EXPAND_INITIALIZER);
8577 return rtl;
8580 /* Generate *either* an DW_AT_location attribute or else an DW_AT_const_value
8581 data attribute for a variable or a parameter. We generate the
8582 DW_AT_const_value attribute only in those cases where the given variable
8583 or parameter does not have a true "location" either in memory or in a
8584 register. This can happen (for example) when a constant is passed as an
8585 actual argument in a call to an inline function. (It's possible that
8586 these things can crop up in other ways also.) Note that one type of
8587 constant value which can be passed into an inlined function is a constant
8588 pointer. This can happen for example if an actual argument in an inlined
8589 function call evaluates to a compile-time constant address. */
8591 static void
8592 add_location_or_const_value_attribute (die, decl)
8593 dw_die_ref die;
8594 tree decl;
8596 rtx rtl;
8598 if (TREE_CODE (decl) == ERROR_MARK)
8599 return;
8601 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
8602 abort ();
8604 rtl = rtl_for_decl_location (decl);
8605 if (rtl == NULL_RTX)
8606 return;
8608 /* If we don't look past the constant pool, we risk emitting a
8609 reference to a constant pool entry that isn't referenced from
8610 code, and thus is not emitted. */
8611 rtl = avoid_constant_pool_reference (rtl);
8613 switch (GET_CODE (rtl))
8615 case ADDRESSOF:
8616 /* The address of a variable that was optimized away; don't emit
8617 anything. */
8618 break;
8620 case CONST_INT:
8621 case CONST_DOUBLE:
8622 case CONST_STRING:
8623 case SYMBOL_REF:
8624 case LABEL_REF:
8625 case CONST:
8626 case PLUS:
8627 /* DECL_RTL could be (plus (reg ...) (const_int ...)) */
8628 add_const_value_attribute (die, rtl);
8629 break;
8631 case MEM:
8632 case REG:
8633 case SUBREG:
8634 case CONCAT:
8635 add_AT_location_description (die, DW_AT_location, rtl);
8636 break;
8638 default:
8639 abort ();
8643 /* If we don't have a copy of this variable in memory for some reason (such
8644 as a C++ member constant that doesn't have an out-of-line definition),
8645 we should tell the debugger about the constant value. */
8647 static void
8648 tree_add_const_value_attribute (var_die, decl)
8649 dw_die_ref var_die;
8650 tree decl;
8652 tree init = DECL_INITIAL (decl);
8653 tree type = TREE_TYPE (decl);
8655 if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init
8656 && initializer_constant_valid_p (init, type) == null_pointer_node)
8657 /* OK */;
8658 else
8659 return;
8661 switch (TREE_CODE (type))
8663 case INTEGER_TYPE:
8664 if (host_integerp (init, 0))
8665 add_AT_unsigned (var_die, DW_AT_const_value,
8666 TREE_INT_CST_LOW (init));
8667 else
8668 add_AT_long_long (var_die, DW_AT_const_value,
8669 TREE_INT_CST_HIGH (init),
8670 TREE_INT_CST_LOW (init));
8671 break;
8673 default:;
8677 /* Generate an DW_AT_name attribute given some string value to be included as
8678 the value of the attribute. */
8680 static inline void
8681 add_name_attribute (die, name_string)
8682 dw_die_ref die;
8683 const char *name_string;
8685 if (name_string != NULL && *name_string != 0)
8687 if (demangle_name_func)
8688 name_string = (*demangle_name_func) (name_string);
8690 add_AT_string (die, DW_AT_name, name_string);
8694 /* Given a tree node describing an array bound (either lower or upper) output
8695 a representation for that bound. */
8697 static void
8698 add_bound_info (subrange_die, bound_attr, bound)
8699 dw_die_ref subrange_die;
8700 enum dwarf_attribute bound_attr;
8701 tree bound;
8703 /* If this is an Ada unconstrained array type, then don't emit any debug
8704 info because the array bounds are unknown. They are parameterized when
8705 the type is instantiated. */
8706 if (contains_placeholder_p (bound))
8707 return;
8709 switch (TREE_CODE (bound))
8711 case ERROR_MARK:
8712 return;
8714 /* All fixed-bounds are represented by INTEGER_CST nodes. */
8715 case INTEGER_CST:
8716 if (! host_integerp (bound, 0)
8717 || (bound_attr == DW_AT_lower_bound
8718 && (((is_c_family () || is_java ()) && integer_zerop (bound))
8719 || (is_fortran () && integer_onep (bound)))))
8720 /* use the default */
8722 else
8723 add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
8724 break;
8726 case CONVERT_EXPR:
8727 case NOP_EXPR:
8728 case NON_LVALUE_EXPR:
8729 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
8730 break;
8732 case SAVE_EXPR:
8733 /* If optimization is turned on, the SAVE_EXPRs that describe how to
8734 access the upper bound values may be bogus. If they refer to a
8735 register, they may only describe how to get at these values at the
8736 points in the generated code right after they have just been
8737 computed. Worse yet, in the typical case, the upper bound values
8738 will not even *be* computed in the optimized code (though the
8739 number of elements will), so these SAVE_EXPRs are entirely
8740 bogus. In order to compensate for this fact, we check here to see
8741 if optimization is enabled, and if so, we don't add an attribute
8742 for the (unknown and unknowable) upper bound. This should not
8743 cause too much trouble for existing (stupid?) debuggers because
8744 they have to deal with empty upper bounds location descriptions
8745 anyway in order to be able to deal with incomplete array types.
8746 Of course an intelligent debugger (GDB?) should be able to
8747 comprehend that a missing upper bound specification in an array
8748 type used for a storage class `auto' local array variable
8749 indicates that the upper bound is both unknown (at compile- time)
8750 and unknowable (at run-time) due to optimization.
8752 We assume that a MEM rtx is safe because gcc wouldn't put the
8753 value there unless it was going to be used repeatedly in the
8754 function, i.e. for cleanups. */
8755 if (SAVE_EXPR_RTL (bound)
8756 && (! optimize || GET_CODE (SAVE_EXPR_RTL (bound)) == MEM))
8758 dw_die_ref ctx = lookup_decl_die (current_function_decl);
8759 dw_die_ref decl_die = new_die (DW_TAG_variable, ctx);
8760 rtx loc = SAVE_EXPR_RTL (bound);
8762 /* If the RTL for the SAVE_EXPR is memory, handle the case where
8763 it references an outer function's frame. */
8765 if (GET_CODE (loc) == MEM)
8767 rtx new_addr = fix_lexical_addr (XEXP (loc, 0), bound);
8769 if (XEXP (loc, 0) != new_addr)
8770 loc = gen_rtx_MEM (GET_MODE (loc), new_addr);
8773 add_AT_flag (decl_die, DW_AT_artificial, 1);
8774 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
8775 add_AT_location_description (decl_die, DW_AT_location, loc);
8776 add_AT_die_ref (subrange_die, bound_attr, decl_die);
8779 /* Else leave out the attribute. */
8780 break;
8782 case VAR_DECL:
8783 case PARM_DECL:
8785 dw_die_ref decl_die = lookup_decl_die (bound);
8787 /* ??? Can this happen, or should the variable have been bound
8788 first? Probably it can, since I imagine that we try to create
8789 the types of parameters in the order in which they exist in
8790 the list, and won't have created a forward reference to a
8791 later parameter. */
8792 if (decl_die != NULL)
8793 add_AT_die_ref (subrange_die, bound_attr, decl_die);
8794 break;
8797 default:
8799 /* Otherwise try to create a stack operation procedure to
8800 evaluate the value of the array bound. */
8802 dw_die_ref ctx, decl_die;
8803 dw_loc_descr_ref loc;
8805 loc = loc_descriptor_from_tree (bound, 0);
8806 if (loc == NULL)
8807 break;
8809 ctx = lookup_decl_die (current_function_decl);
8811 decl_die = new_die (DW_TAG_variable, ctx);
8812 add_AT_flag (decl_die, DW_AT_artificial, 1);
8813 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
8814 add_AT_loc (decl_die, DW_AT_location, loc);
8816 add_AT_die_ref (subrange_die, bound_attr, decl_die);
8817 break;
8822 /* Note that the block of subscript information for an array type also
8823 includes information about the element type of type given array type. */
8825 static void
8826 add_subscript_info (type_die, type)
8827 dw_die_ref type_die;
8828 tree type;
8830 #ifndef MIPS_DEBUGGING_INFO
8831 unsigned dimension_number;
8832 #endif
8833 tree lower, upper;
8834 dw_die_ref subrange_die;
8836 /* The GNU compilers represent multidimensional array types as sequences of
8837 one dimensional array types whose element types are themselves array
8838 types. Here we squish that down, so that each multidimensional array
8839 type gets only one array_type DIE in the Dwarf debugging info. The draft
8840 Dwarf specification say that we are allowed to do this kind of
8841 compression in C (because there is no difference between an array or
8842 arrays and a multidimensional array in C) but for other source languages
8843 (e.g. Ada) we probably shouldn't do this. */
8845 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
8846 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
8847 We work around this by disabling this feature. See also
8848 gen_array_type_die. */
8849 #ifndef MIPS_DEBUGGING_INFO
8850 for (dimension_number = 0;
8851 TREE_CODE (type) == ARRAY_TYPE;
8852 type = TREE_TYPE (type), dimension_number++)
8854 #endif
8855 tree domain = TYPE_DOMAIN (type);
8857 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
8858 and (in GNU C only) variable bounds. Handle all three forms
8859 here. */
8860 subrange_die = new_die (DW_TAG_subrange_type, type_die);
8861 if (domain)
8863 /* We have an array type with specified bounds. */
8864 lower = TYPE_MIN_VALUE (domain);
8865 upper = TYPE_MAX_VALUE (domain);
8867 /* define the index type. */
8868 if (TREE_TYPE (domain))
8870 /* ??? This is probably an Ada unnamed subrange type. Ignore the
8871 TREE_TYPE field. We can't emit debug info for this
8872 because it is an unnamed integral type. */
8873 if (TREE_CODE (domain) == INTEGER_TYPE
8874 && TYPE_NAME (domain) == NULL_TREE
8875 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
8876 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
8878 else
8879 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
8880 type_die);
8883 /* ??? If upper is NULL, the array has unspecified length,
8884 but it does have a lower bound. This happens with Fortran
8885 dimension arr(N:*)
8886 Since the debugger is definitely going to need to know N
8887 to produce useful results, go ahead and output the lower
8888 bound solo, and hope the debugger can cope. */
8890 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
8891 if (upper)
8892 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
8894 else
8895 /* We have an array type with an unspecified length. The DWARF-2
8896 spec does not say how to handle this; let's just leave out the
8897 bounds. */
8900 #ifndef MIPS_DEBUGGING_INFO
8902 #endif
8905 static void
8906 add_byte_size_attribute (die, tree_node)
8907 dw_die_ref die;
8908 tree tree_node;
8910 unsigned size;
8912 switch (TREE_CODE (tree_node))
8914 case ERROR_MARK:
8915 size = 0;
8916 break;
8917 case ENUMERAL_TYPE:
8918 case RECORD_TYPE:
8919 case UNION_TYPE:
8920 case QUAL_UNION_TYPE:
8921 size = int_size_in_bytes (tree_node);
8922 break;
8923 case FIELD_DECL:
8924 /* For a data member of a struct or union, the DW_AT_byte_size is
8925 generally given as the number of bytes normally allocated for an
8926 object of the *declared* type of the member itself. This is true
8927 even for bit-fields. */
8928 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
8929 break;
8930 default:
8931 abort ();
8934 /* Note that `size' might be -1 when we get to this point. If it is, that
8935 indicates that the byte size of the entity in question is variable. We
8936 have no good way of expressing this fact in Dwarf at the present time,
8937 so just let the -1 pass on through. */
8939 add_AT_unsigned (die, DW_AT_byte_size, size);
8942 /* For a FIELD_DECL node which represents a bit-field, output an attribute
8943 which specifies the distance in bits from the highest order bit of the
8944 "containing object" for the bit-field to the highest order bit of the
8945 bit-field itself.
8947 For any given bit-field, the "containing object" is a hypothetical
8948 object (of some integral or enum type) within which the given bit-field
8949 lives. The type of this hypothetical "containing object" is always the
8950 same as the declared type of the individual bit-field itself. The
8951 determination of the exact location of the "containing object" for a
8952 bit-field is rather complicated. It's handled by the
8953 `field_byte_offset' function (above).
8955 Note that it is the size (in bytes) of the hypothetical "containing object"
8956 which will be given in the DW_AT_byte_size attribute for this bit-field.
8957 (See `byte_size_attribute' above). */
8959 static inline void
8960 add_bit_offset_attribute (die, decl)
8961 dw_die_ref die;
8962 tree decl;
8964 HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
8965 tree type = DECL_BIT_FIELD_TYPE (decl);
8966 HOST_WIDE_INT bitpos_int;
8967 HOST_WIDE_INT highest_order_object_bit_offset;
8968 HOST_WIDE_INT highest_order_field_bit_offset;
8969 HOST_WIDE_INT unsigned bit_offset;
8971 /* Must be a field and a bit field. */
8972 if (!type
8973 || TREE_CODE (decl) != FIELD_DECL)
8974 abort ();
8976 /* We can't yet handle bit-fields whose offsets are variable, so if we
8977 encounter such things, just return without generating any attribute
8978 whatsoever. Likewise for variable or too large size. */
8979 if (! host_integerp (bit_position (decl), 0)
8980 || ! host_integerp (DECL_SIZE (decl), 1))
8981 return;
8983 bitpos_int = int_bit_position (decl);
8985 /* Note that the bit offset is always the distance (in bits) from the
8986 highest-order bit of the "containing object" to the highest-order bit of
8987 the bit-field itself. Since the "high-order end" of any object or field
8988 is different on big-endian and little-endian machines, the computation
8989 below must take account of these differences. */
8990 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
8991 highest_order_field_bit_offset = bitpos_int;
8993 if (! BYTES_BIG_ENDIAN)
8995 highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
8996 highest_order_object_bit_offset += simple_type_size_in_bits (type);
8999 bit_offset
9000 = (! BYTES_BIG_ENDIAN
9001 ? highest_order_object_bit_offset - highest_order_field_bit_offset
9002 : highest_order_field_bit_offset - highest_order_object_bit_offset);
9004 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
9007 /* For a FIELD_DECL node which represents a bit field, output an attribute
9008 which specifies the length in bits of the given field. */
9010 static inline void
9011 add_bit_size_attribute (die, decl)
9012 dw_die_ref die;
9013 tree decl;
9015 /* Must be a field and a bit field. */
9016 if (TREE_CODE (decl) != FIELD_DECL
9017 || ! DECL_BIT_FIELD_TYPE (decl))
9018 abort ();
9020 if (host_integerp (DECL_SIZE (decl), 1))
9021 add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
9024 /* If the compiled language is ANSI C, then add a 'prototyped'
9025 attribute, if arg types are given for the parameters of a function. */
9027 static inline void
9028 add_prototyped_attribute (die, func_type)
9029 dw_die_ref die;
9030 tree func_type;
9032 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
9033 && TYPE_ARG_TYPES (func_type) != NULL)
9034 add_AT_flag (die, DW_AT_prototyped, 1);
9037 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
9038 by looking in either the type declaration or object declaration
9039 equate table. */
9041 static inline void
9042 add_abstract_origin_attribute (die, origin)
9043 dw_die_ref die;
9044 tree origin;
9046 dw_die_ref origin_die = NULL;
9048 if (TREE_CODE (origin) != FUNCTION_DECL)
9050 /* We may have gotten separated from the block for the inlined
9051 function, if we're in an exception handler or some such; make
9052 sure that the abstract function has been written out.
9054 Doing this for nested functions is wrong, however; functions are
9055 distinct units, and our context might not even be inline. */
9056 tree fn = origin;
9057 if (TYPE_P (fn))
9058 fn = TYPE_STUB_DECL (fn);
9059 fn = decl_function_context (fn);
9060 if (fn)
9061 dwarf2out_abstract_function (fn);
9064 if (DECL_P (origin))
9065 origin_die = lookup_decl_die (origin);
9066 else if (TYPE_P (origin))
9067 origin_die = lookup_type_die (origin);
9069 if (origin_die == NULL)
9070 abort ();
9072 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
9075 /* We do not currently support the pure_virtual attribute. */
9077 static inline void
9078 add_pure_or_virtual_attribute (die, func_decl)
9079 dw_die_ref die;
9080 tree func_decl;
9082 if (DECL_VINDEX (func_decl))
9084 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
9086 if (host_integerp (DECL_VINDEX (func_decl), 0))
9087 add_AT_loc (die, DW_AT_vtable_elem_location,
9088 new_loc_descr (DW_OP_constu,
9089 tree_low_cst (DECL_VINDEX (func_decl), 0),
9090 0));
9092 /* GNU extension: Record what type this method came from originally. */
9093 if (debug_info_level > DINFO_LEVEL_TERSE)
9094 add_AT_die_ref (die, DW_AT_containing_type,
9095 lookup_type_die (DECL_CONTEXT (func_decl)));
9099 /* Add source coordinate attributes for the given decl. */
9101 static void
9102 add_src_coords_attributes (die, decl)
9103 dw_die_ref die;
9104 tree decl;
9106 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
9108 add_AT_unsigned (die, DW_AT_decl_file, file_index);
9109 add_AT_unsigned (die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
9112 /* Add an DW_AT_name attribute and source coordinate attribute for the
9113 given decl, but only if it actually has a name. */
9115 static void
9116 add_name_and_src_coords_attributes (die, decl)
9117 dw_die_ref die;
9118 tree decl;
9120 tree decl_name;
9122 decl_name = DECL_NAME (decl);
9123 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
9125 add_name_attribute (die, dwarf2_name (decl, 0));
9126 if (! DECL_ARTIFICIAL (decl))
9127 add_src_coords_attributes (die, decl);
9129 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
9130 && TREE_PUBLIC (decl)
9131 && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
9132 && !DECL_ABSTRACT (decl))
9133 add_AT_string (die, DW_AT_MIPS_linkage_name,
9134 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
9138 /* Push a new declaration scope. */
9140 static void
9141 push_decl_scope (scope)
9142 tree scope;
9144 VARRAY_PUSH_TREE (decl_scope_table, scope);
9147 /* Pop a declaration scope. */
9148 static inline void
9149 pop_decl_scope ()
9151 if (VARRAY_ACTIVE_SIZE (decl_scope_table) <= 0)
9152 abort ();
9153 VARRAY_POP (decl_scope_table);
9156 /* Return the DIE for the scope that immediately contains this type.
9157 Non-named types get global scope. Named types nested in other
9158 types get their containing scope if it's open, or global scope
9159 otherwise. All other types (i.e. function-local named types) get
9160 the current active scope. */
9162 static dw_die_ref
9163 scope_die_for (t, context_die)
9164 tree t;
9165 dw_die_ref context_die;
9167 dw_die_ref scope_die = NULL;
9168 tree containing_scope;
9169 int i;
9171 /* Non-types always go in the current scope. */
9172 if (! TYPE_P (t))
9173 abort ();
9175 containing_scope = TYPE_CONTEXT (t);
9177 /* Ignore namespaces for the moment. */
9178 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
9179 containing_scope = NULL_TREE;
9181 /* Ignore function type "scopes" from the C frontend. They mean that
9182 a tagged type is local to a parmlist of a function declarator, but
9183 that isn't useful to DWARF. */
9184 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
9185 containing_scope = NULL_TREE;
9187 if (containing_scope == NULL_TREE)
9188 scope_die = comp_unit_die;
9189 else if (TYPE_P (containing_scope))
9191 /* For types, we can just look up the appropriate DIE. But
9192 first we check to see if we're in the middle of emitting it
9193 so we know where the new DIE should go. */
9195 for (i = VARRAY_ACTIVE_SIZE (decl_scope_table) - 1; i >= 0; --i)
9196 if (VARRAY_TREE (decl_scope_table, i) == containing_scope)
9197 break;
9199 if (i < 0)
9201 if (debug_info_level > DINFO_LEVEL_TERSE
9202 && !TREE_ASM_WRITTEN (containing_scope))
9203 abort ();
9205 /* If none of the current dies are suitable, we get file scope. */
9206 scope_die = comp_unit_die;
9208 else
9209 scope_die = lookup_type_die (containing_scope);
9211 else
9212 scope_die = context_die;
9214 return scope_die;
9217 /* Returns nonzero iff CONTEXT_DIE is internal to a function. */
9219 static inline int local_scope_p PARAMS ((dw_die_ref));
9220 static inline int
9221 local_scope_p (context_die)
9222 dw_die_ref context_die;
9224 for (; context_die; context_die = context_die->die_parent)
9225 if (context_die->die_tag == DW_TAG_inlined_subroutine
9226 || context_die->die_tag == DW_TAG_subprogram)
9227 return 1;
9228 return 0;
9231 /* Returns nonzero iff CONTEXT_DIE is a class. */
9233 static inline int class_scope_p PARAMS ((dw_die_ref));
9234 static inline int
9235 class_scope_p (context_die)
9236 dw_die_ref context_die;
9238 return (context_die
9239 && (context_die->die_tag == DW_TAG_structure_type
9240 || context_die->die_tag == DW_TAG_union_type));
9243 /* Many forms of DIEs require a "type description" attribute. This
9244 routine locates the proper "type descriptor" die for the type given
9245 by 'type', and adds an DW_AT_type attribute below the given die. */
9247 static void
9248 add_type_attribute (object_die, type, decl_const, decl_volatile, context_die)
9249 dw_die_ref object_die;
9250 tree type;
9251 int decl_const;
9252 int decl_volatile;
9253 dw_die_ref context_die;
9255 enum tree_code code = TREE_CODE (type);
9256 dw_die_ref type_die = NULL;
9258 /* ??? If this type is an unnamed subrange type of an integral or
9259 floating-point type, use the inner type. This is because we have no
9260 support for unnamed types in base_type_die. This can happen if this is
9261 an Ada subrange type. Correct solution is emit a subrange type die. */
9262 if ((code == INTEGER_TYPE || code == REAL_TYPE)
9263 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
9264 type = TREE_TYPE (type), code = TREE_CODE (type);
9266 if (code == ERROR_MARK)
9267 return;
9269 /* Handle a special case. For functions whose return type is void, we
9270 generate *no* type attribute. (Note that no object may have type
9271 `void', so this only applies to function return types). */
9272 if (code == VOID_TYPE)
9273 return;
9275 type_die = modified_type_die (type,
9276 decl_const || TYPE_READONLY (type),
9277 decl_volatile || TYPE_VOLATILE (type),
9278 context_die);
9279 if (type_die != NULL)
9280 add_AT_die_ref (object_die, DW_AT_type, type_die);
9283 /* Given a tree pointer to a struct, class, union, or enum type node, return
9284 a pointer to the (string) tag name for the given type, or zero if the type
9285 was declared without a tag. */
9287 static const char *
9288 type_tag (type)
9289 tree type;
9291 const char *name = 0;
9293 if (TYPE_NAME (type) != 0)
9295 tree t = 0;
9297 /* Find the IDENTIFIER_NODE for the type name. */
9298 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
9299 t = TYPE_NAME (type);
9301 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
9302 a TYPE_DECL node, regardless of whether or not a `typedef' was
9303 involved. */
9304 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
9305 && ! DECL_IGNORED_P (TYPE_NAME (type)))
9306 t = DECL_NAME (TYPE_NAME (type));
9308 /* Now get the name as a string, or invent one. */
9309 if (t != 0)
9310 name = IDENTIFIER_POINTER (t);
9313 return (name == 0 || *name == '\0') ? 0 : name;
9316 /* Return the type associated with a data member, make a special check
9317 for bit field types. */
9319 static inline tree
9320 member_declared_type (member)
9321 tree member;
9323 return (DECL_BIT_FIELD_TYPE (member)
9324 ? DECL_BIT_FIELD_TYPE (member)
9325 : TREE_TYPE (member));
9328 /* Get the decl's label, as described by its RTL. This may be different
9329 from the DECL_NAME name used in the source file. */
9331 #if 0
9332 static const char *
9333 decl_start_label (decl)
9334 tree decl;
9336 rtx x;
9337 const char *fnname;
9338 x = DECL_RTL (decl);
9339 if (GET_CODE (x) != MEM)
9340 abort ();
9342 x = XEXP (x, 0);
9343 if (GET_CODE (x) != SYMBOL_REF)
9344 abort ();
9346 fnname = XSTR (x, 0);
9347 return fnname;
9349 #endif
9351 /* These routines generate the internal representation of the DIE's for
9352 the compilation unit. Debugging information is collected by walking
9353 the declaration trees passed in from dwarf2out_decl(). */
9355 static void
9356 gen_array_type_die (type, context_die)
9357 tree type;
9358 dw_die_ref context_die;
9360 dw_die_ref scope_die = scope_die_for (type, context_die);
9361 dw_die_ref array_die;
9362 tree element_type;
9364 /* ??? The SGI dwarf reader fails for array of array of enum types unless
9365 the inner array type comes before the outer array type. Thus we must
9366 call gen_type_die before we call new_die. See below also. */
9367 #ifdef MIPS_DEBUGGING_INFO
9368 gen_type_die (TREE_TYPE (type), context_die);
9369 #endif
9371 array_die = new_die (DW_TAG_array_type, scope_die);
9373 #if 0
9374 /* We default the array ordering. SDB will probably do
9375 the right things even if DW_AT_ordering is not present. It's not even
9376 an issue until we start to get into multidimensional arrays anyway. If
9377 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
9378 then we'll have to put the DW_AT_ordering attribute back in. (But if
9379 and when we find out that we need to put these in, we will only do so
9380 for multidimensional arrays. */
9381 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
9382 #endif
9384 #ifdef MIPS_DEBUGGING_INFO
9385 /* The SGI compilers handle arrays of unknown bound by setting
9386 AT_declaration and not emitting any subrange DIEs. */
9387 if (! TYPE_DOMAIN (type))
9388 add_AT_unsigned (array_die, DW_AT_declaration, 1);
9389 else
9390 #endif
9391 add_subscript_info (array_die, type);
9393 add_name_attribute (array_die, type_tag (type));
9394 equate_type_number_to_die (type, array_die);
9396 /* Add representation of the type of the elements of this array type. */
9397 element_type = TREE_TYPE (type);
9399 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
9400 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
9401 We work around this by disabling this feature. See also
9402 add_subscript_info. */
9403 #ifndef MIPS_DEBUGGING_INFO
9404 while (TREE_CODE (element_type) == ARRAY_TYPE)
9405 element_type = TREE_TYPE (element_type);
9407 gen_type_die (element_type, context_die);
9408 #endif
9410 add_type_attribute (array_die, element_type, 0, 0, context_die);
9413 static void
9414 gen_set_type_die (type, context_die)
9415 tree type;
9416 dw_die_ref context_die;
9418 dw_die_ref type_die
9419 = new_die (DW_TAG_set_type, scope_die_for (type, context_die));
9421 equate_type_number_to_die (type, type_die);
9422 add_type_attribute (type_die, TREE_TYPE (type), 0, 0, context_die);
9425 #if 0
9426 static void
9427 gen_entry_point_die (decl, context_die)
9428 tree decl;
9429 dw_die_ref context_die;
9431 tree origin = decl_ultimate_origin (decl);
9432 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die);
9433 if (origin != NULL)
9434 add_abstract_origin_attribute (decl_die, origin);
9435 else
9437 add_name_and_src_coords_attributes (decl_die, decl);
9438 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
9439 0, 0, context_die);
9442 if (DECL_ABSTRACT (decl))
9443 equate_decl_number_to_die (decl, decl_die);
9444 else
9445 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
9447 #endif
9449 /* Remember a type in the incomplete_types_list. */
9450 static void
9451 add_incomplete_type (type)
9452 tree type;
9454 VARRAY_PUSH_TREE (incomplete_types, type);
9457 /* Walk through the list of incomplete types again, trying once more to
9458 emit full debugging info for them. */
9460 static void
9461 retry_incomplete_types ()
9463 int i;
9464 for (i = VARRAY_ACTIVE_SIZE (incomplete_types) - 1; i >= 0; i--)
9466 gen_type_die (VARRAY_TREE (incomplete_types, i), comp_unit_die);
9470 /* Generate a DIE to represent an inlined instance of an enumeration type. */
9472 static void
9473 gen_inlined_enumeration_type_die (type, context_die)
9474 tree type;
9475 dw_die_ref context_die;
9477 dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die);
9478 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
9479 be incomplete and such types are not marked. */
9480 add_abstract_origin_attribute (type_die, type);
9483 /* Generate a DIE to represent an inlined instance of a structure type. */
9485 static void
9486 gen_inlined_structure_type_die (type, context_die)
9487 tree type;
9488 dw_die_ref context_die;
9490 dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die);
9492 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
9493 be incomplete and such types are not marked. */
9494 add_abstract_origin_attribute (type_die, type);
9497 /* Generate a DIE to represent an inlined instance of a union type. */
9499 static void
9500 gen_inlined_union_type_die (type, context_die)
9501 tree type;
9502 dw_die_ref context_die;
9504 dw_die_ref type_die = new_die (DW_TAG_union_type, context_die);
9506 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
9507 be incomplete and such types are not marked. */
9508 add_abstract_origin_attribute (type_die, type);
9511 /* Generate a DIE to represent an enumeration type. Note that these DIEs
9512 include all of the information about the enumeration values also. Each
9513 enumerated type name/value is listed as a child of the enumerated type
9514 DIE. */
9516 static void
9517 gen_enumeration_type_die (type, context_die)
9518 tree type;
9519 dw_die_ref context_die;
9521 dw_die_ref type_die = lookup_type_die (type);
9523 if (type_die == NULL)
9525 type_die = new_die (DW_TAG_enumeration_type,
9526 scope_die_for (type, context_die));
9527 equate_type_number_to_die (type, type_die);
9528 add_name_attribute (type_die, type_tag (type));
9530 else if (! TYPE_SIZE (type))
9531 return;
9532 else
9533 remove_AT (type_die, DW_AT_declaration);
9535 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
9536 given enum type is incomplete, do not generate the DW_AT_byte_size
9537 attribute or the DW_AT_element_list attribute. */
9538 if (TYPE_SIZE (type))
9540 tree link;
9542 TREE_ASM_WRITTEN (type) = 1;
9543 add_byte_size_attribute (type_die, type);
9544 if (TYPE_STUB_DECL (type) != NULL_TREE)
9545 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
9547 /* If the first reference to this type was as the return type of an
9548 inline function, then it may not have a parent. Fix this now. */
9549 if (type_die->die_parent == NULL)
9550 add_child_die (scope_die_for (type, context_die), type_die);
9552 for (link = TYPE_FIELDS (type);
9553 link != NULL; link = TREE_CHAIN (link))
9555 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die);
9557 add_name_attribute (enum_die,
9558 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
9560 if (host_integerp (TREE_VALUE (link), 0))
9562 if (tree_int_cst_sgn (TREE_VALUE (link)) < 0)
9563 add_AT_int (enum_die, DW_AT_const_value,
9564 tree_low_cst (TREE_VALUE (link), 0));
9565 else
9566 add_AT_unsigned (enum_die, DW_AT_const_value,
9567 tree_low_cst (TREE_VALUE (link), 0));
9571 else
9572 add_AT_flag (type_die, DW_AT_declaration, 1);
9575 /* Generate a DIE to represent either a real live formal parameter decl or to
9576 represent just the type of some formal parameter position in some function
9577 type.
9579 Note that this routine is a bit unusual because its argument may be a
9580 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
9581 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
9582 node. If it's the former then this function is being called to output a
9583 DIE to represent a formal parameter object (or some inlining thereof). If
9584 it's the latter, then this function is only being called to output a
9585 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
9586 argument type of some subprogram type. */
9588 static dw_die_ref
9589 gen_formal_parameter_die (node, context_die)
9590 tree node;
9591 dw_die_ref context_die;
9593 dw_die_ref parm_die
9594 = new_die (DW_TAG_formal_parameter, context_die);
9595 tree origin;
9597 switch (TREE_CODE_CLASS (TREE_CODE (node)))
9599 case 'd':
9600 origin = decl_ultimate_origin (node);
9601 if (origin != NULL)
9602 add_abstract_origin_attribute (parm_die, origin);
9603 else
9605 add_name_and_src_coords_attributes (parm_die, node);
9606 add_type_attribute (parm_die, TREE_TYPE (node),
9607 TREE_READONLY (node),
9608 TREE_THIS_VOLATILE (node),
9609 context_die);
9610 if (DECL_ARTIFICIAL (node))
9611 add_AT_flag (parm_die, DW_AT_artificial, 1);
9614 equate_decl_number_to_die (node, parm_die);
9615 if (! DECL_ABSTRACT (node))
9616 add_location_or_const_value_attribute (parm_die, node);
9618 break;
9620 case 't':
9621 /* We were called with some kind of a ..._TYPE node. */
9622 add_type_attribute (parm_die, node, 0, 0, context_die);
9623 break;
9625 default:
9626 abort ();
9629 return parm_die;
9632 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
9633 at the end of an (ANSI prototyped) formal parameters list. */
9635 static void
9636 gen_unspecified_parameters_die (decl_or_type, context_die)
9637 tree decl_or_type ATTRIBUTE_UNUSED;
9638 dw_die_ref context_die;
9640 new_die (DW_TAG_unspecified_parameters, context_die);
9643 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
9644 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
9645 parameters as specified in some function type specification (except for
9646 those which appear as part of a function *definition*). */
9648 static void
9649 gen_formal_types_die (function_or_method_type, context_die)
9650 tree function_or_method_type;
9651 dw_die_ref context_die;
9653 tree link;
9654 tree formal_type = NULL;
9655 tree first_parm_type;
9656 tree arg;
9658 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
9660 arg = DECL_ARGUMENTS (function_or_method_type);
9661 function_or_method_type = TREE_TYPE (function_or_method_type);
9663 else
9664 arg = NULL_TREE;
9666 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
9668 /* Make our first pass over the list of formal parameter types and output a
9669 DW_TAG_formal_parameter DIE for each one. */
9670 for (link = first_parm_type; link; )
9672 dw_die_ref parm_die;
9674 formal_type = TREE_VALUE (link);
9675 if (formal_type == void_type_node)
9676 break;
9678 /* Output a (nameless) DIE to represent the formal parameter itself. */
9679 parm_die = gen_formal_parameter_die (formal_type, context_die);
9680 if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
9681 && link == first_parm_type)
9682 || (arg && DECL_ARTIFICIAL (arg)))
9683 add_AT_flag (parm_die, DW_AT_artificial, 1);
9685 link = TREE_CHAIN (link);
9686 if (arg)
9687 arg = TREE_CHAIN (arg);
9690 /* If this function type has an ellipsis, add a
9691 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
9692 if (formal_type != void_type_node)
9693 gen_unspecified_parameters_die (function_or_method_type, context_die);
9695 /* Make our second (and final) pass over the list of formal parameter types
9696 and output DIEs to represent those types (as necessary). */
9697 for (link = TYPE_ARG_TYPES (function_or_method_type);
9698 link;
9699 link = TREE_CHAIN (link))
9701 formal_type = TREE_VALUE (link);
9702 if (formal_type == void_type_node)
9703 break;
9705 gen_type_die (formal_type, context_die);
9709 /* We want to generate the DIE for TYPE so that we can generate the
9710 die for MEMBER, which has been defined; we will need to refer back
9711 to the member declaration nested within TYPE. If we're trying to
9712 generate minimal debug info for TYPE, processing TYPE won't do the
9713 trick; we need to attach the member declaration by hand. */
9715 static void
9716 gen_type_die_for_member (type, member, context_die)
9717 tree type, member;
9718 dw_die_ref context_die;
9720 gen_type_die (type, context_die);
9722 /* If we're trying to avoid duplicate debug info, we may not have
9723 emitted the member decl for this function. Emit it now. */
9724 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
9725 && ! lookup_decl_die (member))
9727 if (decl_ultimate_origin (member))
9728 abort ();
9730 push_decl_scope (type);
9731 if (TREE_CODE (member) == FUNCTION_DECL)
9732 gen_subprogram_die (member, lookup_type_die (type));
9733 else
9734 gen_variable_die (member, lookup_type_die (type));
9735 pop_decl_scope ();
9739 /* Generate the DWARF2 info for the "abstract" instance
9740 of a function which we may later generate inlined and/or
9741 out-of-line instances of. */
9743 static void
9744 dwarf2out_abstract_function (decl)
9745 tree decl;
9747 dw_die_ref old_die;
9748 tree save_fn;
9749 tree context;
9750 int was_abstract = DECL_ABSTRACT (decl);
9752 /* Make sure we have the actual abstract inline, not a clone. */
9753 decl = DECL_ORIGIN (decl);
9755 old_die = lookup_decl_die (decl);
9756 if (old_die && get_AT_unsigned (old_die, DW_AT_inline))
9757 /* We've already generated the abstract instance. */
9758 return;
9760 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
9761 we don't get confused by DECL_ABSTRACT. */
9762 if (debug_info_level > DINFO_LEVEL_TERSE)
9764 context = decl_class_context (decl);
9765 if (context)
9766 gen_type_die_for_member
9767 (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
9770 /* Pretend we've just finished compiling this function. */
9771 save_fn = current_function_decl;
9772 current_function_decl = decl;
9774 set_decl_abstract_flags (decl, 1);
9775 dwarf2out_decl (decl);
9776 if (! was_abstract)
9777 set_decl_abstract_flags (decl, 0);
9779 current_function_decl = save_fn;
9782 /* Generate a DIE to represent a declared function (either file-scope or
9783 block-local). */
9785 static void
9786 gen_subprogram_die (decl, context_die)
9787 tree decl;
9788 dw_die_ref context_die;
9790 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
9791 tree origin = decl_ultimate_origin (decl);
9792 dw_die_ref subr_die;
9793 rtx fp_reg;
9794 tree fn_arg_types;
9795 tree outer_scope;
9796 dw_die_ref old_die = lookup_decl_die (decl);
9797 int declaration = (current_function_decl != decl
9798 || class_scope_p (context_die));
9800 /* Note that it is possible to have both DECL_ABSTRACT and `declaration'
9801 be true, if we started to generate the abstract instance of an inline,
9802 decided to output its containing class, and proceeded to emit the
9803 declaration of the inline from the member list for the class. In that
9804 case, `declaration' takes priority; we'll get back to the abstract
9805 instance when we're done with the class. */
9807 /* The class-scope declaration DIE must be the primary DIE. */
9808 if (origin && declaration && class_scope_p (context_die))
9810 origin = NULL;
9811 if (old_die)
9812 abort ();
9815 if (origin != NULL)
9817 if (declaration && ! local_scope_p (context_die))
9818 abort ();
9820 /* Fixup die_parent for the abstract instance of a nested
9821 inline function. */
9822 if (old_die && old_die->die_parent == NULL)
9823 add_child_die (context_die, old_die);
9825 subr_die = new_die (DW_TAG_subprogram, context_die);
9826 add_abstract_origin_attribute (subr_die, origin);
9828 else if (old_die)
9830 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
9832 if (!get_AT_flag (old_die, DW_AT_declaration)
9833 /* We can have a normal definition following an inline one in the
9834 case of redefinition of GNU C extern inlines.
9835 It seems reasonable to use AT_specification in this case. */
9836 && !get_AT_unsigned (old_die, DW_AT_inline))
9838 /* ??? This can happen if there is a bug in the program, for
9839 instance, if it has duplicate function definitions. Ideally,
9840 we should detect this case and ignore it. For now, if we have
9841 already reported an error, any error at all, then assume that
9842 we got here because of an input error, not a dwarf2 bug. */
9843 if (errorcount)
9844 return;
9845 abort ();
9848 /* If the definition comes from the same place as the declaration,
9849 maybe use the old DIE. We always want the DIE for this function
9850 that has the *_pc attributes to be under comp_unit_die so the
9851 debugger can find it. We also need to do this for abstract
9852 instances of inlines, since the spec requires the out-of-line copy
9853 to have the same parent. For local class methods, this doesn't
9854 apply; we just use the old DIE. */
9855 if ((old_die->die_parent == comp_unit_die || context_die == NULL)
9856 && (DECL_ARTIFICIAL (decl)
9857 || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
9858 && (get_AT_unsigned (old_die, DW_AT_decl_line)
9859 == (unsigned) DECL_SOURCE_LINE (decl)))))
9861 subr_die = old_die;
9863 /* Clear out the declaration attribute and the parm types. */
9864 remove_AT (subr_die, DW_AT_declaration);
9865 remove_children (subr_die);
9867 else
9869 subr_die = new_die (DW_TAG_subprogram, context_die);
9870 add_AT_die_ref (subr_die, DW_AT_specification, old_die);
9871 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
9872 add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
9873 if (get_AT_unsigned (old_die, DW_AT_decl_line)
9874 != (unsigned) DECL_SOURCE_LINE (decl))
9875 add_AT_unsigned
9876 (subr_die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
9879 else
9881 subr_die = new_die (DW_TAG_subprogram, context_die);
9883 if (TREE_PUBLIC (decl))
9884 add_AT_flag (subr_die, DW_AT_external, 1);
9886 add_name_and_src_coords_attributes (subr_die, decl);
9887 if (debug_info_level > DINFO_LEVEL_TERSE)
9889 tree type = TREE_TYPE (decl);
9891 add_prototyped_attribute (subr_die, type);
9892 add_type_attribute (subr_die, TREE_TYPE (type), 0, 0, context_die);
9895 add_pure_or_virtual_attribute (subr_die, decl);
9896 if (DECL_ARTIFICIAL (decl))
9897 add_AT_flag (subr_die, DW_AT_artificial, 1);
9898 if (TREE_PROTECTED (decl))
9899 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
9900 else if (TREE_PRIVATE (decl))
9901 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
9904 if (declaration)
9906 if (!(old_die && get_AT_unsigned (old_die, DW_AT_inline)))
9908 add_AT_flag (subr_die, DW_AT_declaration, 1);
9910 /* The first time we see a member function, it is in the context of
9911 the class to which it belongs. We make sure of this by emitting
9912 the class first. The next time is the definition, which is
9913 handled above. The two may come from the same source text. */
9914 if (DECL_CONTEXT (decl) || DECL_ABSTRACT (decl))
9915 equate_decl_number_to_die (decl, subr_die);
9918 else if (DECL_ABSTRACT (decl))
9920 if (DECL_INLINE (decl) && !flag_no_inline)
9922 /* ??? Checking DECL_DEFER_OUTPUT is correct for static
9923 inline functions, but not for extern inline functions.
9924 We can't get this completely correct because information
9925 about whether the function was declared inline is not
9926 saved anywhere. */
9927 if (DECL_DEFER_OUTPUT (decl))
9928 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
9929 else
9930 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
9932 else
9933 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
9935 equate_decl_number_to_die (decl, subr_die);
9937 else if (!DECL_EXTERNAL (decl))
9939 if (!(old_die && get_AT_unsigned (old_die, DW_AT_inline)))
9940 equate_decl_number_to_die (decl, subr_die);
9942 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
9943 current_funcdef_number);
9944 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
9945 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
9946 current_funcdef_number);
9947 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
9949 add_pubname (decl, subr_die);
9950 add_arange (decl, subr_die);
9952 #ifdef MIPS_DEBUGGING_INFO
9953 /* Add a reference to the FDE for this routine. */
9954 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
9955 #endif
9957 /* Define the "frame base" location for this routine. We use the
9958 frame pointer or stack pointer registers, since the RTL for local
9959 variables is relative to one of them. */
9960 fp_reg
9961 = frame_pointer_needed ? hard_frame_pointer_rtx : stack_pointer_rtx;
9962 add_AT_loc (subr_die, DW_AT_frame_base, reg_loc_descriptor (fp_reg));
9964 #if 0
9965 /* ??? This fails for nested inline functions, because context_display
9966 is not part of the state saved/restored for inline functions. */
9967 if (current_function_needs_context)
9968 add_AT_location_description (subr_die, DW_AT_static_link,
9969 lookup_static_chain (decl));
9970 #endif
9973 /* Now output descriptions of the arguments for this function. This gets
9974 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
9975 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
9976 `...' at the end of the formal parameter list. In order to find out if
9977 there was a trailing ellipsis or not, we must instead look at the type
9978 associated with the FUNCTION_DECL. This will be a node of type
9979 FUNCTION_TYPE. If the chain of type nodes hanging off of this
9980 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
9981 an ellipsis at the end. */
9983 /* In the case where we are describing a mere function declaration, all we
9984 need to do here (and all we *can* do here) is to describe the *types* of
9985 its formal parameters. */
9986 if (debug_info_level <= DINFO_LEVEL_TERSE)
9988 else if (declaration)
9989 gen_formal_types_die (decl, subr_die);
9990 else
9992 /* Generate DIEs to represent all known formal parameters */
9993 tree arg_decls = DECL_ARGUMENTS (decl);
9994 tree parm;
9996 /* When generating DIEs, generate the unspecified_parameters DIE
9997 instead if we come across the arg "__builtin_va_alist" */
9998 for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
9999 if (TREE_CODE (parm) == PARM_DECL)
10001 if (DECL_NAME (parm)
10002 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
10003 "__builtin_va_alist"))
10004 gen_unspecified_parameters_die (parm, subr_die);
10005 else
10006 gen_decl_die (parm, subr_die);
10009 /* Decide whether we need an unspecified_parameters DIE at the end.
10010 There are 2 more cases to do this for: 1) the ansi ... declaration -
10011 this is detectable when the end of the arg list is not a
10012 void_type_node 2) an unprototyped function declaration (not a
10013 definition). This just means that we have no info about the
10014 parameters at all. */
10015 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
10016 if (fn_arg_types != NULL)
10018 /* this is the prototyped case, check for ... */
10019 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
10020 gen_unspecified_parameters_die (decl, subr_die);
10022 else if (DECL_INITIAL (decl) == NULL_TREE)
10023 gen_unspecified_parameters_die (decl, subr_die);
10026 /* Output Dwarf info for all of the stuff within the body of the function
10027 (if it has one - it may be just a declaration). */
10028 outer_scope = DECL_INITIAL (decl);
10030 /* Note that here, `outer_scope' is a pointer to the outermost BLOCK
10031 node created to represent a function. This outermost BLOCK actually
10032 represents the outermost binding contour for the function, i.e. the
10033 contour in which the function's formal parameters and labels get
10034 declared. Curiously, it appears that the front end doesn't actually
10035 put the PARM_DECL nodes for the current function onto the BLOCK_VARS
10036 list for this outer scope. (They are strung off of the DECL_ARGUMENTS
10037 list for the function instead.) The BLOCK_VARS list for the
10038 `outer_scope' does provide us with a list of the LABEL_DECL nodes for
10039 the function however, and we output DWARF info for those in
10040 decls_for_scope. Just within the `outer_scope' there will be a BLOCK
10041 node representing the function's outermost pair of curly braces, and
10042 any blocks used for the base and member initializers of a C++
10043 constructor function. */
10044 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
10046 current_function_has_inlines = 0;
10047 decls_for_scope (outer_scope, subr_die, 0);
10049 #if 0 && defined (MIPS_DEBUGGING_INFO)
10050 if (current_function_has_inlines)
10052 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
10053 if (! comp_unit_has_inlines)
10055 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
10056 comp_unit_has_inlines = 1;
10059 #endif
10063 /* Generate a DIE to represent a declared data object. */
10065 static void
10066 gen_variable_die (decl, context_die)
10067 tree decl;
10068 dw_die_ref context_die;
10070 tree origin = decl_ultimate_origin (decl);
10071 dw_die_ref var_die = new_die (DW_TAG_variable, context_die);
10073 dw_die_ref old_die = lookup_decl_die (decl);
10074 int declaration = (DECL_EXTERNAL (decl)
10075 || class_scope_p (context_die));
10077 if (origin != NULL)
10078 add_abstract_origin_attribute (var_die, origin);
10079 /* Loop unrolling can create multiple blocks that refer to the same
10080 static variable, so we must test for the DW_AT_declaration flag. */
10081 /* ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
10082 copy decls and set the DECL_ABSTRACT flag on them instead of
10083 sharing them. */
10084 /* ??? Duplicated blocks have been rewritten to use .debug_ranges. */
10085 else if (old_die && TREE_STATIC (decl)
10086 && get_AT_flag (old_die, DW_AT_declaration) == 1)
10088 /* This is a definition of a C++ class level static. */
10089 add_AT_die_ref (var_die, DW_AT_specification, old_die);
10090 if (DECL_NAME (decl))
10092 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10094 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
10095 add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
10097 if (get_AT_unsigned (old_die, DW_AT_decl_line)
10098 != (unsigned) DECL_SOURCE_LINE (decl))
10100 add_AT_unsigned (var_die, DW_AT_decl_line,
10101 DECL_SOURCE_LINE (decl));
10104 else
10106 add_name_and_src_coords_attributes (var_die, decl);
10107 add_type_attribute (var_die, TREE_TYPE (decl),
10108 TREE_READONLY (decl),
10109 TREE_THIS_VOLATILE (decl), context_die);
10111 if (TREE_PUBLIC (decl))
10112 add_AT_flag (var_die, DW_AT_external, 1);
10114 if (DECL_ARTIFICIAL (decl))
10115 add_AT_flag (var_die, DW_AT_artificial, 1);
10117 if (TREE_PROTECTED (decl))
10118 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
10120 else if (TREE_PRIVATE (decl))
10121 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
10124 if (declaration)
10125 add_AT_flag (var_die, DW_AT_declaration, 1);
10127 if (class_scope_p (context_die) || DECL_ABSTRACT (decl))
10128 equate_decl_number_to_die (decl, var_die);
10130 if (! declaration && ! DECL_ABSTRACT (decl))
10132 add_location_or_const_value_attribute (var_die, decl);
10133 add_pubname (decl, var_die);
10135 else
10136 tree_add_const_value_attribute (var_die, decl);
10139 /* Generate a DIE to represent a label identifier. */
10141 static void
10142 gen_label_die (decl, context_die)
10143 tree decl;
10144 dw_die_ref context_die;
10146 tree origin = decl_ultimate_origin (decl);
10147 dw_die_ref lbl_die = new_die (DW_TAG_label, context_die);
10148 rtx insn;
10149 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10151 if (origin != NULL)
10152 add_abstract_origin_attribute (lbl_die, origin);
10153 else
10154 add_name_and_src_coords_attributes (lbl_die, decl);
10156 if (DECL_ABSTRACT (decl))
10157 equate_decl_number_to_die (decl, lbl_die);
10158 else
10160 insn = DECL_RTL (decl);
10162 /* Deleted labels are programmer specified labels which have been
10163 eliminated because of various optimisations. We still emit them
10164 here so that it is possible to put breakpoints on them. */
10165 if (GET_CODE (insn) == CODE_LABEL
10166 || ((GET_CODE (insn) == NOTE
10167 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL)))
10169 /* When optimization is enabled (via -O) some parts of the compiler
10170 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
10171 represent source-level labels which were explicitly declared by
10172 the user. This really shouldn't be happening though, so catch
10173 it if it ever does happen. */
10174 if (INSN_DELETED_P (insn))
10175 abort ();
10177 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
10178 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
10183 /* Generate a DIE for a lexical block. */
10185 static void
10186 gen_lexical_block_die (stmt, context_die, depth)
10187 tree stmt;
10188 dw_die_ref context_die;
10189 int depth;
10191 dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die);
10192 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10194 if (! BLOCK_ABSTRACT (stmt))
10196 if (BLOCK_FRAGMENT_CHAIN (stmt))
10198 tree chain;
10200 add_AT_offset (stmt_die, DW_AT_ranges, add_ranges (stmt));
10202 chain = BLOCK_FRAGMENT_CHAIN (stmt);
10205 add_ranges (chain);
10206 chain = BLOCK_FRAGMENT_CHAIN (chain);
10208 while (chain);
10209 add_ranges (NULL);
10211 else
10213 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
10214 BLOCK_NUMBER (stmt));
10215 add_AT_lbl_id (stmt_die, DW_AT_low_pc, label);
10216 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
10217 BLOCK_NUMBER (stmt));
10218 add_AT_lbl_id (stmt_die, DW_AT_high_pc, label);
10222 decls_for_scope (stmt, stmt_die, depth);
10225 /* Generate a DIE for an inlined subprogram. */
10227 static void
10228 gen_inlined_subroutine_die (stmt, context_die, depth)
10229 tree stmt;
10230 dw_die_ref context_die;
10231 int depth;
10233 if (! BLOCK_ABSTRACT (stmt))
10235 dw_die_ref subr_die
10236 = new_die (DW_TAG_inlined_subroutine, context_die);
10237 tree decl = block_ultimate_origin (stmt);
10238 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10240 /* Emit info for the abstract instance first, if we haven't yet. */
10241 dwarf2out_abstract_function (decl);
10243 add_abstract_origin_attribute (subr_die, decl);
10244 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
10245 BLOCK_NUMBER (stmt));
10246 add_AT_lbl_id (subr_die, DW_AT_low_pc, label);
10247 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
10248 BLOCK_NUMBER (stmt));
10249 add_AT_lbl_id (subr_die, DW_AT_high_pc, label);
10250 decls_for_scope (stmt, subr_die, depth);
10251 current_function_has_inlines = 1;
10255 /* Generate a DIE for a field in a record, or structure. */
10257 static void
10258 gen_field_die (decl, context_die)
10259 tree decl;
10260 dw_die_ref context_die;
10262 dw_die_ref decl_die = new_die (DW_TAG_member, context_die);
10264 add_name_and_src_coords_attributes (decl_die, decl);
10265 add_type_attribute (decl_die, member_declared_type (decl),
10266 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
10267 context_die);
10269 /* If this is a bit field... */
10270 if (DECL_BIT_FIELD_TYPE (decl))
10272 add_byte_size_attribute (decl_die, decl);
10273 add_bit_size_attribute (decl_die, decl);
10274 add_bit_offset_attribute (decl_die, decl);
10277 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
10278 add_data_member_location_attribute (decl_die, decl);
10280 if (DECL_ARTIFICIAL (decl))
10281 add_AT_flag (decl_die, DW_AT_artificial, 1);
10283 if (TREE_PROTECTED (decl))
10284 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
10286 else if (TREE_PRIVATE (decl))
10287 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
10290 #if 0
10291 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
10292 Use modified_type_die instead.
10293 We keep this code here just in case these types of DIEs may be needed to
10294 represent certain things in other languages (e.g. Pascal) someday. */
10295 static void
10296 gen_pointer_type_die (type, context_die)
10297 tree type;
10298 dw_die_ref context_die;
10300 dw_die_ref ptr_die
10301 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die));
10303 equate_type_number_to_die (type, ptr_die);
10304 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
10305 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
10308 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
10309 Use modified_type_die instead.
10310 We keep this code here just in case these types of DIEs may be needed to
10311 represent certain things in other languages (e.g. Pascal) someday. */
10312 static void
10313 gen_reference_type_die (type, context_die)
10314 tree type;
10315 dw_die_ref context_die;
10317 dw_die_ref ref_die
10318 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die));
10320 equate_type_number_to_die (type, ref_die);
10321 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
10322 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
10324 #endif
10326 /* Generate a DIE for a pointer to a member type. */
10327 static void
10328 gen_ptr_to_mbr_type_die (type, context_die)
10329 tree type;
10330 dw_die_ref context_die;
10332 dw_die_ref ptr_die
10333 = new_die (DW_TAG_ptr_to_member_type, scope_die_for (type, context_die));
10335 equate_type_number_to_die (type, ptr_die);
10336 add_AT_die_ref (ptr_die, DW_AT_containing_type,
10337 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
10338 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
10341 /* Generate the DIE for the compilation unit. */
10343 static dw_die_ref
10344 gen_compile_unit_die (filename)
10345 const char *filename;
10347 dw_die_ref die;
10348 char producer[250];
10349 const char *wd = getpwd ();
10350 int language;
10352 die = new_die (DW_TAG_compile_unit, NULL);
10353 add_name_attribute (die, filename);
10355 if (wd != NULL && filename[0] != DIR_SEPARATOR)
10356 add_AT_string (die, DW_AT_comp_dir, wd);
10358 sprintf (producer, "%s %s", language_string, version_string);
10360 #ifdef MIPS_DEBUGGING_INFO
10361 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
10362 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
10363 not appear in the producer string, the debugger reaches the conclusion
10364 that the object file is stripped and has no debugging information.
10365 To get the MIPS/SGI debugger to believe that there is debugging
10366 information in the object file, we add a -g to the producer string. */
10367 if (debug_info_level > DINFO_LEVEL_TERSE)
10368 strcat (producer, " -g");
10369 #endif
10371 add_AT_string (die, DW_AT_producer, producer);
10373 if (strcmp (language_string, "GNU C++") == 0)
10374 language = DW_LANG_C_plus_plus;
10375 else if (strcmp (language_string, "GNU Ada") == 0)
10376 language = DW_LANG_Ada83;
10377 else if (strcmp (language_string, "GNU F77") == 0)
10378 language = DW_LANG_Fortran77;
10379 else if (strcmp (language_string, "GNU Pascal") == 0)
10380 language = DW_LANG_Pascal83;
10381 else if (strcmp (language_string, "GNU Java") == 0)
10382 language = DW_LANG_Java;
10383 else if (flag_traditional)
10384 language = DW_LANG_C;
10385 else
10386 language = DW_LANG_C89;
10388 add_AT_unsigned (die, DW_AT_language, language);
10390 return die;
10393 /* Generate a DIE for a string type. */
10395 static void
10396 gen_string_type_die (type, context_die)
10397 tree type;
10398 dw_die_ref context_die;
10400 dw_die_ref type_die
10401 = new_die (DW_TAG_string_type, scope_die_for (type, context_die));
10403 equate_type_number_to_die (type, type_die);
10405 /* Fudge the string length attribute for now. */
10407 /* TODO: add string length info.
10408 string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
10409 bound_representation (upper_bound, 0, 'u'); */
10412 /* Generate the DIE for a base class. */
10414 static void
10415 gen_inheritance_die (binfo, context_die)
10416 tree binfo;
10417 dw_die_ref context_die;
10419 dw_die_ref die = new_die (DW_TAG_inheritance, context_die);
10421 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
10422 add_data_member_location_attribute (die, binfo);
10424 if (TREE_VIA_VIRTUAL (binfo))
10425 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
10426 if (TREE_VIA_PUBLIC (binfo))
10427 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
10428 else if (TREE_VIA_PROTECTED (binfo))
10429 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
10432 /* Generate a DIE for a class member. */
10434 static void
10435 gen_member_die (type, context_die)
10436 tree type;
10437 dw_die_ref context_die;
10439 tree member;
10440 dw_die_ref child;
10442 /* If this is not an incomplete type, output descriptions of each of its
10443 members. Note that as we output the DIEs necessary to represent the
10444 members of this record or union type, we will also be trying to output
10445 DIEs to represent the *types* of those members. However the `type'
10446 function (above) will specifically avoid generating type DIEs for member
10447 types *within* the list of member DIEs for this (containing) type execpt
10448 for those types (of members) which are explicitly marked as also being
10449 members of this (containing) type themselves. The g++ front- end can
10450 force any given type to be treated as a member of some other
10451 (containing) type by setting the TYPE_CONTEXT of the given (member) type
10452 to point to the TREE node representing the appropriate (containing)
10453 type. */
10455 /* First output info about the base classes. */
10456 if (TYPE_BINFO (type) && TYPE_BINFO_BASETYPES (type))
10458 tree bases = TYPE_BINFO_BASETYPES (type);
10459 int n_bases = TREE_VEC_LENGTH (bases);
10460 int i;
10462 for (i = 0; i < n_bases; i++)
10463 gen_inheritance_die (TREE_VEC_ELT (bases, i), context_die);
10466 /* Now output info about the data members and type members. */
10467 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
10469 /* If we thought we were generating minimal debug info for TYPE
10470 and then changed our minds, some of the member declarations
10471 may have already been defined. Don't define them again, but
10472 do put them in the right order. */
10474 child = lookup_decl_die (member);
10475 if (child)
10476 splice_child_die (context_die, child);
10477 else
10478 gen_decl_die (member, context_die);
10481 /* Now output info about the function members (if any). */
10482 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
10484 /* Don't include clones in the member list. */
10485 if (DECL_ABSTRACT_ORIGIN (member))
10486 continue;
10488 child = lookup_decl_die (member);
10489 if (child)
10490 splice_child_die (context_die, child);
10491 else
10492 gen_decl_die (member, context_die);
10496 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
10497 is set, we pretend that the type was never defined, so we only get the
10498 member DIEs needed by later specification DIEs. */
10500 static void
10501 gen_struct_or_union_type_die (type, context_die)
10502 tree type;
10503 dw_die_ref context_die;
10505 dw_die_ref type_die = lookup_type_die (type);
10506 dw_die_ref scope_die = 0;
10507 int nested = 0;
10508 int complete = (TYPE_SIZE (type)
10509 && (! TYPE_STUB_DECL (type)
10510 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
10512 if (type_die && ! complete)
10513 return;
10515 if (TYPE_CONTEXT (type) != NULL_TREE
10516 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type)))
10517 nested = 1;
10519 scope_die = scope_die_for (type, context_die);
10521 if (! type_die || (nested && scope_die == comp_unit_die))
10522 /* First occurrence of type or toplevel definition of nested class. */
10524 dw_die_ref old_die = type_die;
10526 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
10527 ? DW_TAG_structure_type : DW_TAG_union_type,
10528 scope_die);
10529 equate_type_number_to_die (type, type_die);
10530 if (old_die)
10531 add_AT_die_ref (type_die, DW_AT_specification, old_die);
10532 else
10533 add_name_attribute (type_die, type_tag (type));
10535 else
10536 remove_AT (type_die, DW_AT_declaration);
10538 /* If this type has been completed, then give it a byte_size attribute and
10539 then give a list of members. */
10540 if (complete)
10542 /* Prevent infinite recursion in cases where the type of some member of
10543 this type is expressed in terms of this type itself. */
10544 TREE_ASM_WRITTEN (type) = 1;
10545 add_byte_size_attribute (type_die, type);
10546 if (TYPE_STUB_DECL (type) != NULL_TREE)
10547 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
10549 /* If the first reference to this type was as the return type of an
10550 inline function, then it may not have a parent. Fix this now. */
10551 if (type_die->die_parent == NULL)
10552 add_child_die (scope_die, type_die);
10554 push_decl_scope (type);
10555 gen_member_die (type, type_die);
10556 pop_decl_scope ();
10558 /* GNU extension: Record what type our vtable lives in. */
10559 if (TYPE_VFIELD (type))
10561 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
10563 gen_type_die (vtype, context_die);
10564 add_AT_die_ref (type_die, DW_AT_containing_type,
10565 lookup_type_die (vtype));
10568 else
10570 add_AT_flag (type_die, DW_AT_declaration, 1);
10572 /* We don't need to do this for function-local types. */
10573 if (! decl_function_context (TYPE_STUB_DECL (type)))
10574 add_incomplete_type (type);
10578 /* Generate a DIE for a subroutine _type_. */
10580 static void
10581 gen_subroutine_type_die (type, context_die)
10582 tree type;
10583 dw_die_ref context_die;
10585 tree return_type = TREE_TYPE (type);
10586 dw_die_ref subr_die
10587 = new_die (DW_TAG_subroutine_type, scope_die_for (type, context_die));
10589 equate_type_number_to_die (type, subr_die);
10590 add_prototyped_attribute (subr_die, type);
10591 add_type_attribute (subr_die, return_type, 0, 0, context_die);
10592 gen_formal_types_die (type, subr_die);
10595 /* Generate a DIE for a type definition */
10597 static void
10598 gen_typedef_die (decl, context_die)
10599 tree decl;
10600 dw_die_ref context_die;
10602 dw_die_ref type_die;
10603 tree origin;
10605 if (TREE_ASM_WRITTEN (decl))
10606 return;
10607 TREE_ASM_WRITTEN (decl) = 1;
10609 type_die = new_die (DW_TAG_typedef, context_die);
10610 origin = decl_ultimate_origin (decl);
10611 if (origin != NULL)
10612 add_abstract_origin_attribute (type_die, origin);
10613 else
10615 tree type;
10616 add_name_and_src_coords_attributes (type_die, decl);
10617 if (DECL_ORIGINAL_TYPE (decl))
10619 type = DECL_ORIGINAL_TYPE (decl);
10621 if (type == TREE_TYPE (decl))
10622 abort ();
10623 else
10624 equate_type_number_to_die (TREE_TYPE (decl), type_die);
10626 else
10627 type = TREE_TYPE (decl);
10628 add_type_attribute (type_die, type, TREE_READONLY (decl),
10629 TREE_THIS_VOLATILE (decl), context_die);
10632 if (DECL_ABSTRACT (decl))
10633 equate_decl_number_to_die (decl, type_die);
10636 /* Generate a type description DIE. */
10638 static void
10639 gen_type_die (type, context_die)
10640 tree type;
10641 dw_die_ref context_die;
10643 int need_pop;
10645 if (type == NULL_TREE || type == error_mark_node)
10646 return;
10648 /* We are going to output a DIE to represent the unqualified version of
10649 this type (i.e. without any const or volatile qualifiers) so get the
10650 main variant (i.e. the unqualified version) of this type now. */
10651 type = type_main_variant (type);
10653 if (TREE_ASM_WRITTEN (type))
10654 return;
10656 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10657 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
10659 TREE_ASM_WRITTEN (type) = 1;
10660 gen_decl_die (TYPE_NAME (type), context_die);
10661 return;
10664 switch (TREE_CODE (type))
10666 case ERROR_MARK:
10667 break;
10669 case POINTER_TYPE:
10670 case REFERENCE_TYPE:
10671 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
10672 ensures that the gen_type_die recursion will terminate even if the
10673 type is recursive. Recursive types are possible in Ada. */
10674 /* ??? We could perhaps do this for all types before the switch
10675 statement. */
10676 TREE_ASM_WRITTEN (type) = 1;
10678 /* For these types, all that is required is that we output a DIE (or a
10679 set of DIEs) to represent the "basis" type. */
10680 gen_type_die (TREE_TYPE (type), context_die);
10681 break;
10683 case OFFSET_TYPE:
10684 /* This code is used for C++ pointer-to-data-member types.
10685 Output a description of the relevant class type. */
10686 gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
10688 /* Output a description of the type of the object pointed to. */
10689 gen_type_die (TREE_TYPE (type), context_die);
10691 /* Now output a DIE to represent this pointer-to-data-member type
10692 itself. */
10693 gen_ptr_to_mbr_type_die (type, context_die);
10694 break;
10696 case SET_TYPE:
10697 gen_type_die (TYPE_DOMAIN (type), context_die);
10698 gen_set_type_die (type, context_die);
10699 break;
10701 case FILE_TYPE:
10702 gen_type_die (TREE_TYPE (type), context_die);
10703 abort (); /* No way to represent these in Dwarf yet! */
10704 break;
10706 case FUNCTION_TYPE:
10707 /* Force out return type (in case it wasn't forced out already). */
10708 gen_type_die (TREE_TYPE (type), context_die);
10709 gen_subroutine_type_die (type, context_die);
10710 break;
10712 case METHOD_TYPE:
10713 /* Force out return type (in case it wasn't forced out already). */
10714 gen_type_die (TREE_TYPE (type), context_die);
10715 gen_subroutine_type_die (type, context_die);
10716 break;
10718 case ARRAY_TYPE:
10719 if (TYPE_STRING_FLAG (type) && TREE_CODE (TREE_TYPE (type)) == CHAR_TYPE)
10721 gen_type_die (TREE_TYPE (type), context_die);
10722 gen_string_type_die (type, context_die);
10724 else
10725 gen_array_type_die (type, context_die);
10726 break;
10728 case VECTOR_TYPE:
10729 gen_type_die (TYPE_DEBUG_REPRESENTATION_TYPE (type), context_die);
10730 break;
10732 case ENUMERAL_TYPE:
10733 case RECORD_TYPE:
10734 case UNION_TYPE:
10735 case QUAL_UNION_TYPE:
10736 /* If this is a nested type whose containing class hasn't been
10737 written out yet, writing it out will cover this one, too.
10738 This does not apply to instantiations of member class templates;
10739 they need to be added to the containing class as they are
10740 generated. FIXME: This hurts the idea of combining type decls
10741 from multiple TUs, since we can't predict what set of template
10742 instantiations we'll get. */
10743 if (TYPE_CONTEXT (type)
10744 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
10745 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
10747 gen_type_die (TYPE_CONTEXT (type), context_die);
10749 if (TREE_ASM_WRITTEN (type))
10750 return;
10752 /* If that failed, attach ourselves to the stub. */
10753 push_decl_scope (TYPE_CONTEXT (type));
10754 context_die = lookup_type_die (TYPE_CONTEXT (type));
10755 need_pop = 1;
10757 else
10758 need_pop = 0;
10760 if (TREE_CODE (type) == ENUMERAL_TYPE)
10761 gen_enumeration_type_die (type, context_die);
10762 else
10763 gen_struct_or_union_type_die (type, context_die);
10765 if (need_pop)
10766 pop_decl_scope ();
10768 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
10769 it up if it is ever completed. gen_*_type_die will set it for us
10770 when appropriate. */
10771 return;
10773 case VOID_TYPE:
10774 case INTEGER_TYPE:
10775 case REAL_TYPE:
10776 case COMPLEX_TYPE:
10777 case BOOLEAN_TYPE:
10778 case CHAR_TYPE:
10779 /* No DIEs needed for fundamental types. */
10780 break;
10782 case LANG_TYPE:
10783 /* No Dwarf representation currently defined. */
10784 break;
10786 default:
10787 abort ();
10790 TREE_ASM_WRITTEN (type) = 1;
10793 /* Generate a DIE for a tagged type instantiation. */
10795 static void
10796 gen_tagged_type_instantiation_die (type, context_die)
10797 tree type;
10798 dw_die_ref context_die;
10800 if (type == NULL_TREE || type == error_mark_node)
10801 return;
10803 /* We are going to output a DIE to represent the unqualified version of
10804 this type (i.e. without any const or volatile qualifiers) so make sure
10805 that we have the main variant (i.e. the unqualified version) of this
10806 type now. */
10807 if (type != type_main_variant (type))
10808 abort ();
10810 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
10811 an instance of an unresolved type. */
10813 switch (TREE_CODE (type))
10815 case ERROR_MARK:
10816 break;
10818 case ENUMERAL_TYPE:
10819 gen_inlined_enumeration_type_die (type, context_die);
10820 break;
10822 case RECORD_TYPE:
10823 gen_inlined_structure_type_die (type, context_die);
10824 break;
10826 case UNION_TYPE:
10827 case QUAL_UNION_TYPE:
10828 gen_inlined_union_type_die (type, context_die);
10829 break;
10831 default:
10832 abort ();
10836 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
10837 things which are local to the given block. */
10839 static void
10840 gen_block_die (stmt, context_die, depth)
10841 tree stmt;
10842 dw_die_ref context_die;
10843 int depth;
10845 int must_output_die = 0;
10846 tree origin;
10847 tree decl;
10848 enum tree_code origin_code;
10850 /* Ignore blocks never really used to make RTL. */
10851 if (stmt == NULL_TREE || !TREE_USED (stmt)
10852 || (!TREE_ASM_WRITTEN (stmt) && !BLOCK_ABSTRACT (stmt)))
10853 return;
10855 /* If the block is one fragment of a non-contiguous block, do not
10856 process the variables, since they will have been done by the
10857 origin block. Do process subblocks. */
10858 if (BLOCK_FRAGMENT_ORIGIN (stmt))
10860 tree sub;
10862 for (sub= BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
10863 gen_block_die (sub, context_die, depth + 1);
10864 return;
10867 /* Determine the "ultimate origin" of this block. This block may be an
10868 inlined instance of an inlined instance of inline function, so we have
10869 to trace all of the way back through the origin chain to find out what
10870 sort of node actually served as the original seed for the creation of
10871 the current block. */
10872 origin = block_ultimate_origin (stmt);
10873 origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
10875 /* Determine if we need to output any Dwarf DIEs at all to represent this
10876 block. */
10877 if (origin_code == FUNCTION_DECL)
10878 /* The outer scopes for inlinings *must* always be represented. We
10879 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
10880 must_output_die = 1;
10881 else
10883 /* In the case where the current block represents an inlining of the
10884 "body block" of an inline function, we must *NOT* output any DIE for
10885 this block because we have already output a DIE to represent the
10886 whole inlined function scope and the "body block" of any function
10887 doesn't really represent a different scope according to ANSI C
10888 rules. So we check here to make sure that this block does not
10889 represent a "body block inlining" before trying to set the
10890 `must_output_die' flag. */
10891 if (! is_body_block (origin ? origin : stmt))
10893 /* Determine if this block directly contains any "significant"
10894 local declarations which we will need to output DIEs for. */
10895 if (debug_info_level > DINFO_LEVEL_TERSE)
10896 /* We are not in terse mode so *any* local declaration counts
10897 as being a "significant" one. */
10898 must_output_die = (BLOCK_VARS (stmt) != NULL);
10899 else
10900 /* We are in terse mode, so only local (nested) function
10901 definitions count as "significant" local declarations. */
10902 for (decl = BLOCK_VARS (stmt);
10903 decl != NULL; decl = TREE_CHAIN (decl))
10904 if (TREE_CODE (decl) == FUNCTION_DECL
10905 && DECL_INITIAL (decl))
10907 must_output_die = 1;
10908 break;
10913 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
10914 DIE for any block which contains no significant local declarations at
10915 all. Rather, in such cases we just call `decls_for_scope' so that any
10916 needed Dwarf info for any sub-blocks will get properly generated. Note
10917 that in terse mode, our definition of what constitutes a "significant"
10918 local declaration gets restricted to include only inlined function
10919 instances and local (nested) function definitions. */
10920 if (must_output_die)
10922 if (origin_code == FUNCTION_DECL)
10923 gen_inlined_subroutine_die (stmt, context_die, depth);
10924 else
10925 gen_lexical_block_die (stmt, context_die, depth);
10927 else
10928 decls_for_scope (stmt, context_die, depth);
10931 /* Generate all of the decls declared within a given scope and (recursively)
10932 all of its sub-blocks. */
10934 static void
10935 decls_for_scope (stmt, context_die, depth)
10936 tree stmt;
10937 dw_die_ref context_die;
10938 int depth;
10940 tree decl;
10941 tree subblocks;
10943 /* Ignore blocks never really used to make RTL. */
10944 if (stmt == NULL_TREE || ! TREE_USED (stmt))
10945 return;
10947 /* Output the DIEs to represent all of the data objects and typedefs
10948 declared directly within this block but not within any nested
10949 sub-blocks. Also, nested function and tag DIEs have been
10950 generated with a parent of NULL; fix that up now. */
10951 for (decl = BLOCK_VARS (stmt);
10952 decl != NULL; decl = TREE_CHAIN (decl))
10954 dw_die_ref die;
10956 if (TREE_CODE (decl) == FUNCTION_DECL)
10957 die = lookup_decl_die (decl);
10958 else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
10959 die = lookup_type_die (TREE_TYPE (decl));
10960 else
10961 die = NULL;
10963 if (die != NULL && die->die_parent == NULL)
10964 add_child_die (context_die, die);
10965 else
10966 gen_decl_die (decl, context_die);
10969 /* Output the DIEs to represent all sub-blocks (and the items declared
10970 therein) of this block. */
10971 for (subblocks = BLOCK_SUBBLOCKS (stmt);
10972 subblocks != NULL;
10973 subblocks = BLOCK_CHAIN (subblocks))
10974 gen_block_die (subblocks, context_die, depth + 1);
10977 /* Is this a typedef we can avoid emitting? */
10979 static inline int
10980 is_redundant_typedef (decl)
10981 tree decl;
10983 if (TYPE_DECL_IS_STUB (decl))
10984 return 1;
10986 if (DECL_ARTIFICIAL (decl)
10987 && DECL_CONTEXT (decl)
10988 && is_tagged_type (DECL_CONTEXT (decl))
10989 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
10990 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
10991 /* Also ignore the artificial member typedef for the class name. */
10992 return 1;
10994 return 0;
10997 /* Generate Dwarf debug information for a decl described by DECL. */
10999 static void
11000 gen_decl_die (decl, context_die)
11001 tree decl;
11002 dw_die_ref context_die;
11004 tree origin;
11006 if (TREE_CODE (decl) == ERROR_MARK)
11007 return;
11009 /* If this ..._DECL node is marked to be ignored, then ignore it. */
11010 if (DECL_IGNORED_P (decl))
11011 return;
11013 switch (TREE_CODE (decl))
11015 case CONST_DECL:
11016 /* The individual enumerators of an enum type get output when we output
11017 the Dwarf representation of the relevant enum type itself. */
11018 break;
11020 case FUNCTION_DECL:
11021 /* Don't output any DIEs to represent mere function declarations,
11022 unless they are class members or explicit block externs. */
11023 if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
11024 && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
11025 break;
11027 /* If we're emitting a clone, emit info for the abstract instance. */
11028 if (DECL_ORIGIN (decl) != decl)
11029 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
11030 /* If we're emitting an out-of-line copy of an inline function,
11031 emit info for the abstract instance and set up to refer to it. */
11032 else if (DECL_INLINE (decl) && ! DECL_ABSTRACT (decl)
11033 && ! class_scope_p (context_die)
11034 /* dwarf2out_abstract_function won't emit a die if this is just
11035 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
11036 that case, because that works only if we have a die. */
11037 && DECL_INITIAL (decl) != NULL_TREE)
11039 dwarf2out_abstract_function (decl);
11040 set_decl_origin_self (decl);
11042 /* Otherwise we're emitting the primary DIE for this decl. */
11043 else if (debug_info_level > DINFO_LEVEL_TERSE)
11045 /* Before we describe the FUNCTION_DECL itself, make sure that we
11046 have described its return type. */
11047 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
11049 /* And its virtual context. */
11050 if (DECL_VINDEX (decl) != NULL_TREE)
11051 gen_type_die (DECL_CONTEXT (decl), context_die);
11053 /* And its containing type. */
11054 origin = decl_class_context (decl);
11055 if (origin != NULL_TREE)
11056 gen_type_die_for_member (origin, decl, context_die);
11059 /* Now output a DIE to represent the function itself. */
11060 gen_subprogram_die (decl, context_die);
11061 break;
11063 case TYPE_DECL:
11064 /* If we are in terse mode, don't generate any DIEs to represent any
11065 actual typedefs. */
11066 if (debug_info_level <= DINFO_LEVEL_TERSE)
11067 break;
11069 /* In the special case of a TYPE_DECL node representing the
11070 declaration of some type tag, if the given TYPE_DECL is marked as
11071 having been instantiated from some other (original) TYPE_DECL node
11072 (e.g. one which was generated within the original definition of an
11073 inline function) we have to generate a special (abbreviated)
11074 DW_TAG_structure_type, DW_TAG_union_type, or DW_TAG_enumeration_type
11075 DIE here. */
11076 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
11078 gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
11079 break;
11082 if (is_redundant_typedef (decl))
11083 gen_type_die (TREE_TYPE (decl), context_die);
11084 else
11085 /* Output a DIE to represent the typedef itself. */
11086 gen_typedef_die (decl, context_die);
11087 break;
11089 case LABEL_DECL:
11090 if (debug_info_level >= DINFO_LEVEL_NORMAL)
11091 gen_label_die (decl, context_die);
11092 break;
11094 case VAR_DECL:
11095 /* If we are in terse mode, don't generate any DIEs to represent any
11096 variable declarations or definitions. */
11097 if (debug_info_level <= DINFO_LEVEL_TERSE)
11098 break;
11100 /* Output any DIEs that are needed to specify the type of this data
11101 object. */
11102 gen_type_die (TREE_TYPE (decl), context_die);
11104 /* And its containing type. */
11105 origin = decl_class_context (decl);
11106 if (origin != NULL_TREE)
11107 gen_type_die_for_member (origin, decl, context_die);
11109 /* Now output the DIE to represent the data object itself. This gets
11110 complicated because of the possibility that the VAR_DECL really
11111 represents an inlined instance of a formal parameter for an inline
11112 function. */
11113 origin = decl_ultimate_origin (decl);
11114 if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
11115 gen_formal_parameter_die (decl, context_die);
11116 else
11117 gen_variable_die (decl, context_die);
11118 break;
11120 case FIELD_DECL:
11121 /* Ignore the nameless fields that are used to skip bits, but
11122 handle C++ anonymous unions. */
11123 if (DECL_NAME (decl) != NULL_TREE
11124 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE)
11126 gen_type_die (member_declared_type (decl), context_die);
11127 gen_field_die (decl, context_die);
11129 break;
11131 case PARM_DECL:
11132 gen_type_die (TREE_TYPE (decl), context_die);
11133 gen_formal_parameter_die (decl, context_die);
11134 break;
11136 case NAMESPACE_DECL:
11137 /* Ignore for now. */
11138 break;
11140 default:
11141 abort ();
11145 /* Add Ada "use" clause information for SGI Workshop debugger. */
11147 void
11148 dwarf2out_add_library_unit_info (filename, context_list)
11149 const char *filename;
11150 const char *context_list;
11152 unsigned int file_index;
11154 if (filename != NULL)
11156 dw_die_ref unit_die = new_die (DW_TAG_module, comp_unit_die);
11157 tree context_list_decl
11158 = build_decl (LABEL_DECL, get_identifier (context_list),
11159 void_type_node);
11161 TREE_PUBLIC (context_list_decl) = TRUE;
11162 add_name_attribute (unit_die, context_list);
11163 file_index = lookup_filename (filename);
11164 add_AT_unsigned (unit_die, DW_AT_decl_file, file_index);
11165 add_pubname (context_list_decl, unit_die);
11169 /* Debug information for a global DECL. Called from toplev.c after
11170 compilation proper has finished. */
11171 static void
11172 dwarf2out_global_decl (decl)
11173 tree decl;
11175 /* Output DWARF2 information for file-scope tentative data object
11176 declarations, file-scope (extern) function declarations (which
11177 had no corresponding body) and file-scope tagged type
11178 declarations and definitions which have not yet been forced out. */
11180 if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
11181 dwarf2out_decl (decl);
11184 /* Write the debugging output for DECL. */
11186 void
11187 dwarf2out_decl (decl)
11188 tree decl;
11190 dw_die_ref context_die = comp_unit_die;
11192 if (TREE_CODE (decl) == ERROR_MARK)
11193 return;
11195 /* If this ..._DECL node is marked to be ignored, then ignore it. */
11196 if (DECL_IGNORED_P (decl))
11197 return;
11199 switch (TREE_CODE (decl))
11201 case FUNCTION_DECL:
11202 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration of a
11203 builtin function. Explicit programmer-supplied declarations of
11204 these same functions should NOT be ignored however. */
11205 if (DECL_EXTERNAL (decl) && DECL_BUILT_IN (decl))
11206 return;
11208 /* What we would really like to do here is to filter out all mere
11209 file-scope declarations of file-scope functions which are never
11210 referenced later within this translation unit (and keep all of ones
11211 that *are* referenced later on) but we aren't clairvoyant, so we have
11212 no idea which functions will be referenced in the future (i.e. later
11213 on within the current translation unit). So here we just ignore all
11214 file-scope function declarations which are not also definitions. If
11215 and when the debugger needs to know something about these functions,
11216 it will have to hunt around and find the DWARF information associated
11217 with the definition of the function. Note that we can't just check
11218 `DECL_EXTERNAL' to find out which FUNCTION_DECL nodes represent
11219 definitions and which ones represent mere declarations. We have to
11220 check `DECL_INITIAL' instead. That's because the C front-end
11221 supports some weird semantics for "extern inline" function
11222 definitions. These can get inlined within the current translation
11223 unit (an thus, we need to generate DWARF info for their abstract
11224 instances so that the DWARF info for the concrete inlined instances
11225 can have something to refer to) but the compiler never generates any
11226 out-of-lines instances of such things (despite the fact that they
11227 *are* definitions). The important point is that the C front-end
11228 marks these "extern inline" functions as DECL_EXTERNAL, but we need
11229 to generate DWARF for them anyway. Note that the C++ front-end also
11230 plays some similar games for inline function definitions appearing
11231 within include files which also contain
11232 `#pragma interface' pragmas. */
11233 if (DECL_INITIAL (decl) == NULL_TREE)
11234 return;
11236 /* If we're a nested function, initially use a parent of NULL; if we're
11237 a plain function, this will be fixed up in decls_for_scope. If
11238 we're a method, it will be ignored, since we already have a DIE. */
11239 if (decl_function_context (decl))
11240 context_die = NULL;
11242 break;
11244 case VAR_DECL:
11245 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
11246 declaration and if the declaration was never even referenced from
11247 within this entire compilation unit. We suppress these DIEs in
11248 order to save space in the .debug section (by eliminating entries
11249 which are probably useless). Note that we must not suppress
11250 block-local extern declarations (whether used or not) because that
11251 would screw-up the debugger's name lookup mechanism and cause it to
11252 miss things which really ought to be in scope at a given point. */
11253 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
11254 return;
11256 /* If we are in terse mode, don't generate any DIEs to represent any
11257 variable declarations or definitions. */
11258 if (debug_info_level <= DINFO_LEVEL_TERSE)
11259 return;
11260 break;
11262 case TYPE_DECL:
11263 /* Don't emit stubs for types unless they are needed by other DIEs. */
11264 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
11265 return;
11267 /* Don't bother trying to generate any DIEs to represent any of the
11268 normal built-in types for the language we are compiling. */
11269 if (DECL_SOURCE_LINE (decl) == 0)
11271 /* OK, we need to generate one for `bool' so GDB knows what type
11272 comparisons have. */
11273 if ((get_AT_unsigned (comp_unit_die, DW_AT_language)
11274 == DW_LANG_C_plus_plus)
11275 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE)
11276 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
11278 return;
11281 /* If we are in terse mode, don't generate any DIEs for types. */
11282 if (debug_info_level <= DINFO_LEVEL_TERSE)
11283 return;
11285 /* If we're a function-scope tag, initially use a parent of NULL;
11286 this will be fixed up in decls_for_scope. */
11287 if (decl_function_context (decl))
11288 context_die = NULL;
11290 break;
11292 default:
11293 return;
11296 gen_decl_die (decl, context_die);
11299 /* Output a marker (i.e. a label) for the beginning of the generated code for
11300 a lexical block. */
11302 static void
11303 dwarf2out_begin_block (line, blocknum)
11304 unsigned int line ATTRIBUTE_UNUSED;
11305 unsigned int blocknum;
11307 function_section (current_function_decl);
11308 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
11311 /* Output a marker (i.e. a label) for the end of the generated code for a
11312 lexical block. */
11314 static void
11315 dwarf2out_end_block (line, blocknum)
11316 unsigned int line ATTRIBUTE_UNUSED;
11317 unsigned int blocknum;
11319 function_section (current_function_decl);
11320 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
11323 /* Returns nonzero if it is appropriate not to emit any debugging
11324 information for BLOCK, because it doesn't contain any instructions.
11326 Don't allow this for blocks with nested functions or local classes
11327 as we would end up with orphans, and in the presence of scheduling
11328 we may end up calling them anyway. */
11330 static bool
11331 dwarf2out_ignore_block (block)
11332 tree block;
11334 tree decl;
11335 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
11336 if (TREE_CODE (decl) == FUNCTION_DECL
11337 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
11338 return 0;
11339 return 1;
11342 /* Lookup a filename (in the list of filenames that we know about here in
11343 dwarf2out.c) and return its "index". The index of each (known) filename is
11344 just a unique number which is associated with only that one filename.
11345 We need such numbers for the sake of generating labels
11346 (in the .debug_sfnames section) and references to those
11347 files numbers (in the .debug_srcinfo and.debug_macinfo sections).
11348 If the filename given as an argument is not found in our current list,
11349 add it to the list and assign it the next available unique index number.
11350 In order to speed up searches, we remember the index of the filename
11351 was looked up last. This handles the majority of all searches. */
11353 static unsigned
11354 lookup_filename (file_name)
11355 const char *file_name;
11357 unsigned i;
11359 /* ??? Why isn't DECL_SOURCE_FILE left null instead. */
11360 if (strcmp (file_name, "<internal>") == 0
11361 || strcmp (file_name, "<built-in>") == 0)
11362 return 0;
11364 /* Check to see if the file name that was searched on the previous
11365 call matches this file name. If so, return the index. */
11366 if (file_table.last_lookup_index != 0)
11367 if (strcmp (file_name, file_table.table[file_table.last_lookup_index]) == 0)
11368 return file_table.last_lookup_index;
11370 /* Didn't match the previous lookup, search the table */
11371 for (i = 1; i < file_table.in_use; ++i)
11372 if (strcmp (file_name, file_table.table[i]) == 0)
11374 file_table.last_lookup_index = i;
11375 return i;
11378 /* Prepare to add a new table entry by making sure there is enough space in
11379 the table to do so. If not, expand the current table. */
11380 if (i == file_table.allocated)
11382 file_table.allocated = i + FILE_TABLE_INCREMENT;
11383 file_table.table = (char **)
11384 xrealloc (file_table.table, file_table.allocated * sizeof (char *));
11387 /* Add the new entry to the end of the filename table. */
11388 file_table.table[i] = xstrdup (file_name);
11389 file_table.in_use = i + 1;
11390 file_table.last_lookup_index = i;
11392 if (DWARF2_ASM_LINE_DEBUG_INFO)
11393 fprintf (asm_out_file, "\t.file %u \"%s\"\n", i, file_name);
11395 return i;
11398 static void
11399 init_file_table ()
11401 /* Allocate the initial hunk of the file_table. */
11402 file_table.table = (char **) xcalloc (FILE_TABLE_INCREMENT, sizeof (char *));
11403 file_table.allocated = FILE_TABLE_INCREMENT;
11405 /* Skip the first entry - file numbers begin at 1. */
11406 file_table.in_use = 1;
11407 file_table.last_lookup_index = 0;
11410 /* Output a label to mark the beginning of a source code line entry
11411 and record information relating to this source line, in
11412 'line_info_table' for later output of the .debug_line section. */
11414 static void
11415 dwarf2out_source_line (line, filename)
11416 unsigned int line;
11417 const char *filename;
11419 if (debug_info_level >= DINFO_LEVEL_NORMAL)
11421 function_section (current_function_decl);
11423 /* If requested, emit something human-readable. */
11424 if (flag_debug_asm)
11425 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
11426 filename, line);
11428 if (DWARF2_ASM_LINE_DEBUG_INFO)
11430 unsigned file_num = lookup_filename (filename);
11432 /* Emit the .loc directive understood by GNU as. */
11433 fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
11435 /* Indicate that line number info exists. */
11436 ++line_info_table_in_use;
11438 /* Indicate that multiple line number tables exist. */
11439 if (DECL_SECTION_NAME (current_function_decl))
11440 ++separate_line_info_table_in_use;
11442 else if (DECL_SECTION_NAME (current_function_decl))
11444 dw_separate_line_info_ref line_info;
11445 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, SEPARATE_LINE_CODE_LABEL,
11446 separate_line_info_table_in_use);
11448 /* expand the line info table if necessary */
11449 if (separate_line_info_table_in_use
11450 == separate_line_info_table_allocated)
11452 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
11453 separate_line_info_table
11454 = (dw_separate_line_info_ref)
11455 xrealloc (separate_line_info_table,
11456 separate_line_info_table_allocated
11457 * sizeof (dw_separate_line_info_entry));
11460 /* Add the new entry at the end of the line_info_table. */
11461 line_info
11462 = &separate_line_info_table[separate_line_info_table_in_use++];
11463 line_info->dw_file_num = lookup_filename (filename);
11464 line_info->dw_line_num = line;
11465 line_info->function = current_funcdef_number;
11467 else
11469 dw_line_info_ref line_info;
11471 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, LINE_CODE_LABEL,
11472 line_info_table_in_use);
11474 /* Expand the line info table if necessary. */
11475 if (line_info_table_in_use == line_info_table_allocated)
11477 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
11478 line_info_table
11479 = (dw_line_info_ref)
11480 xrealloc (line_info_table,
11481 (line_info_table_allocated
11482 * sizeof (dw_line_info_entry)));
11485 /* Add the new entry at the end of the line_info_table. */
11486 line_info = &line_info_table[line_info_table_in_use++];
11487 line_info->dw_file_num = lookup_filename (filename);
11488 line_info->dw_line_num = line;
11493 /* Record the beginning of a new source file. */
11495 static void
11496 dwarf2out_start_source_file (lineno, filename)
11497 unsigned int lineno;
11498 const char *filename;
11500 if (flag_eliminate_dwarf2_dups)
11502 /* Record the beginning of the file for break_out_includes. */
11503 dw_die_ref bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die);
11504 add_AT_string (bincl_die, DW_AT_name, filename);
11506 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11508 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11509 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
11510 dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
11511 lineno);
11512 dw2_asm_output_data_uleb128 (lookup_filename (filename),
11513 "Filename we just started");
11517 /* Record the end of a source file. */
11519 static void
11520 dwarf2out_end_source_file (lineno)
11521 unsigned int lineno ATTRIBUTE_UNUSED;
11523 if (flag_eliminate_dwarf2_dups)
11525 /* Record the end of the file for break_out_includes. */
11526 new_die (DW_TAG_GNU_EINCL, comp_unit_die);
11528 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11530 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11531 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
11535 /* Called from debug_define in toplev.c. The `buffer' parameter contains
11536 the tail part of the directive line, i.e. the part which is past the
11537 initial whitespace, #, whitespace, directive-name, whitespace part. */
11539 static void
11540 dwarf2out_define (lineno, buffer)
11541 unsigned lineno ATTRIBUTE_UNUSED;
11542 const char *buffer ATTRIBUTE_UNUSED;
11544 static int initialized = 0;
11545 if (!initialized)
11547 dwarf2out_start_source_file (0, primary_filename);
11548 initialized = 1;
11550 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11552 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11553 dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
11554 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
11555 dw2_asm_output_nstring (buffer, -1, "The macro");
11559 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
11560 the tail part of the directive line, i.e. the part which is past the
11561 initial whitespace, #, whitespace, directive-name, whitespace part. */
11563 static void
11564 dwarf2out_undef (lineno, buffer)
11565 unsigned lineno ATTRIBUTE_UNUSED;
11566 const char *buffer ATTRIBUTE_UNUSED;
11568 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11570 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11571 dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
11572 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
11573 dw2_asm_output_nstring (buffer, -1, "The macro");
11577 /* Set up for Dwarf output at the start of compilation. */
11579 static void
11580 dwarf2out_init (main_input_filename)
11581 const char *main_input_filename;
11583 init_file_table ();
11585 /* Remember the name of the primary input file. */
11586 primary_filename = main_input_filename;
11588 /* Add it to the file table first, under the assumption that we'll
11589 be emitting line number data for it first, which avoids having
11590 to add an initial DW_LNS_set_file. */
11591 lookup_filename (main_input_filename);
11593 /* Allocate the initial hunk of the decl_die_table. */
11594 decl_die_table
11595 = (dw_die_ref *) xcalloc (DECL_DIE_TABLE_INCREMENT, sizeof (dw_die_ref));
11596 decl_die_table_allocated = DECL_DIE_TABLE_INCREMENT;
11597 decl_die_table_in_use = 0;
11599 /* Allocate the initial hunk of the decl_scope_table. */
11600 VARRAY_TREE_INIT (decl_scope_table, 256, "decl_scope_table");
11601 ggc_add_tree_varray_root (&decl_scope_table, 1);
11603 /* Allocate the initial hunk of the abbrev_die_table. */
11604 abbrev_die_table
11605 = (dw_die_ref *) xcalloc (ABBREV_DIE_TABLE_INCREMENT,
11606 sizeof (dw_die_ref));
11607 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
11608 /* Zero-th entry is allocated, but unused */
11609 abbrev_die_table_in_use = 1;
11611 /* Allocate the initial hunk of the line_info_table. */
11612 line_info_table
11613 = (dw_line_info_ref) xcalloc (LINE_INFO_TABLE_INCREMENT,
11614 sizeof (dw_line_info_entry));
11615 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
11616 /* Zero-th entry is allocated, but unused */
11617 line_info_table_in_use = 1;
11619 /* Generate the initial DIE for the .debug section. Note that the (string)
11620 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
11621 will (typically) be a relative pathname and that this pathname should be
11622 taken as being relative to the directory from which the compiler was
11623 invoked when the given (base) source file was compiled. */
11624 comp_unit_die = gen_compile_unit_die (main_input_filename);
11626 VARRAY_TREE_INIT (incomplete_types, 64, "incomplete_types");
11627 ggc_add_tree_varray_root (&incomplete_types, 1);
11629 VARRAY_RTX_INIT (used_rtx_varray, 32, "used_rtx_varray");
11630 ggc_add_rtx_varray_root (&used_rtx_varray, 1);
11632 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
11633 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
11634 DEBUG_ABBREV_SECTION_LABEL, 0);
11635 if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
11636 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
11637 else
11638 strcpy (text_section_label, stripattributes (TEXT_SECTION_NAME));
11639 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
11640 DEBUG_INFO_SECTION_LABEL, 0);
11641 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
11642 DEBUG_LINE_SECTION_LABEL, 0);
11643 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
11644 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
11645 named_section_flags (DEBUG_INFO_SECTION, SECTION_DEBUG);
11646 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
11647 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
11648 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
11649 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11651 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11652 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
11653 DEBUG_MACINFO_SECTION_LABEL, 0);
11654 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
11657 if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
11659 text_section ();
11660 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
11664 /* Output stuff that dwarf requires at the end of every file,
11665 and generate the DWARF-2 debugging info. */
11667 static void
11668 dwarf2out_finish (input_filename)
11669 const char *input_filename ATTRIBUTE_UNUSED;
11671 limbo_die_node *node, *next_node;
11672 dw_die_ref die = 0;
11674 /* Traverse the limbo die list, and add parent/child links. The only
11675 dies without parents that should be here are concrete instances of
11676 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
11677 For concrete instances, we can get the parent die from the abstract
11678 instance. */
11679 for (node = limbo_die_list; node; node = next_node)
11681 next_node = node->next;
11682 die = node->die;
11684 if (die->die_parent == NULL)
11686 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
11687 if (origin)
11688 add_child_die (origin->die_parent, die);
11689 else if (die == comp_unit_die)
11691 else
11692 abort ();
11694 free (node);
11696 limbo_die_list = NULL;
11698 /* Walk through the list of incomplete types again, trying once more to
11699 emit full debugging info for them. */
11700 retry_incomplete_types ();
11702 /* We need to reverse all the dies before break_out_includes, or
11703 we'll see the end of an include file before the beginning. */
11704 reverse_all_dies (comp_unit_die);
11706 /* Generate separate CUs for each of the include files we've seen.
11707 They will go into limbo_die_list. */
11708 if (flag_eliminate_dwarf2_dups)
11709 break_out_includes (comp_unit_die);
11711 /* Traverse the DIE's and add add sibling attributes to those DIE's
11712 that have children. */
11713 add_sibling_attributes (comp_unit_die);
11714 for (node = limbo_die_list; node; node = node->next)
11715 add_sibling_attributes (node->die);
11717 /* Output a terminator label for the .text section. */
11718 text_section ();
11719 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, TEXT_END_LABEL, 0);
11721 /* Output the source line correspondence table. We must do this
11722 even if there is no line information. Otherwise, on an empty
11723 translation unit, we will generate a present, but empty,
11724 .debug_info section. IRIX 6.5 `nm' will then complain when
11725 examining the file. */
11726 if (! DWARF2_ASM_LINE_DEBUG_INFO)
11728 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
11729 output_line_info ();
11732 /* Output location list section if necessary. */
11733 if (have_location_lists)
11735 /* Output the location lists info. */
11736 named_section_flags (DEBUG_LOC_SECTION, SECTION_DEBUG);
11737 ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
11738 DEBUG_LOC_SECTION_LABEL, 0);
11739 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
11740 output_location_lists (die);
11741 have_location_lists = 0;
11744 /* We can only use the low/high_pc attributes if all of the code was
11745 in .text. */
11746 if (separate_line_info_table_in_use == 0)
11748 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
11749 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
11751 /* And if it wasn't, we need to give .debug_loc and .debug_ranges
11752 an appropriate "base address". Use zero so that these addresses
11753 become absolute. */
11754 else if (have_location_lists || ranges_table_in_use)
11755 add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
11757 if (debug_info_level >= DINFO_LEVEL_NORMAL)
11758 add_AT_lbl_offset (comp_unit_die, DW_AT_stmt_list,
11759 debug_line_section_label);
11761 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11762 add_AT_lbl_offset (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
11764 /* Output all of the compilation units. We put the main one last so that
11765 the offsets are available to output_pubnames. */
11766 for (node = limbo_die_list; node; node = node->next)
11767 output_comp_unit (node->die);
11768 output_comp_unit (comp_unit_die);
11770 /* Output the abbreviation table. */
11771 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
11772 output_abbrev_section ();
11774 if (pubname_table_in_use)
11776 /* Output public names table. */
11777 named_section_flags (DEBUG_PUBNAMES_SECTION, SECTION_DEBUG);
11778 output_pubnames ();
11781 /* We only put functions in the arange table, so don't write it out if
11782 we don't have any. */
11783 if (fde_table_in_use)
11785 /* Output the address range information. */
11786 named_section_flags (DEBUG_ARANGES_SECTION, SECTION_DEBUG);
11787 output_aranges ();
11790 /* Output ranges section if necessary. */
11791 if (ranges_table_in_use)
11793 named_section_flags (DEBUG_RANGES_SECTION, SECTION_DEBUG);
11794 output_ranges ();
11797 /* Have to end the primary source file. */
11798 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11800 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11801 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
11804 #endif /* DWARF2_DEBUGGING_INFO */