* expr.c (expand_expr) [MULT_EXPR]: Do not apply distributive law
[official-gcc.git] / gcc / dwarf2out.c
blob8d7d48b39bb26ee61c2a73924fe63042be47fb72
1 /* Output Dwarf2 format symbol table information from the GNU C compiler.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
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: Emit .debug_line header even when there are no functions, since
26 the file numbers are used by .debug_info. Alternately, leave
27 out locations for types and decls.
28 Avoid talking about ctors and op= for PODs.
29 Factor out common prologue sequences into multiple CIEs. */
31 /* The first part of this file deals with the DWARF 2 frame unwind
32 information, which is also used by the GCC efficient exception handling
33 mechanism. The second part, controlled only by an #ifdef
34 DWARF2_DEBUGGING_INFO, deals with the other DWARF 2 debugging
35 information. */
37 #include "config.h"
38 #include "system.h"
39 #include "tree.h"
40 #include "flags.h"
41 #include "rtl.h"
42 #include "hard-reg-set.h"
43 #include "regs.h"
44 #include "insn-config.h"
45 #include "reload.h"
46 #include "function.h"
47 #include "output.h"
48 #include "expr.h"
49 #include "libfuncs.h"
50 #include "except.h"
51 #include "dwarf2.h"
52 #include "dwarf2out.h"
53 #include "dwarf2asm.h"
54 #include "toplev.h"
55 #include "varray.h"
56 #include "ggc.h"
57 #include "md5.h"
58 #include "tm_p.h"
59 #include "diagnostic.h"
60 #include "debug.h"
61 #include "target.h"
62 #include "langhooks.h"
63 #include "hashtable.h"
65 #ifdef DWARF2_DEBUGGING_INFO
66 static void dwarf2out_source_line PARAMS ((unsigned int, const char *));
67 #endif
69 /* DWARF2 Abbreviation Glossary:
70 CFA = Canonical Frame Address
71 a fixed address on the stack which identifies a call frame.
72 We define it to be the value of SP just before the call insn.
73 The CFA register and offset, which may change during the course
74 of the function, are used to calculate its value at runtime.
75 CFI = Call Frame Instruction
76 an instruction for the DWARF2 abstract machine
77 CIE = Common Information Entry
78 information describing information common to one or more FDEs
79 DIE = Debugging Information Entry
80 FDE = Frame Description Entry
81 information describing the stack call frame, in particular,
82 how to restore registers
84 DW_CFA_... = DWARF2 CFA call frame instruction
85 DW_TAG_... = DWARF2 DIE tag */
87 /* Decide whether we want to emit frame unwind information for the current
88 translation unit. */
90 int
91 dwarf2out_do_frame ()
93 return (write_symbols == DWARF2_DEBUG
94 || write_symbols == VMS_AND_DWARF2_DEBUG
95 #ifdef DWARF2_FRAME_INFO
96 || DWARF2_FRAME_INFO
97 #endif
98 #ifdef DWARF2_UNWIND_INFO
99 || flag_unwind_tables
100 || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)
101 #endif
105 /* The number of the current function definition for which debugging
106 information is being generated. These numbers range from 1 up to the
107 maximum number of function definitions contained within the current
108 compilation unit. These numbers are used to create unique label id's
109 unique to each function definition. */
110 unsigned current_funcdef_number = 0;
112 /* The size of the target's pointer type. */
113 #ifndef PTR_SIZE
114 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
115 #endif
117 /* Default version of targetm.eh_frame_section. Note this must appear
118 outside the DWARF2_DEBUGGING_INFO || DWARF2_UNWIND_INFO macro
119 guards. */
121 void
122 default_eh_frame_section ()
124 #ifdef EH_FRAME_SECTION_NAME
125 named_section_flags (EH_FRAME_SECTION_NAME, SECTION_WRITE);
126 #else
127 tree label = get_file_function_name ('F');
129 data_section ();
130 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
131 ASM_GLOBALIZE_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
132 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
133 #endif
136 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
138 /* How to start an assembler comment. */
139 #ifndef ASM_COMMENT_START
140 #define ASM_COMMENT_START ";#"
141 #endif
143 typedef struct dw_cfi_struct *dw_cfi_ref;
144 typedef struct dw_fde_struct *dw_fde_ref;
145 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
147 /* Call frames are described using a sequence of Call Frame
148 Information instructions. The register number, offset
149 and address fields are provided as possible operands;
150 their use is selected by the opcode field. */
152 typedef union dw_cfi_oprnd_struct
154 unsigned long dw_cfi_reg_num;
155 long int dw_cfi_offset;
156 const char *dw_cfi_addr;
157 struct dw_loc_descr_struct *dw_cfi_loc;
159 dw_cfi_oprnd;
161 typedef struct dw_cfi_struct
163 dw_cfi_ref dw_cfi_next;
164 enum dwarf_call_frame_info dw_cfi_opc;
165 dw_cfi_oprnd dw_cfi_oprnd1;
166 dw_cfi_oprnd dw_cfi_oprnd2;
168 dw_cfi_node;
170 /* This is how we define the location of the CFA. We use to handle it
171 as REG + OFFSET all the time, but now it can be more complex.
172 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
173 Instead of passing around REG and OFFSET, we pass a copy
174 of this structure. */
175 typedef struct cfa_loc
177 unsigned long reg;
178 long offset;
179 long base_offset;
180 int indirect; /* 1 if CFA is accessed via a dereference. */
181 } dw_cfa_location;
183 /* All call frame descriptions (FDE's) in the GCC generated DWARF
184 refer to a single Common Information Entry (CIE), defined at
185 the beginning of the .debug_frame section. This use of a single
186 CIE obviates the need to keep track of multiple CIE's
187 in the DWARF generation routines below. */
189 typedef struct dw_fde_struct
191 const char *dw_fde_begin;
192 const char *dw_fde_current_label;
193 const char *dw_fde_end;
194 dw_cfi_ref dw_fde_cfi;
195 unsigned funcdef_number;
196 unsigned nothrow : 1;
197 unsigned uses_eh_lsda : 1;
199 dw_fde_node;
201 /* Maximum size (in bytes) of an artificially generated label. */
202 #define MAX_ARTIFICIAL_LABEL_BYTES 30
204 /* The size of addresses as they appear in the Dwarf 2 data.
205 Some architectures use word addresses to refer to code locations,
206 but Dwarf 2 info always uses byte addresses. On such machines,
207 Dwarf 2 addresses need to be larger than the architecture's
208 pointers. */
209 #ifndef DWARF2_ADDR_SIZE
210 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
211 #endif
213 /* The size in bytes of a DWARF field indicating an offset or length
214 relative to a debug info section, specified to be 4 bytes in the
215 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
216 as PTR_SIZE. */
218 #ifndef DWARF_OFFSET_SIZE
219 #define DWARF_OFFSET_SIZE 4
220 #endif
222 #define DWARF_VERSION 2
224 /* Round SIZE up to the nearest BOUNDARY. */
225 #define DWARF_ROUND(SIZE,BOUNDARY) \
226 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
228 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
229 #ifndef DWARF_CIE_DATA_ALIGNMENT
230 #ifdef STACK_GROWS_DOWNWARD
231 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
232 #else
233 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
234 #endif
235 #endif
237 /* A pointer to the base of a table that contains frame description
238 information for each routine. */
239 static dw_fde_ref fde_table;
241 /* Number of elements currently allocated for fde_table. */
242 static unsigned fde_table_allocated;
244 /* Number of elements in fde_table currently in use. */
245 static unsigned fde_table_in_use;
247 /* Size (in elements) of increments by which we may expand the
248 fde_table. */
249 #define FDE_TABLE_INCREMENT 256
251 /* A list of call frame insns for the CIE. */
252 static dw_cfi_ref cie_cfi_head;
254 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
255 attribute that accelerates the lookup of the FDE associated
256 with the subprogram. This variable holds the table index of the FDE
257 associated with the current function (body) definition. */
258 static unsigned current_funcdef_fde;
260 struct ht *debug_str_hash;
262 struct indirect_string_node
264 struct ht_identifier id;
265 unsigned int refcount;
266 unsigned int form;
267 char *label;
270 /* Forward declarations for functions defined in this file. */
272 static char *stripattributes PARAMS ((const char *));
273 static const char *dwarf_cfi_name PARAMS ((unsigned));
274 static dw_cfi_ref new_cfi PARAMS ((void));
275 static void add_cfi PARAMS ((dw_cfi_ref *, dw_cfi_ref));
276 static void add_fde_cfi PARAMS ((const char *, dw_cfi_ref));
277 static void lookup_cfa_1 PARAMS ((dw_cfi_ref,
278 dw_cfa_location *));
279 static void lookup_cfa PARAMS ((dw_cfa_location *));
280 static void reg_save PARAMS ((const char *, unsigned,
281 unsigned, long));
282 static void initial_return_save PARAMS ((rtx));
283 static long stack_adjust_offset PARAMS ((rtx));
284 static void output_cfi PARAMS ((dw_cfi_ref, dw_fde_ref, int));
285 static void output_call_frame_info PARAMS ((int));
286 static void dwarf2out_stack_adjust PARAMS ((rtx));
287 static void queue_reg_save PARAMS ((const char *, rtx, long));
288 static void flush_queued_reg_saves PARAMS ((void));
289 static bool clobbers_queued_reg_save PARAMS ((rtx));
290 static void dwarf2out_frame_debug_expr PARAMS ((rtx, const char *));
292 /* Support for complex CFA locations. */
293 static void output_cfa_loc PARAMS ((dw_cfi_ref));
294 static void get_cfa_from_loc_descr PARAMS ((dw_cfa_location *,
295 struct dw_loc_descr_struct *));
296 static struct dw_loc_descr_struct *build_cfa_loc
297 PARAMS ((dw_cfa_location *));
298 static void def_cfa_1 PARAMS ((const char *,
299 dw_cfa_location *));
301 /* How to start an assembler comment. */
302 #ifndef ASM_COMMENT_START
303 #define ASM_COMMENT_START ";#"
304 #endif
306 /* Data and reference forms for relocatable data. */
307 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
308 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
310 /* Pseudo-op for defining a new section. */
311 #ifndef SECTION_ASM_OP
312 #define SECTION_ASM_OP "\t.section\t"
313 #endif
315 #ifndef DEBUG_FRAME_SECTION
316 #define DEBUG_FRAME_SECTION ".debug_frame"
317 #endif
319 #ifndef FUNC_BEGIN_LABEL
320 #define FUNC_BEGIN_LABEL "LFB"
321 #endif
323 #ifndef FUNC_END_LABEL
324 #define FUNC_END_LABEL "LFE"
325 #endif
327 #define FRAME_BEGIN_LABEL "Lframe"
328 #define CIE_AFTER_SIZE_LABEL "LSCIE"
329 #define CIE_END_LABEL "LECIE"
330 #define CIE_LENGTH_LABEL "LLCIE"
331 #define FDE_LABEL "LSFDE"
332 #define FDE_AFTER_SIZE_LABEL "LASFDE"
333 #define FDE_END_LABEL "LEFDE"
334 #define FDE_LENGTH_LABEL "LLFDE"
335 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
336 #define LINE_NUMBER_END_LABEL "LELT"
337 #define LN_PROLOG_AS_LABEL "LASLTP"
338 #define LN_PROLOG_END_LABEL "LELTP"
339 #define DIE_LABEL_PREFIX "DW"
341 /* Definitions of defaults for various types of primitive assembly language
342 output operations. These may be overridden from within the tm.h file,
343 but typically, that is unnecessary. */
345 #ifdef SET_ASM_OP
346 #ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
347 #define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \
348 do { \
349 fprintf (FILE, "%s", SET_ASM_OP); \
350 assemble_name (FILE, SY); \
351 fputc (',', FILE); \
352 assemble_name (FILE, HI); \
353 fputc ('-', FILE); \
354 assemble_name (FILE, LO); \
355 } while (0)
356 #endif
357 #endif
359 /* The DWARF 2 CFA column which tracks the return address. Normally this
360 is the column for PC, or the first column after all of the hard
361 registers. */
362 #ifndef DWARF_FRAME_RETURN_COLUMN
363 #ifdef PC_REGNUM
364 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
365 #else
366 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
367 #endif
368 #endif
370 /* The mapping from gcc register number to DWARF 2 CFA column number. By
371 default, we just provide columns for all registers. */
372 #ifndef DWARF_FRAME_REGNUM
373 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
374 #endif
376 /* The offset from the incoming value of %sp to the top of the stack frame
377 for the current function. */
378 #ifndef INCOMING_FRAME_SP_OFFSET
379 #define INCOMING_FRAME_SP_OFFSET 0
380 #endif
382 /* Hook used by __throw. */
385 expand_builtin_dwarf_fp_regnum ()
387 return GEN_INT (DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM));
390 /* Return a pointer to a copy of the section string name S with all
391 attributes stripped off, and an asterisk prepended (for assemble_name). */
393 static inline char *
394 stripattributes (s)
395 const char *s;
397 char *stripped = xmalloc (strlen (s) + 2);
398 char *p = stripped;
400 *p++ = '*';
402 while (*s && *s != ',')
403 *p++ = *s++;
405 *p = '\0';
406 return stripped;
409 /* Generate code to initialize the register size table. */
411 void
412 expand_builtin_init_dwarf_reg_sizes (address)
413 tree address;
415 int i;
416 enum machine_mode mode = TYPE_MODE (char_type_node);
417 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0);
418 rtx mem = gen_rtx_MEM (BLKmode, addr);
420 for (i = 0; i < DWARF_FRAME_REGISTERS; i++)
422 HOST_WIDE_INT offset = DWARF_FRAME_REGNUM (i) * GET_MODE_SIZE (mode);
423 HOST_WIDE_INT size = GET_MODE_SIZE (reg_raw_mode[i]);
425 if (offset < 0)
426 continue;
428 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
432 /* Convert a DWARF call frame info. operation to its string name */
434 static const char *
435 dwarf_cfi_name (cfi_opc)
436 unsigned cfi_opc;
438 switch (cfi_opc)
440 case DW_CFA_advance_loc:
441 return "DW_CFA_advance_loc";
442 case DW_CFA_offset:
443 return "DW_CFA_offset";
444 case DW_CFA_restore:
445 return "DW_CFA_restore";
446 case DW_CFA_nop:
447 return "DW_CFA_nop";
448 case DW_CFA_set_loc:
449 return "DW_CFA_set_loc";
450 case DW_CFA_advance_loc1:
451 return "DW_CFA_advance_loc1";
452 case DW_CFA_advance_loc2:
453 return "DW_CFA_advance_loc2";
454 case DW_CFA_advance_loc4:
455 return "DW_CFA_advance_loc4";
456 case DW_CFA_offset_extended:
457 return "DW_CFA_offset_extended";
458 case DW_CFA_restore_extended:
459 return "DW_CFA_restore_extended";
460 case DW_CFA_undefined:
461 return "DW_CFA_undefined";
462 case DW_CFA_same_value:
463 return "DW_CFA_same_value";
464 case DW_CFA_register:
465 return "DW_CFA_register";
466 case DW_CFA_remember_state:
467 return "DW_CFA_remember_state";
468 case DW_CFA_restore_state:
469 return "DW_CFA_restore_state";
470 case DW_CFA_def_cfa:
471 return "DW_CFA_def_cfa";
472 case DW_CFA_def_cfa_register:
473 return "DW_CFA_def_cfa_register";
474 case DW_CFA_def_cfa_offset:
475 return "DW_CFA_def_cfa_offset";
477 /* DWARF 3 */
478 case DW_CFA_def_cfa_expression:
479 return "DW_CFA_def_cfa_expression";
480 case DW_CFA_expression:
481 return "DW_CFA_expression";
482 case DW_CFA_offset_extended_sf:
483 return "DW_CFA_offset_extended_sf";
484 case DW_CFA_def_cfa_sf:
485 return "DW_CFA_def_cfa_sf";
486 case DW_CFA_def_cfa_offset_sf:
487 return "DW_CFA_def_cfa_offset_sf";
489 /* SGI/MIPS specific */
490 case DW_CFA_MIPS_advance_loc8:
491 return "DW_CFA_MIPS_advance_loc8";
493 /* GNU extensions */
494 case DW_CFA_GNU_window_save:
495 return "DW_CFA_GNU_window_save";
496 case DW_CFA_GNU_args_size:
497 return "DW_CFA_GNU_args_size";
498 case DW_CFA_GNU_negative_offset_extended:
499 return "DW_CFA_GNU_negative_offset_extended";
501 default:
502 return "DW_CFA_<unknown>";
506 /* Return a pointer to a newly allocated Call Frame Instruction. */
508 static inline dw_cfi_ref
509 new_cfi ()
511 dw_cfi_ref cfi = (dw_cfi_ref) xmalloc (sizeof (dw_cfi_node));
513 cfi->dw_cfi_next = NULL;
514 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
515 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
517 return cfi;
520 /* Add a Call Frame Instruction to list of instructions. */
522 static inline void
523 add_cfi (list_head, cfi)
524 dw_cfi_ref *list_head;
525 dw_cfi_ref cfi;
527 dw_cfi_ref *p;
529 /* Find the end of the chain. */
530 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
533 *p = cfi;
536 /* Generate a new label for the CFI info to refer to. */
538 char *
539 dwarf2out_cfi_label ()
541 static char label[20];
542 static unsigned long label_num = 0;
544 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", label_num++);
545 ASM_OUTPUT_LABEL (asm_out_file, label);
546 return label;
549 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
550 or to the CIE if LABEL is NULL. */
552 static void
553 add_fde_cfi (label, cfi)
554 const char *label;
555 dw_cfi_ref cfi;
557 if (label)
559 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
561 if (*label == 0)
562 label = dwarf2out_cfi_label ();
564 if (fde->dw_fde_current_label == NULL
565 || strcmp (label, fde->dw_fde_current_label) != 0)
567 dw_cfi_ref xcfi;
569 fde->dw_fde_current_label = label = xstrdup (label);
571 /* Set the location counter to the new label. */
572 xcfi = new_cfi ();
573 xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
574 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
575 add_cfi (&fde->dw_fde_cfi, xcfi);
578 add_cfi (&fde->dw_fde_cfi, cfi);
581 else
582 add_cfi (&cie_cfi_head, cfi);
585 /* Subroutine of lookup_cfa. */
587 static inline void
588 lookup_cfa_1 (cfi, loc)
589 dw_cfi_ref cfi;
590 dw_cfa_location *loc;
592 switch (cfi->dw_cfi_opc)
594 case DW_CFA_def_cfa_offset:
595 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
596 break;
597 case DW_CFA_def_cfa_register:
598 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
599 break;
600 case DW_CFA_def_cfa:
601 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
602 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
603 break;
604 case DW_CFA_def_cfa_expression:
605 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
606 break;
607 default:
608 break;
612 /* Find the previous value for the CFA. */
614 static void
615 lookup_cfa (loc)
616 dw_cfa_location *loc;
618 dw_cfi_ref cfi;
620 loc->reg = (unsigned long) -1;
621 loc->offset = 0;
622 loc->indirect = 0;
623 loc->base_offset = 0;
625 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
626 lookup_cfa_1 (cfi, loc);
628 if (fde_table_in_use)
630 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
631 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
632 lookup_cfa_1 (cfi, loc);
636 /* The current rule for calculating the DWARF2 canonical frame address. */
637 static dw_cfa_location cfa;
639 /* The register used for saving registers to the stack, and its offset
640 from the CFA. */
641 static dw_cfa_location cfa_store;
643 /* The running total of the size of arguments pushed onto the stack. */
644 static long args_size;
646 /* The last args_size we actually output. */
647 static long old_args_size;
649 /* Entry point to update the canonical frame address (CFA).
650 LABEL is passed to add_fde_cfi. The value of CFA is now to be
651 calculated from REG+OFFSET. */
653 void
654 dwarf2out_def_cfa (label, reg, offset)
655 const char *label;
656 unsigned reg;
657 long offset;
659 dw_cfa_location loc;
660 loc.indirect = 0;
661 loc.base_offset = 0;
662 loc.reg = reg;
663 loc.offset = offset;
664 def_cfa_1 (label, &loc);
667 /* This routine does the actual work. The CFA is now calculated from
668 the dw_cfa_location structure. */
670 static void
671 def_cfa_1 (label, loc_p)
672 const char *label;
673 dw_cfa_location *loc_p;
675 dw_cfi_ref cfi;
676 dw_cfa_location old_cfa, loc;
678 cfa = *loc_p;
679 loc = *loc_p;
681 if (cfa_store.reg == loc.reg && loc.indirect == 0)
682 cfa_store.offset = loc.offset;
684 loc.reg = DWARF_FRAME_REGNUM (loc.reg);
685 lookup_cfa (&old_cfa);
687 /* If nothing changed, no need to issue any call frame instructions. */
688 if (loc.reg == old_cfa.reg && loc.offset == old_cfa.offset
689 && loc.indirect == old_cfa.indirect
690 && (loc.indirect == 0 || loc.base_offset == old_cfa.base_offset))
691 return;
693 cfi = new_cfi ();
695 if (loc.reg == old_cfa.reg && !loc.indirect)
697 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction,
698 indicating the CFA register did not change but the offset
699 did. */
700 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
701 cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
704 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
705 else if (loc.offset == old_cfa.offset && old_cfa.reg != (unsigned long) -1
706 && !loc.indirect)
708 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
709 indicating the CFA register has changed to <register> but the
710 offset has not changed. */
711 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
712 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
714 #endif
716 else if (loc.indirect == 0)
718 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
719 indicating the CFA register has changed to <register> with
720 the specified offset. */
721 cfi->dw_cfi_opc = DW_CFA_def_cfa;
722 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
723 cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
725 else
727 /* Construct a DW_CFA_def_cfa_expression instruction to
728 calculate the CFA using a full location expression since no
729 register-offset pair is available. */
730 struct dw_loc_descr_struct *loc_list;
732 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
733 loc_list = build_cfa_loc (&loc);
734 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
737 add_fde_cfi (label, cfi);
740 /* Add the CFI for saving a register. REG is the CFA column number.
741 LABEL is passed to add_fde_cfi.
742 If SREG is -1, the register is saved at OFFSET from the CFA;
743 otherwise it is saved in SREG. */
745 static void
746 reg_save (label, reg, sreg, offset)
747 const char *label;
748 unsigned reg;
749 unsigned sreg;
750 long offset;
752 dw_cfi_ref cfi = new_cfi ();
754 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
756 /* The following comparison is correct. -1 is used to indicate that
757 the value isn't a register number. */
758 if (sreg == (unsigned int) -1)
760 if (reg & ~0x3f)
761 /* The register number won't fit in 6 bits, so we have to use
762 the long form. */
763 cfi->dw_cfi_opc = DW_CFA_offset_extended;
764 else
765 cfi->dw_cfi_opc = DW_CFA_offset;
767 #ifdef ENABLE_CHECKING
769 /* If we get an offset that is not a multiple of
770 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
771 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
772 description. */
773 long check_offset = offset / DWARF_CIE_DATA_ALIGNMENT;
775 if (check_offset * DWARF_CIE_DATA_ALIGNMENT != offset)
776 abort ();
778 #endif
779 offset /= DWARF_CIE_DATA_ALIGNMENT;
780 if (offset < 0)
781 cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
783 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
785 else if (sreg == reg)
786 /* We could emit a DW_CFA_same_value in this case, but don't bother. */
787 return;
788 else
790 cfi->dw_cfi_opc = DW_CFA_register;
791 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
794 add_fde_cfi (label, cfi);
797 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
798 This CFI tells the unwinder that it needs to restore the window registers
799 from the previous frame's window save area.
801 ??? Perhaps we should note in the CIE where windows are saved (instead of
802 assuming 0(cfa)) and what registers are in the window. */
804 void
805 dwarf2out_window_save (label)
806 const char *label;
808 dw_cfi_ref cfi = new_cfi ();
810 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
811 add_fde_cfi (label, cfi);
814 /* Add a CFI to update the running total of the size of arguments
815 pushed onto the stack. */
817 void
818 dwarf2out_args_size (label, size)
819 const char *label;
820 long size;
822 dw_cfi_ref cfi;
824 if (size == old_args_size)
825 return;
827 old_args_size = size;
829 cfi = new_cfi ();
830 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
831 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
832 add_fde_cfi (label, cfi);
835 /* Entry point for saving a register to the stack. REG is the GCC register
836 number. LABEL and OFFSET are passed to reg_save. */
838 void
839 dwarf2out_reg_save (label, reg, offset)
840 const char *label;
841 unsigned reg;
842 long offset;
844 reg_save (label, DWARF_FRAME_REGNUM (reg), -1, offset);
847 /* Entry point for saving the return address in the stack.
848 LABEL and OFFSET are passed to reg_save. */
850 void
851 dwarf2out_return_save (label, offset)
852 const char *label;
853 long offset;
855 reg_save (label, DWARF_FRAME_RETURN_COLUMN, -1, offset);
858 /* Entry point for saving the return address in a register.
859 LABEL and SREG are passed to reg_save. */
861 void
862 dwarf2out_return_reg (label, sreg)
863 const char *label;
864 unsigned sreg;
866 reg_save (label, DWARF_FRAME_RETURN_COLUMN, sreg, 0);
869 /* Record the initial position of the return address. RTL is
870 INCOMING_RETURN_ADDR_RTX. */
872 static void
873 initial_return_save (rtl)
874 rtx rtl;
876 unsigned int reg = (unsigned int) -1;
877 HOST_WIDE_INT offset = 0;
879 switch (GET_CODE (rtl))
881 case REG:
882 /* RA is in a register. */
883 reg = DWARF_FRAME_REGNUM (REGNO (rtl));
884 break;
886 case MEM:
887 /* RA is on the stack. */
888 rtl = XEXP (rtl, 0);
889 switch (GET_CODE (rtl))
891 case REG:
892 if (REGNO (rtl) != STACK_POINTER_REGNUM)
893 abort ();
894 offset = 0;
895 break;
897 case PLUS:
898 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
899 abort ();
900 offset = INTVAL (XEXP (rtl, 1));
901 break;
903 case MINUS:
904 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
905 abort ();
906 offset = -INTVAL (XEXP (rtl, 1));
907 break;
909 default:
910 abort ();
913 break;
915 case PLUS:
916 /* The return address is at some offset from any value we can
917 actually load. For instance, on the SPARC it is in %i7+8. Just
918 ignore the offset for now; it doesn't matter for unwinding frames. */
919 if (GET_CODE (XEXP (rtl, 1)) != CONST_INT)
920 abort ();
921 initial_return_save (XEXP (rtl, 0));
922 return;
924 default:
925 abort ();
928 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
931 /* Given a SET, calculate the amount of stack adjustment it
932 contains. */
934 static long
935 stack_adjust_offset (pattern)
936 rtx pattern;
938 rtx src = SET_SRC (pattern);
939 rtx dest = SET_DEST (pattern);
940 HOST_WIDE_INT offset = 0;
941 enum rtx_code code;
943 if (dest == stack_pointer_rtx)
945 /* (set (reg sp) (plus (reg sp) (const_int))) */
946 code = GET_CODE (src);
947 if (! (code == PLUS || code == MINUS)
948 || XEXP (src, 0) != stack_pointer_rtx
949 || GET_CODE (XEXP (src, 1)) != CONST_INT)
950 return 0;
952 offset = INTVAL (XEXP (src, 1));
954 else if (GET_CODE (dest) == MEM)
956 /* (set (mem (pre_dec (reg sp))) (foo)) */
957 src = XEXP (dest, 0);
958 code = GET_CODE (src);
960 if ((code != PRE_DEC && code != PRE_INC && code != PRE_MODIFY)
961 || XEXP (src, 0) != stack_pointer_rtx)
962 return 0;
964 if (code == PRE_MODIFY)
966 rtx val = XEXP (XEXP (src, 1), 1);
968 /* We handle only adjustments by constant amount. */
969 if (GET_CODE (XEXP (src, 1)) != PLUS ||
970 GET_CODE (val) != CONST_INT)
971 abort ();
973 offset = -INTVAL (val);
975 else
976 offset = GET_MODE_SIZE (GET_MODE (dest));
978 else
979 return 0;
981 if (code == PLUS || code == PRE_INC)
982 offset = -offset;
984 return offset;
987 /* Check INSN to see if it looks like a push or a stack adjustment, and
988 make a note of it if it does. EH uses this information to find out how
989 much extra space it needs to pop off the stack. */
991 static void
992 dwarf2out_stack_adjust (insn)
993 rtx insn;
995 HOST_WIDE_INT offset;
996 const char *label;
997 int i;
999 if (!flag_asynchronous_unwind_tables && GET_CODE (insn) == CALL_INSN)
1001 /* Extract the size of the args from the CALL rtx itself. */
1002 insn = PATTERN (insn);
1003 if (GET_CODE (insn) == PARALLEL)
1004 insn = XVECEXP (insn, 0, 0);
1005 if (GET_CODE (insn) == SET)
1006 insn = SET_SRC (insn);
1007 if (GET_CODE (insn) != CALL)
1008 abort ();
1010 dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
1011 return;
1014 /* If only calls can throw, and we have a frame pointer,
1015 save up adjustments until we see the CALL_INSN. */
1016 else if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1017 return;
1019 if (GET_CODE (insn) == BARRIER)
1021 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1022 the compiler will have already emitted a stack adjustment, but
1023 doesn't bother for calls to noreturn functions. */
1024 #ifdef STACK_GROWS_DOWNWARD
1025 offset = -args_size;
1026 #else
1027 offset = args_size;
1028 #endif
1030 else if (GET_CODE (PATTERN (insn)) == SET)
1031 offset = stack_adjust_offset (PATTERN (insn));
1032 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1033 || GET_CODE (PATTERN (insn)) == SEQUENCE)
1035 /* There may be stack adjustments inside compound insns. Search
1036 for them. */
1037 for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1038 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1039 offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i));
1041 else
1042 return;
1044 if (offset == 0)
1045 return;
1047 if (cfa.reg == STACK_POINTER_REGNUM)
1048 cfa.offset += offset;
1050 #ifndef STACK_GROWS_DOWNWARD
1051 offset = -offset;
1052 #endif
1054 args_size += offset;
1055 if (args_size < 0)
1056 args_size = 0;
1058 label = dwarf2out_cfi_label ();
1059 def_cfa_1 (label, &cfa);
1060 dwarf2out_args_size (label, args_size);
1063 /* We delay emitting a register save until either (a) we reach the end
1064 of the prologue or (b) the register is clobbered. This clusters
1065 register saves so that there are fewer pc advances. */
1067 struct queued_reg_save
1069 struct queued_reg_save *next;
1070 rtx reg;
1071 long cfa_offset;
1074 static struct queued_reg_save *queued_reg_saves;
1075 static const char *last_reg_save_label;
1077 static void
1078 queue_reg_save (label, reg, offset)
1079 const char *label;
1080 rtx reg;
1081 long offset;
1083 struct queued_reg_save *q = (struct queued_reg_save *) xmalloc (sizeof (*q));
1085 q->next = queued_reg_saves;
1086 q->reg = reg;
1087 q->cfa_offset = offset;
1088 queued_reg_saves = q;
1090 last_reg_save_label = label;
1093 static void
1094 flush_queued_reg_saves ()
1096 struct queued_reg_save *q, *next;
1098 for (q = queued_reg_saves; q ; q = next)
1100 dwarf2out_reg_save (last_reg_save_label, REGNO (q->reg), q->cfa_offset);
1101 next = q->next;
1102 free (q);
1105 queued_reg_saves = NULL;
1106 last_reg_save_label = NULL;
1109 static bool
1110 clobbers_queued_reg_save (insn)
1111 rtx insn;
1113 struct queued_reg_save *q;
1115 for (q = queued_reg_saves; q ; q = q->next)
1116 if (modified_in_p (q->reg, insn))
1117 return true;
1119 return false;
1123 /* A temporary register holding an integral value used in adjusting SP
1124 or setting up the store_reg. The "offset" field holds the integer
1125 value, not an offset. */
1126 static dw_cfa_location cfa_temp;
1128 /* Record call frame debugging information for an expression EXPR,
1129 which either sets SP or FP (adjusting how we calculate the frame
1130 address) or saves a register to the stack. LABEL indicates the
1131 address of EXPR.
1133 This function encodes a state machine mapping rtxes to actions on
1134 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1135 users need not read the source code.
1137 The High-Level Picture
1139 Changes in the register we use to calculate the CFA: Currently we
1140 assume that if you copy the CFA register into another register, we
1141 should take the other one as the new CFA register; this seems to
1142 work pretty well. If it's wrong for some target, it's simple
1143 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1145 Changes in the register we use for saving registers to the stack:
1146 This is usually SP, but not always. Again, we deduce that if you
1147 copy SP into another register (and SP is not the CFA register),
1148 then the new register is the one we will be using for register
1149 saves. This also seems to work.
1151 Register saves: There's not much guesswork about this one; if
1152 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1153 register save, and the register used to calculate the destination
1154 had better be the one we think we're using for this purpose.
1156 Except: If the register being saved is the CFA register, and the
1157 offset is non-zero, we are saving the CFA, so we assume we have to
1158 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1159 the intent is to save the value of SP from the previous frame.
1161 Invariants / Summaries of Rules
1163 cfa current rule for calculating the CFA. It usually
1164 consists of a register and an offset.
1165 cfa_store register used by prologue code to save things to the stack
1166 cfa_store.offset is the offset from the value of
1167 cfa_store.reg to the actual CFA
1168 cfa_temp register holding an integral value. cfa_temp.offset
1169 stores the value, which will be used to adjust the
1170 stack pointer. cfa_temp is also used like cfa_store,
1171 to track stores to the stack via fp or a temp reg.
1173 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1174 with cfa.reg as the first operand changes the cfa.reg and its
1175 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1176 cfa_temp.offset.
1178 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1179 expression yielding a constant. This sets cfa_temp.reg
1180 and cfa_temp.offset.
1182 Rule 5: Create a new register cfa_store used to save items to the
1183 stack.
1185 Rules 10-14: Save a register to the stack. Define offset as the
1186 difference of the original location and cfa_store's
1187 location (or cfa_temp's location if cfa_temp is used).
1189 The Rules
1191 "{a,b}" indicates a choice of a xor b.
1192 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1194 Rule 1:
1195 (set <reg1> <reg2>:cfa.reg)
1196 effects: cfa.reg = <reg1>
1197 cfa.offset unchanged
1198 cfa_temp.reg = <reg1>
1199 cfa_temp.offset = cfa.offset
1201 Rule 2:
1202 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1203 {<const_int>,<reg>:cfa_temp.reg}))
1204 effects: cfa.reg = sp if fp used
1205 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1206 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1207 if cfa_store.reg==sp
1209 Rule 3:
1210 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1211 effects: cfa.reg = fp
1212 cfa_offset += +/- <const_int>
1214 Rule 4:
1215 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1216 constraints: <reg1> != fp
1217 <reg1> != sp
1218 effects: cfa.reg = <reg1>
1219 cfa_temp.reg = <reg1>
1220 cfa_temp.offset = cfa.offset
1222 Rule 5:
1223 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1224 constraints: <reg1> != fp
1225 <reg1> != sp
1226 effects: cfa_store.reg = <reg1>
1227 cfa_store.offset = cfa.offset - cfa_temp.offset
1229 Rule 6:
1230 (set <reg> <const_int>)
1231 effects: cfa_temp.reg = <reg>
1232 cfa_temp.offset = <const_int>
1234 Rule 7:
1235 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1236 effects: cfa_temp.reg = <reg1>
1237 cfa_temp.offset |= <const_int>
1239 Rule 8:
1240 (set <reg> (high <exp>))
1241 effects: none
1243 Rule 9:
1244 (set <reg> (lo_sum <exp> <const_int>))
1245 effects: cfa_temp.reg = <reg>
1246 cfa_temp.offset = <const_int>
1248 Rule 10:
1249 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1250 effects: cfa_store.offset -= <const_int>
1251 cfa.offset = cfa_store.offset if cfa.reg == sp
1252 cfa.reg = sp
1253 cfa.base_offset = -cfa_store.offset
1255 Rule 11:
1256 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1257 effects: cfa_store.offset += -/+ mode_size(mem)
1258 cfa.offset = cfa_store.offset if cfa.reg == sp
1259 cfa.reg = sp
1260 cfa.base_offset = -cfa_store.offset
1262 Rule 12:
1263 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1265 <reg2>)
1266 effects: cfa.reg = <reg1>
1267 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1269 Rule 13:
1270 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1271 effects: cfa.reg = <reg1>
1272 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1274 Rule 14:
1275 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1276 effects: cfa.reg = <reg1>
1277 cfa.base_offset = -cfa_temp.offset
1278 cfa_temp.offset -= mode_size(mem) */
1280 static void
1281 dwarf2out_frame_debug_expr (expr, label)
1282 rtx expr;
1283 const char *label;
1285 rtx src, dest;
1286 HOST_WIDE_INT offset;
1288 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1289 the PARALLEL independently. The first element is always processed if
1290 it is a SET. This is for backward compatibility. Other elements
1291 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1292 flag is set in them. */
1293 if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
1295 int par_index;
1296 int limit = XVECLEN (expr, 0);
1298 for (par_index = 0; par_index < limit; par_index++)
1299 if (GET_CODE (XVECEXP (expr, 0, par_index)) == SET
1300 && (RTX_FRAME_RELATED_P (XVECEXP (expr, 0, par_index))
1301 || par_index == 0))
1302 dwarf2out_frame_debug_expr (XVECEXP (expr, 0, par_index), label);
1304 return;
1307 if (GET_CODE (expr) != SET)
1308 abort ();
1310 src = SET_SRC (expr);
1311 dest = SET_DEST (expr);
1313 switch (GET_CODE (dest))
1315 case REG:
1316 /* Rule 1 */
1317 /* Update the CFA rule wrt SP or FP. Make sure src is
1318 relative to the current CFA register. */
1319 switch (GET_CODE (src))
1321 /* Setting FP from SP. */
1322 case REG:
1323 if (cfa.reg == (unsigned) REGNO (src))
1324 /* OK. */
1326 else
1327 abort ();
1329 /* We used to require that dest be either SP or FP, but the
1330 ARM copies SP to a temporary register, and from there to
1331 FP. So we just rely on the backends to only set
1332 RTX_FRAME_RELATED_P on appropriate insns. */
1333 cfa.reg = REGNO (dest);
1334 cfa_temp.reg = cfa.reg;
1335 cfa_temp.offset = cfa.offset;
1336 break;
1338 case PLUS:
1339 case MINUS:
1340 case LO_SUM:
1341 if (dest == stack_pointer_rtx)
1343 /* Rule 2 */
1344 /* Adjusting SP. */
1345 switch (GET_CODE (XEXP (src, 1)))
1347 case CONST_INT:
1348 offset = INTVAL (XEXP (src, 1));
1349 break;
1350 case REG:
1351 if ((unsigned) REGNO (XEXP (src, 1)) != cfa_temp.reg)
1352 abort ();
1353 offset = cfa_temp.offset;
1354 break;
1355 default:
1356 abort ();
1359 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1361 /* Restoring SP from FP in the epilogue. */
1362 if (cfa.reg != (unsigned) HARD_FRAME_POINTER_REGNUM)
1363 abort ();
1364 cfa.reg = STACK_POINTER_REGNUM;
1366 else if (GET_CODE (src) == LO_SUM)
1367 /* Assume we've set the source reg of the LO_SUM from sp. */
1369 else if (XEXP (src, 0) != stack_pointer_rtx)
1370 abort ();
1372 if (GET_CODE (src) != MINUS)
1373 offset = -offset;
1374 if (cfa.reg == STACK_POINTER_REGNUM)
1375 cfa.offset += offset;
1376 if (cfa_store.reg == STACK_POINTER_REGNUM)
1377 cfa_store.offset += offset;
1379 else if (dest == hard_frame_pointer_rtx)
1381 /* Rule 3 */
1382 /* Either setting the FP from an offset of the SP,
1383 or adjusting the FP */
1384 if (! frame_pointer_needed)
1385 abort ();
1387 if (GET_CODE (XEXP (src, 0)) == REG
1388 && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
1389 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1391 offset = INTVAL (XEXP (src, 1));
1392 if (GET_CODE (src) != MINUS)
1393 offset = -offset;
1394 cfa.offset += offset;
1395 cfa.reg = HARD_FRAME_POINTER_REGNUM;
1397 else
1398 abort ();
1400 else
1402 if (GET_CODE (src) == MINUS)
1403 abort ();
1405 /* Rule 4 */
1406 if (GET_CODE (XEXP (src, 0)) == REG
1407 && REGNO (XEXP (src, 0)) == cfa.reg
1408 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1410 /* Setting a temporary CFA register that will be copied
1411 into the FP later on. */
1412 offset = - INTVAL (XEXP (src, 1));
1413 cfa.offset += offset;
1414 cfa.reg = REGNO (dest);
1415 /* Or used to save regs to the stack. */
1416 cfa_temp.reg = cfa.reg;
1417 cfa_temp.offset = cfa.offset;
1420 /* Rule 5 */
1421 else if (GET_CODE (XEXP (src, 0)) == REG
1422 && REGNO (XEXP (src, 0)) == cfa_temp.reg
1423 && XEXP (src, 1) == stack_pointer_rtx)
1425 /* Setting a scratch register that we will use instead
1426 of SP for saving registers to the stack. */
1427 if (cfa.reg != STACK_POINTER_REGNUM)
1428 abort ();
1429 cfa_store.reg = REGNO (dest);
1430 cfa_store.offset = cfa.offset - cfa_temp.offset;
1433 /* Rule 9 */
1434 else if (GET_CODE (src) == LO_SUM
1435 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1437 cfa_temp.reg = REGNO (dest);
1438 cfa_temp.offset = INTVAL (XEXP (src, 1));
1440 else
1441 abort ();
1443 break;
1445 /* Rule 6 */
1446 case CONST_INT:
1447 cfa_temp.reg = REGNO (dest);
1448 cfa_temp.offset = INTVAL (src);
1449 break;
1451 /* Rule 7 */
1452 case IOR:
1453 if (GET_CODE (XEXP (src, 0)) != REG
1454 || (unsigned) REGNO (XEXP (src, 0)) != cfa_temp.reg
1455 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1456 abort ();
1458 if ((unsigned) REGNO (dest) != cfa_temp.reg)
1459 cfa_temp.reg = REGNO (dest);
1460 cfa_temp.offset |= INTVAL (XEXP (src, 1));
1461 break;
1463 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1464 which will fill in all of the bits. */
1465 /* Rule 8 */
1466 case HIGH:
1467 break;
1469 default:
1470 abort ();
1473 def_cfa_1 (label, &cfa);
1474 break;
1476 case MEM:
1477 if (GET_CODE (src) != REG)
1478 abort ();
1480 /* Saving a register to the stack. Make sure dest is relative to the
1481 CFA register. */
1482 switch (GET_CODE (XEXP (dest, 0)))
1484 /* Rule 10 */
1485 /* With a push. */
1486 case PRE_MODIFY:
1487 /* We can't handle variable size modifications. */
1488 if (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1)) != CONST_INT)
1489 abort ();
1490 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1492 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1493 || cfa_store.reg != STACK_POINTER_REGNUM)
1494 abort ();
1496 cfa_store.offset += offset;
1497 if (cfa.reg == STACK_POINTER_REGNUM)
1498 cfa.offset = cfa_store.offset;
1500 offset = -cfa_store.offset;
1501 break;
1503 /* Rule 11 */
1504 case PRE_INC:
1505 case PRE_DEC:
1506 offset = GET_MODE_SIZE (GET_MODE (dest));
1507 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1508 offset = -offset;
1510 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1511 || cfa_store.reg != STACK_POINTER_REGNUM)
1512 abort ();
1514 cfa_store.offset += offset;
1515 if (cfa.reg == STACK_POINTER_REGNUM)
1516 cfa.offset = cfa_store.offset;
1518 offset = -cfa_store.offset;
1519 break;
1521 /* Rule 12 */
1522 /* With an offset. */
1523 case PLUS:
1524 case MINUS:
1525 case LO_SUM:
1526 if (GET_CODE (XEXP (XEXP (dest, 0), 1)) != CONST_INT)
1527 abort ();
1528 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1529 if (GET_CODE (XEXP (dest, 0)) == MINUS)
1530 offset = -offset;
1532 if (cfa_store.reg == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1533 offset -= cfa_store.offset;
1534 else if (cfa_temp.reg == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1535 offset -= cfa_temp.offset;
1536 else
1537 abort ();
1538 break;
1540 /* Rule 13 */
1541 /* Without an offset. */
1542 case REG:
1543 if (cfa_store.reg == (unsigned) REGNO (XEXP (dest, 0)))
1544 offset = -cfa_store.offset;
1545 else if (cfa_temp.reg == (unsigned) REGNO (XEXP (dest, 0)))
1546 offset = -cfa_temp.offset;
1547 else
1548 abort ();
1549 break;
1551 /* Rule 14 */
1552 case POST_INC:
1553 if (cfa_temp.reg != (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1554 abort ();
1555 offset = -cfa_temp.offset;
1556 cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1557 break;
1559 default:
1560 abort ();
1563 if (REGNO (src) != STACK_POINTER_REGNUM
1564 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1565 && (unsigned) REGNO (src) == cfa.reg)
1567 /* We're storing the current CFA reg into the stack. */
1569 if (cfa.offset == 0)
1571 /* If the source register is exactly the CFA, assume
1572 we're saving SP like any other register; this happens
1573 on the ARM. */
1574 def_cfa_1 (label, &cfa);
1575 queue_reg_save (label, stack_pointer_rtx, offset);
1576 break;
1578 else
1580 /* Otherwise, we'll need to look in the stack to
1581 calculate the CFA. */
1582 rtx x = XEXP (dest, 0);
1584 if (GET_CODE (x) != REG)
1585 x = XEXP (x, 0);
1586 if (GET_CODE (x) != REG)
1587 abort ();
1589 cfa.reg = REGNO (x);
1590 cfa.base_offset = offset;
1591 cfa.indirect = 1;
1592 def_cfa_1 (label, &cfa);
1593 break;
1597 def_cfa_1 (label, &cfa);
1598 queue_reg_save (label, src, offset);
1599 break;
1601 default:
1602 abort ();
1606 /* Record call frame debugging information for INSN, which either
1607 sets SP or FP (adjusting how we calculate the frame address) or saves a
1608 register to the stack. If INSN is NULL_RTX, initialize our state. */
1610 void
1611 dwarf2out_frame_debug (insn)
1612 rtx insn;
1614 const char *label;
1615 rtx src;
1617 if (insn == NULL_RTX)
1619 /* Flush any queued register saves. */
1620 flush_queued_reg_saves ();
1622 /* Set up state for generating call frame debug info. */
1623 lookup_cfa (&cfa);
1624 if (cfa.reg != (unsigned long) DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM))
1625 abort ();
1627 cfa.reg = STACK_POINTER_REGNUM;
1628 cfa_store = cfa;
1629 cfa_temp.reg = -1;
1630 cfa_temp.offset = 0;
1631 return;
1634 if (GET_CODE (insn) != INSN || clobbers_queued_reg_save (insn))
1635 flush_queued_reg_saves ();
1637 if (! RTX_FRAME_RELATED_P (insn))
1639 if (!ACCUMULATE_OUTGOING_ARGS)
1640 dwarf2out_stack_adjust (insn);
1642 return;
1645 label = dwarf2out_cfi_label ();
1646 src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1647 if (src)
1648 insn = XEXP (src, 0);
1649 else
1650 insn = PATTERN (insn);
1652 dwarf2out_frame_debug_expr (insn, label);
1655 /* Output a Call Frame Information opcode and its operand(s). */
1657 static void
1658 output_cfi (cfi, fde, for_eh)
1659 dw_cfi_ref cfi;
1660 dw_fde_ref fde;
1661 int for_eh;
1663 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
1664 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1665 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
1666 "DW_CFA_advance_loc 0x%lx",
1667 cfi->dw_cfi_oprnd1.dw_cfi_offset);
1668 else if (cfi->dw_cfi_opc == DW_CFA_offset)
1670 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1671 | (cfi->dw_cfi_oprnd1.dw_cfi_reg_num & 0x3f)),
1672 "DW_CFA_offset, column 0x%lx",
1673 cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1674 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1676 else if (cfi->dw_cfi_opc == DW_CFA_restore)
1677 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1678 | (cfi->dw_cfi_oprnd1.dw_cfi_reg_num & 0x3f)),
1679 "DW_CFA_restore, column 0x%lx",
1680 cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
1681 else
1683 dw2_asm_output_data (1, cfi->dw_cfi_opc,
1684 "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
1686 switch (cfi->dw_cfi_opc)
1688 case DW_CFA_set_loc:
1689 if (for_eh)
1690 dw2_asm_output_encoded_addr_rtx (
1691 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
1692 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
1693 NULL);
1694 else
1695 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
1696 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
1697 break;
1699 case DW_CFA_advance_loc1:
1700 dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1701 fde->dw_fde_current_label, NULL);
1702 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1703 break;
1705 case DW_CFA_advance_loc2:
1706 dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1707 fde->dw_fde_current_label, NULL);
1708 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1709 break;
1711 case DW_CFA_advance_loc4:
1712 dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1713 fde->dw_fde_current_label, NULL);
1714 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1715 break;
1717 case DW_CFA_MIPS_advance_loc8:
1718 dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1719 fde->dw_fde_current_label, NULL);
1720 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1721 break;
1723 case DW_CFA_offset_extended:
1724 case DW_CFA_def_cfa:
1725 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num,
1726 NULL);
1727 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1728 break;
1730 case DW_CFA_offset_extended_sf:
1731 case DW_CFA_def_cfa_sf:
1732 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num,
1733 NULL);
1734 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1735 break;
1737 case DW_CFA_restore_extended:
1738 case DW_CFA_undefined:
1739 case DW_CFA_same_value:
1740 case DW_CFA_def_cfa_register:
1741 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num,
1742 NULL);
1743 break;
1745 case DW_CFA_register:
1746 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_reg_num,
1747 NULL);
1748 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_reg_num,
1749 NULL);
1750 break;
1752 case DW_CFA_def_cfa_offset:
1753 case DW_CFA_GNU_args_size:
1754 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
1755 break;
1757 case DW_CFA_def_cfa_offset_sf:
1758 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
1759 break;
1761 case DW_CFA_GNU_window_save:
1762 break;
1764 case DW_CFA_def_cfa_expression:
1765 case DW_CFA_expression:
1766 output_cfa_loc (cfi);
1767 break;
1769 case DW_CFA_GNU_negative_offset_extended:
1770 /* Obsoleted by DW_CFA_offset_extended_sf. */
1771 abort ();
1773 default:
1774 break;
1779 /* Output the call frame information used to used to record information
1780 that relates to calculating the frame pointer, and records the
1781 location of saved registers. */
1783 static void
1784 output_call_frame_info (for_eh)
1785 int for_eh;
1787 unsigned int i;
1788 dw_fde_ref fde;
1789 dw_cfi_ref cfi;
1790 char l1[20], l2[20], section_start_label[20];
1791 int any_lsda_needed = 0;
1792 char augmentation[6];
1793 int augmentation_size;
1794 int fde_encoding = DW_EH_PE_absptr;
1795 int per_encoding = DW_EH_PE_absptr;
1796 int lsda_encoding = DW_EH_PE_absptr;
1798 /* If we don't have any functions we'll want to unwind out of, don't emit any
1799 EH unwind information. */
1800 if (for_eh)
1802 int any_eh_needed = flag_asynchronous_unwind_tables;
1804 for (i = 0; i < fde_table_in_use; i++)
1805 if (fde_table[i].uses_eh_lsda)
1806 any_eh_needed = any_lsda_needed = 1;
1807 else if (! fde_table[i].nothrow)
1808 any_eh_needed = 1;
1810 if (! any_eh_needed)
1811 return;
1814 /* We're going to be generating comments, so turn on app. */
1815 if (flag_debug_asm)
1816 app_enable ();
1818 if (for_eh)
1819 (*targetm.asm_out.eh_frame_section) ();
1820 else
1821 named_section_flags (DEBUG_FRAME_SECTION, SECTION_DEBUG);
1823 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
1824 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
1826 /* Output the CIE. */
1827 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
1828 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
1829 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
1830 "Length of Common Information Entry");
1831 ASM_OUTPUT_LABEL (asm_out_file, l1);
1833 /* Now that the CIE pointer is PC-relative for EH,
1834 use 0 to identify the CIE. */
1835 dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
1836 (for_eh ? 0 : DW_CIE_ID),
1837 "CIE Identifier Tag");
1839 dw2_asm_output_data (1, DW_CIE_VERSION, "CIE Version");
1841 augmentation[0] = 0;
1842 augmentation_size = 0;
1843 if (for_eh)
1845 char *p;
1847 /* Augmentation:
1848 z Indicates that a uleb128 is present to size the
1849 augmentation section.
1850 L Indicates the encoding (and thus presence) of
1851 an LSDA pointer in the FDE augmentation.
1852 R Indicates a non-default pointer encoding for
1853 FDE code pointers.
1854 P Indicates the presence of an encoding + language
1855 personality routine in the CIE augmentation. */
1857 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
1858 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
1859 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
1861 p = augmentation + 1;
1862 if (eh_personality_libfunc)
1864 *p++ = 'P';
1865 augmentation_size += 1 + size_of_encoded_value (per_encoding);
1867 if (any_lsda_needed)
1869 *p++ = 'L';
1870 augmentation_size += 1;
1872 if (fde_encoding != DW_EH_PE_absptr)
1874 *p++ = 'R';
1875 augmentation_size += 1;
1877 if (p > augmentation + 1)
1879 augmentation[0] = 'z';
1880 *p = '\0';
1883 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
1884 if (eh_personality_libfunc && per_encoding == DW_EH_PE_aligned)
1886 int offset = ( 4 /* Length */
1887 + 4 /* CIE Id */
1888 + 1 /* CIE version */
1889 + strlen (augmentation) + 1 /* Augmentation */
1890 + size_of_uleb128 (1) /* Code alignment */
1891 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
1892 + 1 /* RA column */
1893 + 1 /* Augmentation size */
1894 + 1 /* Personality encoding */ );
1895 int pad = -offset & (PTR_SIZE - 1);
1897 augmentation_size += pad;
1899 /* Augmentations should be small, so there's scarce need to
1900 iterate for a solution. Die if we exceed one uleb128 byte. */
1901 if (size_of_uleb128 (augmentation_size) != 1)
1902 abort ();
1906 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
1907 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
1908 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
1909 "CIE Data Alignment Factor");
1910 dw2_asm_output_data (1, DWARF_FRAME_RETURN_COLUMN, "CIE RA Column");
1912 if (augmentation[0])
1914 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
1915 if (eh_personality_libfunc)
1917 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
1918 eh_data_format_name (per_encoding));
1919 dw2_asm_output_encoded_addr_rtx (per_encoding,
1920 eh_personality_libfunc, NULL);
1923 if (any_lsda_needed)
1924 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
1925 eh_data_format_name (lsda_encoding));
1927 if (fde_encoding != DW_EH_PE_absptr)
1928 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
1929 eh_data_format_name (fde_encoding));
1932 for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
1933 output_cfi (cfi, NULL, for_eh);
1935 /* Pad the CIE out to an address sized boundary. */
1936 ASM_OUTPUT_ALIGN (asm_out_file,
1937 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
1938 ASM_OUTPUT_LABEL (asm_out_file, l2);
1940 /* Loop through all of the FDE's. */
1941 for (i = 0; i < fde_table_in_use; i++)
1943 fde = &fde_table[i];
1945 /* Don't emit EH unwind info for leaf functions that don't need it. */
1946 if (for_eh && fde->nothrow && ! fde->uses_eh_lsda)
1947 continue;
1949 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, FDE_LABEL, for_eh + i * 2);
1950 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + i * 2);
1951 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + i * 2);
1952 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
1953 "FDE Length");
1954 ASM_OUTPUT_LABEL (asm_out_file, l1);
1956 if (for_eh)
1957 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
1958 else
1959 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
1960 "FDE CIE offset");
1962 if (for_eh)
1964 dw2_asm_output_encoded_addr_rtx (fde_encoding,
1965 gen_rtx_SYMBOL_REF (Pmode, fde->dw_fde_begin),
1966 "FDE initial location");
1967 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
1968 fde->dw_fde_end, fde->dw_fde_begin,
1969 "FDE address range");
1971 else
1973 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
1974 "FDE initial location");
1975 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
1976 fde->dw_fde_end, fde->dw_fde_begin,
1977 "FDE address range");
1980 if (augmentation[0])
1982 if (any_lsda_needed)
1984 int size = size_of_encoded_value (lsda_encoding);
1986 if (lsda_encoding == DW_EH_PE_aligned)
1988 int offset = ( 4 /* Length */
1989 + 4 /* CIE offset */
1990 + 2 * size_of_encoded_value (fde_encoding)
1991 + 1 /* Augmentation size */ );
1992 int pad = -offset & (PTR_SIZE - 1);
1994 size += pad;
1995 if (size_of_uleb128 (size) != 1)
1996 abort ();
1999 dw2_asm_output_data_uleb128 (size, "Augmentation size");
2001 if (fde->uses_eh_lsda)
2003 ASM_GENERATE_INTERNAL_LABEL (l1, "LLSDA",
2004 fde->funcdef_number);
2005 dw2_asm_output_encoded_addr_rtx (
2006 lsda_encoding, gen_rtx_SYMBOL_REF (Pmode, l1),
2007 "Language Specific Data Area");
2009 else
2011 if (lsda_encoding == DW_EH_PE_aligned)
2012 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2013 dw2_asm_output_data
2014 (size_of_encoded_value (lsda_encoding), 0,
2015 "Language Specific Data Area (none)");
2018 else
2019 dw2_asm_output_data_uleb128 (0, "Augmentation size");
2022 /* Loop through the Call Frame Instructions associated with
2023 this FDE. */
2024 fde->dw_fde_current_label = fde->dw_fde_begin;
2025 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
2026 output_cfi (cfi, fde, for_eh);
2028 /* Pad the FDE out to an address sized boundary. */
2029 ASM_OUTPUT_ALIGN (asm_out_file,
2030 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
2031 ASM_OUTPUT_LABEL (asm_out_file, l2);
2034 #ifndef EH_FRAME_SECTION_NAME
2035 if (for_eh)
2036 dw2_asm_output_data (4, 0, "End of Table");
2037 #endif
2038 #ifdef MIPS_DEBUGGING_INFO
2039 /* Work around Irix 6 assembler bug whereby labels at the end of a section
2040 get a value of 0. Putting .align 0 after the label fixes it. */
2041 ASM_OUTPUT_ALIGN (asm_out_file, 0);
2042 #endif
2044 /* Turn off app to make assembly quicker. */
2045 if (flag_debug_asm)
2046 app_disable ();
2049 /* Output a marker (i.e. a label) for the beginning of a function, before
2050 the prologue. */
2052 void
2053 dwarf2out_begin_prologue (line, file)
2054 unsigned int line ATTRIBUTE_UNUSED;
2055 const char *file ATTRIBUTE_UNUSED;
2057 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2058 dw_fde_ref fde;
2060 current_function_func_begin_label = 0;
2062 #ifdef IA64_UNWIND_INFO
2063 /* ??? current_function_func_begin_label is also used by except.c
2064 for call-site information. We must emit this label if it might
2065 be used. */
2066 if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
2067 && ! dwarf2out_do_frame ())
2068 return;
2069 #else
2070 if (! dwarf2out_do_frame ())
2071 return;
2072 #endif
2074 current_funcdef_number++;
2075 function_section (current_function_decl);
2076 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
2077 current_funcdef_number);
2078 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
2079 current_funcdef_number);
2080 current_function_func_begin_label = get_identifier (label);
2082 #ifdef IA64_UNWIND_INFO
2083 /* We can elide the fde allocation if we're not emitting debug info. */
2084 if (! dwarf2out_do_frame ())
2085 return;
2086 #endif
2088 /* Expand the fde table if necessary. */
2089 if (fde_table_in_use == fde_table_allocated)
2091 fde_table_allocated += FDE_TABLE_INCREMENT;
2092 fde_table
2093 = (dw_fde_ref) xrealloc (fde_table,
2094 fde_table_allocated * sizeof (dw_fde_node));
2097 /* Record the FDE associated with this function. */
2098 current_funcdef_fde = fde_table_in_use;
2100 /* Add the new FDE at the end of the fde_table. */
2101 fde = &fde_table[fde_table_in_use++];
2102 fde->dw_fde_begin = xstrdup (label);
2103 fde->dw_fde_current_label = NULL;
2104 fde->dw_fde_end = NULL;
2105 fde->dw_fde_cfi = NULL;
2106 fde->funcdef_number = current_funcdef_number;
2107 fde->nothrow = current_function_nothrow;
2108 fde->uses_eh_lsda = cfun->uses_eh_lsda;
2110 args_size = old_args_size = 0;
2112 /* We only want to output line number information for the genuine dwarf2
2113 prologue case, not the eh frame case. */
2114 #ifdef DWARF2_DEBUGGING_INFO
2115 if (file)
2116 dwarf2out_source_line (line, file);
2117 #endif
2120 /* Output a marker (i.e. a label) for the absolute end of the generated code
2121 for a function definition. This gets called *after* the epilogue code has
2122 been generated. */
2124 void
2125 dwarf2out_end_epilogue ()
2127 dw_fde_ref fde;
2128 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2130 /* Output a label to mark the endpoint of the code generated for this
2131 function. */
2132 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL, current_funcdef_number);
2133 ASM_OUTPUT_LABEL (asm_out_file, label);
2134 fde = &fde_table[fde_table_in_use - 1];
2135 fde->dw_fde_end = xstrdup (label);
2138 void
2139 dwarf2out_frame_init ()
2141 /* Allocate the initial hunk of the fde_table. */
2142 fde_table = (dw_fde_ref) xcalloc (FDE_TABLE_INCREMENT, sizeof (dw_fde_node));
2143 fde_table_allocated = FDE_TABLE_INCREMENT;
2144 fde_table_in_use = 0;
2146 /* Generate the CFA instructions common to all FDE's. Do it now for the
2147 sake of lookup_cfa. */
2149 #ifdef DWARF2_UNWIND_INFO
2150 /* On entry, the Canonical Frame Address is at SP. */
2151 dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
2152 initial_return_save (INCOMING_RETURN_ADDR_RTX);
2153 #endif
2156 void
2157 dwarf2out_frame_finish ()
2159 /* Output call frame information. */
2160 if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
2161 output_call_frame_info (0);
2163 if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
2164 output_call_frame_info (1);
2167 /* And now, the subset of the debugging information support code necessary
2168 for emitting location expressions. */
2170 typedef struct dw_val_struct *dw_val_ref;
2171 typedef struct die_struct *dw_die_ref;
2172 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
2173 typedef struct dw_loc_list_struct *dw_loc_list_ref;
2175 /* Each DIE may have a series of attribute/value pairs. Values
2176 can take on several forms. The forms that are used in this
2177 implementation are listed below. */
2179 typedef enum
2181 dw_val_class_addr,
2182 dw_val_class_offset,
2183 dw_val_class_loc,
2184 dw_val_class_loc_list,
2185 dw_val_class_range_list,
2186 dw_val_class_const,
2187 dw_val_class_unsigned_const,
2188 dw_val_class_long_long,
2189 dw_val_class_float,
2190 dw_val_class_flag,
2191 dw_val_class_die_ref,
2192 dw_val_class_fde_ref,
2193 dw_val_class_lbl_id,
2194 dw_val_class_lbl_offset,
2195 dw_val_class_str
2197 dw_val_class;
2199 /* Describe a double word constant value. */
2200 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2202 typedef struct dw_long_long_struct
2204 unsigned long hi;
2205 unsigned long low;
2207 dw_long_long_const;
2209 /* Describe a floating point constant value. */
2211 typedef struct dw_fp_struct
2213 long *array;
2214 unsigned length;
2216 dw_float_const;
2218 /* The dw_val_node describes an attribute's value, as it is
2219 represented internally. */
2221 typedef struct dw_val_struct
2223 dw_val_class val_class;
2224 union
2226 rtx val_addr;
2227 long unsigned val_offset;
2228 dw_loc_list_ref val_loc_list;
2229 dw_loc_descr_ref val_loc;
2230 long int val_int;
2231 long unsigned val_unsigned;
2232 dw_long_long_const val_long_long;
2233 dw_float_const val_float;
2234 struct
2236 dw_die_ref die;
2237 int external;
2238 } val_die_ref;
2239 unsigned val_fde_index;
2240 struct indirect_string_node *val_str;
2241 char *val_lbl_id;
2242 unsigned char val_flag;
2246 dw_val_node;
2248 /* Locations in memory are described using a sequence of stack machine
2249 operations. */
2251 typedef struct dw_loc_descr_struct
2253 dw_loc_descr_ref dw_loc_next;
2254 enum dwarf_location_atom dw_loc_opc;
2255 dw_val_node dw_loc_oprnd1;
2256 dw_val_node dw_loc_oprnd2;
2257 int dw_loc_addr;
2259 dw_loc_descr_node;
2261 /* Location lists are ranges + location descriptions for that range,
2262 so you can track variables that are in different places over
2263 their entire life. */
2264 typedef struct dw_loc_list_struct
2266 dw_loc_list_ref dw_loc_next;
2267 const char *begin; /* Label for begin address of range */
2268 const char *end; /* Label for end address of range */
2269 char *ll_symbol; /* Label for beginning of location list.
2270 Only on head of list */
2271 const char *section; /* Section this loclist is relative to */
2272 dw_loc_descr_ref expr;
2273 } dw_loc_list_node;
2275 static const char *dwarf_stack_op_name PARAMS ((unsigned));
2276 static dw_loc_descr_ref new_loc_descr PARAMS ((enum dwarf_location_atom,
2277 unsigned long,
2278 unsigned long));
2279 static void add_loc_descr PARAMS ((dw_loc_descr_ref *,
2280 dw_loc_descr_ref));
2281 static unsigned long size_of_loc_descr PARAMS ((dw_loc_descr_ref));
2282 static unsigned long size_of_locs PARAMS ((dw_loc_descr_ref));
2283 static void output_loc_operands PARAMS ((dw_loc_descr_ref));
2284 static void output_loc_sequence PARAMS ((dw_loc_descr_ref));
2286 /* Convert a DWARF stack opcode into its string name. */
2288 static const char *
2289 dwarf_stack_op_name (op)
2290 unsigned op;
2292 switch (op)
2294 case DW_OP_addr:
2295 return "DW_OP_addr";
2296 case DW_OP_deref:
2297 return "DW_OP_deref";
2298 case DW_OP_const1u:
2299 return "DW_OP_const1u";
2300 case DW_OP_const1s:
2301 return "DW_OP_const1s";
2302 case DW_OP_const2u:
2303 return "DW_OP_const2u";
2304 case DW_OP_const2s:
2305 return "DW_OP_const2s";
2306 case DW_OP_const4u:
2307 return "DW_OP_const4u";
2308 case DW_OP_const4s:
2309 return "DW_OP_const4s";
2310 case DW_OP_const8u:
2311 return "DW_OP_const8u";
2312 case DW_OP_const8s:
2313 return "DW_OP_const8s";
2314 case DW_OP_constu:
2315 return "DW_OP_constu";
2316 case DW_OP_consts:
2317 return "DW_OP_consts";
2318 case DW_OP_dup:
2319 return "DW_OP_dup";
2320 case DW_OP_drop:
2321 return "DW_OP_drop";
2322 case DW_OP_over:
2323 return "DW_OP_over";
2324 case DW_OP_pick:
2325 return "DW_OP_pick";
2326 case DW_OP_swap:
2327 return "DW_OP_swap";
2328 case DW_OP_rot:
2329 return "DW_OP_rot";
2330 case DW_OP_xderef:
2331 return "DW_OP_xderef";
2332 case DW_OP_abs:
2333 return "DW_OP_abs";
2334 case DW_OP_and:
2335 return "DW_OP_and";
2336 case DW_OP_div:
2337 return "DW_OP_div";
2338 case DW_OP_minus:
2339 return "DW_OP_minus";
2340 case DW_OP_mod:
2341 return "DW_OP_mod";
2342 case DW_OP_mul:
2343 return "DW_OP_mul";
2344 case DW_OP_neg:
2345 return "DW_OP_neg";
2346 case DW_OP_not:
2347 return "DW_OP_not";
2348 case DW_OP_or:
2349 return "DW_OP_or";
2350 case DW_OP_plus:
2351 return "DW_OP_plus";
2352 case DW_OP_plus_uconst:
2353 return "DW_OP_plus_uconst";
2354 case DW_OP_shl:
2355 return "DW_OP_shl";
2356 case DW_OP_shr:
2357 return "DW_OP_shr";
2358 case DW_OP_shra:
2359 return "DW_OP_shra";
2360 case DW_OP_xor:
2361 return "DW_OP_xor";
2362 case DW_OP_bra:
2363 return "DW_OP_bra";
2364 case DW_OP_eq:
2365 return "DW_OP_eq";
2366 case DW_OP_ge:
2367 return "DW_OP_ge";
2368 case DW_OP_gt:
2369 return "DW_OP_gt";
2370 case DW_OP_le:
2371 return "DW_OP_le";
2372 case DW_OP_lt:
2373 return "DW_OP_lt";
2374 case DW_OP_ne:
2375 return "DW_OP_ne";
2376 case DW_OP_skip:
2377 return "DW_OP_skip";
2378 case DW_OP_lit0:
2379 return "DW_OP_lit0";
2380 case DW_OP_lit1:
2381 return "DW_OP_lit1";
2382 case DW_OP_lit2:
2383 return "DW_OP_lit2";
2384 case DW_OP_lit3:
2385 return "DW_OP_lit3";
2386 case DW_OP_lit4:
2387 return "DW_OP_lit4";
2388 case DW_OP_lit5:
2389 return "DW_OP_lit5";
2390 case DW_OP_lit6:
2391 return "DW_OP_lit6";
2392 case DW_OP_lit7:
2393 return "DW_OP_lit7";
2394 case DW_OP_lit8:
2395 return "DW_OP_lit8";
2396 case DW_OP_lit9:
2397 return "DW_OP_lit9";
2398 case DW_OP_lit10:
2399 return "DW_OP_lit10";
2400 case DW_OP_lit11:
2401 return "DW_OP_lit11";
2402 case DW_OP_lit12:
2403 return "DW_OP_lit12";
2404 case DW_OP_lit13:
2405 return "DW_OP_lit13";
2406 case DW_OP_lit14:
2407 return "DW_OP_lit14";
2408 case DW_OP_lit15:
2409 return "DW_OP_lit15";
2410 case DW_OP_lit16:
2411 return "DW_OP_lit16";
2412 case DW_OP_lit17:
2413 return "DW_OP_lit17";
2414 case DW_OP_lit18:
2415 return "DW_OP_lit18";
2416 case DW_OP_lit19:
2417 return "DW_OP_lit19";
2418 case DW_OP_lit20:
2419 return "DW_OP_lit20";
2420 case DW_OP_lit21:
2421 return "DW_OP_lit21";
2422 case DW_OP_lit22:
2423 return "DW_OP_lit22";
2424 case DW_OP_lit23:
2425 return "DW_OP_lit23";
2426 case DW_OP_lit24:
2427 return "DW_OP_lit24";
2428 case DW_OP_lit25:
2429 return "DW_OP_lit25";
2430 case DW_OP_lit26:
2431 return "DW_OP_lit26";
2432 case DW_OP_lit27:
2433 return "DW_OP_lit27";
2434 case DW_OP_lit28:
2435 return "DW_OP_lit28";
2436 case DW_OP_lit29:
2437 return "DW_OP_lit29";
2438 case DW_OP_lit30:
2439 return "DW_OP_lit30";
2440 case DW_OP_lit31:
2441 return "DW_OP_lit31";
2442 case DW_OP_reg0:
2443 return "DW_OP_reg0";
2444 case DW_OP_reg1:
2445 return "DW_OP_reg1";
2446 case DW_OP_reg2:
2447 return "DW_OP_reg2";
2448 case DW_OP_reg3:
2449 return "DW_OP_reg3";
2450 case DW_OP_reg4:
2451 return "DW_OP_reg4";
2452 case DW_OP_reg5:
2453 return "DW_OP_reg5";
2454 case DW_OP_reg6:
2455 return "DW_OP_reg6";
2456 case DW_OP_reg7:
2457 return "DW_OP_reg7";
2458 case DW_OP_reg8:
2459 return "DW_OP_reg8";
2460 case DW_OP_reg9:
2461 return "DW_OP_reg9";
2462 case DW_OP_reg10:
2463 return "DW_OP_reg10";
2464 case DW_OP_reg11:
2465 return "DW_OP_reg11";
2466 case DW_OP_reg12:
2467 return "DW_OP_reg12";
2468 case DW_OP_reg13:
2469 return "DW_OP_reg13";
2470 case DW_OP_reg14:
2471 return "DW_OP_reg14";
2472 case DW_OP_reg15:
2473 return "DW_OP_reg15";
2474 case DW_OP_reg16:
2475 return "DW_OP_reg16";
2476 case DW_OP_reg17:
2477 return "DW_OP_reg17";
2478 case DW_OP_reg18:
2479 return "DW_OP_reg18";
2480 case DW_OP_reg19:
2481 return "DW_OP_reg19";
2482 case DW_OP_reg20:
2483 return "DW_OP_reg20";
2484 case DW_OP_reg21:
2485 return "DW_OP_reg21";
2486 case DW_OP_reg22:
2487 return "DW_OP_reg22";
2488 case DW_OP_reg23:
2489 return "DW_OP_reg23";
2490 case DW_OP_reg24:
2491 return "DW_OP_reg24";
2492 case DW_OP_reg25:
2493 return "DW_OP_reg25";
2494 case DW_OP_reg26:
2495 return "DW_OP_reg26";
2496 case DW_OP_reg27:
2497 return "DW_OP_reg27";
2498 case DW_OP_reg28:
2499 return "DW_OP_reg28";
2500 case DW_OP_reg29:
2501 return "DW_OP_reg29";
2502 case DW_OP_reg30:
2503 return "DW_OP_reg30";
2504 case DW_OP_reg31:
2505 return "DW_OP_reg31";
2506 case DW_OP_breg0:
2507 return "DW_OP_breg0";
2508 case DW_OP_breg1:
2509 return "DW_OP_breg1";
2510 case DW_OP_breg2:
2511 return "DW_OP_breg2";
2512 case DW_OP_breg3:
2513 return "DW_OP_breg3";
2514 case DW_OP_breg4:
2515 return "DW_OP_breg4";
2516 case DW_OP_breg5:
2517 return "DW_OP_breg5";
2518 case DW_OP_breg6:
2519 return "DW_OP_breg6";
2520 case DW_OP_breg7:
2521 return "DW_OP_breg7";
2522 case DW_OP_breg8:
2523 return "DW_OP_breg8";
2524 case DW_OP_breg9:
2525 return "DW_OP_breg9";
2526 case DW_OP_breg10:
2527 return "DW_OP_breg10";
2528 case DW_OP_breg11:
2529 return "DW_OP_breg11";
2530 case DW_OP_breg12:
2531 return "DW_OP_breg12";
2532 case DW_OP_breg13:
2533 return "DW_OP_breg13";
2534 case DW_OP_breg14:
2535 return "DW_OP_breg14";
2536 case DW_OP_breg15:
2537 return "DW_OP_breg15";
2538 case DW_OP_breg16:
2539 return "DW_OP_breg16";
2540 case DW_OP_breg17:
2541 return "DW_OP_breg17";
2542 case DW_OP_breg18:
2543 return "DW_OP_breg18";
2544 case DW_OP_breg19:
2545 return "DW_OP_breg19";
2546 case DW_OP_breg20:
2547 return "DW_OP_breg20";
2548 case DW_OP_breg21:
2549 return "DW_OP_breg21";
2550 case DW_OP_breg22:
2551 return "DW_OP_breg22";
2552 case DW_OP_breg23:
2553 return "DW_OP_breg23";
2554 case DW_OP_breg24:
2555 return "DW_OP_breg24";
2556 case DW_OP_breg25:
2557 return "DW_OP_breg25";
2558 case DW_OP_breg26:
2559 return "DW_OP_breg26";
2560 case DW_OP_breg27:
2561 return "DW_OP_breg27";
2562 case DW_OP_breg28:
2563 return "DW_OP_breg28";
2564 case DW_OP_breg29:
2565 return "DW_OP_breg29";
2566 case DW_OP_breg30:
2567 return "DW_OP_breg30";
2568 case DW_OP_breg31:
2569 return "DW_OP_breg31";
2570 case DW_OP_regx:
2571 return "DW_OP_regx";
2572 case DW_OP_fbreg:
2573 return "DW_OP_fbreg";
2574 case DW_OP_bregx:
2575 return "DW_OP_bregx";
2576 case DW_OP_piece:
2577 return "DW_OP_piece";
2578 case DW_OP_deref_size:
2579 return "DW_OP_deref_size";
2580 case DW_OP_xderef_size:
2581 return "DW_OP_xderef_size";
2582 case DW_OP_nop:
2583 return "DW_OP_nop";
2584 default:
2585 return "OP_<unknown>";
2589 /* Return a pointer to a newly allocated location description. Location
2590 descriptions are simple expression terms that can be strung
2591 together to form more complicated location (address) descriptions. */
2593 static inline dw_loc_descr_ref
2594 new_loc_descr (op, oprnd1, oprnd2)
2595 enum dwarf_location_atom op;
2596 unsigned long oprnd1;
2597 unsigned long oprnd2;
2599 /* Use xcalloc here so we clear out all of the long_long constant in
2600 the union. */
2601 dw_loc_descr_ref descr
2602 = (dw_loc_descr_ref) xcalloc (1, sizeof (dw_loc_descr_node));
2604 descr->dw_loc_opc = op;
2605 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
2606 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
2607 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
2608 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
2610 return descr;
2614 /* Add a location description term to a location description expression. */
2616 static inline void
2617 add_loc_descr (list_head, descr)
2618 dw_loc_descr_ref *list_head;
2619 dw_loc_descr_ref descr;
2621 dw_loc_descr_ref *d;
2623 /* Find the end of the chain. */
2624 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
2627 *d = descr;
2630 /* Return the size of a location descriptor. */
2632 static unsigned long
2633 size_of_loc_descr (loc)
2634 dw_loc_descr_ref loc;
2636 unsigned long size = 1;
2638 switch (loc->dw_loc_opc)
2640 case DW_OP_addr:
2641 size += DWARF2_ADDR_SIZE;
2642 break;
2643 case DW_OP_const1u:
2644 case DW_OP_const1s:
2645 size += 1;
2646 break;
2647 case DW_OP_const2u:
2648 case DW_OP_const2s:
2649 size += 2;
2650 break;
2651 case DW_OP_const4u:
2652 case DW_OP_const4s:
2653 size += 4;
2654 break;
2655 case DW_OP_const8u:
2656 case DW_OP_const8s:
2657 size += 8;
2658 break;
2659 case DW_OP_constu:
2660 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2661 break;
2662 case DW_OP_consts:
2663 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2664 break;
2665 case DW_OP_pick:
2666 size += 1;
2667 break;
2668 case DW_OP_plus_uconst:
2669 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2670 break;
2671 case DW_OP_skip:
2672 case DW_OP_bra:
2673 size += 2;
2674 break;
2675 case DW_OP_breg0:
2676 case DW_OP_breg1:
2677 case DW_OP_breg2:
2678 case DW_OP_breg3:
2679 case DW_OP_breg4:
2680 case DW_OP_breg5:
2681 case DW_OP_breg6:
2682 case DW_OP_breg7:
2683 case DW_OP_breg8:
2684 case DW_OP_breg9:
2685 case DW_OP_breg10:
2686 case DW_OP_breg11:
2687 case DW_OP_breg12:
2688 case DW_OP_breg13:
2689 case DW_OP_breg14:
2690 case DW_OP_breg15:
2691 case DW_OP_breg16:
2692 case DW_OP_breg17:
2693 case DW_OP_breg18:
2694 case DW_OP_breg19:
2695 case DW_OP_breg20:
2696 case DW_OP_breg21:
2697 case DW_OP_breg22:
2698 case DW_OP_breg23:
2699 case DW_OP_breg24:
2700 case DW_OP_breg25:
2701 case DW_OP_breg26:
2702 case DW_OP_breg27:
2703 case DW_OP_breg28:
2704 case DW_OP_breg29:
2705 case DW_OP_breg30:
2706 case DW_OP_breg31:
2707 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2708 break;
2709 case DW_OP_regx:
2710 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2711 break;
2712 case DW_OP_fbreg:
2713 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2714 break;
2715 case DW_OP_bregx:
2716 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2717 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
2718 break;
2719 case DW_OP_piece:
2720 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2721 break;
2722 case DW_OP_deref_size:
2723 case DW_OP_xderef_size:
2724 size += 1;
2725 break;
2726 default:
2727 break;
2730 return size;
2733 /* Return the size of a series of location descriptors. */
2735 static unsigned long
2736 size_of_locs (loc)
2737 dw_loc_descr_ref loc;
2739 unsigned long size;
2741 for (size = 0; loc != NULL; loc = loc->dw_loc_next)
2743 loc->dw_loc_addr = size;
2744 size += size_of_loc_descr (loc);
2747 return size;
2750 /* Output location description stack opcode's operands (if any). */
2752 static void
2753 output_loc_operands (loc)
2754 dw_loc_descr_ref loc;
2756 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2757 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2759 switch (loc->dw_loc_opc)
2761 #ifdef DWARF2_DEBUGGING_INFO
2762 case DW_OP_addr:
2763 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
2764 break;
2765 case DW_OP_const2u:
2766 case DW_OP_const2s:
2767 dw2_asm_output_data (2, val1->v.val_int, NULL);
2768 break;
2769 case DW_OP_const4u:
2770 case DW_OP_const4s:
2771 dw2_asm_output_data (4, val1->v.val_int, NULL);
2772 break;
2773 case DW_OP_const8u:
2774 case DW_OP_const8s:
2775 if (HOST_BITS_PER_LONG < 64)
2776 abort ();
2777 dw2_asm_output_data (8, val1->v.val_int, NULL);
2778 break;
2779 case DW_OP_skip:
2780 case DW_OP_bra:
2782 int offset;
2784 if (val1->val_class == dw_val_class_loc)
2785 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2786 else
2787 abort ();
2789 dw2_asm_output_data (2, offset, NULL);
2791 break;
2792 #else
2793 case DW_OP_addr:
2794 case DW_OP_const2u:
2795 case DW_OP_const2s:
2796 case DW_OP_const4u:
2797 case DW_OP_const4s:
2798 case DW_OP_const8u:
2799 case DW_OP_const8s:
2800 case DW_OP_skip:
2801 case DW_OP_bra:
2802 /* We currently don't make any attempt to make sure these are
2803 aligned properly like we do for the main unwind info, so
2804 don't support emitting things larger than a byte if we're
2805 only doing unwinding. */
2806 abort ();
2807 #endif
2808 case DW_OP_const1u:
2809 case DW_OP_const1s:
2810 dw2_asm_output_data (1, val1->v.val_int, NULL);
2811 break;
2812 case DW_OP_constu:
2813 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2814 break;
2815 case DW_OP_consts:
2816 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2817 break;
2818 case DW_OP_pick:
2819 dw2_asm_output_data (1, val1->v.val_int, NULL);
2820 break;
2821 case DW_OP_plus_uconst:
2822 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2823 break;
2824 case DW_OP_breg0:
2825 case DW_OP_breg1:
2826 case DW_OP_breg2:
2827 case DW_OP_breg3:
2828 case DW_OP_breg4:
2829 case DW_OP_breg5:
2830 case DW_OP_breg6:
2831 case DW_OP_breg7:
2832 case DW_OP_breg8:
2833 case DW_OP_breg9:
2834 case DW_OP_breg10:
2835 case DW_OP_breg11:
2836 case DW_OP_breg12:
2837 case DW_OP_breg13:
2838 case DW_OP_breg14:
2839 case DW_OP_breg15:
2840 case DW_OP_breg16:
2841 case DW_OP_breg17:
2842 case DW_OP_breg18:
2843 case DW_OP_breg19:
2844 case DW_OP_breg20:
2845 case DW_OP_breg21:
2846 case DW_OP_breg22:
2847 case DW_OP_breg23:
2848 case DW_OP_breg24:
2849 case DW_OP_breg25:
2850 case DW_OP_breg26:
2851 case DW_OP_breg27:
2852 case DW_OP_breg28:
2853 case DW_OP_breg29:
2854 case DW_OP_breg30:
2855 case DW_OP_breg31:
2856 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2857 break;
2858 case DW_OP_regx:
2859 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2860 break;
2861 case DW_OP_fbreg:
2862 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2863 break;
2864 case DW_OP_bregx:
2865 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2866 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
2867 break;
2868 case DW_OP_piece:
2869 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2870 break;
2871 case DW_OP_deref_size:
2872 case DW_OP_xderef_size:
2873 dw2_asm_output_data (1, val1->v.val_int, NULL);
2874 break;
2875 default:
2876 /* Other codes have no operands. */
2877 break;
2881 /* Output a sequence of location operations. */
2883 static void
2884 output_loc_sequence (loc)
2885 dw_loc_descr_ref loc;
2887 for (; loc != NULL; loc = loc->dw_loc_next)
2889 /* Output the opcode. */
2890 dw2_asm_output_data (1, loc->dw_loc_opc,
2891 "%s", dwarf_stack_op_name (loc->dw_loc_opc));
2893 /* Output the operand(s) (if any). */
2894 output_loc_operands (loc);
2898 /* This routine will generate the correct assembly data for a location
2899 description based on a cfi entry with a complex address. */
2901 static void
2902 output_cfa_loc (cfi)
2903 dw_cfi_ref cfi;
2905 dw_loc_descr_ref loc;
2906 unsigned long size;
2908 /* Output the size of the block. */
2909 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
2910 size = size_of_locs (loc);
2911 dw2_asm_output_data_uleb128 (size, NULL);
2913 /* Now output the operations themselves. */
2914 output_loc_sequence (loc);
2917 /* This function builds a dwarf location descriptor sequence from
2918 a dw_cfa_location. */
2920 static struct dw_loc_descr_struct *
2921 build_cfa_loc (cfa)
2922 dw_cfa_location *cfa;
2924 struct dw_loc_descr_struct *head, *tmp;
2926 if (cfa->indirect == 0)
2927 abort ();
2929 if (cfa->base_offset)
2931 if (cfa->reg <= 31)
2932 head = new_loc_descr (DW_OP_breg0 + cfa->reg, cfa->base_offset, 0);
2933 else
2934 head = new_loc_descr (DW_OP_bregx, cfa->reg, cfa->base_offset);
2936 else if (cfa->reg <= 31)
2937 head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
2938 else
2939 head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
2941 head->dw_loc_oprnd1.val_class = dw_val_class_const;
2942 tmp = new_loc_descr (DW_OP_deref, 0, 0);
2943 add_loc_descr (&head, tmp);
2944 if (cfa->offset != 0)
2946 tmp = new_loc_descr (DW_OP_plus_uconst, cfa->offset, 0);
2947 add_loc_descr (&head, tmp);
2950 return head;
2953 /* This function fills in aa dw_cfa_location structure from a dwarf location
2954 descriptor sequence. */
2956 static void
2957 get_cfa_from_loc_descr (cfa, loc)
2958 dw_cfa_location *cfa;
2959 struct dw_loc_descr_struct *loc;
2961 struct dw_loc_descr_struct *ptr;
2962 cfa->offset = 0;
2963 cfa->base_offset = 0;
2964 cfa->indirect = 0;
2965 cfa->reg = -1;
2967 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
2969 enum dwarf_location_atom op = ptr->dw_loc_opc;
2971 switch (op)
2973 case DW_OP_reg0:
2974 case DW_OP_reg1:
2975 case DW_OP_reg2:
2976 case DW_OP_reg3:
2977 case DW_OP_reg4:
2978 case DW_OP_reg5:
2979 case DW_OP_reg6:
2980 case DW_OP_reg7:
2981 case DW_OP_reg8:
2982 case DW_OP_reg9:
2983 case DW_OP_reg10:
2984 case DW_OP_reg11:
2985 case DW_OP_reg12:
2986 case DW_OP_reg13:
2987 case DW_OP_reg14:
2988 case DW_OP_reg15:
2989 case DW_OP_reg16:
2990 case DW_OP_reg17:
2991 case DW_OP_reg18:
2992 case DW_OP_reg19:
2993 case DW_OP_reg20:
2994 case DW_OP_reg21:
2995 case DW_OP_reg22:
2996 case DW_OP_reg23:
2997 case DW_OP_reg24:
2998 case DW_OP_reg25:
2999 case DW_OP_reg26:
3000 case DW_OP_reg27:
3001 case DW_OP_reg28:
3002 case DW_OP_reg29:
3003 case DW_OP_reg30:
3004 case DW_OP_reg31:
3005 cfa->reg = op - DW_OP_reg0;
3006 break;
3007 case DW_OP_regx:
3008 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3009 break;
3010 case DW_OP_breg0:
3011 case DW_OP_breg1:
3012 case DW_OP_breg2:
3013 case DW_OP_breg3:
3014 case DW_OP_breg4:
3015 case DW_OP_breg5:
3016 case DW_OP_breg6:
3017 case DW_OP_breg7:
3018 case DW_OP_breg8:
3019 case DW_OP_breg9:
3020 case DW_OP_breg10:
3021 case DW_OP_breg11:
3022 case DW_OP_breg12:
3023 case DW_OP_breg13:
3024 case DW_OP_breg14:
3025 case DW_OP_breg15:
3026 case DW_OP_breg16:
3027 case DW_OP_breg17:
3028 case DW_OP_breg18:
3029 case DW_OP_breg19:
3030 case DW_OP_breg20:
3031 case DW_OP_breg21:
3032 case DW_OP_breg22:
3033 case DW_OP_breg23:
3034 case DW_OP_breg24:
3035 case DW_OP_breg25:
3036 case DW_OP_breg26:
3037 case DW_OP_breg27:
3038 case DW_OP_breg28:
3039 case DW_OP_breg29:
3040 case DW_OP_breg30:
3041 case DW_OP_breg31:
3042 cfa->reg = op - DW_OP_breg0;
3043 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
3044 break;
3045 case DW_OP_bregx:
3046 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3047 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
3048 break;
3049 case DW_OP_deref:
3050 cfa->indirect = 1;
3051 break;
3052 case DW_OP_plus_uconst:
3053 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
3054 break;
3055 default:
3056 internal_error ("DW_LOC_OP %s not implemented\n",
3057 dwarf_stack_op_name (ptr->dw_loc_opc));
3061 #endif /* .debug_frame support */
3063 /* And now, the support for symbolic debugging information. */
3064 #ifdef DWARF2_DEBUGGING_INFO
3066 /* .debug_str support. */
3067 static hashnode indirect_string_alloc PARAMS ((hash_table *));
3068 static int output_indirect_string PARAMS ((struct cpp_reader *,
3069 hashnode, const PTR));
3072 static void dwarf2out_init PARAMS ((const char *));
3073 static void dwarf2out_finish PARAMS ((const char *));
3074 static void dwarf2out_define PARAMS ((unsigned int, const char *));
3075 static void dwarf2out_undef PARAMS ((unsigned int, const char *));
3076 static void dwarf2out_start_source_file PARAMS ((unsigned, const char *));
3077 static void dwarf2out_end_source_file PARAMS ((unsigned));
3078 static void dwarf2out_begin_block PARAMS ((unsigned, unsigned));
3079 static void dwarf2out_end_block PARAMS ((unsigned, unsigned));
3080 static bool dwarf2out_ignore_block PARAMS ((tree));
3081 static void dwarf2out_global_decl PARAMS ((tree));
3082 static void dwarf2out_abstract_function PARAMS ((tree));
3084 /* The debug hooks structure. */
3086 struct gcc_debug_hooks dwarf2_debug_hooks =
3088 dwarf2out_init,
3089 dwarf2out_finish,
3090 dwarf2out_define,
3091 dwarf2out_undef,
3092 dwarf2out_start_source_file,
3093 dwarf2out_end_source_file,
3094 dwarf2out_begin_block,
3095 dwarf2out_end_block,
3096 dwarf2out_ignore_block,
3097 dwarf2out_source_line,
3098 dwarf2out_begin_prologue,
3099 debug_nothing_int, /* end_prologue */
3100 dwarf2out_end_epilogue,
3101 debug_nothing_tree, /* begin_function */
3102 debug_nothing_int, /* end_function */
3103 dwarf2out_decl, /* function_decl */
3104 dwarf2out_global_decl,
3105 debug_nothing_tree, /* deferred_inline_function */
3106 /* The DWARF 2 backend tries to reduce debugging bloat by not
3107 emitting the abstract description of inline functions until
3108 something tries to reference them. */
3109 dwarf2out_abstract_function, /* outlining_inline_function */
3110 debug_nothing_rtx /* label */
3113 /* NOTE: In the comments in this file, many references are made to
3114 "Debugging Information Entries". This term is abbreviated as `DIE'
3115 throughout the remainder of this file. */
3117 /* An internal representation of the DWARF output is built, and then
3118 walked to generate the DWARF debugging info. The walk of the internal
3119 representation is done after the entire program has been compiled.
3120 The types below are used to describe the internal representation. */
3122 /* Various DIE's use offsets relative to the beginning of the
3123 .debug_info section to refer to each other. */
3125 typedef long int dw_offset;
3127 /* Define typedefs here to avoid circular dependencies. */
3129 typedef struct dw_attr_struct *dw_attr_ref;
3130 typedef struct dw_line_info_struct *dw_line_info_ref;
3131 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3132 typedef struct pubname_struct *pubname_ref;
3133 typedef struct dw_ranges_struct *dw_ranges_ref;
3135 /* Each entry in the line_info_table maintains the file and
3136 line number associated with the label generated for that
3137 entry. The label gives the PC value associated with
3138 the line number entry. */
3140 typedef struct dw_line_info_struct
3142 unsigned long dw_file_num;
3143 unsigned long dw_line_num;
3145 dw_line_info_entry;
3147 /* Line information for functions in separate sections; each one gets its
3148 own sequence. */
3149 typedef struct dw_separate_line_info_struct
3151 unsigned long dw_file_num;
3152 unsigned long dw_line_num;
3153 unsigned long function;
3155 dw_separate_line_info_entry;
3157 /* Each DIE attribute has a field specifying the attribute kind,
3158 a link to the next attribute in the chain, and an attribute value.
3159 Attributes are typically linked below the DIE they modify. */
3161 typedef struct dw_attr_struct
3163 enum dwarf_attribute dw_attr;
3164 dw_attr_ref dw_attr_next;
3165 dw_val_node dw_attr_val;
3167 dw_attr_node;
3169 /* The Debugging Information Entry (DIE) structure */
3171 typedef struct die_struct
3173 enum dwarf_tag die_tag;
3174 char *die_symbol;
3175 dw_attr_ref die_attr;
3176 dw_die_ref die_parent;
3177 dw_die_ref die_child;
3178 dw_die_ref die_sib;
3179 dw_offset die_offset;
3180 unsigned long die_abbrev;
3181 int die_mark;
3183 die_node;
3185 /* The pubname structure */
3187 typedef struct pubname_struct
3189 dw_die_ref die;
3190 char *name;
3192 pubname_entry;
3194 struct dw_ranges_struct
3196 int block_num;
3199 /* The limbo die list structure. */
3200 typedef struct limbo_die_struct
3202 dw_die_ref die;
3203 tree created_for;
3204 struct limbo_die_struct *next;
3206 limbo_die_node;
3208 /* How to start an assembler comment. */
3209 #ifndef ASM_COMMENT_START
3210 #define ASM_COMMENT_START ";#"
3211 #endif
3213 /* Define a macro which returns non-zero for a TYPE_DECL which was
3214 implicitly generated for a tagged type.
3216 Note that unlike the gcc front end (which generates a NULL named
3217 TYPE_DECL node for each complete tagged type, each array type, and
3218 each function type node created) the g++ front end generates a
3219 _named_ TYPE_DECL node for each tagged type node created.
3220 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3221 generate a DW_TAG_typedef DIE for them. */
3223 #define TYPE_DECL_IS_STUB(decl) \
3224 (DECL_NAME (decl) == NULL_TREE \
3225 || (DECL_ARTIFICIAL (decl) \
3226 && is_tagged_type (TREE_TYPE (decl)) \
3227 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3228 /* This is necessary for stub decls that \
3229 appear in nested inline functions. */ \
3230 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3231 && (decl_ultimate_origin (decl) \
3232 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3234 /* Information concerning the compilation unit's programming
3235 language, and compiler version. */
3237 extern int flag_traditional;
3239 /* Fixed size portion of the DWARF compilation unit header. */
3240 #define DWARF_COMPILE_UNIT_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 3)
3242 /* Fixed size portion of debugging line information prolog. */
3243 #define DWARF_LINE_PROLOG_HEADER_SIZE 5
3245 /* Fixed size portion of public names info. */
3246 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3248 /* Fixed size portion of the address range info. */
3249 #define DWARF_ARANGES_HEADER_SIZE \
3250 (DWARF_ROUND (2 * DWARF_OFFSET_SIZE + 4, DWARF2_ADDR_SIZE * 2) \
3251 - DWARF_OFFSET_SIZE)
3253 /* Size of padding portion in the address range info. It must be
3254 aligned to twice the pointer size. */
3255 #define DWARF_ARANGES_PAD_SIZE \
3256 (DWARF_ROUND (2 * DWARF_OFFSET_SIZE + 4, DWARF2_ADDR_SIZE * 2) \
3257 - (2 * DWARF_OFFSET_SIZE + 4))
3259 /* Use assembler line directives if available. */
3260 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3261 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3262 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3263 #else
3264 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3265 #endif
3266 #endif
3268 /* Minimum line offset in a special line info. opcode.
3269 This value was chosen to give a reasonable range of values. */
3270 #define DWARF_LINE_BASE -10
3272 /* First special line opcode - leave room for the standard opcodes. */
3273 #define DWARF_LINE_OPCODE_BASE 10
3275 /* Range of line offsets in a special line info. opcode. */
3276 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3278 /* Flag that indicates the initial value of the is_stmt_start flag.
3279 In the present implementation, we do not mark any lines as
3280 the beginning of a source statement, because that information
3281 is not made available by the GCC front-end. */
3282 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3284 /* This location is used by calc_die_sizes() to keep track
3285 the offset of each DIE within the .debug_info section. */
3286 static unsigned long next_die_offset;
3288 /* Record the root of the DIE's built for the current compilation unit. */
3289 static dw_die_ref comp_unit_die;
3291 /* A list of DIEs with a NULL parent waiting to be relocated. */
3292 static limbo_die_node *limbo_die_list = 0;
3294 /* Structure used by lookup_filename to manage sets of filenames. */
3295 struct file_table
3297 char **table;
3298 unsigned allocated;
3299 unsigned in_use;
3300 unsigned last_lookup_index;
3303 /* Size (in elements) of increments by which we may expand the filename
3304 table. */
3305 #define FILE_TABLE_INCREMENT 64
3307 /* Filenames referenced by this compilation unit. */
3308 static struct file_table file_table;
3310 /* Local pointer to the name of the main input file. Initialized in
3311 dwarf2out_init. */
3312 static const char *primary_filename;
3314 /* A pointer to the base of a table of references to DIE's that describe
3315 declarations. The table is indexed by DECL_UID() which is a unique
3316 number identifying each decl. */
3317 static dw_die_ref *decl_die_table;
3319 /* Number of elements currently allocated for the decl_die_table. */
3320 static unsigned decl_die_table_allocated;
3322 /* Number of elements in decl_die_table currently in use. */
3323 static unsigned decl_die_table_in_use;
3325 /* Size (in elements) of increments by which we may expand the
3326 decl_die_table. */
3327 #define DECL_DIE_TABLE_INCREMENT 256
3329 /* A pointer to the base of a table of references to declaration
3330 scopes. This table is a display which tracks the nesting
3331 of declaration scopes at the current scope and containing
3332 scopes. This table is used to find the proper place to
3333 define type declaration DIE's. */
3334 varray_type decl_scope_table;
3336 /* A pointer to the base of a list of references to DIE's that
3337 are uniquely identified by their tag, presence/absence of
3338 children DIE's, and list of attribute/value pairs. */
3339 static dw_die_ref *abbrev_die_table;
3341 /* Number of elements currently allocated for abbrev_die_table. */
3342 static unsigned abbrev_die_table_allocated;
3344 /* Number of elements in type_die_table currently in use. */
3345 static unsigned abbrev_die_table_in_use;
3347 /* Size (in elements) of increments by which we may expand the
3348 abbrev_die_table. */
3349 #define ABBREV_DIE_TABLE_INCREMENT 256
3351 /* A pointer to the base of a table that contains line information
3352 for each source code line in .text in the compilation unit. */
3353 static dw_line_info_ref line_info_table;
3355 /* Number of elements currently allocated for line_info_table. */
3356 static unsigned line_info_table_allocated;
3358 /* Number of elements in separate_line_info_table currently in use. */
3359 static unsigned separate_line_info_table_in_use;
3361 /* A pointer to the base of a table that contains line information
3362 for each source code line outside of .text in the compilation unit. */
3363 static dw_separate_line_info_ref separate_line_info_table;
3365 /* Number of elements currently allocated for separate_line_info_table. */
3366 static unsigned separate_line_info_table_allocated;
3368 /* Number of elements in line_info_table currently in use. */
3369 static unsigned line_info_table_in_use;
3371 /* Size (in elements) of increments by which we may expand the
3372 line_info_table. */
3373 #define LINE_INFO_TABLE_INCREMENT 1024
3375 /* A pointer to the base of a table that contains a list of publicly
3376 accessible names. */
3377 static pubname_ref pubname_table;
3379 /* Number of elements currently allocated for pubname_table. */
3380 static unsigned pubname_table_allocated;
3382 /* Number of elements in pubname_table currently in use. */
3383 static unsigned pubname_table_in_use;
3385 /* Size (in elements) of increments by which we may expand the
3386 pubname_table. */
3387 #define PUBNAME_TABLE_INCREMENT 64
3389 /* Array of dies for which we should generate .debug_arange info. */
3390 static dw_die_ref *arange_table;
3392 /* Number of elements currently allocated for arange_table. */
3393 static unsigned arange_table_allocated;
3395 /* Number of elements in arange_table currently in use. */
3396 static unsigned arange_table_in_use;
3398 /* Size (in elements) of increments by which we may expand the
3399 arange_table. */
3400 #define ARANGE_TABLE_INCREMENT 64
3402 /* Array of dies for which we should generate .debug_ranges info. */
3403 static dw_ranges_ref ranges_table;
3405 /* Number of elements currently allocated for ranges_table. */
3406 static unsigned ranges_table_allocated;
3408 /* Number of elements in ranges_table currently in use. */
3409 static unsigned ranges_table_in_use;
3411 /* Size (in elements) of increments by which we may expand the
3412 ranges_table. */
3413 #define RANGES_TABLE_INCREMENT 64
3415 /* Whether we have location lists that need outputting */
3416 static unsigned have_location_lists;
3418 /* A pointer to the base of a list of incomplete types which might be
3419 completed at some later time. incomplete_types_list needs to be a VARRAY
3420 because we want to tell the garbage collector about it. */
3421 varray_type incomplete_types;
3423 /* Record whether the function being analyzed contains inlined functions. */
3424 static int current_function_has_inlines;
3425 #if 0 && defined (MIPS_DEBUGGING_INFO)
3426 static int comp_unit_has_inlines;
3427 #endif
3429 /* Array of RTXes referenced by the debugging information, which therefore
3430 must be kept around forever. This is a GC root. */
3431 static varray_type used_rtx_varray;
3433 /* Forward declarations for functions defined in this file. */
3435 static int is_pseudo_reg PARAMS ((rtx));
3436 static tree type_main_variant PARAMS ((tree));
3437 static int is_tagged_type PARAMS ((tree));
3438 static const char *dwarf_tag_name PARAMS ((unsigned));
3439 static const char *dwarf_attr_name PARAMS ((unsigned));
3440 static const char *dwarf_form_name PARAMS ((unsigned));
3441 #if 0
3442 static const char *dwarf_type_encoding_name PARAMS ((unsigned));
3443 #endif
3444 static tree decl_ultimate_origin PARAMS ((tree));
3445 static tree block_ultimate_origin PARAMS ((tree));
3446 static tree decl_class_context PARAMS ((tree));
3447 static void add_dwarf_attr PARAMS ((dw_die_ref, dw_attr_ref));
3448 static inline dw_val_class AT_class PARAMS ((dw_attr_ref));
3449 static void add_AT_flag PARAMS ((dw_die_ref,
3450 enum dwarf_attribute,
3451 unsigned));
3452 static inline unsigned AT_flag PARAMS ((dw_attr_ref));
3453 static void add_AT_int PARAMS ((dw_die_ref,
3454 enum dwarf_attribute, long));
3455 static inline long int AT_int PARAMS ((dw_attr_ref));
3456 static void add_AT_unsigned PARAMS ((dw_die_ref,
3457 enum dwarf_attribute,
3458 unsigned long));
3459 static inline unsigned long AT_unsigned PARAMS ((dw_attr_ref));
3460 static void add_AT_long_long PARAMS ((dw_die_ref,
3461 enum dwarf_attribute,
3462 unsigned long,
3463 unsigned long));
3464 static void add_AT_float PARAMS ((dw_die_ref,
3465 enum dwarf_attribute,
3466 unsigned, long *));
3467 static void add_AT_string PARAMS ((dw_die_ref,
3468 enum dwarf_attribute,
3469 const char *));
3470 static inline const char *AT_string PARAMS ((dw_attr_ref));
3471 static int AT_string_form PARAMS ((dw_attr_ref));
3472 static void add_AT_die_ref PARAMS ((dw_die_ref,
3473 enum dwarf_attribute,
3474 dw_die_ref));
3475 static inline dw_die_ref AT_ref PARAMS ((dw_attr_ref));
3476 static inline int AT_ref_external PARAMS ((dw_attr_ref));
3477 static inline void set_AT_ref_external PARAMS ((dw_attr_ref, int));
3478 static void add_AT_fde_ref PARAMS ((dw_die_ref,
3479 enum dwarf_attribute,
3480 unsigned));
3481 static void add_AT_loc PARAMS ((dw_die_ref,
3482 enum dwarf_attribute,
3483 dw_loc_descr_ref));
3484 static inline dw_loc_descr_ref AT_loc PARAMS ((dw_attr_ref));
3485 static void add_AT_loc_list PARAMS ((dw_die_ref,
3486 enum dwarf_attribute,
3487 dw_loc_list_ref));
3488 static inline dw_loc_list_ref AT_loc_list PARAMS ((dw_attr_ref));
3489 static void add_AT_addr PARAMS ((dw_die_ref,
3490 enum dwarf_attribute,
3491 rtx));
3492 static inline rtx AT_addr PARAMS ((dw_attr_ref));
3493 static void add_AT_lbl_id PARAMS ((dw_die_ref,
3494 enum dwarf_attribute,
3495 const char *));
3496 static void add_AT_lbl_offset PARAMS ((dw_die_ref,
3497 enum dwarf_attribute,
3498 const char *));
3499 static void add_AT_offset PARAMS ((dw_die_ref,
3500 enum dwarf_attribute,
3501 unsigned long));
3502 static void add_AT_range_list PARAMS ((dw_die_ref,
3503 enum dwarf_attribute,
3504 unsigned long));
3505 static inline const char *AT_lbl PARAMS ((dw_attr_ref));
3506 static dw_attr_ref get_AT PARAMS ((dw_die_ref,
3507 enum dwarf_attribute));
3508 static const char *get_AT_low_pc PARAMS ((dw_die_ref));
3509 static const char *get_AT_hi_pc PARAMS ((dw_die_ref));
3510 static const char *get_AT_string PARAMS ((dw_die_ref,
3511 enum dwarf_attribute));
3512 static int get_AT_flag PARAMS ((dw_die_ref,
3513 enum dwarf_attribute));
3514 static unsigned get_AT_unsigned PARAMS ((dw_die_ref,
3515 enum dwarf_attribute));
3516 static inline dw_die_ref get_AT_ref PARAMS ((dw_die_ref,
3517 enum dwarf_attribute));
3518 static int is_c_family PARAMS ((void));
3519 static int is_cxx PARAMS ((void));
3520 static int is_java PARAMS ((void));
3521 static int is_fortran PARAMS ((void));
3522 static void remove_AT PARAMS ((dw_die_ref,
3523 enum dwarf_attribute));
3524 static inline void free_die PARAMS ((dw_die_ref));
3525 static void remove_children PARAMS ((dw_die_ref));
3526 static void add_child_die PARAMS ((dw_die_ref, dw_die_ref));
3527 static dw_die_ref new_die PARAMS ((enum dwarf_tag, dw_die_ref,
3528 tree));
3529 static dw_die_ref lookup_type_die PARAMS ((tree));
3530 static void equate_type_number_to_die PARAMS ((tree, dw_die_ref));
3531 static dw_die_ref lookup_decl_die PARAMS ((tree));
3532 static void equate_decl_number_to_die PARAMS ((tree, dw_die_ref));
3533 static void print_spaces PARAMS ((FILE *));
3534 static void print_die PARAMS ((dw_die_ref, FILE *));
3535 static void print_dwarf_line_table PARAMS ((FILE *));
3536 static void reverse_die_lists PARAMS ((dw_die_ref));
3537 static void reverse_all_dies PARAMS ((dw_die_ref));
3538 static dw_die_ref push_new_compile_unit PARAMS ((dw_die_ref, dw_die_ref));
3539 static dw_die_ref pop_compile_unit PARAMS ((dw_die_ref));
3540 static void loc_checksum PARAMS ((dw_loc_descr_ref,
3541 struct md5_ctx *));
3542 static void attr_checksum PARAMS ((dw_attr_ref,
3543 struct md5_ctx *));
3544 static void die_checksum PARAMS ((dw_die_ref,
3545 struct md5_ctx *));
3546 static void compute_section_prefix PARAMS ((dw_die_ref));
3547 static int is_type_die PARAMS ((dw_die_ref));
3548 static int is_comdat_die PARAMS ((dw_die_ref));
3549 static int is_symbol_die PARAMS ((dw_die_ref));
3550 static void assign_symbol_names PARAMS ((dw_die_ref));
3551 static void break_out_includes PARAMS ((dw_die_ref));
3552 static void add_sibling_attributes PARAMS ((dw_die_ref));
3553 static void build_abbrev_table PARAMS ((dw_die_ref));
3554 static void output_location_lists PARAMS ((dw_die_ref));
3555 static int constant_size PARAMS ((long unsigned));
3556 static unsigned long size_of_die PARAMS ((dw_die_ref));
3557 static void calc_die_sizes PARAMS ((dw_die_ref));
3558 static void mark_dies PARAMS ((dw_die_ref));
3559 static void unmark_dies PARAMS ((dw_die_ref));
3560 static unsigned long size_of_pubnames PARAMS ((void));
3561 static unsigned long size_of_aranges PARAMS ((void));
3562 static enum dwarf_form value_format PARAMS ((dw_attr_ref));
3563 static void output_value_format PARAMS ((dw_attr_ref));
3564 static void output_abbrev_section PARAMS ((void));
3565 static void output_die_symbol PARAMS ((dw_die_ref));
3566 static void output_die PARAMS ((dw_die_ref));
3567 static void output_compilation_unit_header PARAMS ((void));
3568 static void output_comp_unit PARAMS ((dw_die_ref));
3569 static const char *dwarf2_name PARAMS ((tree, int));
3570 static void add_pubname PARAMS ((tree, dw_die_ref));
3571 static void output_pubnames PARAMS ((void));
3572 static void add_arange PARAMS ((tree, dw_die_ref));
3573 static void output_aranges PARAMS ((void));
3574 static unsigned int add_ranges PARAMS ((tree));
3575 static void output_ranges PARAMS ((void));
3576 static void output_line_info PARAMS ((void));
3577 static void output_file_names PARAMS ((void));
3578 static dw_die_ref base_type_die PARAMS ((tree));
3579 static tree root_type PARAMS ((tree));
3580 static int is_base_type PARAMS ((tree));
3581 static dw_die_ref modified_type_die PARAMS ((tree, int, int, dw_die_ref));
3582 static int type_is_enum PARAMS ((tree));
3583 static unsigned int reg_number PARAMS ((rtx));
3584 static dw_loc_descr_ref reg_loc_descriptor PARAMS ((rtx));
3585 static dw_loc_descr_ref int_loc_descriptor PARAMS ((HOST_WIDE_INT));
3586 static dw_loc_descr_ref based_loc_descr PARAMS ((unsigned, long));
3587 static int is_based_loc PARAMS ((rtx));
3588 static dw_loc_descr_ref mem_loc_descriptor PARAMS ((rtx, enum machine_mode mode));
3589 static dw_loc_descr_ref concat_loc_descriptor PARAMS ((rtx, rtx));
3590 static dw_loc_descr_ref loc_descriptor PARAMS ((rtx));
3591 static dw_loc_descr_ref loc_descriptor_from_tree PARAMS ((tree, int));
3592 static HOST_WIDE_INT ceiling PARAMS ((HOST_WIDE_INT, unsigned int));
3593 static tree field_type PARAMS ((tree));
3594 static unsigned int simple_type_align_in_bits PARAMS ((tree));
3595 static unsigned int simple_decl_align_in_bits PARAMS ((tree));
3596 static unsigned HOST_WIDE_INT simple_type_size_in_bits PARAMS ((tree));
3597 static HOST_WIDE_INT field_byte_offset PARAMS ((tree));
3598 static void add_AT_location_description PARAMS ((dw_die_ref,
3599 enum dwarf_attribute, rtx));
3600 static void add_data_member_location_attribute PARAMS ((dw_die_ref, tree));
3601 static void add_const_value_attribute PARAMS ((dw_die_ref, rtx));
3602 static rtx rtl_for_decl_location PARAMS ((tree));
3603 static void add_location_or_const_value_attribute PARAMS ((dw_die_ref, tree));
3604 static void tree_add_const_value_attribute PARAMS ((dw_die_ref, tree));
3605 static void add_name_attribute PARAMS ((dw_die_ref, const char *));
3606 static void add_bound_info PARAMS ((dw_die_ref,
3607 enum dwarf_attribute, tree));
3608 static void add_subscript_info PARAMS ((dw_die_ref, tree));
3609 static void add_byte_size_attribute PARAMS ((dw_die_ref, tree));
3610 static void add_bit_offset_attribute PARAMS ((dw_die_ref, tree));
3611 static void add_bit_size_attribute PARAMS ((dw_die_ref, tree));
3612 static void add_prototyped_attribute PARAMS ((dw_die_ref, tree));
3613 static void add_abstract_origin_attribute PARAMS ((dw_die_ref, tree));
3614 static void add_pure_or_virtual_attribute PARAMS ((dw_die_ref, tree));
3615 static void add_src_coords_attributes PARAMS ((dw_die_ref, tree));
3616 static void add_name_and_src_coords_attributes PARAMS ((dw_die_ref, tree));
3617 static void push_decl_scope PARAMS ((tree));
3618 static void pop_decl_scope PARAMS ((void));
3619 static dw_die_ref scope_die_for PARAMS ((tree, dw_die_ref));
3620 static inline int local_scope_p PARAMS ((dw_die_ref));
3621 static inline int class_scope_p PARAMS ((dw_die_ref));
3622 static void add_type_attribute PARAMS ((dw_die_ref, tree, int, int,
3623 dw_die_ref));
3624 static const char *type_tag PARAMS ((tree));
3625 static tree member_declared_type PARAMS ((tree));
3626 #if 0
3627 static const char *decl_start_label PARAMS ((tree));
3628 #endif
3629 static void gen_array_type_die PARAMS ((tree, dw_die_ref));
3630 static void gen_set_type_die PARAMS ((tree, dw_die_ref));
3631 #if 0
3632 static void gen_entry_point_die PARAMS ((tree, dw_die_ref));
3633 #endif
3634 static void gen_inlined_enumeration_type_die PARAMS ((tree, dw_die_ref));
3635 static void gen_inlined_structure_type_die PARAMS ((tree, dw_die_ref));
3636 static void gen_inlined_union_type_die PARAMS ((tree, dw_die_ref));
3637 static void gen_enumeration_type_die PARAMS ((tree, dw_die_ref));
3638 static dw_die_ref gen_formal_parameter_die PARAMS ((tree, dw_die_ref));
3639 static void gen_unspecified_parameters_die PARAMS ((tree, dw_die_ref));
3640 static void gen_formal_types_die PARAMS ((tree, dw_die_ref));
3641 static void gen_subprogram_die PARAMS ((tree, dw_die_ref));
3642 static void gen_variable_die PARAMS ((tree, dw_die_ref));
3643 static void gen_label_die PARAMS ((tree, dw_die_ref));
3644 static void gen_lexical_block_die PARAMS ((tree, dw_die_ref, int));
3645 static void gen_inlined_subroutine_die PARAMS ((tree, dw_die_ref, int));
3646 static void gen_field_die PARAMS ((tree, dw_die_ref));
3647 static void gen_ptr_to_mbr_type_die PARAMS ((tree, dw_die_ref));
3648 static dw_die_ref gen_compile_unit_die PARAMS ((const char *));
3649 static void gen_string_type_die PARAMS ((tree, dw_die_ref));
3650 static void gen_inheritance_die PARAMS ((tree, dw_die_ref));
3651 static void gen_member_die PARAMS ((tree, dw_die_ref));
3652 static void gen_struct_or_union_type_die PARAMS ((tree, dw_die_ref));
3653 static void gen_subroutine_type_die PARAMS ((tree, dw_die_ref));
3654 static void gen_typedef_die PARAMS ((tree, dw_die_ref));
3655 static void gen_type_die PARAMS ((tree, dw_die_ref));
3656 static void gen_tagged_type_instantiation_die PARAMS ((tree, dw_die_ref));
3657 static void gen_block_die PARAMS ((tree, dw_die_ref, int));
3658 static void decls_for_scope PARAMS ((tree, dw_die_ref, int));
3659 static int is_redundant_typedef PARAMS ((tree));
3660 static void gen_decl_die PARAMS ((tree, dw_die_ref));
3661 static unsigned lookup_filename PARAMS ((const char *));
3662 static void init_file_table PARAMS ((void));
3663 static void retry_incomplete_types PARAMS ((void));
3664 static void gen_type_die_for_member PARAMS ((tree, tree, dw_die_ref));
3665 static void splice_child_die PARAMS ((dw_die_ref, dw_die_ref));
3666 static int file_info_cmp PARAMS ((const void *, const void *));
3667 static dw_loc_list_ref new_loc_list PARAMS ((dw_loc_descr_ref,
3668 const char *, const char *,
3669 const char *, unsigned));
3670 static void add_loc_descr_to_loc_list PARAMS ((dw_loc_list_ref *,
3671 dw_loc_descr_ref,
3672 const char *, const char *, const char *));
3673 static void output_loc_list PARAMS ((dw_loc_list_ref));
3674 static char *gen_internal_sym PARAMS ((const char *));
3675 static void mark_limbo_die_list PARAMS ((void *));
3677 /* Section names used to hold DWARF debugging information. */
3678 #ifndef DEBUG_INFO_SECTION
3679 #define DEBUG_INFO_SECTION ".debug_info"
3680 #endif
3681 #ifndef DEBUG_ABBREV_SECTION
3682 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3683 #endif
3684 #ifndef DEBUG_ARANGES_SECTION
3685 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3686 #endif
3687 #ifndef DEBUG_MACINFO_SECTION
3688 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
3689 #endif
3690 #ifndef DEBUG_LINE_SECTION
3691 #define DEBUG_LINE_SECTION ".debug_line"
3692 #endif
3693 #ifndef DEBUG_LOC_SECTION
3694 #define DEBUG_LOC_SECTION ".debug_loc"
3695 #endif
3696 #ifndef DEBUG_PUBNAMES_SECTION
3697 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
3698 #endif
3699 #ifndef DEBUG_STR_SECTION
3700 #define DEBUG_STR_SECTION ".debug_str"
3701 #endif
3702 #ifndef DEBUG_RANGES_SECTION
3703 #define DEBUG_RANGES_SECTION ".debug_ranges"
3704 #endif
3706 /* Standard ELF section names for compiled code and data. */
3707 #ifndef TEXT_SECTION_NAME
3708 #define TEXT_SECTION_NAME ".text"
3709 #endif
3711 /* Section flags for .debug_str section. */
3712 #ifdef HAVE_GAS_SHF_MERGE
3713 #define DEBUG_STR_SECTION_FLAGS \
3714 (SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1)
3715 #else
3716 #define DEBUG_STR_SECTION_FLAGS SECTION_DEBUG
3717 #endif
3719 /* Labels we insert at beginning sections we can reference instead of
3720 the section names themselves. */
3722 #ifndef TEXT_SECTION_LABEL
3723 #define TEXT_SECTION_LABEL "Ltext"
3724 #endif
3725 #ifndef DEBUG_LINE_SECTION_LABEL
3726 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
3727 #endif
3728 #ifndef DEBUG_INFO_SECTION_LABEL
3729 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
3730 #endif
3731 #ifndef DEBUG_ABBREV_SECTION_LABEL
3732 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
3733 #endif
3734 #ifndef DEBUG_LOC_SECTION_LABEL
3735 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
3736 #endif
3737 #ifndef DEBUG_RANGES_SECTION_LABEL
3738 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
3739 #endif
3740 #ifndef DEBUG_MACINFO_SECTION_LABEL
3741 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
3742 #endif
3744 /* Definitions of defaults for formats and names of various special
3745 (artificial) labels which may be generated within this file (when the -g
3746 options is used and DWARF_DEBUGGING_INFO is in effect.
3747 If necessary, these may be overridden from within the tm.h file, but
3748 typically, overriding these defaults is unnecessary. */
3750 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
3751 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3752 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3753 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3754 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3755 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3756 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3757 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
3759 #ifndef TEXT_END_LABEL
3760 #define TEXT_END_LABEL "Letext"
3761 #endif
3762 #ifndef DATA_END_LABEL
3763 #define DATA_END_LABEL "Ledata"
3764 #endif
3765 #ifndef BSS_END_LABEL
3766 #define BSS_END_LABEL "Lebss"
3767 #endif
3768 #ifndef BLOCK_BEGIN_LABEL
3769 #define BLOCK_BEGIN_LABEL "LBB"
3770 #endif
3771 #ifndef BLOCK_END_LABEL
3772 #define BLOCK_END_LABEL "LBE"
3773 #endif
3774 #ifndef BODY_BEGIN_LABEL
3775 #define BODY_BEGIN_LABEL "Lbb"
3776 #endif
3777 #ifndef BODY_END_LABEL
3778 #define BODY_END_LABEL "Lbe"
3779 #endif
3780 #ifndef LINE_CODE_LABEL
3781 #define LINE_CODE_LABEL "LM"
3782 #endif
3783 #ifndef SEPARATE_LINE_CODE_LABEL
3784 #define SEPARATE_LINE_CODE_LABEL "LSM"
3785 #endif
3787 /* We allow a language front-end to designate a function that is to be
3788 called to "demangle" any name before it it put into a DIE. */
3790 static const char *(*demangle_name_func) PARAMS ((const char *));
3792 void
3793 dwarf2out_set_demangle_name_func (func)
3794 const char *(*func) PARAMS ((const char *));
3796 demangle_name_func = func;
3799 /* Test if rtl node points to a pseudo register. */
3801 static inline int
3802 is_pseudo_reg (rtl)
3803 rtx rtl;
3805 return ((GET_CODE (rtl) == REG && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
3806 || (GET_CODE (rtl) == SUBREG
3807 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
3810 /* Return a reference to a type, with its const and volatile qualifiers
3811 removed. */
3813 static inline tree
3814 type_main_variant (type)
3815 tree type;
3817 type = TYPE_MAIN_VARIANT (type);
3819 /* ??? There really should be only one main variant among any group of
3820 variants of a given type (and all of the MAIN_VARIANT values for all
3821 members of the group should point to that one type) but sometimes the C
3822 front-end messes this up for array types, so we work around that bug
3823 here. */
3824 if (TREE_CODE (type) == ARRAY_TYPE)
3825 while (type != TYPE_MAIN_VARIANT (type))
3826 type = TYPE_MAIN_VARIANT (type);
3828 return type;
3831 /* Return non-zero if the given type node represents a tagged type. */
3833 static inline int
3834 is_tagged_type (type)
3835 tree type;
3837 enum tree_code code = TREE_CODE (type);
3839 return (code == RECORD_TYPE || code == UNION_TYPE
3840 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
3843 /* Convert a DIE tag into its string name. */
3845 static const char *
3846 dwarf_tag_name (tag)
3847 unsigned tag;
3849 switch (tag)
3851 case DW_TAG_padding:
3852 return "DW_TAG_padding";
3853 case DW_TAG_array_type:
3854 return "DW_TAG_array_type";
3855 case DW_TAG_class_type:
3856 return "DW_TAG_class_type";
3857 case DW_TAG_entry_point:
3858 return "DW_TAG_entry_point";
3859 case DW_TAG_enumeration_type:
3860 return "DW_TAG_enumeration_type";
3861 case DW_TAG_formal_parameter:
3862 return "DW_TAG_formal_parameter";
3863 case DW_TAG_imported_declaration:
3864 return "DW_TAG_imported_declaration";
3865 case DW_TAG_label:
3866 return "DW_TAG_label";
3867 case DW_TAG_lexical_block:
3868 return "DW_TAG_lexical_block";
3869 case DW_TAG_member:
3870 return "DW_TAG_member";
3871 case DW_TAG_pointer_type:
3872 return "DW_TAG_pointer_type";
3873 case DW_TAG_reference_type:
3874 return "DW_TAG_reference_type";
3875 case DW_TAG_compile_unit:
3876 return "DW_TAG_compile_unit";
3877 case DW_TAG_string_type:
3878 return "DW_TAG_string_type";
3879 case DW_TAG_structure_type:
3880 return "DW_TAG_structure_type";
3881 case DW_TAG_subroutine_type:
3882 return "DW_TAG_subroutine_type";
3883 case DW_TAG_typedef:
3884 return "DW_TAG_typedef";
3885 case DW_TAG_union_type:
3886 return "DW_TAG_union_type";
3887 case DW_TAG_unspecified_parameters:
3888 return "DW_TAG_unspecified_parameters";
3889 case DW_TAG_variant:
3890 return "DW_TAG_variant";
3891 case DW_TAG_common_block:
3892 return "DW_TAG_common_block";
3893 case DW_TAG_common_inclusion:
3894 return "DW_TAG_common_inclusion";
3895 case DW_TAG_inheritance:
3896 return "DW_TAG_inheritance";
3897 case DW_TAG_inlined_subroutine:
3898 return "DW_TAG_inlined_subroutine";
3899 case DW_TAG_module:
3900 return "DW_TAG_module";
3901 case DW_TAG_ptr_to_member_type:
3902 return "DW_TAG_ptr_to_member_type";
3903 case DW_TAG_set_type:
3904 return "DW_TAG_set_type";
3905 case DW_TAG_subrange_type:
3906 return "DW_TAG_subrange_type";
3907 case DW_TAG_with_stmt:
3908 return "DW_TAG_with_stmt";
3909 case DW_TAG_access_declaration:
3910 return "DW_TAG_access_declaration";
3911 case DW_TAG_base_type:
3912 return "DW_TAG_base_type";
3913 case DW_TAG_catch_block:
3914 return "DW_TAG_catch_block";
3915 case DW_TAG_const_type:
3916 return "DW_TAG_const_type";
3917 case DW_TAG_constant:
3918 return "DW_TAG_constant";
3919 case DW_TAG_enumerator:
3920 return "DW_TAG_enumerator";
3921 case DW_TAG_file_type:
3922 return "DW_TAG_file_type";
3923 case DW_TAG_friend:
3924 return "DW_TAG_friend";
3925 case DW_TAG_namelist:
3926 return "DW_TAG_namelist";
3927 case DW_TAG_namelist_item:
3928 return "DW_TAG_namelist_item";
3929 case DW_TAG_packed_type:
3930 return "DW_TAG_packed_type";
3931 case DW_TAG_subprogram:
3932 return "DW_TAG_subprogram";
3933 case DW_TAG_template_type_param:
3934 return "DW_TAG_template_type_param";
3935 case DW_TAG_template_value_param:
3936 return "DW_TAG_template_value_param";
3937 case DW_TAG_thrown_type:
3938 return "DW_TAG_thrown_type";
3939 case DW_TAG_try_block:
3940 return "DW_TAG_try_block";
3941 case DW_TAG_variant_part:
3942 return "DW_TAG_variant_part";
3943 case DW_TAG_variable:
3944 return "DW_TAG_variable";
3945 case DW_TAG_volatile_type:
3946 return "DW_TAG_volatile_type";
3947 case DW_TAG_MIPS_loop:
3948 return "DW_TAG_MIPS_loop";
3949 case DW_TAG_format_label:
3950 return "DW_TAG_format_label";
3951 case DW_TAG_function_template:
3952 return "DW_TAG_function_template";
3953 case DW_TAG_class_template:
3954 return "DW_TAG_class_template";
3955 case DW_TAG_GNU_BINCL:
3956 return "DW_TAG_GNU_BINCL";
3957 case DW_TAG_GNU_EINCL:
3958 return "DW_TAG_GNU_EINCL";
3959 default:
3960 return "DW_TAG_<unknown>";
3964 /* Convert a DWARF attribute code into its string name. */
3966 static const char *
3967 dwarf_attr_name (attr)
3968 unsigned attr;
3970 switch (attr)
3972 case DW_AT_sibling:
3973 return "DW_AT_sibling";
3974 case DW_AT_location:
3975 return "DW_AT_location";
3976 case DW_AT_name:
3977 return "DW_AT_name";
3978 case DW_AT_ordering:
3979 return "DW_AT_ordering";
3980 case DW_AT_subscr_data:
3981 return "DW_AT_subscr_data";
3982 case DW_AT_byte_size:
3983 return "DW_AT_byte_size";
3984 case DW_AT_bit_offset:
3985 return "DW_AT_bit_offset";
3986 case DW_AT_bit_size:
3987 return "DW_AT_bit_size";
3988 case DW_AT_element_list:
3989 return "DW_AT_element_list";
3990 case DW_AT_stmt_list:
3991 return "DW_AT_stmt_list";
3992 case DW_AT_low_pc:
3993 return "DW_AT_low_pc";
3994 case DW_AT_high_pc:
3995 return "DW_AT_high_pc";
3996 case DW_AT_language:
3997 return "DW_AT_language";
3998 case DW_AT_member:
3999 return "DW_AT_member";
4000 case DW_AT_discr:
4001 return "DW_AT_discr";
4002 case DW_AT_discr_value:
4003 return "DW_AT_discr_value";
4004 case DW_AT_visibility:
4005 return "DW_AT_visibility";
4006 case DW_AT_import:
4007 return "DW_AT_import";
4008 case DW_AT_string_length:
4009 return "DW_AT_string_length";
4010 case DW_AT_common_reference:
4011 return "DW_AT_common_reference";
4012 case DW_AT_comp_dir:
4013 return "DW_AT_comp_dir";
4014 case DW_AT_const_value:
4015 return "DW_AT_const_value";
4016 case DW_AT_containing_type:
4017 return "DW_AT_containing_type";
4018 case DW_AT_default_value:
4019 return "DW_AT_default_value";
4020 case DW_AT_inline:
4021 return "DW_AT_inline";
4022 case DW_AT_is_optional:
4023 return "DW_AT_is_optional";
4024 case DW_AT_lower_bound:
4025 return "DW_AT_lower_bound";
4026 case DW_AT_producer:
4027 return "DW_AT_producer";
4028 case DW_AT_prototyped:
4029 return "DW_AT_prototyped";
4030 case DW_AT_return_addr:
4031 return "DW_AT_return_addr";
4032 case DW_AT_start_scope:
4033 return "DW_AT_start_scope";
4034 case DW_AT_stride_size:
4035 return "DW_AT_stride_size";
4036 case DW_AT_upper_bound:
4037 return "DW_AT_upper_bound";
4038 case DW_AT_abstract_origin:
4039 return "DW_AT_abstract_origin";
4040 case DW_AT_accessibility:
4041 return "DW_AT_accessibility";
4042 case DW_AT_address_class:
4043 return "DW_AT_address_class";
4044 case DW_AT_artificial:
4045 return "DW_AT_artificial";
4046 case DW_AT_base_types:
4047 return "DW_AT_base_types";
4048 case DW_AT_calling_convention:
4049 return "DW_AT_calling_convention";
4050 case DW_AT_count:
4051 return "DW_AT_count";
4052 case DW_AT_data_member_location:
4053 return "DW_AT_data_member_location";
4054 case DW_AT_decl_column:
4055 return "DW_AT_decl_column";
4056 case DW_AT_decl_file:
4057 return "DW_AT_decl_file";
4058 case DW_AT_decl_line:
4059 return "DW_AT_decl_line";
4060 case DW_AT_declaration:
4061 return "DW_AT_declaration";
4062 case DW_AT_discr_list:
4063 return "DW_AT_discr_list";
4064 case DW_AT_encoding:
4065 return "DW_AT_encoding";
4066 case DW_AT_external:
4067 return "DW_AT_external";
4068 case DW_AT_frame_base:
4069 return "DW_AT_frame_base";
4070 case DW_AT_friend:
4071 return "DW_AT_friend";
4072 case DW_AT_identifier_case:
4073 return "DW_AT_identifier_case";
4074 case DW_AT_macro_info:
4075 return "DW_AT_macro_info";
4076 case DW_AT_namelist_items:
4077 return "DW_AT_namelist_items";
4078 case DW_AT_priority:
4079 return "DW_AT_priority";
4080 case DW_AT_segment:
4081 return "DW_AT_segment";
4082 case DW_AT_specification:
4083 return "DW_AT_specification";
4084 case DW_AT_static_link:
4085 return "DW_AT_static_link";
4086 case DW_AT_type:
4087 return "DW_AT_type";
4088 case DW_AT_use_location:
4089 return "DW_AT_use_location";
4090 case DW_AT_variable_parameter:
4091 return "DW_AT_variable_parameter";
4092 case DW_AT_virtuality:
4093 return "DW_AT_virtuality";
4094 case DW_AT_vtable_elem_location:
4095 return "DW_AT_vtable_elem_location";
4097 case DW_AT_allocated:
4098 return "DW_AT_allocated";
4099 case DW_AT_associated:
4100 return "DW_AT_associated";
4101 case DW_AT_data_location:
4102 return "DW_AT_data_location";
4103 case DW_AT_stride:
4104 return "DW_AT_stride";
4105 case DW_AT_entry_pc:
4106 return "DW_AT_entry_pc";
4107 case DW_AT_use_UTF8:
4108 return "DW_AT_use_UTF8";
4109 case DW_AT_extension:
4110 return "DW_AT_extension";
4111 case DW_AT_ranges:
4112 return "DW_AT_ranges";
4113 case DW_AT_trampoline:
4114 return "DW_AT_trampoline";
4115 case DW_AT_call_column:
4116 return "DW_AT_call_column";
4117 case DW_AT_call_file:
4118 return "DW_AT_call_file";
4119 case DW_AT_call_line:
4120 return "DW_AT_call_line";
4122 case DW_AT_MIPS_fde:
4123 return "DW_AT_MIPS_fde";
4124 case DW_AT_MIPS_loop_begin:
4125 return "DW_AT_MIPS_loop_begin";
4126 case DW_AT_MIPS_tail_loop_begin:
4127 return "DW_AT_MIPS_tail_loop_begin";
4128 case DW_AT_MIPS_epilog_begin:
4129 return "DW_AT_MIPS_epilog_begin";
4130 case DW_AT_MIPS_loop_unroll_factor:
4131 return "DW_AT_MIPS_loop_unroll_factor";
4132 case DW_AT_MIPS_software_pipeline_depth:
4133 return "DW_AT_MIPS_software_pipeline_depth";
4134 case DW_AT_MIPS_linkage_name:
4135 return "DW_AT_MIPS_linkage_name";
4136 case DW_AT_MIPS_stride:
4137 return "DW_AT_MIPS_stride";
4138 case DW_AT_MIPS_abstract_name:
4139 return "DW_AT_MIPS_abstract_name";
4140 case DW_AT_MIPS_clone_origin:
4141 return "DW_AT_MIPS_clone_origin";
4142 case DW_AT_MIPS_has_inlines:
4143 return "DW_AT_MIPS_has_inlines";
4145 case DW_AT_sf_names:
4146 return "DW_AT_sf_names";
4147 case DW_AT_src_info:
4148 return "DW_AT_src_info";
4149 case DW_AT_mac_info:
4150 return "DW_AT_mac_info";
4151 case DW_AT_src_coords:
4152 return "DW_AT_src_coords";
4153 case DW_AT_body_begin:
4154 return "DW_AT_body_begin";
4155 case DW_AT_body_end:
4156 return "DW_AT_body_end";
4157 case DW_AT_VMS_rtnbeg_pd_address:
4158 return "DW_AT_VMS_rtnbeg_pd_address";
4160 default:
4161 return "DW_AT_<unknown>";
4165 /* Convert a DWARF value form code into its string name. */
4167 static const char *
4168 dwarf_form_name (form)
4169 unsigned form;
4171 switch (form)
4173 case DW_FORM_addr:
4174 return "DW_FORM_addr";
4175 case DW_FORM_block2:
4176 return "DW_FORM_block2";
4177 case DW_FORM_block4:
4178 return "DW_FORM_block4";
4179 case DW_FORM_data2:
4180 return "DW_FORM_data2";
4181 case DW_FORM_data4:
4182 return "DW_FORM_data4";
4183 case DW_FORM_data8:
4184 return "DW_FORM_data8";
4185 case DW_FORM_string:
4186 return "DW_FORM_string";
4187 case DW_FORM_block:
4188 return "DW_FORM_block";
4189 case DW_FORM_block1:
4190 return "DW_FORM_block1";
4191 case DW_FORM_data1:
4192 return "DW_FORM_data1";
4193 case DW_FORM_flag:
4194 return "DW_FORM_flag";
4195 case DW_FORM_sdata:
4196 return "DW_FORM_sdata";
4197 case DW_FORM_strp:
4198 return "DW_FORM_strp";
4199 case DW_FORM_udata:
4200 return "DW_FORM_udata";
4201 case DW_FORM_ref_addr:
4202 return "DW_FORM_ref_addr";
4203 case DW_FORM_ref1:
4204 return "DW_FORM_ref1";
4205 case DW_FORM_ref2:
4206 return "DW_FORM_ref2";
4207 case DW_FORM_ref4:
4208 return "DW_FORM_ref4";
4209 case DW_FORM_ref8:
4210 return "DW_FORM_ref8";
4211 case DW_FORM_ref_udata:
4212 return "DW_FORM_ref_udata";
4213 case DW_FORM_indirect:
4214 return "DW_FORM_indirect";
4215 default:
4216 return "DW_FORM_<unknown>";
4220 /* Convert a DWARF type code into its string name. */
4222 #if 0
4223 static const char *
4224 dwarf_type_encoding_name (enc)
4225 unsigned enc;
4227 switch (enc)
4229 case DW_ATE_address:
4230 return "DW_ATE_address";
4231 case DW_ATE_boolean:
4232 return "DW_ATE_boolean";
4233 case DW_ATE_complex_float:
4234 return "DW_ATE_complex_float";
4235 case DW_ATE_float:
4236 return "DW_ATE_float";
4237 case DW_ATE_signed:
4238 return "DW_ATE_signed";
4239 case DW_ATE_signed_char:
4240 return "DW_ATE_signed_char";
4241 case DW_ATE_unsigned:
4242 return "DW_ATE_unsigned";
4243 case DW_ATE_unsigned_char:
4244 return "DW_ATE_unsigned_char";
4245 default:
4246 return "DW_ATE_<unknown>";
4249 #endif
4251 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4252 instance of an inlined instance of a decl which is local to an inline
4253 function, so we have to trace all of the way back through the origin chain
4254 to find out what sort of node actually served as the original seed for the
4255 given block. */
4257 static tree
4258 decl_ultimate_origin (decl)
4259 tree decl;
4261 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4262 nodes in the function to point to themselves; ignore that if
4263 we're trying to output the abstract instance of this function. */
4264 if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4265 return NULL_TREE;
4267 #ifdef ENABLE_CHECKING
4268 if (DECL_FROM_INLINE (DECL_ORIGIN (decl)))
4269 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4270 most distant ancestor, this should never happen. */
4271 abort ();
4272 #endif
4274 return DECL_ABSTRACT_ORIGIN (decl);
4277 /* Determine the "ultimate origin" of a block. The block may be an inlined
4278 instance of an inlined instance of a block which is local to an inline
4279 function, so we have to trace all of the way back through the origin chain
4280 to find out what sort of node actually served as the original seed for the
4281 given block. */
4283 static tree
4284 block_ultimate_origin (block)
4285 tree block;
4287 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4289 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4290 nodes in the function to point to themselves; ignore that if
4291 we're trying to output the abstract instance of this function. */
4292 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4293 return NULL_TREE;
4295 if (immediate_origin == NULL_TREE)
4296 return NULL_TREE;
4297 else
4299 tree ret_val;
4300 tree lookahead = immediate_origin;
4304 ret_val = lookahead;
4305 lookahead = (TREE_CODE (ret_val) == BLOCK
4306 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
4308 while (lookahead != NULL && lookahead != ret_val);
4310 return ret_val;
4314 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4315 of a virtual function may refer to a base class, so we check the 'this'
4316 parameter. */
4318 static tree
4319 decl_class_context (decl)
4320 tree decl;
4322 tree context = NULL_TREE;
4324 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4325 context = DECL_CONTEXT (decl);
4326 else
4327 context = TYPE_MAIN_VARIANT
4328 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4330 if (context && !TYPE_P (context))
4331 context = NULL_TREE;
4333 return context;
4336 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4337 addition order, and correct that in reverse_all_dies. */
4339 static inline void
4340 add_dwarf_attr (die, attr)
4341 dw_die_ref die;
4342 dw_attr_ref attr;
4344 if (die != NULL && attr != NULL)
4346 attr->dw_attr_next = die->die_attr;
4347 die->die_attr = attr;
4351 static inline dw_val_class
4352 AT_class (a)
4353 dw_attr_ref a;
4355 return a->dw_attr_val.val_class;
4358 /* Add a flag value attribute to a DIE. */
4360 static inline void
4361 add_AT_flag (die, attr_kind, flag)
4362 dw_die_ref die;
4363 enum dwarf_attribute attr_kind;
4364 unsigned flag;
4366 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4368 attr->dw_attr_next = NULL;
4369 attr->dw_attr = attr_kind;
4370 attr->dw_attr_val.val_class = dw_val_class_flag;
4371 attr->dw_attr_val.v.val_flag = flag;
4372 add_dwarf_attr (die, attr);
4375 static inline unsigned
4376 AT_flag (a)
4377 dw_attr_ref a;
4379 if (a && AT_class (a) == dw_val_class_flag)
4380 return a->dw_attr_val.v.val_flag;
4382 abort ();
4385 /* Add a signed integer attribute value to a DIE. */
4387 static inline void
4388 add_AT_int (die, attr_kind, int_val)
4389 dw_die_ref die;
4390 enum dwarf_attribute attr_kind;
4391 long int int_val;
4393 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4395 attr->dw_attr_next = NULL;
4396 attr->dw_attr = attr_kind;
4397 attr->dw_attr_val.val_class = dw_val_class_const;
4398 attr->dw_attr_val.v.val_int = int_val;
4399 add_dwarf_attr (die, attr);
4402 static inline long int
4403 AT_int (a)
4404 dw_attr_ref a;
4406 if (a && AT_class (a) == dw_val_class_const)
4407 return a->dw_attr_val.v.val_int;
4409 abort ();
4412 /* Add an unsigned integer attribute value to a DIE. */
4414 static inline void
4415 add_AT_unsigned (die, attr_kind, unsigned_val)
4416 dw_die_ref die;
4417 enum dwarf_attribute attr_kind;
4418 unsigned long unsigned_val;
4420 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4422 attr->dw_attr_next = NULL;
4423 attr->dw_attr = attr_kind;
4424 attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
4425 attr->dw_attr_val.v.val_unsigned = unsigned_val;
4426 add_dwarf_attr (die, attr);
4429 static inline unsigned long
4430 AT_unsigned (a)
4431 dw_attr_ref a;
4433 if (a && AT_class (a) == dw_val_class_unsigned_const)
4434 return a->dw_attr_val.v.val_unsigned;
4436 abort ();
4439 /* Add an unsigned double integer attribute value to a DIE. */
4441 static inline void
4442 add_AT_long_long (die, attr_kind, val_hi, val_low)
4443 dw_die_ref die;
4444 enum dwarf_attribute attr_kind;
4445 unsigned long val_hi;
4446 unsigned long val_low;
4448 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4450 attr->dw_attr_next = NULL;
4451 attr->dw_attr = attr_kind;
4452 attr->dw_attr_val.val_class = dw_val_class_long_long;
4453 attr->dw_attr_val.v.val_long_long.hi = val_hi;
4454 attr->dw_attr_val.v.val_long_long.low = val_low;
4455 add_dwarf_attr (die, attr);
4458 /* Add a floating point attribute value to a DIE and return it. */
4460 static inline void
4461 add_AT_float (die, attr_kind, length, array)
4462 dw_die_ref die;
4463 enum dwarf_attribute attr_kind;
4464 unsigned length;
4465 long *array;
4467 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4469 attr->dw_attr_next = NULL;
4470 attr->dw_attr = attr_kind;
4471 attr->dw_attr_val.val_class = dw_val_class_float;
4472 attr->dw_attr_val.v.val_float.length = length;
4473 attr->dw_attr_val.v.val_float.array = array;
4474 add_dwarf_attr (die, attr);
4477 /* Add a string attribute value to a DIE. */
4479 static inline void
4480 add_AT_string (die, attr_kind, str)
4481 dw_die_ref die;
4482 enum dwarf_attribute attr_kind;
4483 const char *str;
4485 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4486 struct indirect_string_node *node;
4488 if (! debug_str_hash)
4490 debug_str_hash = ht_create (10);
4491 debug_str_hash->alloc_node = indirect_string_alloc;
4494 node = (struct indirect_string_node *)
4495 ht_lookup (debug_str_hash, (const unsigned char *) str,
4496 strlen (str), HT_ALLOC);
4497 node->refcount++;
4499 attr->dw_attr_next = NULL;
4500 attr->dw_attr = attr_kind;
4501 attr->dw_attr_val.val_class = dw_val_class_str;
4502 attr->dw_attr_val.v.val_str = node;
4503 add_dwarf_attr (die, attr);
4506 static inline const char *
4507 AT_string (a)
4508 dw_attr_ref a;
4510 if (a && AT_class (a) == dw_val_class_str)
4511 return (const char *) HT_STR (&a->dw_attr_val.v.val_str->id);
4513 abort ();
4516 /* Find out whether a string should be output inline in DIE
4517 or out-of-line in .debug_str section. */
4519 static int
4520 AT_string_form (a)
4521 dw_attr_ref a;
4523 if (a && AT_class (a) == dw_val_class_str)
4525 struct indirect_string_node *node;
4526 unsigned int len;
4527 extern int const_labelno;
4528 char label[32];
4530 node = a->dw_attr_val.v.val_str;
4531 if (node->form)
4532 return node->form;
4534 len = HT_LEN (&node->id) + 1;
4536 /* If the string is shorter or equal to the size of the reference, it is
4537 always better to put it inline. */
4538 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
4539 return node->form = DW_FORM_string;
4541 /* If we cannot expect the linker to merge strings in .debug_str
4542 section, only put it into .debug_str if it is worth even in this
4543 single module. */
4544 if ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) == 0
4545 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len)
4546 return node->form = DW_FORM_string;
4548 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
4549 ++const_labelno;
4550 node->label = xstrdup (label);
4552 return node->form = DW_FORM_strp;
4555 abort ();
4558 /* Add a DIE reference attribute value to a DIE. */
4560 static inline void
4561 add_AT_die_ref (die, attr_kind, targ_die)
4562 dw_die_ref die;
4563 enum dwarf_attribute attr_kind;
4564 dw_die_ref targ_die;
4566 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4568 attr->dw_attr_next = NULL;
4569 attr->dw_attr = attr_kind;
4570 attr->dw_attr_val.val_class = dw_val_class_die_ref;
4571 attr->dw_attr_val.v.val_die_ref.die = targ_die;
4572 attr->dw_attr_val.v.val_die_ref.external = 0;
4573 add_dwarf_attr (die, attr);
4576 static inline dw_die_ref
4577 AT_ref (a)
4578 dw_attr_ref a;
4580 if (a && AT_class (a) == dw_val_class_die_ref)
4581 return a->dw_attr_val.v.val_die_ref.die;
4583 abort ();
4586 static inline int
4587 AT_ref_external (a)
4588 dw_attr_ref a;
4590 if (a && AT_class (a) == dw_val_class_die_ref)
4591 return a->dw_attr_val.v.val_die_ref.external;
4593 return 0;
4596 static inline void
4597 set_AT_ref_external (a, i)
4598 dw_attr_ref a;
4599 int i;
4601 if (a && AT_class (a) == dw_val_class_die_ref)
4602 a->dw_attr_val.v.val_die_ref.external = i;
4603 else
4604 abort ();
4607 /* Add an FDE reference attribute value to a DIE. */
4609 static inline void
4610 add_AT_fde_ref (die, attr_kind, targ_fde)
4611 dw_die_ref die;
4612 enum dwarf_attribute attr_kind;
4613 unsigned targ_fde;
4615 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4617 attr->dw_attr_next = NULL;
4618 attr->dw_attr = attr_kind;
4619 attr->dw_attr_val.val_class = dw_val_class_fde_ref;
4620 attr->dw_attr_val.v.val_fde_index = targ_fde;
4621 add_dwarf_attr (die, attr);
4624 /* Add a location description attribute value to a DIE. */
4626 static inline void
4627 add_AT_loc (die, attr_kind, loc)
4628 dw_die_ref die;
4629 enum dwarf_attribute attr_kind;
4630 dw_loc_descr_ref loc;
4632 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4634 attr->dw_attr_next = NULL;
4635 attr->dw_attr = attr_kind;
4636 attr->dw_attr_val.val_class = dw_val_class_loc;
4637 attr->dw_attr_val.v.val_loc = loc;
4638 add_dwarf_attr (die, attr);
4641 static inline dw_loc_descr_ref
4642 AT_loc (a)
4643 dw_attr_ref a;
4645 if (a && AT_class (a) == dw_val_class_loc)
4646 return a->dw_attr_val.v.val_loc;
4648 abort ();
4651 static inline void
4652 add_AT_loc_list (die, attr_kind, loc_list)
4653 dw_die_ref die;
4654 enum dwarf_attribute attr_kind;
4655 dw_loc_list_ref loc_list;
4657 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4659 attr->dw_attr_next = NULL;
4660 attr->dw_attr = attr_kind;
4661 attr->dw_attr_val.val_class = dw_val_class_loc_list;
4662 attr->dw_attr_val.v.val_loc_list = loc_list;
4663 add_dwarf_attr (die, attr);
4664 have_location_lists = 1;
4667 static inline dw_loc_list_ref
4668 AT_loc_list (a)
4669 dw_attr_ref a;
4671 if (a && AT_class (a) == dw_val_class_loc_list)
4672 return a->dw_attr_val.v.val_loc_list;
4674 abort ();
4677 /* Add an address constant attribute value to a DIE. */
4679 static inline void
4680 add_AT_addr (die, attr_kind, addr)
4681 dw_die_ref die;
4682 enum dwarf_attribute attr_kind;
4683 rtx addr;
4685 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4687 attr->dw_attr_next = NULL;
4688 attr->dw_attr = attr_kind;
4689 attr->dw_attr_val.val_class = dw_val_class_addr;
4690 attr->dw_attr_val.v.val_addr = addr;
4691 add_dwarf_attr (die, attr);
4694 static inline rtx
4695 AT_addr (a)
4696 dw_attr_ref a;
4698 if (a && AT_class (a) == dw_val_class_addr)
4699 return a->dw_attr_val.v.val_addr;
4701 abort ();
4704 /* Add a label identifier attribute value to a DIE. */
4706 static inline void
4707 add_AT_lbl_id (die, attr_kind, lbl_id)
4708 dw_die_ref die;
4709 enum dwarf_attribute attr_kind;
4710 const char *lbl_id;
4712 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4714 attr->dw_attr_next = NULL;
4715 attr->dw_attr = attr_kind;
4716 attr->dw_attr_val.val_class = dw_val_class_lbl_id;
4717 attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
4718 add_dwarf_attr (die, attr);
4721 /* Add a section offset attribute value to a DIE. */
4723 static inline void
4724 add_AT_lbl_offset (die, attr_kind, label)
4725 dw_die_ref die;
4726 enum dwarf_attribute attr_kind;
4727 const char *label;
4729 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4731 attr->dw_attr_next = NULL;
4732 attr->dw_attr = attr_kind;
4733 attr->dw_attr_val.val_class = dw_val_class_lbl_offset;
4734 attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
4735 add_dwarf_attr (die, attr);
4738 /* Add an offset attribute value to a DIE. */
4740 static inline void
4741 add_AT_offset (die, attr_kind, offset)
4742 dw_die_ref die;
4743 enum dwarf_attribute attr_kind;
4744 unsigned long offset;
4746 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4748 attr->dw_attr_next = NULL;
4749 attr->dw_attr = attr_kind;
4750 attr->dw_attr_val.val_class = dw_val_class_offset;
4751 attr->dw_attr_val.v.val_offset = offset;
4752 add_dwarf_attr (die, attr);
4755 /* Add an range_list attribute value to a DIE. */
4757 static void
4758 add_AT_range_list (die, attr_kind, offset)
4759 dw_die_ref die;
4760 enum dwarf_attribute attr_kind;
4761 unsigned long offset;
4763 dw_attr_ref attr = (dw_attr_ref) xmalloc (sizeof (dw_attr_node));
4765 attr->dw_attr_next = NULL;
4766 attr->dw_attr = attr_kind;
4767 attr->dw_attr_val.val_class = dw_val_class_range_list;
4768 attr->dw_attr_val.v.val_offset = offset;
4769 add_dwarf_attr (die, attr);
4772 static inline const char *
4773 AT_lbl (a)
4774 dw_attr_ref a;
4776 if (a && (AT_class (a) == dw_val_class_lbl_id
4777 || AT_class (a) == dw_val_class_lbl_offset))
4778 return a->dw_attr_val.v.val_lbl_id;
4780 abort ();
4783 /* Get the attribute of type attr_kind. */
4785 static inline dw_attr_ref
4786 get_AT (die, attr_kind)
4787 dw_die_ref die;
4788 enum dwarf_attribute attr_kind;
4790 dw_attr_ref a;
4791 dw_die_ref spec = NULL;
4793 if (die != NULL)
4795 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
4796 if (a->dw_attr == attr_kind)
4797 return a;
4798 else if (a->dw_attr == DW_AT_specification
4799 || a->dw_attr == DW_AT_abstract_origin)
4800 spec = AT_ref (a);
4802 if (spec)
4803 return get_AT (spec, attr_kind);
4806 return NULL;
4809 /* Return the "low pc" attribute value, typically associated with a subprogram
4810 DIE. Return null if the "low pc" attribute is either not present, or if it
4811 cannot be represented as an assembler label identifier. */
4813 static inline const char *
4814 get_AT_low_pc (die)
4815 dw_die_ref die;
4817 dw_attr_ref a = get_AT (die, DW_AT_low_pc);
4819 return a ? AT_lbl (a) : NULL;
4822 /* Return the "high pc" attribute value, typically associated with a subprogram
4823 DIE. Return null if the "high pc" attribute is either not present, or if it
4824 cannot be represented as an assembler label identifier. */
4826 static inline const char *
4827 get_AT_hi_pc (die)
4828 dw_die_ref die;
4830 dw_attr_ref a = get_AT (die, DW_AT_high_pc);
4832 return a ? AT_lbl (a) : NULL;
4835 /* Return the value of the string attribute designated by ATTR_KIND, or
4836 NULL if it is not present. */
4838 static inline const char *
4839 get_AT_string (die, attr_kind)
4840 dw_die_ref die;
4841 enum dwarf_attribute attr_kind;
4843 dw_attr_ref a = get_AT (die, attr_kind);
4845 return a ? AT_string (a) : NULL;
4848 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
4849 if it is not present. */
4851 static inline int
4852 get_AT_flag (die, attr_kind)
4853 dw_die_ref die;
4854 enum dwarf_attribute attr_kind;
4856 dw_attr_ref a = get_AT (die, attr_kind);
4858 return a ? AT_flag (a) : 0;
4861 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
4862 if it is not present. */
4864 static inline unsigned
4865 get_AT_unsigned (die, attr_kind)
4866 dw_die_ref die;
4867 enum dwarf_attribute attr_kind;
4869 dw_attr_ref a = get_AT (die, attr_kind);
4871 return a ? AT_unsigned (a) : 0;
4874 static inline dw_die_ref
4875 get_AT_ref (die, attr_kind)
4876 dw_die_ref die;
4877 enum dwarf_attribute attr_kind;
4879 dw_attr_ref a = get_AT (die, attr_kind);
4881 return a ? AT_ref (a) : NULL;
4884 static inline int
4885 is_c_family ()
4887 unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4889 return (lang == DW_LANG_C || lang == DW_LANG_C89
4890 || lang == DW_LANG_C_plus_plus);
4893 static inline int
4894 is_cxx ()
4896 return (get_AT_unsigned (comp_unit_die, DW_AT_language)
4897 == DW_LANG_C_plus_plus);
4900 static inline int
4901 is_fortran ()
4903 unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4905 return (lang == DW_LANG_Fortran77 || lang == DW_LANG_Fortran90);
4908 static inline int
4909 is_java ()
4911 unsigned lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4913 return (lang == DW_LANG_Java);
4916 /* Free up the memory used by A. */
4918 static inline void free_AT PARAMS ((dw_attr_ref));
4919 static inline void
4920 free_AT (a)
4921 dw_attr_ref a;
4923 switch (AT_class (a))
4925 case dw_val_class_str:
4926 if (a->dw_attr_val.v.val_str->refcount)
4927 a->dw_attr_val.v.val_str->refcount--;
4928 break;
4930 case dw_val_class_lbl_id:
4931 case dw_val_class_lbl_offset:
4932 free (a->dw_attr_val.v.val_lbl_id);
4933 break;
4935 case dw_val_class_float:
4936 free (a->dw_attr_val.v.val_float.array);
4937 break;
4939 default:
4940 break;
4943 free (a);
4946 /* Remove the specified attribute if present. */
4948 static void
4949 remove_AT (die, attr_kind)
4950 dw_die_ref die;
4951 enum dwarf_attribute attr_kind;
4953 dw_attr_ref *p;
4954 dw_attr_ref removed = NULL;
4956 if (die != NULL)
4958 for (p = &(die->die_attr); *p; p = &((*p)->dw_attr_next))
4959 if ((*p)->dw_attr == attr_kind)
4961 removed = *p;
4962 *p = (*p)->dw_attr_next;
4963 break;
4966 if (removed != 0)
4967 free_AT (removed);
4971 /* Free up the memory used by DIE. */
4973 static inline void
4974 free_die (die)
4975 dw_die_ref die;
4977 remove_children (die);
4978 free (die);
4981 /* Discard the children of this DIE. */
4983 static void
4984 remove_children (die)
4985 dw_die_ref die;
4987 dw_die_ref child_die = die->die_child;
4989 die->die_child = NULL;
4991 while (child_die != NULL)
4993 dw_die_ref tmp_die = child_die;
4994 dw_attr_ref a;
4996 child_die = child_die->die_sib;
4998 for (a = tmp_die->die_attr; a != NULL;)
5000 dw_attr_ref tmp_a = a;
5002 a = a->dw_attr_next;
5003 free_AT (tmp_a);
5006 free_die (tmp_die);
5010 /* Add a child DIE below its parent. We build the lists up in reverse
5011 addition order, and correct that in reverse_all_dies. */
5013 static inline void
5014 add_child_die (die, child_die)
5015 dw_die_ref die;
5016 dw_die_ref child_die;
5018 if (die != NULL && child_die != NULL)
5020 if (die == child_die)
5021 abort ();
5023 child_die->die_parent = die;
5024 child_die->die_sib = die->die_child;
5025 die->die_child = child_die;
5029 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5030 is the specification, to the front of PARENT's list of children. */
5032 static void
5033 splice_child_die (parent, child)
5034 dw_die_ref parent, child;
5036 dw_die_ref *p;
5038 /* We want the declaration DIE from inside the class, not the
5039 specification DIE at toplevel. */
5040 if (child->die_parent != parent)
5042 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5044 if (tmp)
5045 child = tmp;
5048 if (child->die_parent != parent
5049 && child->die_parent != get_AT_ref (parent, DW_AT_specification))
5050 abort ();
5052 for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
5053 if (*p == child)
5055 *p = child->die_sib;
5056 break;
5059 child->die_sib = parent->die_child;
5060 parent->die_child = child;
5063 /* Return a pointer to a newly created DIE node. */
5065 static inline dw_die_ref
5066 new_die (tag_value, parent_die, t)
5067 enum dwarf_tag tag_value;
5068 dw_die_ref parent_die;
5069 tree t;
5071 dw_die_ref die = (dw_die_ref) xcalloc (1, sizeof (die_node));
5073 die->die_tag = tag_value;
5075 if (parent_die != NULL)
5076 add_child_die (parent_die, die);
5077 else
5079 limbo_die_node *limbo_node;
5081 limbo_node = (limbo_die_node *) xmalloc (sizeof (limbo_die_node));
5082 limbo_node->die = die;
5083 limbo_node->created_for = t;
5084 limbo_node->next = limbo_die_list;
5085 limbo_die_list = limbo_node;
5088 return die;
5091 /* Return the DIE associated with the given type specifier. */
5093 static inline dw_die_ref
5094 lookup_type_die (type)
5095 tree type;
5097 if (TREE_CODE (type) == VECTOR_TYPE)
5098 type = TYPE_DEBUG_REPRESENTATION_TYPE (type);
5100 return (dw_die_ref) TYPE_SYMTAB_POINTER (type);
5103 /* Equate a DIE to a given type specifier. */
5105 static inline void
5106 equate_type_number_to_die (type, type_die)
5107 tree type;
5108 dw_die_ref type_die;
5110 TYPE_SYMTAB_POINTER (type) = (char *) type_die;
5113 /* Return the DIE associated with a given declaration. */
5115 static inline dw_die_ref
5116 lookup_decl_die (decl)
5117 tree decl;
5119 unsigned decl_id = DECL_UID (decl);
5121 return (decl_id < decl_die_table_in_use ? decl_die_table[decl_id] : NULL);
5124 /* Equate a DIE to a particular declaration. */
5126 static void
5127 equate_decl_number_to_die (decl, decl_die)
5128 tree decl;
5129 dw_die_ref decl_die;
5131 unsigned int decl_id = DECL_UID (decl);
5132 unsigned int num_allocated;
5134 if (decl_id >= decl_die_table_allocated)
5136 num_allocated
5137 = ((decl_id + 1 + DECL_DIE_TABLE_INCREMENT - 1)
5138 / DECL_DIE_TABLE_INCREMENT)
5139 * DECL_DIE_TABLE_INCREMENT;
5141 decl_die_table
5142 = (dw_die_ref *) xrealloc (decl_die_table,
5143 sizeof (dw_die_ref) * num_allocated);
5145 memset ((char *) &decl_die_table[decl_die_table_allocated], 0,
5146 (num_allocated - decl_die_table_allocated) * sizeof (dw_die_ref));
5147 decl_die_table_allocated = num_allocated;
5150 if (decl_id >= decl_die_table_in_use)
5151 decl_die_table_in_use = (decl_id + 1);
5153 decl_die_table[decl_id] = decl_die;
5156 /* Keep track of the number of spaces used to indent the
5157 output of the debugging routines that print the structure of
5158 the DIE internal representation. */
5159 static int print_indent;
5161 /* Indent the line the number of spaces given by print_indent. */
5163 static inline void
5164 print_spaces (outfile)
5165 FILE *outfile;
5167 fprintf (outfile, "%*s", print_indent, "");
5170 /* Print the information associated with a given DIE, and its children.
5171 This routine is a debugging aid only. */
5173 static void
5174 print_die (die, outfile)
5175 dw_die_ref die;
5176 FILE *outfile;
5178 dw_attr_ref a;
5179 dw_die_ref c;
5181 print_spaces (outfile);
5182 fprintf (outfile, "DIE %4lu: %s\n",
5183 die->die_offset, dwarf_tag_name (die->die_tag));
5184 print_spaces (outfile);
5185 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
5186 fprintf (outfile, " offset: %lu\n", die->die_offset);
5188 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5190 print_spaces (outfile);
5191 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
5193 switch (AT_class (a))
5195 case dw_val_class_addr:
5196 fprintf (outfile, "address");
5197 break;
5198 case dw_val_class_offset:
5199 fprintf (outfile, "offset");
5200 break;
5201 case dw_val_class_loc:
5202 fprintf (outfile, "location descriptor");
5203 break;
5204 case dw_val_class_loc_list:
5205 fprintf (outfile, "location list -> label:%s",
5206 AT_loc_list (a)->ll_symbol);
5207 break;
5208 case dw_val_class_range_list:
5209 fprintf (outfile, "range list");
5210 break;
5211 case dw_val_class_const:
5212 fprintf (outfile, "%ld", AT_int (a));
5213 break;
5214 case dw_val_class_unsigned_const:
5215 fprintf (outfile, "%lu", AT_unsigned (a));
5216 break;
5217 case dw_val_class_long_long:
5218 fprintf (outfile, "constant (%lu,%lu)",
5219 a->dw_attr_val.v.val_long_long.hi,
5220 a->dw_attr_val.v.val_long_long.low);
5221 break;
5222 case dw_val_class_float:
5223 fprintf (outfile, "floating-point constant");
5224 break;
5225 case dw_val_class_flag:
5226 fprintf (outfile, "%u", AT_flag (a));
5227 break;
5228 case dw_val_class_die_ref:
5229 if (AT_ref (a) != NULL)
5231 if (AT_ref (a)->die_symbol)
5232 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5233 else
5234 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5236 else
5237 fprintf (outfile, "die -> <null>");
5238 break;
5239 case dw_val_class_lbl_id:
5240 case dw_val_class_lbl_offset:
5241 fprintf (outfile, "label: %s", AT_lbl (a));
5242 break;
5243 case dw_val_class_str:
5244 if (AT_string (a) != NULL)
5245 fprintf (outfile, "\"%s\"", AT_string (a));
5246 else
5247 fprintf (outfile, "<null>");
5248 break;
5249 default:
5250 break;
5253 fprintf (outfile, "\n");
5256 if (die->die_child != NULL)
5258 print_indent += 4;
5259 for (c = die->die_child; c != NULL; c = c->die_sib)
5260 print_die (c, outfile);
5262 print_indent -= 4;
5264 if (print_indent == 0)
5265 fprintf (outfile, "\n");
5268 /* Print the contents of the source code line number correspondence table.
5269 This routine is a debugging aid only. */
5271 static void
5272 print_dwarf_line_table (outfile)
5273 FILE *outfile;
5275 unsigned i;
5276 dw_line_info_ref line_info;
5278 fprintf (outfile, "\n\nDWARF source line information\n");
5279 for (i = 1; i < line_info_table_in_use; i++)
5281 line_info = &line_info_table[i];
5282 fprintf (outfile, "%5d: ", i);
5283 fprintf (outfile, "%-20s", file_table.table[line_info->dw_file_num]);
5284 fprintf (outfile, "%6ld", line_info->dw_line_num);
5285 fprintf (outfile, "\n");
5288 fprintf (outfile, "\n\n");
5291 /* Print the information collected for a given DIE. */
5293 void
5294 debug_dwarf_die (die)
5295 dw_die_ref die;
5297 print_die (die, stderr);
5300 /* Print all DWARF information collected for the compilation unit.
5301 This routine is a debugging aid only. */
5303 void
5304 debug_dwarf ()
5306 print_indent = 0;
5307 print_die (comp_unit_die, stderr);
5308 if (! DWARF2_ASM_LINE_DEBUG_INFO)
5309 print_dwarf_line_table (stderr);
5312 /* We build up the lists of children and attributes by pushing new ones
5313 onto the beginning of the list. Reverse the lists for DIE so that
5314 they are in order of addition. */
5316 static void
5317 reverse_die_lists (die)
5318 dw_die_ref die;
5320 dw_die_ref c, cp, cn;
5321 dw_attr_ref a, ap, an;
5323 for (a = die->die_attr, ap = 0; a; a = an)
5325 an = a->dw_attr_next;
5326 a->dw_attr_next = ap;
5327 ap = a;
5330 die->die_attr = ap;
5332 for (c = die->die_child, cp = 0; c; c = cn)
5334 cn = c->die_sib;
5335 c->die_sib = cp;
5336 cp = c;
5339 die->die_child = cp;
5342 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5343 reverse all dies in add_sibling_attributes, which runs through all the dies,
5344 it would reverse all the dies. Now, however, since we don't call
5345 reverse_die_lists in add_sibling_attributes, we need a routine to
5346 recursively reverse all the dies. This is that routine. */
5348 static void
5349 reverse_all_dies (die)
5350 dw_die_ref die;
5352 dw_die_ref c;
5354 reverse_die_lists (die);
5356 for (c = die->die_child; c; c = c->die_sib)
5357 reverse_all_dies (c);
5360 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5361 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5362 DIE that marks the start of the DIEs for this include file. */
5364 static dw_die_ref
5365 push_new_compile_unit (old_unit, bincl_die)
5366 dw_die_ref old_unit, bincl_die;
5368 const char *filename = get_AT_string (bincl_die, DW_AT_name);
5369 dw_die_ref new_unit = gen_compile_unit_die (filename);
5371 new_unit->die_sib = old_unit;
5372 return new_unit;
5375 /* Close an include-file CU and reopen the enclosing one. */
5377 static dw_die_ref
5378 pop_compile_unit (old_unit)
5379 dw_die_ref old_unit;
5381 dw_die_ref new_unit = old_unit->die_sib;
5383 old_unit->die_sib = NULL;
5384 return new_unit;
5387 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5388 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5390 /* Calculate the checksum of a location expression. */
5392 static inline void
5393 loc_checksum (loc, ctx)
5394 dw_loc_descr_ref loc;
5395 struct md5_ctx *ctx;
5397 CHECKSUM (loc->dw_loc_opc);
5398 CHECKSUM (loc->dw_loc_oprnd1);
5399 CHECKSUM (loc->dw_loc_oprnd2);
5402 /* Calculate the checksum of an attribute. */
5404 static void
5405 attr_checksum (at, ctx)
5406 dw_attr_ref at;
5407 struct md5_ctx *ctx;
5409 dw_loc_descr_ref loc;
5410 rtx r;
5412 CHECKSUM (at->dw_attr);
5414 /* We don't care about differences in file numbering. */
5415 if (at->dw_attr == DW_AT_decl_file
5416 /* Or that this was compiled with a different compiler snapshot; if
5417 the output is the same, that's what matters. */
5418 || at->dw_attr == DW_AT_producer)
5419 return;
5421 switch (AT_class (at))
5423 case dw_val_class_const:
5424 CHECKSUM (at->dw_attr_val.v.val_int);
5425 break;
5426 case dw_val_class_unsigned_const:
5427 CHECKSUM (at->dw_attr_val.v.val_unsigned);
5428 break;
5429 case dw_val_class_long_long:
5430 CHECKSUM (at->dw_attr_val.v.val_long_long);
5431 break;
5432 case dw_val_class_float:
5433 CHECKSUM (at->dw_attr_val.v.val_float);
5434 break;
5435 case dw_val_class_flag:
5436 CHECKSUM (at->dw_attr_val.v.val_flag);
5437 break;
5438 case dw_val_class_str:
5439 CHECKSUM_STRING (AT_string (at));
5440 break;
5442 case dw_val_class_addr:
5443 r = AT_addr (at);
5444 switch (GET_CODE (r))
5446 case SYMBOL_REF:
5447 CHECKSUM_STRING (XSTR (r, 0));
5448 break;
5450 default:
5451 abort ();
5453 break;
5455 case dw_val_class_offset:
5456 CHECKSUM (at->dw_attr_val.v.val_offset);
5457 break;
5459 case dw_val_class_loc:
5460 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5461 loc_checksum (loc, ctx);
5462 break;
5464 case dw_val_class_die_ref:
5465 if (AT_ref (at)->die_offset)
5466 CHECKSUM (AT_ref (at)->die_offset);
5467 /* FIXME else use target die name or something. */
5469 case dw_val_class_fde_ref:
5470 case dw_val_class_lbl_id:
5471 case dw_val_class_lbl_offset:
5472 break;
5474 default:
5475 break;
5479 /* Calculate the checksum of a DIE. */
5481 static void
5482 die_checksum (die, ctx)
5483 dw_die_ref die;
5484 struct md5_ctx *ctx;
5486 dw_die_ref c;
5487 dw_attr_ref a;
5489 CHECKSUM (die->die_tag);
5491 for (a = die->die_attr; a; a = a->dw_attr_next)
5492 attr_checksum (a, ctx);
5494 for (c = die->die_child; c; c = c->die_sib)
5495 die_checksum (c, ctx);
5498 #undef CHECKSUM
5499 #undef CHECKSUM_STRING
5501 /* The prefix to attach to symbols on DIEs in the current comdat debug
5502 info section. */
5503 static char *comdat_symbol_id;
5505 /* The index of the current symbol within the current comdat CU. */
5506 static unsigned int comdat_symbol_number;
5508 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
5509 children, and set comdat_symbol_id accordingly. */
5511 static void
5512 compute_section_prefix (unit_die)
5513 dw_die_ref unit_die;
5515 const char *base = lbasename (get_AT_string (unit_die, DW_AT_name));
5516 char *name = (char *) alloca (strlen (base) + 64);
5517 char *p;
5518 int i;
5519 unsigned char checksum[16];
5520 struct md5_ctx ctx;
5522 /* Compute the checksum of the DIE, then append part of it as hex digits to
5523 the name filename of the unit. */
5525 md5_init_ctx (&ctx);
5526 die_checksum (unit_die, &ctx);
5527 md5_finish_ctx (&ctx, checksum);
5529 sprintf (name, "%s.", base);
5530 clean_symbol_name (name);
5532 p = name + strlen (name);
5533 for (i = 0; i < 4; i++)
5535 sprintf (p, "%.2x", checksum[i]);
5536 p += 2;
5539 comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
5540 comdat_symbol_number = 0;
5543 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
5545 static int
5546 is_type_die (die)
5547 dw_die_ref die;
5549 switch (die->die_tag)
5551 case DW_TAG_array_type:
5552 case DW_TAG_class_type:
5553 case DW_TAG_enumeration_type:
5554 case DW_TAG_pointer_type:
5555 case DW_TAG_reference_type:
5556 case DW_TAG_string_type:
5557 case DW_TAG_structure_type:
5558 case DW_TAG_subroutine_type:
5559 case DW_TAG_union_type:
5560 case DW_TAG_ptr_to_member_type:
5561 case DW_TAG_set_type:
5562 case DW_TAG_subrange_type:
5563 case DW_TAG_base_type:
5564 case DW_TAG_const_type:
5565 case DW_TAG_file_type:
5566 case DW_TAG_packed_type:
5567 case DW_TAG_volatile_type:
5568 return 1;
5569 default:
5570 return 0;
5574 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
5575 Basically, we want to choose the bits that are likely to be shared between
5576 compilations (types) and leave out the bits that are specific to individual
5577 compilations (functions). */
5579 static int
5580 is_comdat_die (c)
5581 dw_die_ref c;
5583 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
5584 we do for stabs. The advantage is a greater likelihood of sharing between
5585 objects that don't include headers in the same order (and therefore would
5586 put the base types in a different comdat). jason 8/28/00 */
5588 if (c->die_tag == DW_TAG_base_type)
5589 return 0;
5591 if (c->die_tag == DW_TAG_pointer_type
5592 || c->die_tag == DW_TAG_reference_type
5593 || c->die_tag == DW_TAG_const_type
5594 || c->die_tag == DW_TAG_volatile_type)
5596 dw_die_ref t = get_AT_ref (c, DW_AT_type);
5598 return t ? is_comdat_die (t) : 0;
5601 return is_type_die (c);
5604 /* Returns 1 iff C is the sort of DIE that might be referred to from another
5605 compilation unit. */
5607 static int
5608 is_symbol_die (c)
5609 dw_die_ref c;
5611 return (is_type_die (c)
5612 || (get_AT (c, DW_AT_declaration)
5613 && !get_AT (c, DW_AT_specification)));
5616 static char *
5617 gen_internal_sym (prefix)
5618 const char *prefix;
5620 char buf[256];
5621 static int label_num;
5623 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
5624 return xstrdup (buf);
5627 /* Assign symbols to all worthy DIEs under DIE. */
5629 static void
5630 assign_symbol_names (die)
5631 dw_die_ref die;
5633 dw_die_ref c;
5635 if (is_symbol_die (die))
5637 if (comdat_symbol_id)
5639 char *p = alloca (strlen (comdat_symbol_id) + 64);
5641 sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
5642 comdat_symbol_id, comdat_symbol_number++);
5643 die->die_symbol = xstrdup (p);
5645 else
5646 die->die_symbol = gen_internal_sym ("LDIE");
5649 for (c = die->die_child; c != NULL; c = c->die_sib)
5650 assign_symbol_names (c);
5653 /* Traverse the DIE (which is always comp_unit_die), and set up
5654 additional compilation units for each of the include files we see
5655 bracketed by BINCL/EINCL. */
5657 static void
5658 break_out_includes (die)
5659 dw_die_ref die;
5661 dw_die_ref *ptr;
5662 dw_die_ref unit = NULL;
5663 limbo_die_node *node;
5665 for (ptr = &(die->die_child); *ptr; )
5667 dw_die_ref c = *ptr;
5669 if (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
5670 || (unit && is_comdat_die (c)))
5672 /* This DIE is for a secondary CU; remove it from the main one. */
5673 *ptr = c->die_sib;
5675 if (c->die_tag == DW_TAG_GNU_BINCL)
5677 unit = push_new_compile_unit (unit, c);
5678 free_die (c);
5680 else if (c->die_tag == DW_TAG_GNU_EINCL)
5682 unit = pop_compile_unit (unit);
5683 free_die (c);
5685 else
5686 add_child_die (unit, c);
5688 else
5690 /* Leave this DIE in the main CU. */
5691 ptr = &(c->die_sib);
5692 continue;
5696 #if 0
5697 /* We can only use this in debugging, since the frontend doesn't check
5698 to make sure that we leave every include file we enter. */
5699 if (unit != NULL)
5700 abort ();
5701 #endif
5703 assign_symbol_names (die);
5704 for (node = limbo_die_list; node; node = node->next)
5706 compute_section_prefix (node->die);
5707 assign_symbol_names (node->die);
5711 /* Traverse the DIE and add a sibling attribute if it may have the
5712 effect of speeding up access to siblings. To save some space,
5713 avoid generating sibling attributes for DIE's without children. */
5715 static void
5716 add_sibling_attributes (die)
5717 dw_die_ref die;
5719 dw_die_ref c;
5721 if (die->die_tag != DW_TAG_compile_unit
5722 && die->die_sib && die->die_child != NULL)
5723 /* Add the sibling link to the front of the attribute list. */
5724 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
5726 for (c = die->die_child; c != NULL; c = c->die_sib)
5727 add_sibling_attributes (c);
5730 /* Output all location lists for the DIE and its children. */
5732 static void
5733 output_location_lists (die)
5734 dw_die_ref die;
5736 dw_die_ref c;
5737 dw_attr_ref d_attr;
5739 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
5740 if (AT_class (d_attr) == dw_val_class_loc_list)
5741 output_loc_list (AT_loc_list (d_attr));
5743 for (c = die->die_child; c != NULL; c = c->die_sib)
5744 output_location_lists (c);
5747 /* The format of each DIE (and its attribute value pairs) is encoded in an
5748 abbreviation table. This routine builds the abbreviation table and assigns
5749 a unique abbreviation id for each abbreviation entry. The children of each
5750 die are visited recursively. */
5752 static void
5753 build_abbrev_table (die)
5754 dw_die_ref die;
5756 unsigned long abbrev_id;
5757 unsigned int n_alloc;
5758 dw_die_ref c;
5759 dw_attr_ref d_attr, a_attr;
5761 /* Scan the DIE references, and mark as external any that refer to
5762 DIEs from other CUs (i.e. those which are not marked). */
5763 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
5764 if (AT_class (d_attr) == dw_val_class_die_ref
5765 && AT_ref (d_attr)->die_mark == 0)
5767 if (AT_ref (d_attr)->die_symbol == 0)
5768 abort ();
5770 set_AT_ref_external (d_attr, 1);
5773 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
5775 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
5777 if (abbrev->die_tag == die->die_tag)
5779 if ((abbrev->die_child != NULL) == (die->die_child != NULL))
5781 a_attr = abbrev->die_attr;
5782 d_attr = die->die_attr;
5784 while (a_attr != NULL && d_attr != NULL)
5786 if ((a_attr->dw_attr != d_attr->dw_attr)
5787 || (value_format (a_attr) != value_format (d_attr)))
5788 break;
5790 a_attr = a_attr->dw_attr_next;
5791 d_attr = d_attr->dw_attr_next;
5794 if (a_attr == NULL && d_attr == NULL)
5795 break;
5800 if (abbrev_id >= abbrev_die_table_in_use)
5802 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
5804 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
5805 abbrev_die_table
5806 = (dw_die_ref *) xrealloc (abbrev_die_table,
5807 sizeof (dw_die_ref) * n_alloc);
5809 memset ((char *) &abbrev_die_table[abbrev_die_table_allocated], 0,
5810 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
5811 abbrev_die_table_allocated = n_alloc;
5814 ++abbrev_die_table_in_use;
5815 abbrev_die_table[abbrev_id] = die;
5818 die->die_abbrev = abbrev_id;
5819 for (c = die->die_child; c != NULL; c = c->die_sib)
5820 build_abbrev_table (c);
5823 /* Return the power-of-two number of bytes necessary to represent VALUE. */
5825 static int
5826 constant_size (value)
5827 long unsigned value;
5829 int log;
5831 if (value == 0)
5832 log = 0;
5833 else
5834 log = floor_log2 (value);
5836 log = log / 8;
5837 log = 1 << (floor_log2 (log) + 1);
5839 return log;
5842 /* Return the size of a DIE as it is represented in the
5843 .debug_info section. */
5845 static unsigned long
5846 size_of_die (die)
5847 dw_die_ref die;
5849 unsigned long size = 0;
5850 dw_attr_ref a;
5852 size += size_of_uleb128 (die->die_abbrev);
5853 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5855 switch (AT_class (a))
5857 case dw_val_class_addr:
5858 size += DWARF2_ADDR_SIZE;
5859 break;
5860 case dw_val_class_offset:
5861 size += DWARF_OFFSET_SIZE;
5862 break;
5863 case dw_val_class_loc:
5865 unsigned long lsize = size_of_locs (AT_loc (a));
5867 /* Block length. */
5868 size += constant_size (lsize);
5869 size += lsize;
5871 break;
5872 case dw_val_class_loc_list:
5873 size += DWARF_OFFSET_SIZE;
5874 break;
5875 case dw_val_class_range_list:
5876 size += DWARF_OFFSET_SIZE;
5877 break;
5878 case dw_val_class_const:
5879 size += size_of_sleb128 (AT_int (a));
5880 break;
5881 case dw_val_class_unsigned_const:
5882 size += constant_size (AT_unsigned (a));
5883 break;
5884 case dw_val_class_long_long:
5885 size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
5886 break;
5887 case dw_val_class_float:
5888 size += 1 + a->dw_attr_val.v.val_float.length * 4; /* block */
5889 break;
5890 case dw_val_class_flag:
5891 size += 1;
5892 break;
5893 case dw_val_class_die_ref:
5894 size += DWARF_OFFSET_SIZE;
5895 break;
5896 case dw_val_class_fde_ref:
5897 size += DWARF_OFFSET_SIZE;
5898 break;
5899 case dw_val_class_lbl_id:
5900 size += DWARF2_ADDR_SIZE;
5901 break;
5902 case dw_val_class_lbl_offset:
5903 size += DWARF_OFFSET_SIZE;
5904 break;
5905 case dw_val_class_str:
5906 if (AT_string_form (a) == DW_FORM_strp)
5907 size += DWARF_OFFSET_SIZE;
5908 else
5909 size += HT_LEN (&a->dw_attr_val.v.val_str->id) + 1;
5910 break;
5911 default:
5912 abort ();
5916 return size;
5919 /* Size the debugging information associated with a given DIE. Visits the
5920 DIE's children recursively. Updates the global variable next_die_offset, on
5921 each time through. Uses the current value of next_die_offset to update the
5922 die_offset field in each DIE. */
5924 static void
5925 calc_die_sizes (die)
5926 dw_die_ref die;
5928 dw_die_ref c;
5930 die->die_offset = next_die_offset;
5931 next_die_offset += size_of_die (die);
5933 for (c = die->die_child; c != NULL; c = c->die_sib)
5934 calc_die_sizes (c);
5936 if (die->die_child != NULL)
5937 /* Count the null byte used to terminate sibling lists. */
5938 next_die_offset += 1;
5941 /* Set the marks for a die and its children. We do this so
5942 that we know whether or not a reference needs to use FORM_ref_addr; only
5943 DIEs in the same CU will be marked. We used to clear out the offset
5944 and use that as the flag, but ran into ordering problems. */
5946 static void
5947 mark_dies (die)
5948 dw_die_ref die;
5950 dw_die_ref c;
5952 die->die_mark = 1;
5953 for (c = die->die_child; c; c = c->die_sib)
5954 mark_dies (c);
5957 /* Clear the marks for a die and its children. */
5959 static void
5960 unmark_dies (die)
5961 dw_die_ref die;
5963 dw_die_ref c;
5965 die->die_mark = 0;
5966 for (c = die->die_child; c; c = c->die_sib)
5967 unmark_dies (c);
5970 /* Return the size of the .debug_pubnames table generated for the
5971 compilation unit. */
5973 static unsigned long
5974 size_of_pubnames ()
5976 unsigned long size;
5977 unsigned i;
5979 size = DWARF_PUBNAMES_HEADER_SIZE;
5980 for (i = 0; i < pubname_table_in_use; i++)
5982 pubname_ref p = &pubname_table[i];
5983 size += DWARF_OFFSET_SIZE + strlen (p->name) + 1;
5986 size += DWARF_OFFSET_SIZE;
5987 return size;
5990 /* Return the size of the information in the .debug_aranges section. */
5992 static unsigned long
5993 size_of_aranges ()
5995 unsigned long size;
5997 size = DWARF_ARANGES_HEADER_SIZE;
5999 /* Count the address/length pair for this compilation unit. */
6000 size += 2 * DWARF2_ADDR_SIZE;
6001 size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
6003 /* Count the two zero words used to terminated the address range table. */
6004 size += 2 * DWARF2_ADDR_SIZE;
6005 return size;
6008 /* Select the encoding of an attribute value. */
6010 static enum dwarf_form
6011 value_format (a)
6012 dw_attr_ref a;
6014 switch (a->dw_attr_val.val_class)
6016 case dw_val_class_addr:
6017 return DW_FORM_addr;
6018 case dw_val_class_range_list:
6019 case dw_val_class_offset:
6020 if (DWARF_OFFSET_SIZE == 4)
6021 return DW_FORM_data4;
6022 if (DWARF_OFFSET_SIZE == 8)
6023 return DW_FORM_data8;
6024 abort ();
6025 case dw_val_class_loc_list:
6026 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6027 .debug_loc section */
6028 return DW_FORM_data4;
6029 case dw_val_class_loc:
6030 switch (constant_size (size_of_locs (AT_loc (a))))
6032 case 1:
6033 return DW_FORM_block1;
6034 case 2:
6035 return DW_FORM_block2;
6036 default:
6037 abort ();
6039 case dw_val_class_const:
6040 return DW_FORM_sdata;
6041 case dw_val_class_unsigned_const:
6042 switch (constant_size (AT_unsigned (a)))
6044 case 1:
6045 return DW_FORM_data1;
6046 case 2:
6047 return DW_FORM_data2;
6048 case 4:
6049 return DW_FORM_data4;
6050 case 8:
6051 return DW_FORM_data8;
6052 default:
6053 abort ();
6055 case dw_val_class_long_long:
6056 return DW_FORM_block1;
6057 case dw_val_class_float:
6058 return DW_FORM_block1;
6059 case dw_val_class_flag:
6060 return DW_FORM_flag;
6061 case dw_val_class_die_ref:
6062 if (AT_ref_external (a))
6063 return DW_FORM_ref_addr;
6064 else
6065 return DW_FORM_ref;
6066 case dw_val_class_fde_ref:
6067 return DW_FORM_data;
6068 case dw_val_class_lbl_id:
6069 return DW_FORM_addr;
6070 case dw_val_class_lbl_offset:
6071 return DW_FORM_data;
6072 case dw_val_class_str:
6073 return AT_string_form (a);
6075 default:
6076 abort ();
6080 /* Output the encoding of an attribute value. */
6082 static void
6083 output_value_format (a)
6084 dw_attr_ref a;
6086 enum dwarf_form form = value_format (a);
6088 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
6091 /* Output the .debug_abbrev section which defines the DIE abbreviation
6092 table. */
6094 static void
6095 output_abbrev_section ()
6097 unsigned long abbrev_id;
6099 dw_attr_ref a_attr;
6101 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6103 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6105 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
6106 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
6107 dwarf_tag_name (abbrev->die_tag));
6109 if (abbrev->die_child != NULL)
6110 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
6111 else
6112 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
6114 for (a_attr = abbrev->die_attr; a_attr != NULL;
6115 a_attr = a_attr->dw_attr_next)
6117 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
6118 dwarf_attr_name (a_attr->dw_attr));
6119 output_value_format (a_attr);
6122 dw2_asm_output_data (1, 0, NULL);
6123 dw2_asm_output_data (1, 0, NULL);
6126 /* Terminate the table. */
6127 dw2_asm_output_data (1, 0, NULL);
6130 /* Output a symbol we can use to refer to this DIE from another CU. */
6132 static inline void
6133 output_die_symbol (die)
6134 dw_die_ref die;
6136 char *sym = die->die_symbol;
6138 if (sym == 0)
6139 return;
6141 if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
6142 /* We make these global, not weak; if the target doesn't support
6143 .linkonce, it doesn't support combining the sections, so debugging
6144 will break. */
6145 ASM_GLOBALIZE_LABEL (asm_out_file, sym);
6147 ASM_OUTPUT_LABEL (asm_out_file, sym);
6150 /* Return a new location list, given the begin and end range, and the
6151 expression. gensym tells us whether to generate a new internal symbol for
6152 this location list node, which is done for the head of the list only. */
6154 static inline dw_loc_list_ref
6155 new_loc_list (expr, begin, end, section, gensym)
6156 dw_loc_descr_ref expr;
6157 const char *begin;
6158 const char *end;
6159 const char *section;
6160 unsigned gensym;
6162 dw_loc_list_ref retlist
6163 = (dw_loc_list_ref) xcalloc (1, sizeof (dw_loc_list_node));
6165 retlist->begin = begin;
6166 retlist->end = end;
6167 retlist->expr = expr;
6168 retlist->section = section;
6169 if (gensym)
6170 retlist->ll_symbol = gen_internal_sym ("LLST");
6172 return retlist;
6175 /* Add a location description expression to a location list */
6177 static inline void
6178 add_loc_descr_to_loc_list (list_head, descr, begin, end, section)
6179 dw_loc_list_ref *list_head;
6180 dw_loc_descr_ref descr;
6181 const char *begin;
6182 const char *end;
6183 const char *section;
6185 dw_loc_list_ref *d;
6187 /* Find the end of the chain. */
6188 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6191 /* Add a new location list node to the list */
6192 *d = new_loc_list (descr, begin, end, section, 0);
6195 /* Output the location list given to us */
6197 static void
6198 output_loc_list (list_head)
6199 dw_loc_list_ref list_head;
6201 dw_loc_list_ref curr = list_head;
6203 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6205 /* ??? This shouldn't be needed now that we've forced the
6206 compilation unit base address to zero when there is code
6207 in more than one section. */
6208 if (strcmp (curr->section, ".text") == 0)
6210 /* dw2_asm_output_data will mask off any extra bits in the ~0. */
6211 dw2_asm_output_data (DWARF2_ADDR_SIZE, ~(unsigned HOST_WIDE_INT) 0,
6212 "Location list base address specifier fake entry");
6213 dw2_asm_output_offset (DWARF2_ADDR_SIZE, curr->section,
6214 "Location list base address specifier base");
6217 for (curr = list_head; curr != NULL; curr=curr->dw_loc_next)
6219 unsigned long size;
6221 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6222 "Location list begin address (%s)",
6223 list_head->ll_symbol);
6224 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6225 "Location list end address (%s)",
6226 list_head->ll_symbol);
6227 size = size_of_locs (curr->expr);
6229 /* Output the block length for this list of location operations. */
6230 if (size > 0xffff)
6231 abort ();
6232 dw2_asm_output_data (2, size, "%s", "Location expression size");
6234 output_loc_sequence (curr->expr);
6237 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0,
6238 "Location list terminator begin (%s)",
6239 list_head->ll_symbol);
6240 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0,
6241 "Location list terminator end (%s)",
6242 list_head->ll_symbol);
6245 /* Output the DIE and its attributes. Called recursively to generate
6246 the definitions of each child DIE. */
6248 static void
6249 output_die (die)
6250 dw_die_ref die;
6252 dw_attr_ref a;
6253 dw_die_ref c;
6254 unsigned long size;
6256 /* If someone in another CU might refer to us, set up a symbol for
6257 them to point to. */
6258 if (die->die_symbol)
6259 output_die_symbol (die);
6261 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
6262 die->die_offset, dwarf_tag_name (die->die_tag));
6264 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6266 const char *name = dwarf_attr_name (a->dw_attr);
6268 switch (AT_class (a))
6270 case dw_val_class_addr:
6271 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
6272 break;
6274 case dw_val_class_offset:
6275 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
6276 "%s", name);
6277 break;
6279 case dw_val_class_range_list:
6281 char *p = strchr (ranges_section_label, '\0');
6283 sprintf (p, "+0x%lx", a->dw_attr_val.v.val_offset);
6284 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
6285 "%s", name);
6286 *p = '\0';
6288 break;
6290 case dw_val_class_loc:
6291 size = size_of_locs (AT_loc (a));
6293 /* Output the block length for this list of location operations. */
6294 dw2_asm_output_data (constant_size (size), size, "%s", name);
6296 output_loc_sequence (AT_loc (a));
6297 break;
6299 case dw_val_class_const:
6300 /* ??? It would be slightly more efficient to use a scheme like is
6301 used for unsigned constants below, but gdb 4.x does not sign
6302 extend. Gdb 5.x does sign extend. */
6303 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
6304 break;
6306 case dw_val_class_unsigned_const:
6307 dw2_asm_output_data (constant_size (AT_unsigned (a)),
6308 AT_unsigned (a), "%s", name);
6309 break;
6311 case dw_val_class_long_long:
6313 unsigned HOST_WIDE_INT first, second;
6315 dw2_asm_output_data (1,
6316 2 * HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6317 "%s", name);
6319 if (WORDS_BIG_ENDIAN)
6321 first = a->dw_attr_val.v.val_long_long.hi;
6322 second = a->dw_attr_val.v.val_long_long.low;
6324 else
6326 first = a->dw_attr_val.v.val_long_long.low;
6327 second = a->dw_attr_val.v.val_long_long.hi;
6330 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6331 first, "long long constant");
6332 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6333 second, NULL);
6335 break;
6337 case dw_val_class_float:
6339 unsigned int i;
6341 dw2_asm_output_data (1, a->dw_attr_val.v.val_float.length * 4,
6342 "%s", name);
6344 for (i = 0; i < a->dw_attr_val.v.val_float.length; i++)
6345 dw2_asm_output_data (4, a->dw_attr_val.v.val_float.array[i],
6346 "fp constant word %u", i);
6347 break;
6350 case dw_val_class_flag:
6351 dw2_asm_output_data (1, AT_flag (a), "%s", name);
6352 break;
6354 case dw_val_class_loc_list:
6356 char *sym = AT_loc_list (a)->ll_symbol;
6358 if (sym == 0)
6359 abort ();
6360 dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym,
6361 loc_section_label, "%s", name);
6363 break;
6365 case dw_val_class_die_ref:
6366 if (AT_ref_external (a))
6368 char *sym = AT_ref (a)->die_symbol;
6370 if (sym == 0)
6371 abort ();
6372 dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, "%s", name);
6374 else if (AT_ref (a)->die_offset == 0)
6375 abort ();
6376 else
6377 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
6378 "%s", name);
6379 break;
6381 case dw_val_class_fde_ref:
6383 char l1[20];
6385 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
6386 a->dw_attr_val.v.val_fde_index * 2);
6387 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, "%s", name);
6389 break;
6391 case dw_val_class_lbl_id:
6392 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
6393 break;
6395 case dw_val_class_lbl_offset:
6396 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a), "%s", name);
6397 break;
6399 case dw_val_class_str:
6400 if (AT_string_form (a) == DW_FORM_strp)
6401 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
6402 a->dw_attr_val.v.val_str->label,
6403 "%s: \"%s\"", name, AT_string (a));
6404 else
6405 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
6406 break;
6408 default:
6409 abort ();
6413 for (c = die->die_child; c != NULL; c = c->die_sib)
6414 output_die (c);
6416 /* Add null byte to terminate sibling list. */
6417 if (die->die_child != NULL)
6418 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
6419 die->die_offset);
6422 /* Output the compilation unit that appears at the beginning of the
6423 .debug_info section, and precedes the DIE descriptions. */
6425 static void
6426 output_compilation_unit_header ()
6428 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset - DWARF_OFFSET_SIZE,
6429 "Length of Compilation Unit Info");
6430 dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
6431 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
6432 "Offset Into Abbrev. Section");
6433 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
6436 /* Output the compilation unit DIE and its children. */
6438 static void
6439 output_comp_unit (die)
6440 dw_die_ref die;
6442 const char *secname;
6444 /* Even if there are no children of this DIE, we must output the information
6445 about the compilation unit. Otherwise, on an empty translation unit, we
6446 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
6447 will then complain when examining the file. First mark all the DIEs in
6448 this CU so we know which get local refs. */
6449 mark_dies (die);
6451 build_abbrev_table (die);
6453 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
6454 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
6455 calc_die_sizes (die);
6457 if (die->die_symbol)
6459 char *tmp = (char *) alloca (strlen (die->die_symbol) + 24);
6461 sprintf (tmp, ".gnu.linkonce.wi.%s", die->die_symbol);
6462 secname = tmp;
6463 die->die_symbol = NULL;
6465 else
6466 secname = (const char *) DEBUG_INFO_SECTION;
6468 /* Output debugging information. */
6469 named_section_flags (secname, SECTION_DEBUG);
6470 output_compilation_unit_header ();
6471 output_die (die);
6473 /* Leave the marks on the main CU, so we can check them in
6474 output_pubnames. */
6475 if (die->die_symbol)
6476 unmark_dies (die);
6479 /* The DWARF2 pubname for a nested thingy looks like "A::f". The output
6480 of decl_printable_name for C++ looks like "A::f(int)". Let's drop the
6481 argument list, and maybe the scope. */
6483 static const char *
6484 dwarf2_name (decl, scope)
6485 tree decl;
6486 int scope;
6488 return (*decl_printable_name) (decl, scope ? 1 : 0);
6491 /* Add a new entry to .debug_pubnames if appropriate. */
6493 static void
6494 add_pubname (decl, die)
6495 tree decl;
6496 dw_die_ref die;
6498 pubname_ref p;
6500 if (! TREE_PUBLIC (decl))
6501 return;
6503 if (pubname_table_in_use == pubname_table_allocated)
6505 pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
6506 pubname_table
6507 = (pubname_ref) xrealloc (pubname_table,
6508 (pubname_table_allocated
6509 * sizeof (pubname_entry)));
6512 p = &pubname_table[pubname_table_in_use++];
6513 p->die = die;
6514 p->name = xstrdup (dwarf2_name (decl, 1));
6517 /* Output the public names table used to speed up access to externally
6518 visible names. For now, only generate entries for externally
6519 visible procedures. */
6521 static void
6522 output_pubnames ()
6524 unsigned i;
6525 unsigned long pubnames_length = size_of_pubnames ();
6527 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
6528 "Length of Public Names Info");
6529 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6530 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
6531 "Offset of Compilation Unit Info");
6532 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
6533 "Compilation Unit Length");
6535 for (i = 0; i < pubname_table_in_use; i++)
6537 pubname_ref pub = &pubname_table[i];
6539 /* We shouldn't see pubnames for DIEs outside of the main CU. */
6540 if (pub->die->die_mark == 0)
6541 abort ();
6543 dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
6544 "DIE offset");
6546 dw2_asm_output_nstring (pub->name, -1, "external name");
6549 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
6552 /* Add a new entry to .debug_aranges if appropriate. */
6554 static void
6555 add_arange (decl, die)
6556 tree decl;
6557 dw_die_ref die;
6559 if (! DECL_SECTION_NAME (decl))
6560 return;
6562 if (arange_table_in_use == arange_table_allocated)
6564 arange_table_allocated += ARANGE_TABLE_INCREMENT;
6565 arange_table = (dw_die_ref *)
6566 xrealloc (arange_table, arange_table_allocated * sizeof (dw_die_ref));
6569 arange_table[arange_table_in_use++] = die;
6572 /* Output the information that goes into the .debug_aranges table.
6573 Namely, define the beginning and ending address range of the
6574 text section generated for this compilation unit. */
6576 static void
6577 output_aranges ()
6579 unsigned i;
6580 unsigned long aranges_length = size_of_aranges ();
6582 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
6583 "Length of Address Ranges Info");
6584 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6585 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
6586 "Offset of Compilation Unit Info");
6587 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
6588 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
6590 /* We need to align to twice the pointer size here. */
6591 if (DWARF_ARANGES_PAD_SIZE)
6593 /* Pad using a 2 byte words so that padding is correct for any
6594 pointer size. */
6595 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
6596 2 * DWARF2_ADDR_SIZE);
6597 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
6598 dw2_asm_output_data (2, 0, NULL);
6601 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
6602 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
6603 text_section_label, "Length");
6605 for (i = 0; i < arange_table_in_use; i++)
6607 dw_die_ref die = arange_table[i];
6609 /* We shouldn't see aranges for DIEs outside of the main CU. */
6610 if (die->die_mark == 0)
6611 abort ();
6613 if (die->die_tag == DW_TAG_subprogram)
6615 dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
6616 "Address");
6617 dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
6618 get_AT_low_pc (die), "Length");
6620 else
6622 /* A static variable; extract the symbol from DW_AT_location.
6623 Note that this code isn't currently hit, as we only emit
6624 aranges for functions (jason 9/23/99). */
6625 dw_attr_ref a = get_AT (die, DW_AT_location);
6626 dw_loc_descr_ref loc;
6628 if (! a || AT_class (a) != dw_val_class_loc)
6629 abort ();
6631 loc = AT_loc (a);
6632 if (loc->dw_loc_opc != DW_OP_addr)
6633 abort ();
6635 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
6636 loc->dw_loc_oprnd1.v.val_addr, "Address");
6637 dw2_asm_output_data (DWARF2_ADDR_SIZE,
6638 get_AT_unsigned (die, DW_AT_byte_size),
6639 "Length");
6643 /* Output the terminator words. */
6644 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6645 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6648 /* Add a new entry to .debug_ranges. Return the offset at which it
6649 was placed. */
6651 static unsigned int
6652 add_ranges (block)
6653 tree block;
6655 unsigned int in_use = ranges_table_in_use;
6657 if (in_use == ranges_table_allocated)
6659 ranges_table_allocated += RANGES_TABLE_INCREMENT;
6660 ranges_table = (dw_ranges_ref)
6661 xrealloc (ranges_table, (ranges_table_allocated
6662 * sizeof (struct dw_ranges_struct)));
6665 ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
6666 ranges_table_in_use = in_use + 1;
6668 return in_use * 2 * DWARF2_ADDR_SIZE;
6671 static void
6672 output_ranges ()
6674 unsigned i;
6675 static const char *const start_fmt = "Offset 0x%x";
6676 const char *fmt = start_fmt;
6678 for (i = 0; i < ranges_table_in_use; i++)
6680 int block_num = ranges_table[i].block_num;
6682 if (block_num)
6684 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
6685 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
6687 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
6688 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
6690 /* If all code is in the text section, then the compilation
6691 unit base address defaults to DW_AT_low_pc, which is the
6692 base of the text section. */
6693 if (separate_line_info_table_in_use == 0)
6695 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
6696 text_section_label,
6697 fmt, i * 2 * DWARF2_ADDR_SIZE);
6698 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
6699 text_section_label, NULL);
6702 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
6703 compilation unit base address to zero, which allows us to
6704 use absolute addresses, and not worry about whether the
6705 target supports cross-section arithmetic. */
6706 else
6708 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
6709 fmt, i * 2 * DWARF2_ADDR_SIZE);
6710 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
6713 fmt = NULL;
6715 else
6717 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6718 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6719 fmt = start_fmt;
6724 /* Data structure containing information about input files. */
6725 struct file_info
6727 char *path; /* Complete file name. */
6728 char *fname; /* File name part. */
6729 int length; /* Length of entire string. */
6730 int file_idx; /* Index in input file table. */
6731 int dir_idx; /* Index in directory table. */
6734 /* Data structure containing information about directories with source
6735 files. */
6736 struct dir_info
6738 char *path; /* Path including directory name. */
6739 int length; /* Path length. */
6740 int prefix; /* Index of directory entry which is a prefix. */
6741 int count; /* Number of files in this directory. */
6742 int dir_idx; /* Index of directory used as base. */
6743 int used; /* Used in the end? */
6746 /* Callback function for file_info comparison. We sort by looking at
6747 the directories in the path. */
6749 static int
6750 file_info_cmp (p1, p2)
6751 const void *p1;
6752 const void *p2;
6754 const struct file_info *s1 = p1;
6755 const struct file_info *s2 = p2;
6756 unsigned char *cp1;
6757 unsigned char *cp2;
6759 /* Take care of file names without directories. We need to make sure that
6760 we return consistent values to qsort since some will get confused if
6761 we return the same value when identical operands are passed in opposite
6762 orders. So if neither has a directory, return 0 and otherwise return
6763 1 or -1 depending on which one has the directory. */
6764 if ((s1->path == s1->fname || s2->path == s2->fname))
6765 return (s2->path == s2->fname) - (s1->path == s1->fname);
6767 cp1 = (unsigned char *) s1->path;
6768 cp2 = (unsigned char *) s2->path;
6770 while (1)
6772 ++cp1;
6773 ++cp2;
6774 /* Reached the end of the first path? If so, handle like above. */
6775 if ((cp1 == (unsigned char *) s1->fname)
6776 || (cp2 == (unsigned char *) s2->fname))
6777 return ((cp2 == (unsigned char *) s2->fname)
6778 - (cp1 == (unsigned char *) s1->fname));
6780 /* Character of current path component the same? */
6781 else if (*cp1 != *cp2)
6782 return *cp1 - *cp2;
6786 /* Output the directory table and the file name table. We try to minimize
6787 the total amount of memory needed. A heuristic is used to avoid large
6788 slowdowns with many input files. */
6790 static void
6791 output_file_names ()
6793 struct file_info *files;
6794 struct dir_info *dirs;
6795 int *saved;
6796 int *savehere;
6797 int *backmap;
6798 int ndirs;
6799 int idx_offset;
6800 int i;
6801 int idx;
6803 /* Allocate the various arrays we need. */
6804 files = (struct file_info *) alloca (file_table.in_use
6805 * sizeof (struct file_info));
6806 dirs = (struct dir_info *) alloca (file_table.in_use
6807 * sizeof (struct dir_info));
6809 /* Sort the file names. */
6810 for (i = 1; i < (int) file_table.in_use; i++)
6812 char *f;
6814 /* Skip all leading "./". */
6815 f = file_table.table[i];
6816 while (f[0] == '.' && f[1] == '/')
6817 f += 2;
6819 /* Create a new array entry. */
6820 files[i].path = f;
6821 files[i].length = strlen (f);
6822 files[i].file_idx = i;
6824 /* Search for the file name part. */
6825 f = strrchr (f, '/');
6826 files[i].fname = f == NULL ? files[i].path : f + 1;
6829 qsort (files + 1, file_table.in_use - 1, sizeof (files[0]), file_info_cmp);
6831 /* Find all the different directories used. */
6832 dirs[0].path = files[1].path;
6833 dirs[0].length = files[1].fname - files[1].path;
6834 dirs[0].prefix = -1;
6835 dirs[0].count = 1;
6836 dirs[0].dir_idx = 0;
6837 dirs[0].used = 0;
6838 files[1].dir_idx = 0;
6839 ndirs = 1;
6841 for (i = 2; i < (int) file_table.in_use; i++)
6842 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
6843 && memcmp (dirs[ndirs - 1].path, files[i].path,
6844 dirs[ndirs - 1].length) == 0)
6846 /* Same directory as last entry. */
6847 files[i].dir_idx = ndirs - 1;
6848 ++dirs[ndirs - 1].count;
6850 else
6852 int j;
6854 /* This is a new directory. */
6855 dirs[ndirs].path = files[i].path;
6856 dirs[ndirs].length = files[i].fname - files[i].path;
6857 dirs[ndirs].count = 1;
6858 dirs[ndirs].dir_idx = ndirs;
6859 dirs[ndirs].used = 0;
6860 files[i].dir_idx = ndirs;
6862 /* Search for a prefix. */
6863 dirs[ndirs].prefix = -1;
6864 for (j = 0; j < ndirs; j++)
6865 if (dirs[j].length < dirs[ndirs].length
6866 && dirs[j].length > 1
6867 && (dirs[ndirs].prefix == -1
6868 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
6869 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
6870 dirs[ndirs].prefix = j;
6872 ++ndirs;
6875 /* Now to the actual work. We have to find a subset of the directories which
6876 allow expressing the file name using references to the directory table
6877 with the least amount of characters. We do not do an exhaustive search
6878 where we would have to check out every combination of every single
6879 possible prefix. Instead we use a heuristic which provides nearly optimal
6880 results in most cases and never is much off. */
6881 saved = (int *) alloca (ndirs * sizeof (int));
6882 savehere = (int *) alloca (ndirs * sizeof (int));
6884 memset (saved, '\0', ndirs * sizeof (saved[0]));
6885 for (i = 0; i < ndirs; i++)
6887 int j;
6888 int total;
6890 /* We can always save some space for the current directory. But this
6891 does not mean it will be enough to justify adding the directory. */
6892 savehere[i] = dirs[i].length;
6893 total = (savehere[i] - saved[i]) * dirs[i].count;
6895 for (j = i + 1; j < ndirs; j++)
6897 savehere[j] = 0;
6898 if (saved[j] < dirs[i].length)
6900 /* Determine whether the dirs[i] path is a prefix of the
6901 dirs[j] path. */
6902 int k;
6904 k = dirs[j].prefix;
6905 while (k != -1 && k != i)
6906 k = dirs[k].prefix;
6908 if (k == i)
6910 /* Yes it is. We can possibly safe some memory but
6911 writing the filenames in dirs[j] relative to
6912 dirs[i]. */
6913 savehere[j] = dirs[i].length;
6914 total += (savehere[j] - saved[j]) * dirs[j].count;
6919 /* Check whether we can safe enough to justify adding the dirs[i]
6920 directory. */
6921 if (total > dirs[i].length + 1)
6923 /* It's worthwhile adding. */
6924 for (j = i; j < ndirs; j++)
6925 if (savehere[j] > 0)
6927 /* Remember how much we saved for this directory so far. */
6928 saved[j] = savehere[j];
6930 /* Remember the prefix directory. */
6931 dirs[j].dir_idx = i;
6936 /* We have to emit them in the order they appear in the file_table array
6937 since the index is used in the debug info generation. To do this
6938 efficiently we generate a back-mapping of the indices first. */
6939 backmap = (int *) alloca (file_table.in_use * sizeof (int));
6940 for (i = 1; i < (int) file_table.in_use; i++)
6942 backmap[files[i].file_idx] = i;
6944 /* Mark this directory as used. */
6945 dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
6948 /* That was it. We are ready to emit the information. First emit the
6949 directory name table. We have to make sure the first actually emitted
6950 directory name has index one; zero is reserved for the current working
6951 directory. Make sure we do not confuse these indices with the one for the
6952 constructed table (even though most of the time they are identical). */
6953 idx = 1;
6954 idx_offset = dirs[0].length > 0 ? 1 : 0;
6955 for (i = 1 - idx_offset; i < ndirs; i++)
6956 if (dirs[i].used != 0)
6958 dirs[i].used = idx++;
6959 dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
6960 "Directory Entry: 0x%x", dirs[i].used);
6963 dw2_asm_output_data (1, 0, "End directory table");
6965 /* Correct the index for the current working directory entry if it
6966 exists. */
6967 if (idx_offset == 0)
6968 dirs[0].used = 0;
6970 /* Now write all the file names. */
6971 for (i = 1; i < (int) file_table.in_use; i++)
6973 int file_idx = backmap[i];
6974 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
6976 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
6977 "File Entry: 0x%x", i);
6979 /* Include directory index. */
6980 dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
6982 /* Modification time. */
6983 dw2_asm_output_data_uleb128 (0, NULL);
6985 /* File length in bytes. */
6986 dw2_asm_output_data_uleb128 (0, NULL);
6989 dw2_asm_output_data (1, 0, "End file name table");
6993 /* Output the source line number correspondence information. This
6994 information goes into the .debug_line section. */
6996 static void
6997 output_line_info ()
6999 char l1[20], l2[20], p1[20], p2[20];
7000 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7001 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7002 unsigned opc;
7003 unsigned n_op_args;
7004 unsigned long lt_index;
7005 unsigned long current_line;
7006 long line_offset;
7007 long line_delta;
7008 unsigned long current_file;
7009 unsigned long function;
7011 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
7012 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
7013 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
7014 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
7016 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
7017 "Length of Source Line Info");
7018 ASM_OUTPUT_LABEL (asm_out_file, l1);
7020 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7021 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
7022 ASM_OUTPUT_LABEL (asm_out_file, p1);
7024 /* Define the architecture-dependent minimum instruction length (in
7025 bytes). In this implementation of DWARF, this field is used for
7026 information purposes only. Since GCC generates assembly language,
7027 we have no a priori knowledge of how many instruction bytes are
7028 generated for each source line, and therefore can use only the
7029 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7030 commands. Accordingly, we fix this as `1', which is "correct
7031 enough" for all architectures, and don't let the target override. */
7032 dw2_asm_output_data (1, 1,
7033 "Minimum Instruction Length");
7035 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
7036 "Default is_stmt_start flag");
7037 dw2_asm_output_data (1, DWARF_LINE_BASE,
7038 "Line Base Value (Special Opcodes)");
7039 dw2_asm_output_data (1, DWARF_LINE_RANGE,
7040 "Line Range Value (Special Opcodes)");
7041 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
7042 "Special Opcode Base");
7044 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
7046 switch (opc)
7048 case DW_LNS_advance_pc:
7049 case DW_LNS_advance_line:
7050 case DW_LNS_set_file:
7051 case DW_LNS_set_column:
7052 case DW_LNS_fixed_advance_pc:
7053 n_op_args = 1;
7054 break;
7055 default:
7056 n_op_args = 0;
7057 break;
7060 dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
7061 opc, n_op_args);
7064 /* Write out the information about the files we use. */
7065 output_file_names ();
7066 ASM_OUTPUT_LABEL (asm_out_file, p2);
7068 /* We used to set the address register to the first location in the text
7069 section here, but that didn't accomplish anything since we already
7070 have a line note for the opening brace of the first function. */
7072 /* Generate the line number to PC correspondence table, encoded as
7073 a series of state machine operations. */
7074 current_file = 1;
7075 current_line = 1;
7076 strcpy (prev_line_label, text_section_label);
7077 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
7079 dw_line_info_ref line_info = &line_info_table[lt_index];
7081 #if 0
7082 /* Disable this optimization for now; GDB wants to see two line notes
7083 at the beginning of a function so it can find the end of the
7084 prologue. */
7086 /* Don't emit anything for redundant notes. Just updating the
7087 address doesn't accomplish anything, because we already assume
7088 that anything after the last address is this line. */
7089 if (line_info->dw_line_num == current_line
7090 && line_info->dw_file_num == current_file)
7091 continue;
7092 #endif
7094 /* Emit debug info for the address of the current line.
7096 Unfortunately, we have little choice here currently, and must always
7097 use the most general form. GCC does not know the address delta
7098 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
7099 attributes which will give an upper bound on the address range. We
7100 could perhaps use length attributes to determine when it is safe to
7101 use DW_LNS_fixed_advance_pc. */
7103 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
7104 if (0)
7106 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
7107 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7108 "DW_LNS_fixed_advance_pc");
7109 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7111 else
7113 /* This can handle any delta. This takes
7114 4+DWARF2_ADDR_SIZE bytes. */
7115 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7116 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7117 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7118 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7121 strcpy (prev_line_label, line_label);
7123 /* Emit debug info for the source file of the current line, if
7124 different from the previous line. */
7125 if (line_info->dw_file_num != current_file)
7127 current_file = line_info->dw_file_num;
7128 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7129 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7130 file_table.table[current_file]);
7133 /* Emit debug info for the current line number, choosing the encoding
7134 that uses the least amount of space. */
7135 if (line_info->dw_line_num != current_line)
7137 line_offset = line_info->dw_line_num - current_line;
7138 line_delta = line_offset - DWARF_LINE_BASE;
7139 current_line = line_info->dw_line_num;
7140 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7141 /* This can handle deltas from -10 to 234, using the current
7142 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
7143 takes 1 byte. */
7144 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7145 "line %lu", current_line);
7146 else
7148 /* This can handle any delta. This takes at least 4 bytes,
7149 depending on the value being encoded. */
7150 dw2_asm_output_data (1, DW_LNS_advance_line,
7151 "advance to line %lu", current_line);
7152 dw2_asm_output_data_sleb128 (line_offset, NULL);
7153 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7156 else
7157 /* We still need to start a new row, so output a copy insn. */
7158 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7161 /* Emit debug info for the address of the end of the function. */
7162 if (0)
7164 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7165 "DW_LNS_fixed_advance_pc");
7166 dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
7168 else
7170 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7171 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7172 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7173 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
7176 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7177 dw2_asm_output_data_uleb128 (1, NULL);
7178 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7180 function = 0;
7181 current_file = 1;
7182 current_line = 1;
7183 for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
7185 dw_separate_line_info_ref line_info
7186 = &separate_line_info_table[lt_index];
7188 #if 0
7189 /* Don't emit anything for redundant notes. */
7190 if (line_info->dw_line_num == current_line
7191 && line_info->dw_file_num == current_file
7192 && line_info->function == function)
7193 goto cont;
7194 #endif
7196 /* Emit debug info for the address of the current line. If this is
7197 a new function, or the first line of a function, then we need
7198 to handle it differently. */
7199 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
7200 lt_index);
7201 if (function != line_info->function)
7203 function = line_info->function;
7205 /* Set the address register to the first line in the function */
7206 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7207 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7208 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7209 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7211 else
7213 /* ??? See the DW_LNS_advance_pc comment above. */
7214 if (0)
7216 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7217 "DW_LNS_fixed_advance_pc");
7218 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7220 else
7222 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7223 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7224 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7225 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7229 strcpy (prev_line_label, line_label);
7231 /* Emit debug info for the source file of the current line, if
7232 different from the previous line. */
7233 if (line_info->dw_file_num != current_file)
7235 current_file = line_info->dw_file_num;
7236 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7237 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7238 file_table.table[current_file]);
7241 /* Emit debug info for the current line number, choosing the encoding
7242 that uses the least amount of space. */
7243 if (line_info->dw_line_num != current_line)
7245 line_offset = line_info->dw_line_num - current_line;
7246 line_delta = line_offset - DWARF_LINE_BASE;
7247 current_line = line_info->dw_line_num;
7248 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7249 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7250 "line %lu", current_line);
7251 else
7253 dw2_asm_output_data (1, DW_LNS_advance_line,
7254 "advance to line %lu", current_line);
7255 dw2_asm_output_data_sleb128 (line_offset, NULL);
7256 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7259 else
7260 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7262 #if 0
7263 cont:
7264 #endif
7266 lt_index++;
7268 /* If we're done with a function, end its sequence. */
7269 if (lt_index == separate_line_info_table_in_use
7270 || separate_line_info_table[lt_index].function != function)
7272 current_file = 1;
7273 current_line = 1;
7275 /* Emit debug info for the address of the end of the function. */
7276 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
7277 if (0)
7279 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7280 "DW_LNS_fixed_advance_pc");
7281 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7283 else
7285 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7286 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7287 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7288 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7291 /* Output the marker for the end of this sequence. */
7292 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7293 dw2_asm_output_data_uleb128 (1, NULL);
7294 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7298 /* Output the marker for the end of the line number info. */
7299 ASM_OUTPUT_LABEL (asm_out_file, l2);
7302 /* Given a pointer to a tree node for some base type, return a pointer to
7303 a DIE that describes the given type.
7305 This routine must only be called for GCC type nodes that correspond to
7306 Dwarf base (fundamental) types. */
7308 static dw_die_ref
7309 base_type_die (type)
7310 tree type;
7312 dw_die_ref base_type_result;
7313 const char *type_name;
7314 enum dwarf_type encoding;
7315 tree name = TYPE_NAME (type);
7317 if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
7318 return 0;
7320 if (name)
7322 if (TREE_CODE (name) == TYPE_DECL)
7323 name = DECL_NAME (name);
7325 type_name = IDENTIFIER_POINTER (name);
7327 else
7328 type_name = "__unknown__";
7330 switch (TREE_CODE (type))
7332 case INTEGER_TYPE:
7333 /* Carefully distinguish the C character types, without messing
7334 up if the language is not C. Note that we check only for the names
7335 that contain spaces; other names might occur by coincidence in other
7336 languages. */
7337 if (! (TYPE_PRECISION (type) == CHAR_TYPE_SIZE
7338 && (type == char_type_node
7339 || ! strcmp (type_name, "signed char")
7340 || ! strcmp (type_name, "unsigned char"))))
7342 if (TREE_UNSIGNED (type))
7343 encoding = DW_ATE_unsigned;
7344 else
7345 encoding = DW_ATE_signed;
7346 break;
7348 /* else fall through. */
7350 case CHAR_TYPE:
7351 /* GNU Pascal/Ada CHAR type. Not used in C. */
7352 if (TREE_UNSIGNED (type))
7353 encoding = DW_ATE_unsigned_char;
7354 else
7355 encoding = DW_ATE_signed_char;
7356 break;
7358 case REAL_TYPE:
7359 encoding = DW_ATE_float;
7360 break;
7362 /* Dwarf2 doesn't know anything about complex ints, so use
7363 a user defined type for it. */
7364 case COMPLEX_TYPE:
7365 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
7366 encoding = DW_ATE_complex_float;
7367 else
7368 encoding = DW_ATE_lo_user;
7369 break;
7371 case BOOLEAN_TYPE:
7372 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
7373 encoding = DW_ATE_boolean;
7374 break;
7376 default:
7377 /* No other TREE_CODEs are Dwarf fundamental types. */
7378 abort ();
7381 base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
7382 if (demangle_name_func)
7383 type_name = (*demangle_name_func) (type_name);
7385 add_AT_string (base_type_result, DW_AT_name, type_name);
7386 add_AT_unsigned (base_type_result, DW_AT_byte_size,
7387 int_size_in_bytes (type));
7388 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
7390 return base_type_result;
7393 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
7394 the Dwarf "root" type for the given input type. The Dwarf "root" type of
7395 a given type is generally the same as the given type, except that if the
7396 given type is a pointer or reference type, then the root type of the given
7397 type is the root type of the "basis" type for the pointer or reference
7398 type. (This definition of the "root" type is recursive.) Also, the root
7399 type of a `const' qualified type or a `volatile' qualified type is the
7400 root type of the given type without the qualifiers. */
7402 static tree
7403 root_type (type)
7404 tree type;
7406 if (TREE_CODE (type) == ERROR_MARK)
7407 return error_mark_node;
7409 switch (TREE_CODE (type))
7411 case ERROR_MARK:
7412 return error_mark_node;
7414 case POINTER_TYPE:
7415 case REFERENCE_TYPE:
7416 return type_main_variant (root_type (TREE_TYPE (type)));
7418 default:
7419 return type_main_variant (type);
7423 /* Given a pointer to an arbitrary ..._TYPE tree node, return non-zero if the
7424 given input type is a Dwarf "fundamental" type. Otherwise return null. */
7426 static inline int
7427 is_base_type (type)
7428 tree type;
7430 switch (TREE_CODE (type))
7432 case ERROR_MARK:
7433 case VOID_TYPE:
7434 case INTEGER_TYPE:
7435 case REAL_TYPE:
7436 case COMPLEX_TYPE:
7437 case BOOLEAN_TYPE:
7438 case CHAR_TYPE:
7439 return 1;
7441 case SET_TYPE:
7442 case ARRAY_TYPE:
7443 case RECORD_TYPE:
7444 case UNION_TYPE:
7445 case QUAL_UNION_TYPE:
7446 case ENUMERAL_TYPE:
7447 case FUNCTION_TYPE:
7448 case METHOD_TYPE:
7449 case POINTER_TYPE:
7450 case REFERENCE_TYPE:
7451 case FILE_TYPE:
7452 case OFFSET_TYPE:
7453 case LANG_TYPE:
7454 case VECTOR_TYPE:
7455 return 0;
7457 default:
7458 abort ();
7461 return 0;
7464 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
7465 entry that chains various modifiers in front of the given type. */
7467 static dw_die_ref
7468 modified_type_die (type, is_const_type, is_volatile_type, context_die)
7469 tree type;
7470 int is_const_type;
7471 int is_volatile_type;
7472 dw_die_ref context_die;
7474 enum tree_code code = TREE_CODE (type);
7475 dw_die_ref mod_type_die = NULL;
7476 dw_die_ref sub_die = NULL;
7477 tree item_type = NULL;
7479 if (code != ERROR_MARK)
7481 tree qualified_type;
7483 /* See if we already have the appropriately qualified variant of
7484 this type. */
7485 qualified_type
7486 = get_qualified_type (type,
7487 ((is_const_type ? TYPE_QUAL_CONST : 0)
7488 | (is_volatile_type
7489 ? TYPE_QUAL_VOLATILE : 0)));
7491 /* If we do, then we can just use its DIE, if it exists. */
7492 if (qualified_type)
7494 mod_type_die = lookup_type_die (qualified_type);
7495 if (mod_type_die)
7496 return mod_type_die;
7499 /* Handle C typedef types. */
7500 if (qualified_type && TYPE_NAME (qualified_type)
7501 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL
7502 && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type)))
7504 tree type_name = TYPE_NAME (qualified_type);
7505 tree dtype = TREE_TYPE (type_name);
7507 if (qualified_type == dtype)
7509 /* For a named type, use the typedef. */
7510 gen_type_die (qualified_type, context_die);
7511 mod_type_die = lookup_type_die (qualified_type);
7513 else if (is_const_type < TYPE_READONLY (dtype)
7514 || is_volatile_type < TYPE_VOLATILE (dtype))
7515 /* cv-unqualified version of named type. Just use the unnamed
7516 type to which it refers. */
7517 mod_type_die
7518 = modified_type_die (DECL_ORIGINAL_TYPE (type_name),
7519 is_const_type, is_volatile_type,
7520 context_die);
7522 /* Else cv-qualified version of named type; fall through. */
7525 if (mod_type_die)
7526 /* OK. */
7528 else if (is_const_type)
7530 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
7531 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
7533 else if (is_volatile_type)
7535 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
7536 sub_die = modified_type_die (type, 0, 0, context_die);
7538 else if (code == POINTER_TYPE)
7540 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
7541 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
7542 #if 0
7543 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
7544 #endif
7545 item_type = TREE_TYPE (type);
7547 else if (code == REFERENCE_TYPE)
7549 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
7550 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
7551 #if 0
7552 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
7553 #endif
7554 item_type = TREE_TYPE (type);
7556 else if (is_base_type (type))
7557 mod_type_die = base_type_die (type);
7558 else
7560 gen_type_die (type, context_die);
7562 /* We have to get the type_main_variant here (and pass that to the
7563 `lookup_type_die' routine) because the ..._TYPE node we have
7564 might simply be a *copy* of some original type node (where the
7565 copy was created to help us keep track of typedef names) and
7566 that copy might have a different TYPE_UID from the original
7567 ..._TYPE node. */
7568 mod_type_die = lookup_type_die (type_main_variant (type));
7569 if (mod_type_die == NULL)
7570 abort ();
7573 /* We want to equate the qualified type to the die below. */
7574 if (qualified_type)
7575 type = qualified_type;
7578 equate_type_number_to_die (type, mod_type_die);
7579 if (item_type)
7580 /* We must do this after the equate_type_number_to_die call, in case
7581 this is a recursive type. This ensures that the modified_type_die
7582 recursion will terminate even if the type is recursive. Recursive
7583 types are possible in Ada. */
7584 sub_die = modified_type_die (item_type,
7585 TYPE_READONLY (item_type),
7586 TYPE_VOLATILE (item_type),
7587 context_die);
7589 if (sub_die != NULL)
7590 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
7592 return mod_type_die;
7595 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
7596 an enumerated type. */
7598 static inline int
7599 type_is_enum (type)
7600 tree type;
7602 return TREE_CODE (type) == ENUMERAL_TYPE;
7605 /* Return the register number described by a given RTL node. */
7607 static unsigned int
7608 reg_number (rtl)
7609 rtx rtl;
7611 unsigned regno = REGNO (rtl);
7613 if (regno >= FIRST_PSEUDO_REGISTER)
7614 abort ();
7616 return DBX_REGISTER_NUMBER (regno);
7619 /* Return a location descriptor that designates a machine register or
7620 zero if there is no such. */
7622 static dw_loc_descr_ref
7623 reg_loc_descriptor (rtl)
7624 rtx rtl;
7626 dw_loc_descr_ref loc_result = NULL;
7627 unsigned reg;
7629 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
7630 return 0;
7632 reg = reg_number (rtl);
7633 if (reg <= 31)
7634 loc_result = new_loc_descr (DW_OP_reg0 + reg, 0, 0);
7635 else
7636 loc_result = new_loc_descr (DW_OP_regx, reg, 0);
7638 return loc_result;
7641 /* Return a location descriptor that designates a constant. */
7643 static dw_loc_descr_ref
7644 int_loc_descriptor (i)
7645 HOST_WIDE_INT i;
7647 enum dwarf_location_atom op;
7649 /* Pick the smallest representation of a constant, rather than just
7650 defaulting to the LEB encoding. */
7651 if (i >= 0)
7653 if (i <= 31)
7654 op = DW_OP_lit0 + i;
7655 else if (i <= 0xff)
7656 op = DW_OP_const1u;
7657 else if (i <= 0xffff)
7658 op = DW_OP_const2u;
7659 else if (HOST_BITS_PER_WIDE_INT == 32
7660 || i <= 0xffffffff)
7661 op = DW_OP_const4u;
7662 else
7663 op = DW_OP_constu;
7665 else
7667 if (i >= -0x80)
7668 op = DW_OP_const1s;
7669 else if (i >= -0x8000)
7670 op = DW_OP_const2s;
7671 else if (HOST_BITS_PER_WIDE_INT == 32
7672 || i >= -0x80000000)
7673 op = DW_OP_const4s;
7674 else
7675 op = DW_OP_consts;
7678 return new_loc_descr (op, i, 0);
7681 /* Return a location descriptor that designates a base+offset location. */
7683 static dw_loc_descr_ref
7684 based_loc_descr (reg, offset)
7685 unsigned reg;
7686 long int offset;
7688 dw_loc_descr_ref loc_result;
7689 /* For the "frame base", we use the frame pointer or stack pointer
7690 registers, since the RTL for local variables is relative to one of
7691 them. */
7692 unsigned fp_reg = DBX_REGISTER_NUMBER (frame_pointer_needed
7693 ? HARD_FRAME_POINTER_REGNUM
7694 : STACK_POINTER_REGNUM);
7696 if (reg == fp_reg)
7697 loc_result = new_loc_descr (DW_OP_fbreg, offset, 0);
7698 else if (reg <= 31)
7699 loc_result = new_loc_descr (DW_OP_breg0 + reg, offset, 0);
7700 else
7701 loc_result = new_loc_descr (DW_OP_bregx, reg, offset);
7703 return loc_result;
7706 /* Return true if this RTL expression describes a base+offset calculation. */
7708 static inline int
7709 is_based_loc (rtl)
7710 rtx rtl;
7712 return (GET_CODE (rtl) == PLUS
7713 && ((GET_CODE (XEXP (rtl, 0)) == REG
7714 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
7715 && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
7718 /* The following routine converts the RTL for a variable or parameter
7719 (resident in memory) into an equivalent Dwarf representation of a
7720 mechanism for getting the address of that same variable onto the top of a
7721 hypothetical "address evaluation" stack.
7723 When creating memory location descriptors, we are effectively transforming
7724 the RTL for a memory-resident object into its Dwarf postfix expression
7725 equivalent. This routine recursively descends an RTL tree, turning
7726 it into Dwarf postfix code as it goes.
7728 MODE is the mode of the memory reference, needed to handle some
7729 autoincrement addressing modes.
7731 Return 0 if we can't represent the location. */
7733 static dw_loc_descr_ref
7734 mem_loc_descriptor (rtl, mode)
7735 rtx rtl;
7736 enum machine_mode mode;
7738 dw_loc_descr_ref mem_loc_result = NULL;
7740 /* Note that for a dynamically sized array, the location we will generate a
7741 description of here will be the lowest numbered location which is
7742 actually within the array. That's *not* necessarily the same as the
7743 zeroth element of the array. */
7745 #ifdef ASM_SIMPLIFY_DWARF_ADDR
7746 rtl = ASM_SIMPLIFY_DWARF_ADDR (rtl);
7747 #endif
7749 switch (GET_CODE (rtl))
7751 case POST_INC:
7752 case POST_DEC:
7753 case POST_MODIFY:
7754 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
7755 just fall into the SUBREG code. */
7757 /* ... fall through ... */
7759 case SUBREG:
7760 /* The case of a subreg may arise when we have a local (register)
7761 variable or a formal (register) parameter which doesn't quite fill
7762 up an entire register. For now, just assume that it is
7763 legitimate to make the Dwarf info refer to the whole register which
7764 contains the given subreg. */
7765 rtl = SUBREG_REG (rtl);
7767 /* ... fall through ... */
7769 case REG:
7770 /* Whenever a register number forms a part of the description of the
7771 method for calculating the (dynamic) address of a memory resident
7772 object, DWARF rules require the register number be referred to as
7773 a "base register". This distinction is not based in any way upon
7774 what category of register the hardware believes the given register
7775 belongs to. This is strictly DWARF terminology we're dealing with
7776 here. Note that in cases where the location of a memory-resident
7777 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
7778 OP_CONST (0)) the actual DWARF location descriptor that we generate
7779 may just be OP_BASEREG (basereg). This may look deceptively like
7780 the object in question was allocated to a register (rather than in
7781 memory) so DWARF consumers need to be aware of the subtle
7782 distinction between OP_REG and OP_BASEREG. */
7783 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
7784 mem_loc_result = based_loc_descr (reg_number (rtl), 0);
7785 break;
7787 case MEM:
7788 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
7789 if (mem_loc_result != 0)
7790 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
7791 break;
7793 case LABEL_REF:
7794 /* Some ports can transform a symbol ref into a label ref, because
7795 the symbol ref is too far away and has to be dumped into a constant
7796 pool. */
7797 case CONST:
7798 case SYMBOL_REF:
7799 /* Alternatively, the symbol in the constant pool might be referenced
7800 by a different symbol. */
7801 if (GET_CODE (rtl) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (rtl))
7803 bool marked;
7804 rtx tmp = get_pool_constant_mark (rtl, &marked);
7806 if (GET_CODE (tmp) == SYMBOL_REF)
7808 rtl = tmp;
7809 if (CONSTANT_POOL_ADDRESS_P (tmp))
7810 get_pool_constant_mark (tmp, &marked);
7811 else
7812 marked = true;
7815 /* If all references to this pool constant were optimized away,
7816 it was not output and thus we can't represent it.
7817 FIXME: might try to use DW_OP_const_value here, though
7818 DW_OP_piece complicates it. */
7819 if (!marked)
7820 return 0;
7823 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
7824 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
7825 mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
7826 VARRAY_PUSH_RTX (used_rtx_varray, rtl);
7827 break;
7829 case PRE_MODIFY:
7830 /* Extract the PLUS expression nested inside and fall into
7831 PLUS code below. */
7832 rtl = XEXP (rtl, 1);
7833 goto plus;
7835 case PRE_INC:
7836 case PRE_DEC:
7837 /* Turn these into a PLUS expression and fall into the PLUS code
7838 below. */
7839 rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
7840 GEN_INT (GET_CODE (rtl) == PRE_INC
7841 ? GET_MODE_UNIT_SIZE (mode)
7842 : -GET_MODE_UNIT_SIZE (mode)));
7844 /* ... fall through ... */
7846 case PLUS:
7847 plus:
7848 if (is_based_loc (rtl))
7849 mem_loc_result = based_loc_descr (reg_number (XEXP (rtl, 0)),
7850 INTVAL (XEXP (rtl, 1)));
7851 else
7853 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode);
7854 if (mem_loc_result == 0)
7855 break;
7857 if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
7858 && INTVAL (XEXP (rtl, 1)) >= 0)
7859 add_loc_descr (&mem_loc_result,
7860 new_loc_descr (DW_OP_plus_uconst,
7861 INTVAL (XEXP (rtl, 1)), 0));
7862 else
7864 add_loc_descr (&mem_loc_result,
7865 mem_loc_descriptor (XEXP (rtl, 1), mode));
7866 add_loc_descr (&mem_loc_result,
7867 new_loc_descr (DW_OP_plus, 0, 0));
7870 break;
7872 case MULT:
7874 /* If a pseudo-reg is optimized away, it is possible for it to
7875 be replaced with a MEM containing a multiply. */
7876 dw_loc_descr_ref op0 = mem_loc_descriptor (XEXP (rtl, 0), mode);
7877 dw_loc_descr_ref op1 = mem_loc_descriptor (XEXP (rtl, 1), mode);
7879 if (op0 == 0 || op1 == 0)
7880 break;
7882 mem_loc_result = op0;
7883 add_loc_descr (&mem_loc_result, op1);
7884 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
7885 break;
7888 case CONST_INT:
7889 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
7890 break;
7892 case ADDRESSOF:
7893 /* If this is a MEM, return its address. Otherwise, we can't
7894 represent this. */
7895 if (GET_CODE (XEXP (rtl, 0)) == MEM)
7896 return mem_loc_descriptor (XEXP (XEXP (rtl, 0), 0), mode);
7897 else
7898 return 0;
7900 default:
7901 abort ();
7904 return mem_loc_result;
7907 /* Return a descriptor that describes the concatenation of two locations.
7908 This is typically a complex variable. */
7910 static dw_loc_descr_ref
7911 concat_loc_descriptor (x0, x1)
7912 rtx x0, x1;
7914 dw_loc_descr_ref cc_loc_result = NULL;
7915 dw_loc_descr_ref x0_ref = loc_descriptor (x0);
7916 dw_loc_descr_ref x1_ref = loc_descriptor (x1);
7918 if (x0_ref == 0 || x1_ref == 0)
7919 return 0;
7921 cc_loc_result = x0_ref;
7922 add_loc_descr (&cc_loc_result,
7923 new_loc_descr (DW_OP_piece,
7924 GET_MODE_SIZE (GET_MODE (x0)), 0));
7926 add_loc_descr (&cc_loc_result, x1_ref);
7927 add_loc_descr (&cc_loc_result,
7928 new_loc_descr (DW_OP_piece,
7929 GET_MODE_SIZE (GET_MODE (x1)), 0));
7931 return cc_loc_result;
7934 /* Output a proper Dwarf location descriptor for a variable or parameter
7935 which is either allocated in a register or in a memory location. For a
7936 register, we just generate an OP_REG and the register number. For a
7937 memory location we provide a Dwarf postfix expression describing how to
7938 generate the (dynamic) address of the object onto the address stack.
7940 If we don't know how to describe it, return 0. */
7942 static dw_loc_descr_ref
7943 loc_descriptor (rtl)
7944 rtx rtl;
7946 dw_loc_descr_ref loc_result = NULL;
7948 switch (GET_CODE (rtl))
7950 case SUBREG:
7951 /* The case of a subreg may arise when we have a local (register)
7952 variable or a formal (register) parameter which doesn't quite fill
7953 up an entire register. For now, just assume that it is
7954 legitimate to make the Dwarf info refer to the whole register which
7955 contains the given subreg. */
7956 rtl = SUBREG_REG (rtl);
7958 /* ... fall through ... */
7960 case REG:
7961 loc_result = reg_loc_descriptor (rtl);
7962 break;
7964 case MEM:
7965 loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
7966 break;
7968 case CONCAT:
7969 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
7970 break;
7972 default:
7973 abort ();
7976 return loc_result;
7979 /* Similar, but generate the descriptor from trees instead of rtl. This comes
7980 up particularly with variable length arrays. If ADDRESSP is nonzero, we are
7981 looking for an address. Otherwise, we return a value. If we can't make a
7982 descriptor, return 0. */
7984 static dw_loc_descr_ref
7985 loc_descriptor_from_tree (loc, addressp)
7986 tree loc;
7987 int addressp;
7989 dw_loc_descr_ref ret, ret1;
7990 int indirect_p = 0;
7991 int unsignedp = TREE_UNSIGNED (TREE_TYPE (loc));
7992 enum dwarf_location_atom op;
7994 /* ??? Most of the time we do not take proper care for sign/zero
7995 extending the values properly. Hopefully this won't be a real
7996 problem... */
7998 switch (TREE_CODE (loc))
8000 case ERROR_MARK:
8001 return 0;
8003 case WITH_RECORD_EXPR:
8004 case PLACEHOLDER_EXPR:
8005 /* This case involves extracting fields from an object to determine the
8006 position of other fields. We don't try to encode this here. The
8007 only user of this is Ada, which encodes the needed information using
8008 the names of types. */
8009 return 0;
8011 case CALL_EXPR:
8012 return 0;
8014 case ADDR_EXPR:
8015 /* We can support this only if we can look through conversions and
8016 find an INDIRECT_EXPR. */
8017 for (loc = TREE_OPERAND (loc, 0);
8018 TREE_CODE (loc) == CONVERT_EXPR || TREE_CODE (loc) == NOP_EXPR
8019 || TREE_CODE (loc) == NON_LVALUE_EXPR
8020 || TREE_CODE (loc) == VIEW_CONVERT_EXPR
8021 || TREE_CODE (loc) == SAVE_EXPR;
8022 loc = TREE_OPERAND (loc, 0))
8025 return (TREE_CODE (loc) == INDIRECT_REF
8026 ? loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp)
8027 : 0);
8029 case VAR_DECL:
8030 case PARM_DECL:
8032 rtx rtl = rtl_for_decl_location (loc);
8034 if (rtl == NULL_RTX)
8035 return 0;
8036 else if (CONSTANT_P (rtl))
8038 ret = new_loc_descr (DW_OP_addr, 0, 0);
8039 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8040 ret->dw_loc_oprnd1.v.val_addr = rtl;
8041 indirect_p = 1;
8043 else
8045 enum machine_mode mode = GET_MODE (rtl);
8047 if (GET_CODE (rtl) == MEM)
8049 indirect_p = 1;
8050 rtl = XEXP (rtl, 0);
8053 ret = mem_loc_descriptor (rtl, mode);
8056 break;
8058 case INDIRECT_REF:
8059 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8060 indirect_p = 1;
8061 break;
8063 case COMPOUND_EXPR:
8064 return loc_descriptor_from_tree (TREE_OPERAND (loc, 1), addressp);
8066 case NOP_EXPR:
8067 case CONVERT_EXPR:
8068 case NON_LVALUE_EXPR:
8069 case VIEW_CONVERT_EXPR:
8070 case SAVE_EXPR:
8071 return loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp);
8073 case COMPONENT_REF:
8074 case BIT_FIELD_REF:
8075 case ARRAY_REF:
8076 case ARRAY_RANGE_REF:
8078 tree obj, offset;
8079 HOST_WIDE_INT bitsize, bitpos, bytepos;
8080 enum machine_mode mode;
8081 int volatilep;
8083 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
8084 &unsignedp, &volatilep);
8086 if (obj == loc)
8087 return 0;
8089 ret = loc_descriptor_from_tree (obj, 1);
8090 if (ret == 0
8091 || bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
8092 return 0;
8094 if (offset != NULL_TREE)
8096 /* Variable offset. */
8097 add_loc_descr (&ret, loc_descriptor_from_tree (offset, 0));
8098 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
8101 if (!addressp)
8102 indirect_p = 1;
8104 bytepos = bitpos / BITS_PER_UNIT;
8105 if (bytepos > 0)
8106 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
8107 else if (bytepos < 0)
8109 add_loc_descr (&ret, int_loc_descriptor (bytepos));
8110 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
8112 break;
8115 case INTEGER_CST:
8116 if (host_integerp (loc, 0))
8117 ret = int_loc_descriptor (tree_low_cst (loc, 0));
8118 else
8119 return 0;
8120 break;
8122 case TRUTH_AND_EXPR:
8123 case TRUTH_ANDIF_EXPR:
8124 case BIT_AND_EXPR:
8125 op = DW_OP_and;
8126 goto do_binop;
8128 case TRUTH_XOR_EXPR:
8129 case BIT_XOR_EXPR:
8130 op = DW_OP_xor;
8131 goto do_binop;
8133 case TRUTH_OR_EXPR:
8134 case TRUTH_ORIF_EXPR:
8135 case BIT_IOR_EXPR:
8136 op = DW_OP_or;
8137 goto do_binop;
8139 case TRUNC_DIV_EXPR:
8140 op = DW_OP_div;
8141 goto do_binop;
8143 case MINUS_EXPR:
8144 op = DW_OP_minus;
8145 goto do_binop;
8147 case TRUNC_MOD_EXPR:
8148 op = DW_OP_mod;
8149 goto do_binop;
8151 case MULT_EXPR:
8152 op = DW_OP_mul;
8153 goto do_binop;
8155 case LSHIFT_EXPR:
8156 op = DW_OP_shl;
8157 goto do_binop;
8159 case RSHIFT_EXPR:
8160 op = (unsignedp ? DW_OP_shr : DW_OP_shra);
8161 goto do_binop;
8163 case PLUS_EXPR:
8164 if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
8165 && host_integerp (TREE_OPERAND (loc, 1), 0))
8167 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8168 if (ret == 0)
8169 return 0;
8171 add_loc_descr (&ret,
8172 new_loc_descr (DW_OP_plus_uconst,
8173 tree_low_cst (TREE_OPERAND (loc, 1),
8175 0));
8176 break;
8179 op = DW_OP_plus;
8180 goto do_binop;
8182 case LE_EXPR:
8183 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8184 return 0;
8186 op = DW_OP_le;
8187 goto do_binop;
8189 case GE_EXPR:
8190 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8191 return 0;
8193 op = DW_OP_ge;
8194 goto do_binop;
8196 case LT_EXPR:
8197 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8198 return 0;
8200 op = DW_OP_lt;
8201 goto do_binop;
8203 case GT_EXPR:
8204 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8205 return 0;
8207 op = DW_OP_gt;
8208 goto do_binop;
8210 case EQ_EXPR:
8211 op = DW_OP_eq;
8212 goto do_binop;
8214 case NE_EXPR:
8215 op = DW_OP_ne;
8216 goto do_binop;
8218 do_binop:
8219 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8220 ret1 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
8221 if (ret == 0 || ret1 == 0)
8222 return 0;
8224 add_loc_descr (&ret, ret1);
8225 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
8226 break;
8228 case TRUTH_NOT_EXPR:
8229 case BIT_NOT_EXPR:
8230 op = DW_OP_not;
8231 goto do_unop;
8233 case ABS_EXPR:
8234 op = DW_OP_abs;
8235 goto do_unop;
8237 case NEGATE_EXPR:
8238 op = DW_OP_neg;
8239 goto do_unop;
8241 do_unop:
8242 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8243 if (ret == 0)
8244 return 0;
8246 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
8247 break;
8249 case MAX_EXPR:
8250 loc = build (COND_EXPR, TREE_TYPE (loc),
8251 build (LT_EXPR, integer_type_node,
8252 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
8253 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
8255 /* ... fall through ... */
8257 case COND_EXPR:
8259 dw_loc_descr_ref lhs
8260 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
8261 dw_loc_descr_ref rhs
8262 = loc_descriptor_from_tree (TREE_OPERAND (loc, 2), 0);
8263 dw_loc_descr_ref bra_node, jump_node, tmp;
8265 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8266 if (ret == 0 || lhs == 0 || rhs == 0)
8267 return 0;
8269 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
8270 add_loc_descr (&ret, bra_node);
8272 add_loc_descr (&ret, rhs);
8273 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
8274 add_loc_descr (&ret, jump_node);
8276 add_loc_descr (&ret, lhs);
8277 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
8278 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
8280 /* ??? Need a node to point the skip at. Use a nop. */
8281 tmp = new_loc_descr (DW_OP_nop, 0, 0);
8282 add_loc_descr (&ret, tmp);
8283 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
8284 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
8286 break;
8288 default:
8289 abort ();
8292 /* Show if we can't fill the request for an address. */
8293 if (addressp && indirect_p == 0)
8294 return 0;
8296 /* If we've got an address and don't want one, dereference. */
8297 if (!addressp && indirect_p > 0)
8299 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
8301 if (size > DWARF2_ADDR_SIZE || size == -1)
8302 return 0;
8303 else if (size == DWARF2_ADDR_SIZE)
8304 op = DW_OP_deref;
8305 else
8306 op = DW_OP_deref_size;
8308 add_loc_descr (&ret, new_loc_descr (op, size, 0));
8311 return ret;
8314 /* Given a value, round it up to the lowest multiple of `boundary'
8315 which is not less than the value itself. */
8317 static inline HOST_WIDE_INT
8318 ceiling (value, boundary)
8319 HOST_WIDE_INT value;
8320 unsigned int boundary;
8322 return (((value + boundary - 1) / boundary) * boundary);
8325 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
8326 pointer to the declared type for the relevant field variable, or return
8327 `integer_type_node' if the given node turns out to be an
8328 ERROR_MARK node. */
8330 static inline tree
8331 field_type (decl)
8332 tree decl;
8334 tree type;
8336 if (TREE_CODE (decl) == ERROR_MARK)
8337 return integer_type_node;
8339 type = DECL_BIT_FIELD_TYPE (decl);
8340 if (type == NULL_TREE)
8341 type = TREE_TYPE (decl);
8343 return type;
8346 /* Given a pointer to a tree node, return the alignment in bits for
8347 it, or else return BITS_PER_WORD if the node actually turns out to
8348 be an ERROR_MARK node. */
8350 static inline unsigned
8351 simple_type_align_in_bits (type)
8352 tree type;
8354 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
8357 static inline unsigned
8358 simple_decl_align_in_bits (decl)
8359 tree decl;
8361 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
8364 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8365 node, return the size in bits for the type if it is a constant, or else
8366 return the alignment for the type if the type's size is not constant, or
8367 else return BITS_PER_WORD if the type actually turns out to be an
8368 ERROR_MARK node. */
8370 static inline unsigned HOST_WIDE_INT
8371 simple_type_size_in_bits (type)
8372 tree type;
8375 if (TREE_CODE (type) == ERROR_MARK)
8376 return BITS_PER_WORD;
8377 else if (TYPE_SIZE (type) == NULL_TREE)
8378 return 0;
8379 else if (host_integerp (TYPE_SIZE (type), 1))
8380 return tree_low_cst (TYPE_SIZE (type), 1);
8381 else
8382 return TYPE_ALIGN (type);
8385 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
8386 lowest addressed byte of the "containing object" for the given FIELD_DECL,
8387 or return 0 if we are unable to determine what that offset is, either
8388 because the argument turns out to be a pointer to an ERROR_MARK node, or
8389 because the offset is actually variable. (We can't handle the latter case
8390 just yet). */
8392 static HOST_WIDE_INT
8393 field_byte_offset (decl)
8394 tree decl;
8396 unsigned int type_align_in_bits;
8397 unsigned int decl_align_in_bits;
8398 unsigned HOST_WIDE_INT type_size_in_bits;
8399 HOST_WIDE_INT object_offset_in_bits;
8400 tree type;
8401 tree field_size_tree;
8402 HOST_WIDE_INT bitpos_int;
8403 HOST_WIDE_INT deepest_bitpos;
8404 unsigned HOST_WIDE_INT field_size_in_bits;
8406 if (TREE_CODE (decl) == ERROR_MARK)
8407 return 0;
8408 else if (TREE_CODE (decl) != FIELD_DECL)
8409 abort ();
8411 type = field_type (decl);
8412 field_size_tree = DECL_SIZE (decl);
8414 /* The size could be unspecified if there was an error, or for
8415 a flexible array member. */
8416 if (! field_size_tree)
8417 field_size_tree = bitsize_zero_node;
8419 /* We cannot yet cope with fields whose positions are variable, so
8420 for now, when we see such things, we simply return 0. Someday, we may
8421 be able to handle such cases, but it will be damn difficult. */
8422 if (! host_integerp (bit_position (decl), 0))
8423 return 0;
8425 bitpos_int = int_bit_position (decl);
8427 /* If we don't know the size of the field, pretend it's a full word. */
8428 if (host_integerp (field_size_tree, 1))
8429 field_size_in_bits = tree_low_cst (field_size_tree, 1);
8430 else
8431 field_size_in_bits = BITS_PER_WORD;
8433 type_size_in_bits = simple_type_size_in_bits (type);
8434 type_align_in_bits = simple_type_align_in_bits (type);
8435 decl_align_in_bits = simple_decl_align_in_bits (decl);
8437 /* The GCC front-end doesn't make any attempt to keep track of the starting
8438 bit offset (relative to the start of the containing structure type) of the
8439 hypothetical "containing object" for a bit-field. Thus, when computing
8440 the byte offset value for the start of the "containing object" of a
8441 bit-field, we must deduce this information on our own. This can be rather
8442 tricky to do in some cases. For example, handling the following structure
8443 type definition when compiling for an i386/i486 target (which only aligns
8444 long long's to 32-bit boundaries) can be very tricky:
8446 struct S { int field1; long long field2:31; };
8448 Fortunately, there is a simple rule-of-thumb which can be used in such
8449 cases. When compiling for an i386/i486, GCC will allocate 8 bytes for the
8450 structure shown above. It decides to do this based upon one simple rule
8451 for bit-field allocation. GCC allocates each "containing object" for each
8452 bit-field at the first (i.e. lowest addressed) legitimate alignment
8453 boundary (based upon the required minimum alignment for the declared type
8454 of the field) which it can possibly use, subject to the condition that
8455 there is still enough available space remaining in the containing object
8456 (when allocated at the selected point) to fully accommodate all of the
8457 bits of the bit-field itself.
8459 This simple rule makes it obvious why GCC allocates 8 bytes for each
8460 object of the structure type shown above. When looking for a place to
8461 allocate the "containing object" for `field2', the compiler simply tries
8462 to allocate a 64-bit "containing object" at each successive 32-bit
8463 boundary (starting at zero) until it finds a place to allocate that 64-
8464 bit field such that at least 31 contiguous (and previously unallocated)
8465 bits remain within that selected 64 bit field. (As it turns out, for the
8466 example above, the compiler finds it is OK to allocate the "containing
8467 object" 64-bit field at bit-offset zero within the structure type.)
8469 Here we attempt to work backwards from the limited set of facts we're
8470 given, and we try to deduce from those facts, where GCC must have believed
8471 that the containing object started (within the structure type). The value
8472 we deduce is then used (by the callers of this routine) to generate
8473 DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
8474 and, in the case of DW_AT_location, regular fields as well). */
8476 /* Figure out the bit-distance from the start of the structure to the
8477 "deepest" bit of the bit-field. */
8478 deepest_bitpos = bitpos_int + field_size_in_bits;
8480 /* This is the tricky part. Use some fancy footwork to deduce where the
8481 lowest addressed bit of the containing object must be. */
8482 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
8484 /* Round up to type_align by default. This works best for bitfields. */
8485 object_offset_in_bits += type_align_in_bits - 1;
8486 object_offset_in_bits /= type_align_in_bits;
8487 object_offset_in_bits *= type_align_in_bits;
8489 if (object_offset_in_bits > bitpos_int)
8491 /* Sigh, the decl must be packed. */
8492 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
8494 /* Round up to decl_align instead. */
8495 object_offset_in_bits += decl_align_in_bits - 1;
8496 object_offset_in_bits /= decl_align_in_bits;
8497 object_offset_in_bits *= decl_align_in_bits;
8500 return object_offset_in_bits / BITS_PER_UNIT;
8503 /* The following routines define various Dwarf attributes and any data
8504 associated with them. */
8506 /* Add a location description attribute value to a DIE.
8508 This emits location attributes suitable for whole variables and
8509 whole parameters. Note that the location attributes for struct fields are
8510 generated by the routine `data_member_location_attribute' below. */
8512 static void
8513 add_AT_location_description (die, attr_kind, rtl)
8514 dw_die_ref die;
8515 enum dwarf_attribute attr_kind;
8516 rtx rtl;
8518 dw_loc_descr_ref descr = loc_descriptor (rtl);
8520 if (descr != 0)
8521 add_AT_loc (die, attr_kind, descr);
8524 /* Attach the specialized form of location attribute used for data members of
8525 struct and union types. In the special case of a FIELD_DECL node which
8526 represents a bit-field, the "offset" part of this special location
8527 descriptor must indicate the distance in bytes from the lowest-addressed
8528 byte of the containing struct or union type to the lowest-addressed byte of
8529 the "containing object" for the bit-field. (See the `field_byte_offset'
8530 function above).
8532 For any given bit-field, the "containing object" is a hypothetical object
8533 (of some integral or enum type) within which the given bit-field lives. The
8534 type of this hypothetical "containing object" is always the same as the
8535 declared type of the individual bit-field itself (for GCC anyway... the
8536 DWARF spec doesn't actually mandate this). Note that it is the size (in
8537 bytes) of the hypothetical "containing object" which will be given in the
8538 DW_AT_byte_size attribute for this bit-field. (See the
8539 `byte_size_attribute' function below.) It is also used when calculating the
8540 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
8541 function below.) */
8543 static void
8544 add_data_member_location_attribute (die, decl)
8545 dw_die_ref die;
8546 tree decl;
8548 long offset;
8549 dw_loc_descr_ref loc_descr = 0;
8551 if (TREE_CODE (decl) == TREE_VEC)
8553 /* We're working on the TAG_inheritance for a base class. */
8554 if (TREE_VIA_VIRTUAL (decl) && is_cxx ())
8556 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
8557 aren't at a fixed offset from all (sub)objects of the same
8558 type. We need to extract the appropriate offset from our
8559 vtable. The following dwarf expression means
8561 BaseAddr = ObAddr + *((*ObAddr) - Offset)
8563 This is specific to the V3 ABI, of course. */
8565 dw_loc_descr_ref tmp;
8567 /* Make a copy of the object address. */
8568 tmp = new_loc_descr (DW_OP_dup, 0, 0);
8569 add_loc_descr (&loc_descr, tmp);
8571 /* Extract the vtable address. */
8572 tmp = new_loc_descr (DW_OP_deref, 0, 0);
8573 add_loc_descr (&loc_descr, tmp);
8575 /* Calculate the address of the offset. */
8576 offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
8577 if (offset >= 0)
8578 abort ();
8580 tmp = int_loc_descriptor (-offset);
8581 add_loc_descr (&loc_descr, tmp);
8582 tmp = new_loc_descr (DW_OP_minus, 0, 0);
8583 add_loc_descr (&loc_descr, tmp);
8585 /* Extract the offset. */
8586 tmp = new_loc_descr (DW_OP_deref, 0, 0);
8587 add_loc_descr (&loc_descr, tmp);
8589 /* Add it to the object address. */
8590 tmp = new_loc_descr (DW_OP_plus, 0, 0);
8591 add_loc_descr (&loc_descr, tmp);
8593 else
8594 offset = tree_low_cst (BINFO_OFFSET (decl), 0);
8596 else
8597 offset = field_byte_offset (decl);
8599 if (! loc_descr)
8601 enum dwarf_location_atom op;
8603 /* The DWARF2 standard says that we should assume that the structure
8604 address is already on the stack, so we can specify a structure field
8605 address by using DW_OP_plus_uconst. */
8607 #ifdef MIPS_DEBUGGING_INFO
8608 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
8609 operator correctly. It works only if we leave the offset on the
8610 stack. */
8611 op = DW_OP_constu;
8612 #else
8613 op = DW_OP_plus_uconst;
8614 #endif
8616 loc_descr = new_loc_descr (op, offset, 0);
8619 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
8622 /* Attach an DW_AT_const_value attribute for a variable or a parameter which
8623 does not have a "location" either in memory or in a register. These
8624 things can arise in GNU C when a constant is passed as an actual parameter
8625 to an inlined function. They can also arise in C++ where declared
8626 constants do not necessarily get memory "homes". */
8628 static void
8629 add_const_value_attribute (die, rtl)
8630 dw_die_ref die;
8631 rtx rtl;
8633 switch (GET_CODE (rtl))
8635 case CONST_INT:
8636 /* Note that a CONST_INT rtx could represent either an integer
8637 or a floating-point constant. A CONST_INT is used whenever
8638 the constant will fit into a single word. In all such
8639 cases, the original mode of the constant value is wiped
8640 out, and the CONST_INT rtx is assigned VOIDmode. */
8642 HOST_WIDE_INT val = INTVAL (rtl);
8644 /* ??? We really should be using HOST_WIDE_INT throughout. */
8645 if (val < 0 && (long) val == val)
8646 add_AT_int (die, DW_AT_const_value, (long) val);
8647 else if ((unsigned long) val == (unsigned HOST_WIDE_INT) val)
8648 add_AT_unsigned (die, DW_AT_const_value, (unsigned long) val);
8649 else
8651 #if HOST_BITS_PER_LONG * 2 == HOST_BITS_PER_WIDE_INT
8652 add_AT_long_long (die, DW_AT_const_value,
8653 val >> HOST_BITS_PER_LONG, val);
8654 #else
8655 abort ();
8656 #endif
8659 break;
8661 case CONST_DOUBLE:
8662 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
8663 floating-point constant. A CONST_DOUBLE is used whenever the
8664 constant requires more than one word in order to be adequately
8665 represented. We output CONST_DOUBLEs as blocks. */
8667 enum machine_mode mode = GET_MODE (rtl);
8669 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
8671 unsigned length = GET_MODE_SIZE (mode) / 4;
8672 long *array = (long *) xmalloc (sizeof (long) * length);
8673 REAL_VALUE_TYPE rv;
8675 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
8676 switch (mode)
8678 case SFmode:
8679 REAL_VALUE_TO_TARGET_SINGLE (rv, array[0]);
8680 break;
8682 case DFmode:
8683 REAL_VALUE_TO_TARGET_DOUBLE (rv, array);
8684 break;
8686 case XFmode:
8687 case TFmode:
8688 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, array);
8689 break;
8691 default:
8692 abort ();
8695 add_AT_float (die, DW_AT_const_value, length, array);
8697 else
8699 /* ??? We really should be using HOST_WIDE_INT throughout. */
8700 if (HOST_BITS_PER_LONG != HOST_BITS_PER_WIDE_INT)
8701 abort ();
8703 add_AT_long_long (die, DW_AT_const_value,
8704 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
8707 break;
8709 case CONST_STRING:
8710 add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
8711 break;
8713 case SYMBOL_REF:
8714 case LABEL_REF:
8715 case CONST:
8716 add_AT_addr (die, DW_AT_const_value, rtl);
8717 VARRAY_PUSH_RTX (used_rtx_varray, rtl);
8718 break;
8720 case PLUS:
8721 /* In cases where an inlined instance of an inline function is passed
8722 the address of an `auto' variable (which is local to the caller) we
8723 can get a situation where the DECL_RTL of the artificial local
8724 variable (for the inlining) which acts as a stand-in for the
8725 corresponding formal parameter (of the inline function) will look
8726 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
8727 exactly a compile-time constant expression, but it isn't the address
8728 of the (artificial) local variable either. Rather, it represents the
8729 *value* which the artificial local variable always has during its
8730 lifetime. We currently have no way to represent such quasi-constant
8731 values in Dwarf, so for now we just punt and generate nothing. */
8732 break;
8734 default:
8735 /* No other kinds of rtx should be possible here. */
8736 abort ();
8741 static rtx
8742 rtl_for_decl_location (decl)
8743 tree decl;
8745 rtx rtl;
8747 /* Here we have to decide where we are going to say the parameter "lives"
8748 (as far as the debugger is concerned). We only have a couple of
8749 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
8751 DECL_RTL normally indicates where the parameter lives during most of the
8752 activation of the function. If optimization is enabled however, this
8753 could be either NULL or else a pseudo-reg. Both of those cases indicate
8754 that the parameter doesn't really live anywhere (as far as the code
8755 generation parts of GCC are concerned) during most of the function's
8756 activation. That will happen (for example) if the parameter is never
8757 referenced within the function.
8759 We could just generate a location descriptor here for all non-NULL
8760 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
8761 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
8762 where DECL_RTL is NULL or is a pseudo-reg.
8764 Note however that we can only get away with using DECL_INCOMING_RTL as
8765 a backup substitute for DECL_RTL in certain limited cases. In cases
8766 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
8767 we can be sure that the parameter was passed using the same type as it is
8768 declared to have within the function, and that its DECL_INCOMING_RTL
8769 points us to a place where a value of that type is passed.
8771 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
8772 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
8773 because in these cases DECL_INCOMING_RTL points us to a value of some
8774 type which is *different* from the type of the parameter itself. Thus,
8775 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
8776 such cases, the debugger would end up (for example) trying to fetch a
8777 `float' from a place which actually contains the first part of a
8778 `double'. That would lead to really incorrect and confusing
8779 output at debug-time.
8781 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
8782 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
8783 are a couple of exceptions however. On little-endian machines we can
8784 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
8785 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
8786 an integral type that is smaller than TREE_TYPE (decl). These cases arise
8787 when (on a little-endian machine) a non-prototyped function has a
8788 parameter declared to be of type `short' or `char'. In such cases,
8789 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
8790 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
8791 passed `int' value. If the debugger then uses that address to fetch
8792 a `short' or a `char' (on a little-endian machine) the result will be
8793 the correct data, so we allow for such exceptional cases below.
8795 Note that our goal here is to describe the place where the given formal
8796 parameter lives during most of the function's activation (i.e. between the
8797 end of the prologue and the start of the epilogue). We'll do that as best
8798 as we can. Note however that if the given formal parameter is modified
8799 sometime during the execution of the function, then a stack backtrace (at
8800 debug-time) will show the function as having been called with the *new*
8801 value rather than the value which was originally passed in. This happens
8802 rarely enough that it is not a major problem, but it *is* a problem, and
8803 I'd like to fix it.
8805 A future version of dwarf2out.c may generate two additional attributes for
8806 any given DW_TAG_formal_parameter DIE which will describe the "passed
8807 type" and the "passed location" for the given formal parameter in addition
8808 to the attributes we now generate to indicate the "declared type" and the
8809 "active location" for each parameter. This additional set of attributes
8810 could be used by debuggers for stack backtraces. Separately, note that
8811 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
8812 This happens (for example) for inlined-instances of inline function formal
8813 parameters which are never referenced. This really shouldn't be
8814 happening. All PARM_DECL nodes should get valid non-NULL
8815 DECL_INCOMING_RTL values, but integrate.c doesn't currently generate these
8816 values for inlined instances of inline function parameters, so when we see
8817 such cases, we are just out-of-luck for the time being (until integrate.c
8818 gets fixed). */
8820 /* Use DECL_RTL as the "location" unless we find something better. */
8821 rtl = DECL_RTL_IF_SET (decl);
8823 /* When generating abstract instances, ignore everything except
8824 constants and symbols living in memory. */
8825 if (! reload_completed)
8827 if (rtl
8828 && (CONSTANT_P (rtl)
8829 || (GET_CODE (rtl) == MEM
8830 && CONSTANT_P (XEXP (rtl, 0)))))
8831 return rtl;
8832 rtl = NULL_RTX;
8834 else if (TREE_CODE (decl) == PARM_DECL)
8836 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
8838 tree declared_type = type_main_variant (TREE_TYPE (decl));
8839 tree passed_type = type_main_variant (DECL_ARG_TYPE (decl));
8841 /* This decl represents a formal parameter which was optimized out.
8842 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
8843 all cases where (rtl == NULL_RTX) just below. */
8844 if (declared_type == passed_type)
8845 rtl = DECL_INCOMING_RTL (decl);
8846 else if (! BYTES_BIG_ENDIAN
8847 && TREE_CODE (declared_type) == INTEGER_TYPE
8848 && (GET_MODE_SIZE (TYPE_MODE (declared_type))
8849 <= GET_MODE_SIZE (TYPE_MODE (passed_type))))
8850 rtl = DECL_INCOMING_RTL (decl);
8853 /* If the parm was passed in registers, but lives on the stack, then
8854 make a big endian correction if the mode of the type of the
8855 parameter is not the same as the mode of the rtl. */
8856 /* ??? This is the same series of checks that are made in dbxout.c before
8857 we reach the big endian correction code there. It isn't clear if all
8858 of these checks are necessary here, but keeping them all is the safe
8859 thing to do. */
8860 else if (GET_CODE (rtl) == MEM
8861 && XEXP (rtl, 0) != const0_rtx
8862 && ! CONSTANT_P (XEXP (rtl, 0))
8863 /* Not passed in memory. */
8864 && GET_CODE (DECL_INCOMING_RTL (decl)) != MEM
8865 /* Not passed by invisible reference. */
8866 && (GET_CODE (XEXP (rtl, 0)) != REG
8867 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
8868 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
8869 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
8870 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
8871 #endif
8873 /* Big endian correction check. */
8874 && BYTES_BIG_ENDIAN
8875 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
8876 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
8877 < UNITS_PER_WORD))
8879 int offset = (UNITS_PER_WORD
8880 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
8882 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
8883 plus_constant (XEXP (rtl, 0), offset));
8887 if (rtl != NULL_RTX)
8889 rtl = eliminate_regs (rtl, 0, NULL_RTX);
8890 #ifdef LEAF_REG_REMAP
8891 if (current_function_uses_only_leaf_regs)
8892 leaf_renumber_regs_insn (rtl);
8893 #endif
8896 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
8897 and will have been substituted directly into all expressions that use it.
8898 C does not have such a concept, but C++ and other languages do. */
8899 else if (TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
8900 rtl = expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
8901 EXPAND_INITIALIZER);
8903 return rtl;
8906 /* Generate *either* an DW_AT_location attribute or else an DW_AT_const_value
8907 data attribute for a variable or a parameter. We generate the
8908 DW_AT_const_value attribute only in those cases where the given variable
8909 or parameter does not have a true "location" either in memory or in a
8910 register. This can happen (for example) when a constant is passed as an
8911 actual argument in a call to an inline function. (It's possible that
8912 these things can crop up in other ways also.) Note that one type of
8913 constant value which can be passed into an inlined function is a constant
8914 pointer. This can happen for example if an actual argument in an inlined
8915 function call evaluates to a compile-time constant address. */
8917 static void
8918 add_location_or_const_value_attribute (die, decl)
8919 dw_die_ref die;
8920 tree decl;
8922 rtx rtl;
8924 if (TREE_CODE (decl) == ERROR_MARK)
8925 return;
8926 else if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
8927 abort ();
8929 rtl = rtl_for_decl_location (decl);
8930 if (rtl == NULL_RTX)
8931 return;
8933 /* If we don't look past the constant pool, we risk emitting a
8934 reference to a constant pool entry that isn't referenced from
8935 code, and thus is not emitted. */
8936 rtl = avoid_constant_pool_reference (rtl);
8938 switch (GET_CODE (rtl))
8940 case ADDRESSOF:
8941 /* The address of a variable that was optimized away; don't emit
8942 anything. */
8943 break;
8945 case CONST_INT:
8946 case CONST_DOUBLE:
8947 case CONST_STRING:
8948 case SYMBOL_REF:
8949 case LABEL_REF:
8950 case CONST:
8951 case PLUS:
8952 /* DECL_RTL could be (plus (reg ...) (const_int ...)) */
8953 add_const_value_attribute (die, rtl);
8954 break;
8956 case MEM:
8957 case REG:
8958 case SUBREG:
8959 case CONCAT:
8960 add_AT_location_description (die, DW_AT_location, rtl);
8961 break;
8963 default:
8964 abort ();
8968 /* If we don't have a copy of this variable in memory for some reason (such
8969 as a C++ member constant that doesn't have an out-of-line definition),
8970 we should tell the debugger about the constant value. */
8972 static void
8973 tree_add_const_value_attribute (var_die, decl)
8974 dw_die_ref var_die;
8975 tree decl;
8977 tree init = DECL_INITIAL (decl);
8978 tree type = TREE_TYPE (decl);
8980 if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init
8981 && initializer_constant_valid_p (init, type) == null_pointer_node)
8982 /* OK */;
8983 else
8984 return;
8986 switch (TREE_CODE (type))
8988 case INTEGER_TYPE:
8989 if (host_integerp (init, 0))
8990 add_AT_unsigned (var_die, DW_AT_const_value,
8991 tree_low_cst (init, 0));
8992 else
8993 add_AT_long_long (var_die, DW_AT_const_value,
8994 TREE_INT_CST_HIGH (init),
8995 TREE_INT_CST_LOW (init));
8996 break;
8998 default:;
9002 /* Generate an DW_AT_name attribute given some string value to be included as
9003 the value of the attribute. */
9005 static inline void
9006 add_name_attribute (die, name_string)
9007 dw_die_ref die;
9008 const char *name_string;
9010 if (name_string != NULL && *name_string != 0)
9012 if (demangle_name_func)
9013 name_string = (*demangle_name_func) (name_string);
9015 add_AT_string (die, DW_AT_name, name_string);
9019 /* Given a tree node describing an array bound (either lower or upper) output
9020 a representation for that bound. */
9022 static void
9023 add_bound_info (subrange_die, bound_attr, bound)
9024 dw_die_ref subrange_die;
9025 enum dwarf_attribute bound_attr;
9026 tree bound;
9028 switch (TREE_CODE (bound))
9030 case ERROR_MARK:
9031 return;
9033 /* All fixed-bounds are represented by INTEGER_CST nodes. */
9034 case INTEGER_CST:
9035 if (! host_integerp (bound, 0)
9036 || (bound_attr == DW_AT_lower_bound
9037 && (((is_c_family () || is_java ()) && integer_zerop (bound))
9038 || (is_fortran () && integer_onep (bound)))))
9039 /* use the default */
9041 else
9042 add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
9043 break;
9045 case CONVERT_EXPR:
9046 case NOP_EXPR:
9047 case NON_LVALUE_EXPR:
9048 case VIEW_CONVERT_EXPR:
9049 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
9050 break;
9052 case SAVE_EXPR:
9053 /* If optimization is turned on, the SAVE_EXPRs that describe how to
9054 access the upper bound values may be bogus. If they refer to a
9055 register, they may only describe how to get at these values at the
9056 points in the generated code right after they have just been
9057 computed. Worse yet, in the typical case, the upper bound values
9058 will not even *be* computed in the optimized code (though the
9059 number of elements will), so these SAVE_EXPRs are entirely
9060 bogus. In order to compensate for this fact, we check here to see
9061 if optimization is enabled, and if so, we don't add an attribute
9062 for the (unknown and unknowable) upper bound. This should not
9063 cause too much trouble for existing (stupid?) debuggers because
9064 they have to deal with empty upper bounds location descriptions
9065 anyway in order to be able to deal with incomplete array types.
9066 Of course an intelligent debugger (GDB?) should be able to
9067 comprehend that a missing upper bound specification in an array
9068 type used for a storage class `auto' local array variable
9069 indicates that the upper bound is both unknown (at compile- time)
9070 and unknowable (at run-time) due to optimization.
9072 We assume that a MEM rtx is safe because gcc wouldn't put the
9073 value there unless it was going to be used repeatedly in the
9074 function, i.e. for cleanups. */
9075 if (SAVE_EXPR_RTL (bound)
9076 && (! optimize || GET_CODE (SAVE_EXPR_RTL (bound)) == MEM))
9078 dw_die_ref ctx = lookup_decl_die (current_function_decl);
9079 dw_die_ref decl_die = new_die (DW_TAG_variable, ctx, bound);
9080 rtx loc = SAVE_EXPR_RTL (bound);
9082 /* If the RTL for the SAVE_EXPR is memory, handle the case where
9083 it references an outer function's frame. */
9084 if (GET_CODE (loc) == MEM)
9086 rtx new_addr = fix_lexical_addr (XEXP (loc, 0), bound);
9088 if (XEXP (loc, 0) != new_addr)
9089 loc = gen_rtx_MEM (GET_MODE (loc), new_addr);
9092 add_AT_flag (decl_die, DW_AT_artificial, 1);
9093 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
9094 add_AT_location_description (decl_die, DW_AT_location, loc);
9095 add_AT_die_ref (subrange_die, bound_attr, decl_die);
9098 /* Else leave out the attribute. */
9099 break;
9101 case VAR_DECL:
9102 case PARM_DECL:
9104 dw_die_ref decl_die = lookup_decl_die (bound);
9106 /* ??? Can this happen, or should the variable have been bound
9107 first? Probably it can, since I imagine that we try to create
9108 the types of parameters in the order in which they exist in
9109 the list, and won't have created a forward reference to a
9110 later parameter. */
9111 if (decl_die != NULL)
9112 add_AT_die_ref (subrange_die, bound_attr, decl_die);
9113 break;
9116 default:
9118 /* Otherwise try to create a stack operation procedure to
9119 evaluate the value of the array bound. */
9121 dw_die_ref ctx, decl_die;
9122 dw_loc_descr_ref loc;
9124 loc = loc_descriptor_from_tree (bound, 0);
9125 if (loc == NULL)
9126 break;
9128 if (current_function_decl == 0)
9129 ctx = comp_unit_die;
9130 else
9131 ctx = lookup_decl_die (current_function_decl);
9133 /* If we weren't able to find a context, it's most likely the case
9134 that we are processing the return type of the function. So
9135 make a SAVE_EXPR to point to it and have the limbo DIE code
9136 find the proper die. The save_expr function doesn't always
9137 make a SAVE_EXPR, so do it ourselves. */
9138 if (ctx == 0)
9139 bound = build (SAVE_EXPR, TREE_TYPE (bound), bound,
9140 current_function_decl, NULL_TREE);
9142 decl_die = new_die (DW_TAG_variable, ctx, bound);
9143 add_AT_flag (decl_die, DW_AT_artificial, 1);
9144 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
9145 add_AT_loc (decl_die, DW_AT_location, loc);
9147 add_AT_die_ref (subrange_die, bound_attr, decl_die);
9148 break;
9153 /* Note that the block of subscript information for an array type also
9154 includes information about the element type of type given array type. */
9156 static void
9157 add_subscript_info (type_die, type)
9158 dw_die_ref type_die;
9159 tree type;
9161 #ifndef MIPS_DEBUGGING_INFO
9162 unsigned dimension_number;
9163 #endif
9164 tree lower, upper;
9165 dw_die_ref subrange_die;
9167 /* The GNU compilers represent multidimensional array types as sequences of
9168 one dimensional array types whose element types are themselves array
9169 types. Here we squish that down, so that each multidimensional array
9170 type gets only one array_type DIE in the Dwarf debugging info. The draft
9171 Dwarf specification say that we are allowed to do this kind of
9172 compression in C (because there is no difference between an array or
9173 arrays and a multidimensional array in C) but for other source languages
9174 (e.g. Ada) we probably shouldn't do this. */
9176 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
9177 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
9178 We work around this by disabling this feature. See also
9179 gen_array_type_die. */
9180 #ifndef MIPS_DEBUGGING_INFO
9181 for (dimension_number = 0;
9182 TREE_CODE (type) == ARRAY_TYPE;
9183 type = TREE_TYPE (type), dimension_number++)
9184 #endif
9186 tree domain = TYPE_DOMAIN (type);
9188 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
9189 and (in GNU C only) variable bounds. Handle all three forms
9190 here. */
9191 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
9192 if (domain)
9194 /* We have an array type with specified bounds. */
9195 lower = TYPE_MIN_VALUE (domain);
9196 upper = TYPE_MAX_VALUE (domain);
9198 /* define the index type. */
9199 if (TREE_TYPE (domain))
9201 /* ??? This is probably an Ada unnamed subrange type. Ignore the
9202 TREE_TYPE field. We can't emit debug info for this
9203 because it is an unnamed integral type. */
9204 if (TREE_CODE (domain) == INTEGER_TYPE
9205 && TYPE_NAME (domain) == NULL_TREE
9206 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
9207 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
9209 else
9210 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
9211 type_die);
9214 /* ??? If upper is NULL, the array has unspecified length,
9215 but it does have a lower bound. This happens with Fortran
9216 dimension arr(N:*)
9217 Since the debugger is definitely going to need to know N
9218 to produce useful results, go ahead and output the lower
9219 bound solo, and hope the debugger can cope. */
9221 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
9222 if (upper)
9223 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
9226 /* Otherwise we have an array type with an unspecified length. The
9227 DWARF-2 spec does not say how to handle this; let's just leave out the
9228 bounds. */
9232 static void
9233 add_byte_size_attribute (die, tree_node)
9234 dw_die_ref die;
9235 tree tree_node;
9237 unsigned size;
9239 switch (TREE_CODE (tree_node))
9241 case ERROR_MARK:
9242 size = 0;
9243 break;
9244 case ENUMERAL_TYPE:
9245 case RECORD_TYPE:
9246 case UNION_TYPE:
9247 case QUAL_UNION_TYPE:
9248 size = int_size_in_bytes (tree_node);
9249 break;
9250 case FIELD_DECL:
9251 /* For a data member of a struct or union, the DW_AT_byte_size is
9252 generally given as the number of bytes normally allocated for an
9253 object of the *declared* type of the member itself. This is true
9254 even for bit-fields. */
9255 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
9256 break;
9257 default:
9258 abort ();
9261 /* Note that `size' might be -1 when we get to this point. If it is, that
9262 indicates that the byte size of the entity in question is variable. We
9263 have no good way of expressing this fact in Dwarf at the present time,
9264 so just let the -1 pass on through. */
9265 add_AT_unsigned (die, DW_AT_byte_size, size);
9268 /* For a FIELD_DECL node which represents a bit-field, output an attribute
9269 which specifies the distance in bits from the highest order bit of the
9270 "containing object" for the bit-field to the highest order bit of the
9271 bit-field itself.
9273 For any given bit-field, the "containing object" is a hypothetical object
9274 (of some integral or enum type) within which the given bit-field lives. The
9275 type of this hypothetical "containing object" is always the same as the
9276 declared type of the individual bit-field itself. The determination of the
9277 exact location of the "containing object" for a bit-field is rather
9278 complicated. It's handled by the `field_byte_offset' function (above).
9280 Note that it is the size (in bytes) of the hypothetical "containing object"
9281 which will be given in the DW_AT_byte_size attribute for this bit-field.
9282 (See `byte_size_attribute' above). */
9284 static inline void
9285 add_bit_offset_attribute (die, decl)
9286 dw_die_ref die;
9287 tree decl;
9289 HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
9290 tree type = DECL_BIT_FIELD_TYPE (decl);
9291 HOST_WIDE_INT bitpos_int;
9292 HOST_WIDE_INT highest_order_object_bit_offset;
9293 HOST_WIDE_INT highest_order_field_bit_offset;
9294 HOST_WIDE_INT unsigned bit_offset;
9296 /* Must be a field and a bit field. */
9297 if (!type
9298 || TREE_CODE (decl) != FIELD_DECL)
9299 abort ();
9301 /* We can't yet handle bit-fields whose offsets are variable, so if we
9302 encounter such things, just return without generating any attribute
9303 whatsoever. Likewise for variable or too large size. */
9304 if (! host_integerp (bit_position (decl), 0)
9305 || ! host_integerp (DECL_SIZE (decl), 1))
9306 return;
9308 bitpos_int = int_bit_position (decl);
9310 /* Note that the bit offset is always the distance (in bits) from the
9311 highest-order bit of the "containing object" to the highest-order bit of
9312 the bit-field itself. Since the "high-order end" of any object or field
9313 is different on big-endian and little-endian machines, the computation
9314 below must take account of these differences. */
9315 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
9316 highest_order_field_bit_offset = bitpos_int;
9318 if (! BYTES_BIG_ENDIAN)
9320 highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
9321 highest_order_object_bit_offset += simple_type_size_in_bits (type);
9324 bit_offset
9325 = (! BYTES_BIG_ENDIAN
9326 ? highest_order_object_bit_offset - highest_order_field_bit_offset
9327 : highest_order_field_bit_offset - highest_order_object_bit_offset);
9329 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
9332 /* For a FIELD_DECL node which represents a bit field, output an attribute
9333 which specifies the length in bits of the given field. */
9335 static inline void
9336 add_bit_size_attribute (die, decl)
9337 dw_die_ref die;
9338 tree decl;
9340 /* Must be a field and a bit field. */
9341 if (TREE_CODE (decl) != FIELD_DECL
9342 || ! DECL_BIT_FIELD_TYPE (decl))
9343 abort ();
9345 if (host_integerp (DECL_SIZE (decl), 1))
9346 add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
9349 /* If the compiled language is ANSI C, then add a 'prototyped'
9350 attribute, if arg types are given for the parameters of a function. */
9352 static inline void
9353 add_prototyped_attribute (die, func_type)
9354 dw_die_ref die;
9355 tree func_type;
9357 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
9358 && TYPE_ARG_TYPES (func_type) != NULL)
9359 add_AT_flag (die, DW_AT_prototyped, 1);
9362 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
9363 by looking in either the type declaration or object declaration
9364 equate table. */
9366 static inline void
9367 add_abstract_origin_attribute (die, origin)
9368 dw_die_ref die;
9369 tree origin;
9371 dw_die_ref origin_die = NULL;
9373 if (TREE_CODE (origin) != FUNCTION_DECL)
9375 /* We may have gotten separated from the block for the inlined
9376 function, if we're in an exception handler or some such; make
9377 sure that the abstract function has been written out.
9379 Doing this for nested functions is wrong, however; functions are
9380 distinct units, and our context might not even be inline. */
9381 tree fn = origin;
9383 if (TYPE_P (fn))
9384 fn = TYPE_STUB_DECL (fn);
9386 fn = decl_function_context (fn);
9387 if (fn)
9388 dwarf2out_abstract_function (fn);
9391 if (DECL_P (origin))
9392 origin_die = lookup_decl_die (origin);
9393 else if (TYPE_P (origin))
9394 origin_die = lookup_type_die (origin);
9396 if (origin_die == NULL)
9397 abort ();
9399 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
9402 /* We do not currently support the pure_virtual attribute. */
9404 static inline void
9405 add_pure_or_virtual_attribute (die, func_decl)
9406 dw_die_ref die;
9407 tree func_decl;
9409 if (DECL_VINDEX (func_decl))
9411 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
9413 if (host_integerp (DECL_VINDEX (func_decl), 0))
9414 add_AT_loc (die, DW_AT_vtable_elem_location,
9415 new_loc_descr (DW_OP_constu,
9416 tree_low_cst (DECL_VINDEX (func_decl), 0),
9417 0));
9419 /* GNU extension: Record what type this method came from originally. */
9420 if (debug_info_level > DINFO_LEVEL_TERSE)
9421 add_AT_die_ref (die, DW_AT_containing_type,
9422 lookup_type_die (DECL_CONTEXT (func_decl)));
9426 /* Add source coordinate attributes for the given decl. */
9428 static void
9429 add_src_coords_attributes (die, decl)
9430 dw_die_ref die;
9431 tree decl;
9433 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
9435 add_AT_unsigned (die, DW_AT_decl_file, file_index);
9436 add_AT_unsigned (die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
9439 /* Add an DW_AT_name attribute and source coordinate attribute for the
9440 given decl, but only if it actually has a name. */
9442 static void
9443 add_name_and_src_coords_attributes (die, decl)
9444 dw_die_ref die;
9445 tree decl;
9447 tree decl_name;
9449 decl_name = DECL_NAME (decl);
9450 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
9452 add_name_attribute (die, dwarf2_name (decl, 0));
9453 if (! DECL_ARTIFICIAL (decl))
9454 add_src_coords_attributes (die, decl);
9456 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
9457 && TREE_PUBLIC (decl)
9458 && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
9459 && !DECL_ABSTRACT (decl))
9460 add_AT_string (die, DW_AT_MIPS_linkage_name,
9461 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
9464 #ifdef VMS_DEBUGGING_INFO
9465 /* Get the function's name, as described by its RTL. This may be different
9466 from the DECL_NAME name used in the source file. */
9467 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
9469 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
9470 XEXP (DECL_RTL (decl), 0));
9471 VARRAY_PUSH_RTX (used_rtx_varray, XEXP (DECL_RTL (decl), 0));
9473 #endif
9476 /* Push a new declaration scope. */
9478 static void
9479 push_decl_scope (scope)
9480 tree scope;
9482 VARRAY_PUSH_TREE (decl_scope_table, scope);
9485 /* Pop a declaration scope. */
9487 static inline void
9488 pop_decl_scope ()
9490 if (VARRAY_ACTIVE_SIZE (decl_scope_table) <= 0)
9491 abort ();
9493 VARRAY_POP (decl_scope_table);
9496 /* Return the DIE for the scope that immediately contains this type.
9497 Non-named types get global scope. Named types nested in other
9498 types get their containing scope if it's open, or global scope
9499 otherwise. All other types (i.e. function-local named types) get
9500 the current active scope. */
9502 static dw_die_ref
9503 scope_die_for (t, context_die)
9504 tree t;
9505 dw_die_ref context_die;
9507 dw_die_ref scope_die = NULL;
9508 tree containing_scope;
9509 int i;
9511 /* Non-types always go in the current scope. */
9512 if (! TYPE_P (t))
9513 abort ();
9515 containing_scope = TYPE_CONTEXT (t);
9517 /* Ignore namespaces for the moment. */
9518 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
9519 containing_scope = NULL_TREE;
9521 /* Ignore function type "scopes" from the C frontend. They mean that
9522 a tagged type is local to a parmlist of a function declarator, but
9523 that isn't useful to DWARF. */
9524 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
9525 containing_scope = NULL_TREE;
9527 if (containing_scope == NULL_TREE)
9528 scope_die = comp_unit_die;
9529 else if (TYPE_P (containing_scope))
9531 /* For types, we can just look up the appropriate DIE. But
9532 first we check to see if we're in the middle of emitting it
9533 so we know where the new DIE should go. */
9534 for (i = VARRAY_ACTIVE_SIZE (decl_scope_table) - 1; i >= 0; --i)
9535 if (VARRAY_TREE (decl_scope_table, i) == containing_scope)
9536 break;
9538 if (i < 0)
9540 if (debug_info_level > DINFO_LEVEL_TERSE
9541 && !TREE_ASM_WRITTEN (containing_scope))
9542 abort ();
9544 /* If none of the current dies are suitable, we get file scope. */
9545 scope_die = comp_unit_die;
9547 else
9548 scope_die = lookup_type_die (containing_scope);
9550 else
9551 scope_die = context_die;
9553 return scope_die;
9556 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
9558 static inline int
9559 local_scope_p (context_die)
9560 dw_die_ref context_die;
9562 for (; context_die; context_die = context_die->die_parent)
9563 if (context_die->die_tag == DW_TAG_inlined_subroutine
9564 || context_die->die_tag == DW_TAG_subprogram)
9565 return 1;
9567 return 0;
9570 /* Returns nonzero if CONTEXT_DIE is a class. */
9572 static inline int
9573 class_scope_p (context_die)
9574 dw_die_ref context_die;
9576 return (context_die
9577 && (context_die->die_tag == DW_TAG_structure_type
9578 || context_die->die_tag == DW_TAG_union_type));
9581 /* Many forms of DIEs require a "type description" attribute. This
9582 routine locates the proper "type descriptor" die for the type given
9583 by 'type', and adds an DW_AT_type attribute below the given die. */
9585 static void
9586 add_type_attribute (object_die, type, decl_const, decl_volatile, context_die)
9587 dw_die_ref object_die;
9588 tree type;
9589 int decl_const;
9590 int decl_volatile;
9591 dw_die_ref context_die;
9593 enum tree_code code = TREE_CODE (type);
9594 dw_die_ref type_die = NULL;
9596 /* ??? If this type is an unnamed subrange type of an integral or
9597 floating-point type, use the inner type. This is because we have no
9598 support for unnamed types in base_type_die. This can happen if this is
9599 an Ada subrange type. Correct solution is emit a subrange type die. */
9600 if ((code == INTEGER_TYPE || code == REAL_TYPE)
9601 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
9602 type = TREE_TYPE (type), code = TREE_CODE (type);
9604 if (code == ERROR_MARK
9605 /* Handle a special case. For functions whose return type is void, we
9606 generate *no* type attribute. (Note that no object may have type
9607 `void', so this only applies to function return types). */
9608 || code == VOID_TYPE)
9609 return;
9611 type_die = modified_type_die (type,
9612 decl_const || TYPE_READONLY (type),
9613 decl_volatile || TYPE_VOLATILE (type),
9614 context_die);
9616 if (type_die != NULL)
9617 add_AT_die_ref (object_die, DW_AT_type, type_die);
9620 /* Given a tree pointer to a struct, class, union, or enum type node, return
9621 a pointer to the (string) tag name for the given type, or zero if the type
9622 was declared without a tag. */
9624 static const char *
9625 type_tag (type)
9626 tree type;
9628 const char *name = 0;
9630 if (TYPE_NAME (type) != 0)
9632 tree t = 0;
9634 /* Find the IDENTIFIER_NODE for the type name. */
9635 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
9636 t = TYPE_NAME (type);
9638 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
9639 a TYPE_DECL node, regardless of whether or not a `typedef' was
9640 involved. */
9641 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
9642 && ! DECL_IGNORED_P (TYPE_NAME (type)))
9643 t = DECL_NAME (TYPE_NAME (type));
9645 /* Now get the name as a string, or invent one. */
9646 if (t != 0)
9647 name = IDENTIFIER_POINTER (t);
9650 return (name == 0 || *name == '\0') ? 0 : name;
9653 /* Return the type associated with a data member, make a special check
9654 for bit field types. */
9656 static inline tree
9657 member_declared_type (member)
9658 tree member;
9660 return (DECL_BIT_FIELD_TYPE (member)
9661 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
9664 /* Get the decl's label, as described by its RTL. This may be different
9665 from the DECL_NAME name used in the source file. */
9667 #if 0
9668 static const char *
9669 decl_start_label (decl)
9670 tree decl;
9672 rtx x;
9673 const char *fnname;
9675 x = DECL_RTL (decl);
9676 if (GET_CODE (x) != MEM)
9677 abort ();
9679 x = XEXP (x, 0);
9680 if (GET_CODE (x) != SYMBOL_REF)
9681 abort ();
9683 fnname = XSTR (x, 0);
9684 return fnname;
9686 #endif
9688 /* These routines generate the internal representation of the DIE's for
9689 the compilation unit. Debugging information is collected by walking
9690 the declaration trees passed in from dwarf2out_decl(). */
9692 static void
9693 gen_array_type_die (type, context_die)
9694 tree type;
9695 dw_die_ref context_die;
9697 dw_die_ref scope_die = scope_die_for (type, context_die);
9698 dw_die_ref array_die;
9699 tree element_type;
9701 /* ??? The SGI dwarf reader fails for array of array of enum types unless
9702 the inner array type comes before the outer array type. Thus we must
9703 call gen_type_die before we call new_die. See below also. */
9704 #ifdef MIPS_DEBUGGING_INFO
9705 gen_type_die (TREE_TYPE (type), context_die);
9706 #endif
9708 array_die = new_die (DW_TAG_array_type, scope_die, type);
9710 #if 0
9711 /* We default the array ordering. SDB will probably do
9712 the right things even if DW_AT_ordering is not present. It's not even
9713 an issue until we start to get into multidimensional arrays anyway. If
9714 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
9715 then we'll have to put the DW_AT_ordering attribute back in. (But if
9716 and when we find out that we need to put these in, we will only do so
9717 for multidimensional arrays. */
9718 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
9719 #endif
9721 #ifdef MIPS_DEBUGGING_INFO
9722 /* The SGI compilers handle arrays of unknown bound by setting
9723 AT_declaration and not emitting any subrange DIEs. */
9724 if (! TYPE_DOMAIN (type))
9725 add_AT_unsigned (array_die, DW_AT_declaration, 1);
9726 else
9727 #endif
9728 add_subscript_info (array_die, type);
9730 add_name_attribute (array_die, type_tag (type));
9731 equate_type_number_to_die (type, array_die);
9733 /* Add representation of the type of the elements of this array type. */
9734 element_type = TREE_TYPE (type);
9736 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
9737 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
9738 We work around this by disabling this feature. See also
9739 add_subscript_info. */
9740 #ifndef MIPS_DEBUGGING_INFO
9741 while (TREE_CODE (element_type) == ARRAY_TYPE)
9742 element_type = TREE_TYPE (element_type);
9744 gen_type_die (element_type, context_die);
9745 #endif
9747 add_type_attribute (array_die, element_type, 0, 0, context_die);
9750 static void
9751 gen_set_type_die (type, context_die)
9752 tree type;
9753 dw_die_ref context_die;
9755 dw_die_ref type_die
9756 = new_die (DW_TAG_set_type, scope_die_for (type, context_die), type);
9758 equate_type_number_to_die (type, type_die);
9759 add_type_attribute (type_die, TREE_TYPE (type), 0, 0, context_die);
9762 #if 0
9763 static void
9764 gen_entry_point_die (decl, context_die)
9765 tree decl;
9766 dw_die_ref context_die;
9768 tree origin = decl_ultimate_origin (decl);
9769 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
9771 if (origin != NULL)
9772 add_abstract_origin_attribute (decl_die, origin);
9773 else
9775 add_name_and_src_coords_attributes (decl_die, decl);
9776 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
9777 0, 0, context_die);
9780 if (DECL_ABSTRACT (decl))
9781 equate_decl_number_to_die (decl, decl_die);
9782 else
9783 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
9785 #endif
9787 /* Walk through the list of incomplete types again, trying once more to
9788 emit full debugging info for them. */
9790 static void
9791 retry_incomplete_types ()
9793 int i;
9795 for (i = VARRAY_ACTIVE_SIZE (incomplete_types) - 1; i >= 0; i--)
9796 gen_type_die (VARRAY_TREE (incomplete_types, i), comp_unit_die);
9799 /* Generate a DIE to represent an inlined instance of an enumeration type. */
9801 static void
9802 gen_inlined_enumeration_type_die (type, context_die)
9803 tree type;
9804 dw_die_ref context_die;
9806 dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die, type);
9808 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
9809 be incomplete and such types are not marked. */
9810 add_abstract_origin_attribute (type_die, type);
9813 /* Generate a DIE to represent an inlined instance of a structure type. */
9815 static void
9816 gen_inlined_structure_type_die (type, context_die)
9817 tree type;
9818 dw_die_ref context_die;
9820 dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die, type);
9822 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
9823 be incomplete and such types are not marked. */
9824 add_abstract_origin_attribute (type_die, type);
9827 /* Generate a DIE to represent an inlined instance of a union type. */
9829 static void
9830 gen_inlined_union_type_die (type, context_die)
9831 tree type;
9832 dw_die_ref context_die;
9834 dw_die_ref type_die = new_die (DW_TAG_union_type, context_die, type);
9836 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
9837 be incomplete and such types are not marked. */
9838 add_abstract_origin_attribute (type_die, type);
9841 /* Generate a DIE to represent an enumeration type. Note that these DIEs
9842 include all of the information about the enumeration values also. Each
9843 enumerated type name/value is listed as a child of the enumerated type
9844 DIE. */
9846 static void
9847 gen_enumeration_type_die (type, context_die)
9848 tree type;
9849 dw_die_ref context_die;
9851 dw_die_ref type_die = lookup_type_die (type);
9853 if (type_die == NULL)
9855 type_die = new_die (DW_TAG_enumeration_type,
9856 scope_die_for (type, context_die), type);
9857 equate_type_number_to_die (type, type_die);
9858 add_name_attribute (type_die, type_tag (type));
9860 else if (! TYPE_SIZE (type))
9861 return;
9862 else
9863 remove_AT (type_die, DW_AT_declaration);
9865 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
9866 given enum type is incomplete, do not generate the DW_AT_byte_size
9867 attribute or the DW_AT_element_list attribute. */
9868 if (TYPE_SIZE (type))
9870 tree link;
9872 TREE_ASM_WRITTEN (type) = 1;
9873 add_byte_size_attribute (type_die, type);
9874 if (TYPE_STUB_DECL (type) != NULL_TREE)
9875 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
9877 /* If the first reference to this type was as the return type of an
9878 inline function, then it may not have a parent. Fix this now. */
9879 if (type_die->die_parent == NULL)
9880 add_child_die (scope_die_for (type, context_die), type_die);
9882 for (link = TYPE_FIELDS (type);
9883 link != NULL; link = TREE_CHAIN (link))
9885 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
9887 add_name_attribute (enum_die,
9888 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
9890 if (host_integerp (TREE_VALUE (link), 0))
9892 if (tree_int_cst_sgn (TREE_VALUE (link)) < 0)
9893 add_AT_int (enum_die, DW_AT_const_value,
9894 tree_low_cst (TREE_VALUE (link), 0));
9895 else
9896 add_AT_unsigned (enum_die, DW_AT_const_value,
9897 tree_low_cst (TREE_VALUE (link), 0));
9901 else
9902 add_AT_flag (type_die, DW_AT_declaration, 1);
9905 /* Generate a DIE to represent either a real live formal parameter decl or to
9906 represent just the type of some formal parameter position in some function
9907 type.
9909 Note that this routine is a bit unusual because its argument may be a
9910 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
9911 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
9912 node. If it's the former then this function is being called to output a
9913 DIE to represent a formal parameter object (or some inlining thereof). If
9914 it's the latter, then this function is only being called to output a
9915 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
9916 argument type of some subprogram type. */
9918 static dw_die_ref
9919 gen_formal_parameter_die (node, context_die)
9920 tree node;
9921 dw_die_ref context_die;
9923 dw_die_ref parm_die
9924 = new_die (DW_TAG_formal_parameter, context_die, node);
9925 tree origin;
9927 switch (TREE_CODE_CLASS (TREE_CODE (node)))
9929 case 'd':
9930 origin = decl_ultimate_origin (node);
9931 if (origin != NULL)
9932 add_abstract_origin_attribute (parm_die, origin);
9933 else
9935 add_name_and_src_coords_attributes (parm_die, node);
9936 add_type_attribute (parm_die, TREE_TYPE (node),
9937 TREE_READONLY (node),
9938 TREE_THIS_VOLATILE (node),
9939 context_die);
9940 if (DECL_ARTIFICIAL (node))
9941 add_AT_flag (parm_die, DW_AT_artificial, 1);
9944 equate_decl_number_to_die (node, parm_die);
9945 if (! DECL_ABSTRACT (node))
9946 add_location_or_const_value_attribute (parm_die, node);
9948 break;
9950 case 't':
9951 /* We were called with some kind of a ..._TYPE node. */
9952 add_type_attribute (parm_die, node, 0, 0, context_die);
9953 break;
9955 default:
9956 abort ();
9959 return parm_die;
9962 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
9963 at the end of an (ANSI prototyped) formal parameters list. */
9965 static void
9966 gen_unspecified_parameters_die (decl_or_type, context_die)
9967 tree decl_or_type;
9968 dw_die_ref context_die;
9970 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
9973 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
9974 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
9975 parameters as specified in some function type specification (except for
9976 those which appear as part of a function *definition*). */
9978 static void
9979 gen_formal_types_die (function_or_method_type, context_die)
9980 tree function_or_method_type;
9981 dw_die_ref context_die;
9983 tree link;
9984 tree formal_type = NULL;
9985 tree first_parm_type;
9986 tree arg;
9988 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
9990 arg = DECL_ARGUMENTS (function_or_method_type);
9991 function_or_method_type = TREE_TYPE (function_or_method_type);
9993 else
9994 arg = NULL_TREE;
9996 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
9998 /* Make our first pass over the list of formal parameter types and output a
9999 DW_TAG_formal_parameter DIE for each one. */
10000 for (link = first_parm_type; link; )
10002 dw_die_ref parm_die;
10004 formal_type = TREE_VALUE (link);
10005 if (formal_type == void_type_node)
10006 break;
10008 /* Output a (nameless) DIE to represent the formal parameter itself. */
10009 parm_die = gen_formal_parameter_die (formal_type, context_die);
10010 if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
10011 && link == first_parm_type)
10012 || (arg && DECL_ARTIFICIAL (arg)))
10013 add_AT_flag (parm_die, DW_AT_artificial, 1);
10015 link = TREE_CHAIN (link);
10016 if (arg)
10017 arg = TREE_CHAIN (arg);
10020 /* If this function type has an ellipsis, add a
10021 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
10022 if (formal_type != void_type_node)
10023 gen_unspecified_parameters_die (function_or_method_type, context_die);
10025 /* Make our second (and final) pass over the list of formal parameter types
10026 and output DIEs to represent those types (as necessary). */
10027 for (link = TYPE_ARG_TYPES (function_or_method_type);
10028 link && TREE_VALUE (link);
10029 link = TREE_CHAIN (link))
10030 gen_type_die (TREE_VALUE (link), context_die);
10033 /* We want to generate the DIE for TYPE so that we can generate the
10034 die for MEMBER, which has been defined; we will need to refer back
10035 to the member declaration nested within TYPE. If we're trying to
10036 generate minimal debug info for TYPE, processing TYPE won't do the
10037 trick; we need to attach the member declaration by hand. */
10039 static void
10040 gen_type_die_for_member (type, member, context_die)
10041 tree type, member;
10042 dw_die_ref context_die;
10044 gen_type_die (type, context_die);
10046 /* If we're trying to avoid duplicate debug info, we may not have
10047 emitted the member decl for this function. Emit it now. */
10048 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
10049 && ! lookup_decl_die (member))
10051 if (decl_ultimate_origin (member))
10052 abort ();
10054 push_decl_scope (type);
10055 if (TREE_CODE (member) == FUNCTION_DECL)
10056 gen_subprogram_die (member, lookup_type_die (type));
10057 else
10058 gen_variable_die (member, lookup_type_die (type));
10060 pop_decl_scope ();
10064 /* Generate the DWARF2 info for the "abstract" instance of a function which we
10065 may later generate inlined and/or out-of-line instances of. */
10067 static void
10068 dwarf2out_abstract_function (decl)
10069 tree decl;
10071 dw_die_ref old_die;
10072 tree save_fn;
10073 tree context;
10074 int was_abstract = DECL_ABSTRACT (decl);
10076 /* Make sure we have the actual abstract inline, not a clone. */
10077 decl = DECL_ORIGIN (decl);
10079 old_die = lookup_decl_die (decl);
10080 if (old_die && get_AT_unsigned (old_die, DW_AT_inline))
10081 /* We've already generated the abstract instance. */
10082 return;
10084 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
10085 we don't get confused by DECL_ABSTRACT. */
10086 if (debug_info_level > DINFO_LEVEL_TERSE)
10088 context = decl_class_context (decl);
10089 if (context)
10090 gen_type_die_for_member
10091 (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
10094 /* Pretend we've just finished compiling this function. */
10095 save_fn = current_function_decl;
10096 current_function_decl = decl;
10098 set_decl_abstract_flags (decl, 1);
10099 dwarf2out_decl (decl);
10100 if (! was_abstract)
10101 set_decl_abstract_flags (decl, 0);
10103 current_function_decl = save_fn;
10106 /* Generate a DIE to represent a declared function (either file-scope or
10107 block-local). */
10109 static void
10110 gen_subprogram_die (decl, context_die)
10111 tree decl;
10112 dw_die_ref context_die;
10114 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
10115 tree origin = decl_ultimate_origin (decl);
10116 dw_die_ref subr_die;
10117 rtx fp_reg;
10118 tree fn_arg_types;
10119 tree outer_scope;
10120 dw_die_ref old_die = lookup_decl_die (decl);
10121 int declaration = (current_function_decl != decl
10122 || class_scope_p (context_die));
10124 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
10125 started to generate the abstract instance of an inline, decided to output
10126 its containing class, and proceeded to emit the declaration of the inline
10127 from the member list for the class. If so, DECLARATION takes priority;
10128 we'll get back to the abstract instance when done with the class. */
10130 /* The class-scope declaration DIE must be the primary DIE. */
10131 if (origin && declaration && class_scope_p (context_die))
10133 origin = NULL;
10134 if (old_die)
10135 abort ();
10138 if (origin != NULL)
10140 if (declaration && ! local_scope_p (context_die))
10141 abort ();
10143 /* Fixup die_parent for the abstract instance of a nested
10144 inline function. */
10145 if (old_die && old_die->die_parent == NULL)
10146 add_child_die (context_die, old_die);
10148 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
10149 add_abstract_origin_attribute (subr_die, origin);
10151 else if (old_die)
10153 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10155 if (!get_AT_flag (old_die, DW_AT_declaration)
10156 /* We can have a normal definition following an inline one in the
10157 case of redefinition of GNU C extern inlines.
10158 It seems reasonable to use AT_specification in this case. */
10159 && !get_AT_unsigned (old_die, DW_AT_inline))
10161 /* ??? This can happen if there is a bug in the program, for
10162 instance, if it has duplicate function definitions. Ideally,
10163 we should detect this case and ignore it. For now, if we have
10164 already reported an error, any error at all, then assume that
10165 we got here because of an input error, not a dwarf2 bug. */
10166 if (errorcount)
10167 return;
10168 abort ();
10171 /* If the definition comes from the same place as the declaration,
10172 maybe use the old DIE. We always want the DIE for this function
10173 that has the *_pc attributes to be under comp_unit_die so the
10174 debugger can find it. We also need to do this for abstract
10175 instances of inlines, since the spec requires the out-of-line copy
10176 to have the same parent. For local class methods, this doesn't
10177 apply; we just use the old DIE. */
10178 if ((old_die->die_parent == comp_unit_die || context_die == NULL)
10179 && (DECL_ARTIFICIAL (decl)
10180 || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
10181 && (get_AT_unsigned (old_die, DW_AT_decl_line)
10182 == (unsigned) DECL_SOURCE_LINE (decl)))))
10184 subr_die = old_die;
10186 /* Clear out the declaration attribute and the parm types. */
10187 remove_AT (subr_die, DW_AT_declaration);
10188 remove_children (subr_die);
10190 else
10192 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
10193 add_AT_die_ref (subr_die, DW_AT_specification, old_die);
10194 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
10195 add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
10196 if (get_AT_unsigned (old_die, DW_AT_decl_line)
10197 != (unsigned) DECL_SOURCE_LINE (decl))
10198 add_AT_unsigned
10199 (subr_die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
10202 else
10204 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
10206 if (TREE_PUBLIC (decl))
10207 add_AT_flag (subr_die, DW_AT_external, 1);
10209 add_name_and_src_coords_attributes (subr_die, decl);
10210 if (debug_info_level > DINFO_LEVEL_TERSE)
10212 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
10213 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
10214 0, 0, context_die);
10217 add_pure_or_virtual_attribute (subr_die, decl);
10218 if (DECL_ARTIFICIAL (decl))
10219 add_AT_flag (subr_die, DW_AT_artificial, 1);
10221 if (TREE_PROTECTED (decl))
10222 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
10223 else if (TREE_PRIVATE (decl))
10224 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
10227 if (declaration)
10229 if (!old_die || !get_AT_unsigned (old_die, DW_AT_inline))
10231 add_AT_flag (subr_die, DW_AT_declaration, 1);
10233 /* The first time we see a member function, it is in the context of
10234 the class to which it belongs. We make sure of this by emitting
10235 the class first. The next time is the definition, which is
10236 handled above. The two may come from the same source text. */
10237 if (DECL_CONTEXT (decl) || DECL_ABSTRACT (decl))
10238 equate_decl_number_to_die (decl, subr_die);
10241 else if (DECL_ABSTRACT (decl))
10243 if (DECL_INLINE (decl) && !flag_no_inline)
10245 /* ??? Checking DECL_DEFER_OUTPUT is correct for static
10246 inline functions, but not for extern inline functions.
10247 We can't get this completely correct because information
10248 about whether the function was declared inline is not
10249 saved anywhere. */
10250 if (DECL_DEFER_OUTPUT (decl))
10251 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
10252 else
10253 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
10255 else
10256 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
10258 equate_decl_number_to_die (decl, subr_die);
10260 else if (!DECL_EXTERNAL (decl))
10262 if (!old_die || !get_AT_unsigned (old_die, DW_AT_inline))
10263 equate_decl_number_to_die (decl, subr_die);
10265 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
10266 current_funcdef_number);
10267 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
10268 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
10269 current_funcdef_number);
10270 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
10272 add_pubname (decl, subr_die);
10273 add_arange (decl, subr_die);
10275 #ifdef MIPS_DEBUGGING_INFO
10276 /* Add a reference to the FDE for this routine. */
10277 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
10278 #endif
10280 /* Define the "frame base" location for this routine. We use the
10281 frame pointer or stack pointer registers, since the RTL for local
10282 variables is relative to one of them. */
10283 fp_reg
10284 = frame_pointer_needed ? hard_frame_pointer_rtx : stack_pointer_rtx;
10285 add_AT_loc (subr_die, DW_AT_frame_base, reg_loc_descriptor (fp_reg));
10287 #if 0
10288 /* ??? This fails for nested inline functions, because context_display
10289 is not part of the state saved/restored for inline functions. */
10290 if (current_function_needs_context)
10291 add_AT_location_description (subr_die, DW_AT_static_link,
10292 lookup_static_chain (decl));
10293 #endif
10296 /* Now output descriptions of the arguments for this function. This gets
10297 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
10298 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
10299 `...' at the end of the formal parameter list. In order to find out if
10300 there was a trailing ellipsis or not, we must instead look at the type
10301 associated with the FUNCTION_DECL. This will be a node of type
10302 FUNCTION_TYPE. If the chain of type nodes hanging off of this
10303 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
10304 an ellipsis at the end. */
10306 /* In the case where we are describing a mere function declaration, all we
10307 need to do here (and all we *can* do here) is to describe the *types* of
10308 its formal parameters. */
10309 if (debug_info_level <= DINFO_LEVEL_TERSE)
10311 else if (declaration)
10312 gen_formal_types_die (decl, subr_die);
10313 else
10315 /* Generate DIEs to represent all known formal parameters */
10316 tree arg_decls = DECL_ARGUMENTS (decl);
10317 tree parm;
10319 /* When generating DIEs, generate the unspecified_parameters DIE
10320 instead if we come across the arg "__builtin_va_alist" */
10321 for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
10322 if (TREE_CODE (parm) == PARM_DECL)
10324 if (DECL_NAME (parm)
10325 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
10326 "__builtin_va_alist"))
10327 gen_unspecified_parameters_die (parm, subr_die);
10328 else
10329 gen_decl_die (parm, subr_die);
10332 /* Decide whether we need an unspecified_parameters DIE at the end.
10333 There are 2 more cases to do this for: 1) the ansi ... declaration -
10334 this is detectable when the end of the arg list is not a
10335 void_type_node 2) an unprototyped function declaration (not a
10336 definition). This just means that we have no info about the
10337 parameters at all. */
10338 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
10339 if (fn_arg_types != NULL)
10341 /* this is the prototyped case, check for ... */
10342 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
10343 gen_unspecified_parameters_die (decl, subr_die);
10345 else if (DECL_INITIAL (decl) == NULL_TREE)
10346 gen_unspecified_parameters_die (decl, subr_die);
10349 /* Output Dwarf info for all of the stuff within the body of the function
10350 (if it has one - it may be just a declaration). */
10351 outer_scope = DECL_INITIAL (decl);
10353 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
10354 a function. This BLOCK actually represents the outermost binding contour
10355 for the function, i.e. the contour in which the function's formal
10356 parameters and labels get declared. Curiously, it appears that the front
10357 end doesn't actually put the PARM_DECL nodes for the current function onto
10358 the BLOCK_VARS list for this outer scope, but are strung off of the
10359 DECL_ARGUMENTS list for the function instead.
10361 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
10362 the LABEL_DECL nodes for the function however, and we output DWARF info
10363 for those in decls_for_scope. Just within the `outer_scope' there will be
10364 a BLOCK node representing the function's outermost pair of curly braces,
10365 and any blocks used for the base and member initializers of a C++
10366 constructor function. */
10367 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
10369 current_function_has_inlines = 0;
10370 decls_for_scope (outer_scope, subr_die, 0);
10372 #if 0 && defined (MIPS_DEBUGGING_INFO)
10373 if (current_function_has_inlines)
10375 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
10376 if (! comp_unit_has_inlines)
10378 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
10379 comp_unit_has_inlines = 1;
10382 #endif
10386 /* Generate a DIE to represent a declared data object. */
10388 static void
10389 gen_variable_die (decl, context_die)
10390 tree decl;
10391 dw_die_ref context_die;
10393 tree origin = decl_ultimate_origin (decl);
10394 dw_die_ref var_die = new_die (DW_TAG_variable, context_die, decl);
10396 dw_die_ref old_die = lookup_decl_die (decl);
10397 int declaration = (DECL_EXTERNAL (decl)
10398 || class_scope_p (context_die));
10400 if (origin != NULL)
10401 add_abstract_origin_attribute (var_die, origin);
10403 /* Loop unrolling can create multiple blocks that refer to the same
10404 static variable, so we must test for the DW_AT_declaration flag.
10406 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
10407 copy decls and set the DECL_ABSTRACT flag on them instead of
10408 sharing them.
10410 ??? Duplicated blocks have been rewritten to use .debug_ranges. */
10411 else if (old_die && TREE_STATIC (decl)
10412 && get_AT_flag (old_die, DW_AT_declaration) == 1)
10414 /* This is a definition of a C++ class level static. */
10415 add_AT_die_ref (var_die, DW_AT_specification, old_die);
10416 if (DECL_NAME (decl))
10418 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10420 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
10421 add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
10423 if (get_AT_unsigned (old_die, DW_AT_decl_line)
10424 != (unsigned) DECL_SOURCE_LINE (decl))
10426 add_AT_unsigned (var_die, DW_AT_decl_line,
10427 DECL_SOURCE_LINE (decl));
10430 else
10432 add_name_and_src_coords_attributes (var_die, decl);
10433 add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
10434 TREE_THIS_VOLATILE (decl), context_die);
10436 if (TREE_PUBLIC (decl))
10437 add_AT_flag (var_die, DW_AT_external, 1);
10439 if (DECL_ARTIFICIAL (decl))
10440 add_AT_flag (var_die, DW_AT_artificial, 1);
10442 if (TREE_PROTECTED (decl))
10443 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
10444 else if (TREE_PRIVATE (decl))
10445 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
10448 if (declaration)
10449 add_AT_flag (var_die, DW_AT_declaration, 1);
10451 if (class_scope_p (context_die) || DECL_ABSTRACT (decl))
10452 equate_decl_number_to_die (decl, var_die);
10454 if (! declaration && ! DECL_ABSTRACT (decl))
10456 add_location_or_const_value_attribute (var_die, decl);
10457 add_pubname (decl, var_die);
10459 else
10460 tree_add_const_value_attribute (var_die, decl);
10463 /* Generate a DIE to represent a label identifier. */
10465 static void
10466 gen_label_die (decl, context_die)
10467 tree decl;
10468 dw_die_ref context_die;
10470 tree origin = decl_ultimate_origin (decl);
10471 dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
10472 rtx insn;
10473 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10475 if (origin != NULL)
10476 add_abstract_origin_attribute (lbl_die, origin);
10477 else
10478 add_name_and_src_coords_attributes (lbl_die, decl);
10480 if (DECL_ABSTRACT (decl))
10481 equate_decl_number_to_die (decl, lbl_die);
10482 else
10484 insn = DECL_RTL (decl);
10486 /* Deleted labels are programmer specified labels which have been
10487 eliminated because of various optimisations. We still emit them
10488 here so that it is possible to put breakpoints on them. */
10489 if (GET_CODE (insn) == CODE_LABEL
10490 || ((GET_CODE (insn) == NOTE
10491 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL)))
10493 /* When optimization is enabled (via -O) some parts of the compiler
10494 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
10495 represent source-level labels which were explicitly declared by
10496 the user. This really shouldn't be happening though, so catch
10497 it if it ever does happen. */
10498 if (INSN_DELETED_P (insn))
10499 abort ();
10501 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
10502 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
10507 /* Generate a DIE for a lexical block. */
10509 static void
10510 gen_lexical_block_die (stmt, context_die, depth)
10511 tree stmt;
10512 dw_die_ref context_die;
10513 int depth;
10515 dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
10516 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10518 if (! BLOCK_ABSTRACT (stmt))
10520 if (BLOCK_FRAGMENT_CHAIN (stmt))
10522 tree chain;
10524 add_AT_range_list (stmt_die, DW_AT_ranges, add_ranges (stmt));
10526 chain = BLOCK_FRAGMENT_CHAIN (stmt);
10529 add_ranges (chain);
10530 chain = BLOCK_FRAGMENT_CHAIN (chain);
10532 while (chain);
10533 add_ranges (NULL);
10535 else
10537 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
10538 BLOCK_NUMBER (stmt));
10539 add_AT_lbl_id (stmt_die, DW_AT_low_pc, label);
10540 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
10541 BLOCK_NUMBER (stmt));
10542 add_AT_lbl_id (stmt_die, DW_AT_high_pc, label);
10546 decls_for_scope (stmt, stmt_die, depth);
10549 /* Generate a DIE for an inlined subprogram. */
10551 static void
10552 gen_inlined_subroutine_die (stmt, context_die, depth)
10553 tree stmt;
10554 dw_die_ref context_die;
10555 int depth;
10557 if (! BLOCK_ABSTRACT (stmt))
10559 dw_die_ref subr_die
10560 = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
10561 tree decl = block_ultimate_origin (stmt);
10562 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10564 /* Emit info for the abstract instance first, if we haven't yet. */
10565 dwarf2out_abstract_function (decl);
10567 add_abstract_origin_attribute (subr_die, decl);
10568 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
10569 BLOCK_NUMBER (stmt));
10570 add_AT_lbl_id (subr_die, DW_AT_low_pc, label);
10571 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
10572 BLOCK_NUMBER (stmt));
10573 add_AT_lbl_id (subr_die, DW_AT_high_pc, label);
10574 decls_for_scope (stmt, subr_die, depth);
10575 current_function_has_inlines = 1;
10579 /* Generate a DIE for a field in a record, or structure. */
10581 static void
10582 gen_field_die (decl, context_die)
10583 tree decl;
10584 dw_die_ref context_die;
10586 dw_die_ref decl_die = new_die (DW_TAG_member, context_die, decl);
10588 add_name_and_src_coords_attributes (decl_die, decl);
10589 add_type_attribute (decl_die, member_declared_type (decl),
10590 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
10591 context_die);
10593 if (DECL_BIT_FIELD_TYPE (decl))
10595 add_byte_size_attribute (decl_die, decl);
10596 add_bit_size_attribute (decl_die, decl);
10597 add_bit_offset_attribute (decl_die, decl);
10600 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
10601 add_data_member_location_attribute (decl_die, decl);
10603 if (DECL_ARTIFICIAL (decl))
10604 add_AT_flag (decl_die, DW_AT_artificial, 1);
10606 if (TREE_PROTECTED (decl))
10607 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
10608 else if (TREE_PRIVATE (decl))
10609 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
10612 #if 0
10613 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
10614 Use modified_type_die instead.
10615 We keep this code here just in case these types of DIEs may be needed to
10616 represent certain things in other languages (e.g. Pascal) someday. */
10618 static void
10619 gen_pointer_type_die (type, context_die)
10620 tree type;
10621 dw_die_ref context_die;
10623 dw_die_ref ptr_die
10624 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
10626 equate_type_number_to_die (type, ptr_die);
10627 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
10628 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
10631 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
10632 Use modified_type_die instead.
10633 We keep this code here just in case these types of DIEs may be needed to
10634 represent certain things in other languages (e.g. Pascal) someday. */
10636 static void
10637 gen_reference_type_die (type, context_die)
10638 tree type;
10639 dw_die_ref context_die;
10641 dw_die_ref ref_die
10642 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
10644 equate_type_number_to_die (type, ref_die);
10645 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
10646 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
10648 #endif
10650 /* Generate a DIE for a pointer to a member type. */
10652 static void
10653 gen_ptr_to_mbr_type_die (type, context_die)
10654 tree type;
10655 dw_die_ref context_die;
10657 dw_die_ref ptr_die
10658 = new_die (DW_TAG_ptr_to_member_type,
10659 scope_die_for (type, context_die), type);
10661 equate_type_number_to_die (type, ptr_die);
10662 add_AT_die_ref (ptr_die, DW_AT_containing_type,
10663 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
10664 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
10667 /* Generate the DIE for the compilation unit. */
10669 static dw_die_ref
10670 gen_compile_unit_die (filename)
10671 const char *filename;
10673 dw_die_ref die;
10674 char producer[250];
10675 const char *wd = getpwd ();
10676 const char *language_string = lang_hooks.name;
10677 int language;
10679 die = new_die (DW_TAG_compile_unit, NULL, NULL);
10680 add_name_attribute (die, filename);
10682 if (wd != NULL && filename[0] != DIR_SEPARATOR)
10683 add_AT_string (die, DW_AT_comp_dir, wd);
10685 sprintf (producer, "%s %s", language_string, version_string);
10687 #ifdef MIPS_DEBUGGING_INFO
10688 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
10689 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
10690 not appear in the producer string, the debugger reaches the conclusion
10691 that the object file is stripped and has no debugging information.
10692 To get the MIPS/SGI debugger to believe that there is debugging
10693 information in the object file, we add a -g to the producer string. */
10694 if (debug_info_level > DINFO_LEVEL_TERSE)
10695 strcat (producer, " -g");
10696 #endif
10698 add_AT_string (die, DW_AT_producer, producer);
10700 if (strcmp (language_string, "GNU C++") == 0)
10701 language = DW_LANG_C_plus_plus;
10702 else if (strcmp (language_string, "GNU Ada") == 0)
10703 language = DW_LANG_Ada83;
10704 else if (strcmp (language_string, "GNU F77") == 0)
10705 language = DW_LANG_Fortran77;
10706 else if (strcmp (language_string, "GNU Pascal") == 0)
10707 language = DW_LANG_Pascal83;
10708 else if (strcmp (language_string, "GNU Java") == 0)
10709 language = DW_LANG_Java;
10710 else if (flag_traditional)
10711 language = DW_LANG_C;
10712 else
10713 language = DW_LANG_C89;
10715 add_AT_unsigned (die, DW_AT_language, language);
10716 return die;
10719 /* Generate a DIE for a string type. */
10721 static void
10722 gen_string_type_die (type, context_die)
10723 tree type;
10724 dw_die_ref context_die;
10726 dw_die_ref type_die
10727 = new_die (DW_TAG_string_type, scope_die_for (type, context_die), type);
10729 equate_type_number_to_die (type, type_die);
10731 /* ??? Fudge the string length attribute for now.
10732 TODO: add string length info. */
10733 #if 0
10734 string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
10735 bound_representation (upper_bound, 0, 'u');
10736 #endif
10739 /* Generate the DIE for a base class. */
10741 static void
10742 gen_inheritance_die (binfo, context_die)
10743 tree binfo;
10744 dw_die_ref context_die;
10746 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
10748 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
10749 add_data_member_location_attribute (die, binfo);
10751 if (TREE_VIA_VIRTUAL (binfo))
10752 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
10754 if (TREE_VIA_PUBLIC (binfo))
10755 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
10756 else if (TREE_VIA_PROTECTED (binfo))
10757 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
10760 /* Generate a DIE for a class member. */
10762 static void
10763 gen_member_die (type, context_die)
10764 tree type;
10765 dw_die_ref context_die;
10767 tree member;
10768 dw_die_ref child;
10770 /* If this is not an incomplete type, output descriptions of each of its
10771 members. Note that as we output the DIEs necessary to represent the
10772 members of this record or union type, we will also be trying to output
10773 DIEs to represent the *types* of those members. However the `type'
10774 function (above) will specifically avoid generating type DIEs for member
10775 types *within* the list of member DIEs for this (containing) type except
10776 for those types (of members) which are explicitly marked as also being
10777 members of this (containing) type themselves. The g++ front- end can
10778 force any given type to be treated as a member of some other (containing)
10779 type by setting the TYPE_CONTEXT of the given (member) type to point to
10780 the TREE node representing the appropriate (containing) type. */
10782 /* First output info about the base classes. */
10783 if (TYPE_BINFO (type) && TYPE_BINFO_BASETYPES (type))
10785 tree bases = TYPE_BINFO_BASETYPES (type);
10786 int n_bases = TREE_VEC_LENGTH (bases);
10787 int i;
10789 for (i = 0; i < n_bases; i++)
10790 gen_inheritance_die (TREE_VEC_ELT (bases, i), context_die);
10793 /* Now output info about the data members and type members. */
10794 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
10796 /* If we thought we were generating minimal debug info for TYPE
10797 and then changed our minds, some of the member declarations
10798 may have already been defined. Don't define them again, but
10799 do put them in the right order. */
10801 child = lookup_decl_die (member);
10802 if (child)
10803 splice_child_die (context_die, child);
10804 else
10805 gen_decl_die (member, context_die);
10808 /* Now output info about the function members (if any). */
10809 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
10811 /* Don't include clones in the member list. */
10812 if (DECL_ABSTRACT_ORIGIN (member))
10813 continue;
10815 child = lookup_decl_die (member);
10816 if (child)
10817 splice_child_die (context_die, child);
10818 else
10819 gen_decl_die (member, context_die);
10823 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
10824 is set, we pretend that the type was never defined, so we only get the
10825 member DIEs needed by later specification DIEs. */
10827 static void
10828 gen_struct_or_union_type_die (type, context_die)
10829 tree type;
10830 dw_die_ref context_die;
10832 dw_die_ref type_die = lookup_type_die (type);
10833 dw_die_ref scope_die = 0;
10834 int nested = 0;
10835 int complete = (TYPE_SIZE (type)
10836 && (! TYPE_STUB_DECL (type)
10837 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
10839 if (type_die && ! complete)
10840 return;
10842 if (TYPE_CONTEXT (type) != NULL_TREE
10843 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type)))
10844 nested = 1;
10846 scope_die = scope_die_for (type, context_die);
10848 if (! type_die || (nested && scope_die == comp_unit_die))
10849 /* First occurrence of type or toplevel definition of nested class. */
10851 dw_die_ref old_die = type_die;
10853 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
10854 ? DW_TAG_structure_type : DW_TAG_union_type,
10855 scope_die, type);
10856 equate_type_number_to_die (type, type_die);
10857 if (old_die)
10858 add_AT_die_ref (type_die, DW_AT_specification, old_die);
10859 else
10860 add_name_attribute (type_die, type_tag (type));
10862 else
10863 remove_AT (type_die, DW_AT_declaration);
10865 /* If this type has been completed, then give it a byte_size attribute and
10866 then give a list of members. */
10867 if (complete)
10869 /* Prevent infinite recursion in cases where the type of some member of
10870 this type is expressed in terms of this type itself. */
10871 TREE_ASM_WRITTEN (type) = 1;
10872 add_byte_size_attribute (type_die, type);
10873 if (TYPE_STUB_DECL (type) != NULL_TREE)
10874 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
10876 /* If the first reference to this type was as the return type of an
10877 inline function, then it may not have a parent. Fix this now. */
10878 if (type_die->die_parent == NULL)
10879 add_child_die (scope_die, type_die);
10881 push_decl_scope (type);
10882 gen_member_die (type, type_die);
10883 pop_decl_scope ();
10885 /* GNU extension: Record what type our vtable lives in. */
10886 if (TYPE_VFIELD (type))
10888 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
10890 gen_type_die (vtype, context_die);
10891 add_AT_die_ref (type_die, DW_AT_containing_type,
10892 lookup_type_die (vtype));
10895 else
10897 add_AT_flag (type_die, DW_AT_declaration, 1);
10899 /* We don't need to do this for function-local types. */
10900 if (TYPE_STUB_DECL (type)
10901 && ! decl_function_context (TYPE_STUB_DECL (type)))
10902 VARRAY_PUSH_TREE (incomplete_types, type);
10906 /* Generate a DIE for a subroutine _type_. */
10908 static void
10909 gen_subroutine_type_die (type, context_die)
10910 tree type;
10911 dw_die_ref context_die;
10913 tree return_type = TREE_TYPE (type);
10914 dw_die_ref subr_die
10915 = new_die (DW_TAG_subroutine_type,
10916 scope_die_for (type, context_die), type);
10918 equate_type_number_to_die (type, subr_die);
10919 add_prototyped_attribute (subr_die, type);
10920 add_type_attribute (subr_die, return_type, 0, 0, context_die);
10921 gen_formal_types_die (type, subr_die);
10924 /* Generate a DIE for a type definition */
10926 static void
10927 gen_typedef_die (decl, context_die)
10928 tree decl;
10929 dw_die_ref context_die;
10931 dw_die_ref type_die;
10932 tree origin;
10934 if (TREE_ASM_WRITTEN (decl))
10935 return;
10937 TREE_ASM_WRITTEN (decl) = 1;
10938 type_die = new_die (DW_TAG_typedef, context_die, decl);
10939 origin = decl_ultimate_origin (decl);
10940 if (origin != NULL)
10941 add_abstract_origin_attribute (type_die, origin);
10942 else
10944 tree type;
10946 add_name_and_src_coords_attributes (type_die, decl);
10947 if (DECL_ORIGINAL_TYPE (decl))
10949 type = DECL_ORIGINAL_TYPE (decl);
10951 if (type == TREE_TYPE (decl))
10952 abort ();
10953 else
10954 equate_type_number_to_die (TREE_TYPE (decl), type_die);
10956 else
10957 type = TREE_TYPE (decl);
10959 add_type_attribute (type_die, type, TREE_READONLY (decl),
10960 TREE_THIS_VOLATILE (decl), context_die);
10963 if (DECL_ABSTRACT (decl))
10964 equate_decl_number_to_die (decl, type_die);
10967 /* Generate a type description DIE. */
10969 static void
10970 gen_type_die (type, context_die)
10971 tree type;
10972 dw_die_ref context_die;
10974 int need_pop;
10976 if (type == NULL_TREE || type == error_mark_node)
10977 return;
10979 /* We are going to output a DIE to represent the unqualified version of
10980 this type (i.e. without any const or volatile qualifiers) so get the
10981 main variant (i.e. the unqualified version) of this type now. */
10982 type = type_main_variant (type);
10984 if (TREE_ASM_WRITTEN (type))
10985 return;
10987 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10988 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
10990 TREE_ASM_WRITTEN (type) = 1;
10991 gen_decl_die (TYPE_NAME (type), context_die);
10992 return;
10995 switch (TREE_CODE (type))
10997 case ERROR_MARK:
10998 break;
11000 case POINTER_TYPE:
11001 case REFERENCE_TYPE:
11002 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
11003 ensures that the gen_type_die recursion will terminate even if the
11004 type is recursive. Recursive types are possible in Ada. */
11005 /* ??? We could perhaps do this for all types before the switch
11006 statement. */
11007 TREE_ASM_WRITTEN (type) = 1;
11009 /* For these types, all that is required is that we output a DIE (or a
11010 set of DIEs) to represent the "basis" type. */
11011 gen_type_die (TREE_TYPE (type), context_die);
11012 break;
11014 case OFFSET_TYPE:
11015 /* This code is used for C++ pointer-to-data-member types.
11016 Output a description of the relevant class type. */
11017 gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
11019 /* Output a description of the type of the object pointed to. */
11020 gen_type_die (TREE_TYPE (type), context_die);
11022 /* Now output a DIE to represent this pointer-to-data-member type
11023 itself. */
11024 gen_ptr_to_mbr_type_die (type, context_die);
11025 break;
11027 case SET_TYPE:
11028 gen_type_die (TYPE_DOMAIN (type), context_die);
11029 gen_set_type_die (type, context_die);
11030 break;
11032 case FILE_TYPE:
11033 gen_type_die (TREE_TYPE (type), context_die);
11034 abort (); /* No way to represent these in Dwarf yet! */
11035 break;
11037 case FUNCTION_TYPE:
11038 /* Force out return type (in case it wasn't forced out already). */
11039 gen_type_die (TREE_TYPE (type), context_die);
11040 gen_subroutine_type_die (type, context_die);
11041 break;
11043 case METHOD_TYPE:
11044 /* Force out return type (in case it wasn't forced out already). */
11045 gen_type_die (TREE_TYPE (type), context_die);
11046 gen_subroutine_type_die (type, context_die);
11047 break;
11049 case ARRAY_TYPE:
11050 if (TYPE_STRING_FLAG (type) && TREE_CODE (TREE_TYPE (type)) == CHAR_TYPE)
11052 gen_type_die (TREE_TYPE (type), context_die);
11053 gen_string_type_die (type, context_die);
11055 else
11056 gen_array_type_die (type, context_die);
11057 break;
11059 case VECTOR_TYPE:
11060 gen_type_die (TYPE_DEBUG_REPRESENTATION_TYPE (type), context_die);
11061 break;
11063 case ENUMERAL_TYPE:
11064 case RECORD_TYPE:
11065 case UNION_TYPE:
11066 case QUAL_UNION_TYPE:
11067 /* If this is a nested type whose containing class hasn't been written
11068 out yet, writing it out will cover this one, too. This does not apply
11069 to instantiations of member class templates; they need to be added to
11070 the containing class as they are generated. FIXME: This hurts the
11071 idea of combining type decls from multiple TUs, since we can't predict
11072 what set of template instantiations we'll get. */
11073 if (TYPE_CONTEXT (type)
11074 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
11075 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
11077 gen_type_die (TYPE_CONTEXT (type), context_die);
11079 if (TREE_ASM_WRITTEN (type))
11080 return;
11082 /* If that failed, attach ourselves to the stub. */
11083 push_decl_scope (TYPE_CONTEXT (type));
11084 context_die = lookup_type_die (TYPE_CONTEXT (type));
11085 need_pop = 1;
11087 else
11088 need_pop = 0;
11090 if (TREE_CODE (type) == ENUMERAL_TYPE)
11091 gen_enumeration_type_die (type, context_die);
11092 else
11093 gen_struct_or_union_type_die (type, context_die);
11095 if (need_pop)
11096 pop_decl_scope ();
11098 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
11099 it up if it is ever completed. gen_*_type_die will set it for us
11100 when appropriate. */
11101 return;
11103 case VOID_TYPE:
11104 case INTEGER_TYPE:
11105 case REAL_TYPE:
11106 case COMPLEX_TYPE:
11107 case BOOLEAN_TYPE:
11108 case CHAR_TYPE:
11109 /* No DIEs needed for fundamental types. */
11110 break;
11112 case LANG_TYPE:
11113 /* No Dwarf representation currently defined. */
11114 break;
11116 default:
11117 abort ();
11120 TREE_ASM_WRITTEN (type) = 1;
11123 /* Generate a DIE for a tagged type instantiation. */
11125 static void
11126 gen_tagged_type_instantiation_die (type, context_die)
11127 tree type;
11128 dw_die_ref context_die;
11130 if (type == NULL_TREE || type == error_mark_node)
11131 return;
11133 /* We are going to output a DIE to represent the unqualified version of
11134 this type (i.e. without any const or volatile qualifiers) so make sure
11135 that we have the main variant (i.e. the unqualified version) of this
11136 type now. */
11137 if (type != type_main_variant (type))
11138 abort ();
11140 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
11141 an instance of an unresolved type. */
11143 switch (TREE_CODE (type))
11145 case ERROR_MARK:
11146 break;
11148 case ENUMERAL_TYPE:
11149 gen_inlined_enumeration_type_die (type, context_die);
11150 break;
11152 case RECORD_TYPE:
11153 gen_inlined_structure_type_die (type, context_die);
11154 break;
11156 case UNION_TYPE:
11157 case QUAL_UNION_TYPE:
11158 gen_inlined_union_type_die (type, context_die);
11159 break;
11161 default:
11162 abort ();
11166 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
11167 things which are local to the given block. */
11169 static void
11170 gen_block_die (stmt, context_die, depth)
11171 tree stmt;
11172 dw_die_ref context_die;
11173 int depth;
11175 int must_output_die = 0;
11176 tree origin;
11177 tree decl;
11178 enum tree_code origin_code;
11180 /* Ignore blocks never really used to make RTL. */
11181 if (stmt == NULL_TREE || !TREE_USED (stmt)
11182 || (!TREE_ASM_WRITTEN (stmt) && !BLOCK_ABSTRACT (stmt)))
11183 return;
11185 /* If the block is one fragment of a non-contiguous block, do not
11186 process the variables, since they will have been done by the
11187 origin block. Do process subblocks. */
11188 if (BLOCK_FRAGMENT_ORIGIN (stmt))
11190 tree sub;
11192 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
11193 gen_block_die (sub, context_die, depth + 1);
11195 return;
11198 /* Determine the "ultimate origin" of this block. This block may be an
11199 inlined instance of an inlined instance of inline function, so we have
11200 to trace all of the way back through the origin chain to find out what
11201 sort of node actually served as the original seed for the creation of
11202 the current block. */
11203 origin = block_ultimate_origin (stmt);
11204 origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
11206 /* Determine if we need to output any Dwarf DIEs at all to represent this
11207 block. */
11208 if (origin_code == FUNCTION_DECL)
11209 /* The outer scopes for inlinings *must* always be represented. We
11210 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
11211 must_output_die = 1;
11212 else
11214 /* In the case where the current block represents an inlining of the
11215 "body block" of an inline function, we must *NOT* output any DIE for
11216 this block because we have already output a DIE to represent the whole
11217 inlined function scope and the "body block" of any function doesn't
11218 really represent a different scope according to ANSI C rules. So we
11219 check here to make sure that this block does not represent a "body
11220 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
11221 if (! is_body_block (origin ? origin : stmt))
11223 /* Determine if this block directly contains any "significant"
11224 local declarations which we will need to output DIEs for. */
11225 if (debug_info_level > DINFO_LEVEL_TERSE)
11226 /* We are not in terse mode so *any* local declaration counts
11227 as being a "significant" one. */
11228 must_output_die = (BLOCK_VARS (stmt) != NULL);
11229 else
11230 /* We are in terse mode, so only local (nested) function
11231 definitions count as "significant" local declarations. */
11232 for (decl = BLOCK_VARS (stmt);
11233 decl != NULL; decl = TREE_CHAIN (decl))
11234 if (TREE_CODE (decl) == FUNCTION_DECL
11235 && DECL_INITIAL (decl))
11237 must_output_die = 1;
11238 break;
11243 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
11244 DIE for any block which contains no significant local declarations at
11245 all. Rather, in such cases we just call `decls_for_scope' so that any
11246 needed Dwarf info for any sub-blocks will get properly generated. Note
11247 that in terse mode, our definition of what constitutes a "significant"
11248 local declaration gets restricted to include only inlined function
11249 instances and local (nested) function definitions. */
11250 if (must_output_die)
11252 if (origin_code == FUNCTION_DECL)
11253 gen_inlined_subroutine_die (stmt, context_die, depth);
11254 else
11255 gen_lexical_block_die (stmt, context_die, depth);
11257 else
11258 decls_for_scope (stmt, context_die, depth);
11261 /* Generate all of the decls declared within a given scope and (recursively)
11262 all of its sub-blocks. */
11264 static void
11265 decls_for_scope (stmt, context_die, depth)
11266 tree stmt;
11267 dw_die_ref context_die;
11268 int depth;
11270 tree decl;
11271 tree subblocks;
11273 /* Ignore blocks never really used to make RTL. */
11274 if (stmt == NULL_TREE || ! TREE_USED (stmt))
11275 return;
11277 /* Output the DIEs to represent all of the data objects and typedefs
11278 declared directly within this block but not within any nested
11279 sub-blocks. Also, nested function and tag DIEs have been
11280 generated with a parent of NULL; fix that up now. */
11281 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
11283 dw_die_ref die;
11285 if (TREE_CODE (decl) == FUNCTION_DECL)
11286 die = lookup_decl_die (decl);
11287 else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
11288 die = lookup_type_die (TREE_TYPE (decl));
11289 else
11290 die = NULL;
11292 if (die != NULL && die->die_parent == NULL)
11293 add_child_die (context_die, die);
11294 else
11295 gen_decl_die (decl, context_die);
11298 /* Output the DIEs to represent all sub-blocks (and the items declared
11299 therein) of this block. */
11300 for (subblocks = BLOCK_SUBBLOCKS (stmt);
11301 subblocks != NULL;
11302 subblocks = BLOCK_CHAIN (subblocks))
11303 gen_block_die (subblocks, context_die, depth + 1);
11306 /* Is this a typedef we can avoid emitting? */
11308 static inline int
11309 is_redundant_typedef (decl)
11310 tree decl;
11312 if (TYPE_DECL_IS_STUB (decl))
11313 return 1;
11315 if (DECL_ARTIFICIAL (decl)
11316 && DECL_CONTEXT (decl)
11317 && is_tagged_type (DECL_CONTEXT (decl))
11318 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
11319 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
11320 /* Also ignore the artificial member typedef for the class name. */
11321 return 1;
11323 return 0;
11326 /* Generate Dwarf debug information for a decl described by DECL. */
11328 static void
11329 gen_decl_die (decl, context_die)
11330 tree decl;
11331 dw_die_ref context_die;
11333 tree origin;
11335 if (DECL_P (decl) && DECL_IGNORED_P (decl))
11336 return;
11338 switch (TREE_CODE (decl))
11340 case ERROR_MARK:
11341 break;
11343 case CONST_DECL:
11344 /* The individual enumerators of an enum type get output when we output
11345 the Dwarf representation of the relevant enum type itself. */
11346 break;
11348 case FUNCTION_DECL:
11349 /* Don't output any DIEs to represent mere function declarations,
11350 unless they are class members or explicit block externs. */
11351 if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
11352 && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
11353 break;
11355 /* If we're emitting a clone, emit info for the abstract instance. */
11356 if (DECL_ORIGIN (decl) != decl)
11357 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
11359 /* If we're emitting an out-of-line copy of an inline function,
11360 emit info for the abstract instance and set up to refer to it. */
11361 else if (DECL_INLINE (decl) && ! DECL_ABSTRACT (decl)
11362 && ! class_scope_p (context_die)
11363 /* dwarf2out_abstract_function won't emit a die if this is just
11364 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
11365 that case, because that works only if we have a die. */
11366 && DECL_INITIAL (decl) != NULL_TREE)
11368 dwarf2out_abstract_function (decl);
11369 set_decl_origin_self (decl);
11372 /* Otherwise we're emitting the primary DIE for this decl. */
11373 else if (debug_info_level > DINFO_LEVEL_TERSE)
11375 /* Before we describe the FUNCTION_DECL itself, make sure that we
11376 have described its return type. */
11377 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
11379 /* And its virtual context. */
11380 if (DECL_VINDEX (decl) != NULL_TREE)
11381 gen_type_die (DECL_CONTEXT (decl), context_die);
11383 /* And its containing type. */
11384 origin = decl_class_context (decl);
11385 if (origin != NULL_TREE)
11386 gen_type_die_for_member (origin, decl, context_die);
11389 /* Now output a DIE to represent the function itself. */
11390 gen_subprogram_die (decl, context_die);
11391 break;
11393 case TYPE_DECL:
11394 /* If we are in terse mode, don't generate any DIEs to represent any
11395 actual typedefs. */
11396 if (debug_info_level <= DINFO_LEVEL_TERSE)
11397 break;
11399 /* In the special case of a TYPE_DECL node representing the declaration
11400 of some type tag, if the given TYPE_DECL is marked as having been
11401 instantiated from some other (original) TYPE_DECL node (e.g. one which
11402 was generated within the original definition of an inline function) we
11403 have to generate a special (abbreviated) DW_TAG_structure_type,
11404 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
11405 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
11407 gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
11408 break;
11411 if (is_redundant_typedef (decl))
11412 gen_type_die (TREE_TYPE (decl), context_die);
11413 else
11414 /* Output a DIE to represent the typedef itself. */
11415 gen_typedef_die (decl, context_die);
11416 break;
11418 case LABEL_DECL:
11419 if (debug_info_level >= DINFO_LEVEL_NORMAL)
11420 gen_label_die (decl, context_die);
11421 break;
11423 case VAR_DECL:
11424 /* If we are in terse mode, don't generate any DIEs to represent any
11425 variable declarations or definitions. */
11426 if (debug_info_level <= DINFO_LEVEL_TERSE)
11427 break;
11429 /* Output any DIEs that are needed to specify the type of this data
11430 object. */
11431 gen_type_die (TREE_TYPE (decl), context_die);
11433 /* And its containing type. */
11434 origin = decl_class_context (decl);
11435 if (origin != NULL_TREE)
11436 gen_type_die_for_member (origin, decl, context_die);
11438 /* Now output the DIE to represent the data object itself. This gets
11439 complicated because of the possibility that the VAR_DECL really
11440 represents an inlined instance of a formal parameter for an inline
11441 function. */
11442 origin = decl_ultimate_origin (decl);
11443 if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
11444 gen_formal_parameter_die (decl, context_die);
11445 else
11446 gen_variable_die (decl, context_die);
11447 break;
11449 case FIELD_DECL:
11450 /* Ignore the nameless fields that are used to skip bits but handle C++
11451 anonymous unions. */
11452 if (DECL_NAME (decl) != NULL_TREE
11453 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE)
11455 gen_type_die (member_declared_type (decl), context_die);
11456 gen_field_die (decl, context_die);
11458 break;
11460 case PARM_DECL:
11461 gen_type_die (TREE_TYPE (decl), context_die);
11462 gen_formal_parameter_die (decl, context_die);
11463 break;
11465 case NAMESPACE_DECL:
11466 /* Ignore for now. */
11467 break;
11469 default:
11470 abort ();
11474 static void
11475 mark_limbo_die_list (ptr)
11476 void *ptr ATTRIBUTE_UNUSED;
11478 limbo_die_node *node;
11479 for (node = limbo_die_list; node ; node = node->next)
11480 ggc_mark_tree (node->created_for);
11483 /* Add Ada "use" clause information for SGI Workshop debugger. */
11485 void
11486 dwarf2out_add_library_unit_info (filename, context_list)
11487 const char *filename;
11488 const char *context_list;
11490 unsigned int file_index;
11492 if (filename != NULL)
11494 dw_die_ref unit_die = new_die (DW_TAG_module, comp_unit_die, NULL);
11495 tree context_list_decl
11496 = build_decl (LABEL_DECL, get_identifier (context_list),
11497 void_type_node);
11499 TREE_PUBLIC (context_list_decl) = TRUE;
11500 add_name_attribute (unit_die, context_list);
11501 file_index = lookup_filename (filename);
11502 add_AT_unsigned (unit_die, DW_AT_decl_file, file_index);
11503 add_pubname (context_list_decl, unit_die);
11507 /* Output debug information for global decl DECL. Called from toplev.c after
11508 compilation proper has finished. */
11510 static void
11511 dwarf2out_global_decl (decl)
11512 tree decl;
11514 /* Output DWARF2 information for file-scope tentative data object
11515 declarations, file-scope (extern) function declarations (which had no
11516 corresponding body) and file-scope tagged type declarations and
11517 definitions which have not yet been forced out. */
11518 if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
11519 dwarf2out_decl (decl);
11522 /* Write the debugging output for DECL. */
11524 void
11525 dwarf2out_decl (decl)
11526 tree decl;
11528 dw_die_ref context_die = comp_unit_die;
11530 switch (TREE_CODE (decl))
11532 case ERROR_MARK:
11533 return;
11535 case FUNCTION_DECL:
11536 /* Ignore this FUNCTION_DECL if it refers to a builtin declaration of a
11537 builtin function. Explicit programmer-supplied declarations of
11538 these same functions should NOT be ignored however. */
11539 if (DECL_EXTERNAL (decl) && DECL_BUILT_IN (decl))
11540 return;
11542 /* What we would really like to do here is to filter out all mere
11543 file-scope declarations of file-scope functions which are never
11544 referenced later within this translation unit (and keep all of ones
11545 that *are* referenced later on) but we aren't clairvoyant, so we have
11546 no idea which functions will be referenced in the future (i.e. later
11547 on within the current translation unit). So here we just ignore all
11548 file-scope function declarations which are not also definitions. If
11549 and when the debugger needs to know something about these functions,
11550 it will have to hunt around and find the DWARF information associated
11551 with the definition of the function.
11553 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
11554 nodes represent definitions and which ones represent mere
11555 declarations. We have to check DECL_INITIAL instead. That's because
11556 the C front-end supports some weird semantics for "extern inline"
11557 function definitions. These can get inlined within the current
11558 translation unit (an thus, we need to generate Dwarf info for their
11559 abstract instances so that the Dwarf info for the concrete inlined
11560 instances can have something to refer to) but the compiler never
11561 generates any out-of-lines instances of such things (despite the fact
11562 that they *are* definitions).
11564 The important point is that the C front-end marks these "extern
11565 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
11566 them anyway. Note that the C++ front-end also plays some similar games
11567 for inline function definitions appearing within include files which
11568 also contain `#pragma interface' pragmas. */
11569 if (DECL_INITIAL (decl) == NULL_TREE)
11570 return;
11572 /* If we're a nested function, initially use a parent of NULL; if we're
11573 a plain function, this will be fixed up in decls_for_scope. If
11574 we're a method, it will be ignored, since we already have a DIE. */
11575 if (decl_function_context (decl))
11576 context_die = NULL;
11577 break;
11579 case VAR_DECL:
11580 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
11581 declaration and if the declaration was never even referenced from
11582 within this entire compilation unit. We suppress these DIEs in
11583 order to save space in the .debug section (by eliminating entries
11584 which are probably useless). Note that we must not suppress
11585 block-local extern declarations (whether used or not) because that
11586 would screw-up the debugger's name lookup mechanism and cause it to
11587 miss things which really ought to be in scope at a given point. */
11588 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
11589 return;
11591 /* If we are in terse mode, don't generate any DIEs to represent any
11592 variable declarations or definitions. */
11593 if (debug_info_level <= DINFO_LEVEL_TERSE)
11594 return;
11595 break;
11597 case TYPE_DECL:
11598 /* Don't emit stubs for types unless they are needed by other DIEs. */
11599 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
11600 return;
11602 /* Don't bother trying to generate any DIEs to represent any of the
11603 normal built-in types for the language we are compiling. */
11604 if (DECL_SOURCE_LINE (decl) == 0)
11606 /* OK, we need to generate one for `bool' so GDB knows what type
11607 comparisons have. */
11608 if ((get_AT_unsigned (comp_unit_die, DW_AT_language)
11609 == DW_LANG_C_plus_plus)
11610 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
11611 && ! DECL_IGNORED_P (decl))
11612 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
11614 return;
11617 /* If we are in terse mode, don't generate any DIEs for types. */
11618 if (debug_info_level <= DINFO_LEVEL_TERSE)
11619 return;
11621 /* If we're a function-scope tag, initially use a parent of NULL;
11622 this will be fixed up in decls_for_scope. */
11623 if (decl_function_context (decl))
11624 context_die = NULL;
11626 break;
11628 default:
11629 return;
11632 gen_decl_die (decl, context_die);
11635 /* Output a marker (i.e. a label) for the beginning of the generated code for
11636 a lexical block. */
11638 static void
11639 dwarf2out_begin_block (line, blocknum)
11640 unsigned int line ATTRIBUTE_UNUSED;
11641 unsigned int blocknum;
11643 function_section (current_function_decl);
11644 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
11647 /* Output a marker (i.e. a label) for the end of the generated code for a
11648 lexical block. */
11650 static void
11651 dwarf2out_end_block (line, blocknum)
11652 unsigned int line ATTRIBUTE_UNUSED;
11653 unsigned int blocknum;
11655 function_section (current_function_decl);
11656 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
11659 /* Returns nonzero if it is appropriate not to emit any debugging
11660 information for BLOCK, because it doesn't contain any instructions.
11662 Don't allow this for blocks with nested functions or local classes
11663 as we would end up with orphans, and in the presence of scheduling
11664 we may end up calling them anyway. */
11666 static bool
11667 dwarf2out_ignore_block (block)
11668 tree block;
11670 tree decl;
11672 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
11673 if (TREE_CODE (decl) == FUNCTION_DECL
11674 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
11675 return 0;
11677 return 1;
11680 /* Lookup FILE_NAME (in the list of filenames that we know about here in
11681 dwarf2out.c) and return its "index". The index of each (known) filename is
11682 just a unique number which is associated with only that one filename. We
11683 need such numbers for the sake of generating labels (in the .debug_sfnames
11684 section) and references to those files numbers (in the .debug_srcinfo
11685 and.debug_macinfo sections). If the filename given as an argument is not
11686 found in our current list, add it to the list and assign it the next
11687 available unique index number. In order to speed up searches, we remember
11688 the index of the filename was looked up last. This handles the majority of
11689 all searches. */
11691 static unsigned
11692 lookup_filename (file_name)
11693 const char *file_name;
11695 unsigned i;
11697 /* ??? Why isn't DECL_SOURCE_FILE left null instead. */
11698 if (strcmp (file_name, "<internal>") == 0
11699 || strcmp (file_name, "<built-in>") == 0)
11700 return 0;
11702 /* Check to see if the file name that was searched on the previous
11703 call matches this file name. If so, return the index. */
11704 if (file_table.last_lookup_index != 0)
11705 if (0 == strcmp (file_name,
11706 file_table.table[file_table.last_lookup_index]))
11707 return file_table.last_lookup_index;
11709 /* Didn't match the previous lookup, search the table */
11710 for (i = 1; i < file_table.in_use; i++)
11711 if (strcmp (file_name, file_table.table[i]) == 0)
11713 file_table.last_lookup_index = i;
11714 return i;
11717 /* Prepare to add a new table entry by making sure there is enough space in
11718 the table to do so. If not, expand the current table. */
11719 if (i == file_table.allocated)
11721 file_table.allocated = i + FILE_TABLE_INCREMENT;
11722 file_table.table = (char **)
11723 xrealloc (file_table.table, file_table.allocated * sizeof (char *));
11726 /* Add the new entry to the end of the filename table. */
11727 file_table.table[i] = xstrdup (file_name);
11728 file_table.in_use = i + 1;
11729 file_table.last_lookup_index = i;
11731 if (DWARF2_ASM_LINE_DEBUG_INFO)
11732 fprintf (asm_out_file, "\t.file %u \"%s\"\n", i, file_name);
11734 return i;
11737 static void
11738 init_file_table ()
11740 /* Allocate the initial hunk of the file_table. */
11741 file_table.table = (char **) xcalloc (FILE_TABLE_INCREMENT, sizeof (char *));
11742 file_table.allocated = FILE_TABLE_INCREMENT;
11744 /* Skip the first entry - file numbers begin at 1. */
11745 file_table.in_use = 1;
11746 file_table.last_lookup_index = 0;
11749 /* Output a label to mark the beginning of a source code line entry
11750 and record information relating to this source line, in
11751 'line_info_table' for later output of the .debug_line section. */
11753 static void
11754 dwarf2out_source_line (line, filename)
11755 unsigned int line;
11756 const char *filename;
11758 if (debug_info_level >= DINFO_LEVEL_NORMAL)
11760 function_section (current_function_decl);
11762 /* If requested, emit something human-readable. */
11763 if (flag_debug_asm)
11764 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
11765 filename, line);
11767 if (DWARF2_ASM_LINE_DEBUG_INFO)
11769 unsigned file_num = lookup_filename (filename);
11771 /* Emit the .loc directive understood by GNU as. */
11772 fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
11774 /* Indicate that line number info exists. */
11775 line_info_table_in_use++;
11777 /* Indicate that multiple line number tables exist. */
11778 if (DECL_SECTION_NAME (current_function_decl))
11779 separate_line_info_table_in_use++;
11781 else if (DECL_SECTION_NAME (current_function_decl))
11783 dw_separate_line_info_ref line_info;
11784 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, SEPARATE_LINE_CODE_LABEL,
11785 separate_line_info_table_in_use);
11787 /* expand the line info table if necessary */
11788 if (separate_line_info_table_in_use
11789 == separate_line_info_table_allocated)
11791 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
11792 separate_line_info_table
11793 = (dw_separate_line_info_ref)
11794 xrealloc (separate_line_info_table,
11795 separate_line_info_table_allocated
11796 * sizeof (dw_separate_line_info_entry));
11799 /* Add the new entry at the end of the line_info_table. */
11800 line_info
11801 = &separate_line_info_table[separate_line_info_table_in_use++];
11802 line_info->dw_file_num = lookup_filename (filename);
11803 line_info->dw_line_num = line;
11804 line_info->function = current_funcdef_number;
11806 else
11808 dw_line_info_ref line_info;
11810 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, LINE_CODE_LABEL,
11811 line_info_table_in_use);
11813 /* Expand the line info table if necessary. */
11814 if (line_info_table_in_use == line_info_table_allocated)
11816 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
11817 line_info_table
11818 = (dw_line_info_ref)
11819 xrealloc (line_info_table,
11820 (line_info_table_allocated
11821 * sizeof (dw_line_info_entry)));
11824 /* Add the new entry at the end of the line_info_table. */
11825 line_info = &line_info_table[line_info_table_in_use++];
11826 line_info->dw_file_num = lookup_filename (filename);
11827 line_info->dw_line_num = line;
11832 /* Record the beginning of a new source file. */
11834 static void
11835 dwarf2out_start_source_file (lineno, filename)
11836 unsigned int lineno;
11837 const char *filename;
11839 if (flag_eliminate_dwarf2_dups)
11841 /* Record the beginning of the file for break_out_includes. */
11842 dw_die_ref bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
11843 add_AT_string (bincl_die, DW_AT_name, filename);
11846 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11848 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11849 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
11850 dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
11851 lineno);
11852 dw2_asm_output_data_uleb128 (lookup_filename (filename),
11853 "Filename we just started");
11857 /* Record the end of a source file. */
11859 static void
11860 dwarf2out_end_source_file (lineno)
11861 unsigned int lineno ATTRIBUTE_UNUSED;
11863 if (flag_eliminate_dwarf2_dups)
11864 /* Record the end of the file for break_out_includes. */
11865 new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
11867 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11869 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11870 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
11874 /* Called from debug_define in toplev.c. The `buffer' parameter contains
11875 the tail part of the directive line, i.e. the part which is past the
11876 initial whitespace, #, whitespace, directive-name, whitespace part. */
11878 static void
11879 dwarf2out_define (lineno, buffer)
11880 unsigned lineno ATTRIBUTE_UNUSED;
11881 const char *buffer ATTRIBUTE_UNUSED;
11883 static int initialized = 0;
11884 if (!initialized)
11886 dwarf2out_start_source_file (0, primary_filename);
11887 initialized = 1;
11890 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11892 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11893 dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
11894 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
11895 dw2_asm_output_nstring (buffer, -1, "The macro");
11899 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
11900 the tail part of the directive line, i.e. the part which is past the
11901 initial whitespace, #, whitespace, directive-name, whitespace part. */
11903 static void
11904 dwarf2out_undef (lineno, buffer)
11905 unsigned lineno ATTRIBUTE_UNUSED;
11906 const char *buffer ATTRIBUTE_UNUSED;
11908 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11910 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11911 dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
11912 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
11913 dw2_asm_output_nstring (buffer, -1, "The macro");
11917 /* Set up for Dwarf output at the start of compilation. */
11919 static void
11920 dwarf2out_init (main_input_filename)
11921 const char *main_input_filename;
11923 init_file_table ();
11925 /* Remember the name of the primary input file. */
11926 primary_filename = main_input_filename;
11928 /* Add it to the file table first, under the assumption that we'll
11929 be emitting line number data for it first, which avoids having
11930 to add an initial DW_LNS_set_file. */
11931 lookup_filename (main_input_filename);
11933 /* Allocate the initial hunk of the decl_die_table. */
11934 decl_die_table
11935 = (dw_die_ref *) xcalloc (DECL_DIE_TABLE_INCREMENT, sizeof (dw_die_ref));
11936 decl_die_table_allocated = DECL_DIE_TABLE_INCREMENT;
11937 decl_die_table_in_use = 0;
11939 /* Allocate the initial hunk of the decl_scope_table. */
11940 VARRAY_TREE_INIT (decl_scope_table, 256, "decl_scope_table");
11941 ggc_add_tree_varray_root (&decl_scope_table, 1);
11943 /* Allocate the initial hunk of the abbrev_die_table. */
11944 abbrev_die_table
11945 = (dw_die_ref *) xcalloc (ABBREV_DIE_TABLE_INCREMENT,
11946 sizeof (dw_die_ref));
11947 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
11948 /* Zero-th entry is allocated, but unused */
11949 abbrev_die_table_in_use = 1;
11951 /* Allocate the initial hunk of the line_info_table. */
11952 line_info_table
11953 = (dw_line_info_ref) xcalloc (LINE_INFO_TABLE_INCREMENT,
11954 sizeof (dw_line_info_entry));
11955 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
11957 /* Zero-th entry is allocated, but unused */
11958 line_info_table_in_use = 1;
11960 /* Generate the initial DIE for the .debug section. Note that the (string)
11961 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
11962 will (typically) be a relative pathname and that this pathname should be
11963 taken as being relative to the directory from which the compiler was
11964 invoked when the given (base) source file was compiled. */
11965 comp_unit_die = gen_compile_unit_die (main_input_filename);
11967 VARRAY_TREE_INIT (incomplete_types, 64, "incomplete_types");
11968 ggc_add_tree_varray_root (&incomplete_types, 1);
11970 VARRAY_RTX_INIT (used_rtx_varray, 32, "used_rtx_varray");
11971 ggc_add_rtx_varray_root (&used_rtx_varray, 1);
11973 ggc_add_root (&limbo_die_list, 1, 1, mark_limbo_die_list);
11975 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
11976 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
11977 DEBUG_ABBREV_SECTION_LABEL, 0);
11978 if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
11979 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
11980 else
11981 strcpy (text_section_label, stripattributes (TEXT_SECTION_NAME));
11983 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
11984 DEBUG_INFO_SECTION_LABEL, 0);
11985 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
11986 DEBUG_LINE_SECTION_LABEL, 0);
11987 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
11988 DEBUG_RANGES_SECTION_LABEL, 0);
11989 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
11990 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
11991 named_section_flags (DEBUG_INFO_SECTION, SECTION_DEBUG);
11992 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
11993 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
11994 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
11996 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
11998 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
11999 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
12000 DEBUG_MACINFO_SECTION_LABEL, 0);
12001 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
12004 if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
12006 text_section ();
12007 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
12011 /* Allocate a string in .debug_str hash table. */
12013 static hashnode
12014 indirect_string_alloc (tab)
12015 hash_table *tab ATTRIBUTE_UNUSED;
12017 struct indirect_string_node *node;
12019 node = xmalloc (sizeof (struct indirect_string_node));
12020 node->refcount = 0;
12021 node->form = 0;
12022 node->label = NULL;
12024 return (hashnode) node;
12027 /* A helper function for dwarf2out_finish called through
12028 ht_forall. Emit one queued .debug_str string. */
12030 static int
12031 output_indirect_string (pfile, h, v)
12032 struct cpp_reader *pfile ATTRIBUTE_UNUSED;
12033 hashnode h;
12034 const PTR v ATTRIBUTE_UNUSED;
12036 struct indirect_string_node *node = (struct indirect_string_node *) h;
12038 if (node->form == DW_FORM_strp)
12040 named_section_flags (DEBUG_STR_SECTION, DEBUG_STR_SECTION_FLAGS);
12041 ASM_OUTPUT_LABEL (asm_out_file, node->label);
12042 assemble_string ((const char *) HT_STR (&node->id),
12043 HT_LEN (&node->id) + 1);
12046 return 1;
12049 /* Output stuff that dwarf requires at the end of every file,
12050 and generate the DWARF-2 debugging info. */
12052 static void
12053 dwarf2out_finish (input_filename)
12054 const char *input_filename ATTRIBUTE_UNUSED;
12056 limbo_die_node *node, *next_node;
12057 dw_die_ref die = 0;
12059 /* Traverse the limbo die list, and add parent/child links. The only
12060 dies without parents that should be here are concrete instances of
12061 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
12062 For concrete instances, we can get the parent die from the abstract
12063 instance. */
12064 for (node = limbo_die_list; node; node = next_node)
12066 next_node = node->next;
12067 die = node->die;
12069 if (die->die_parent == NULL)
12071 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
12072 tree context;
12074 if (origin)
12075 add_child_die (origin->die_parent, die);
12076 else if (die == comp_unit_die)
12078 /* If this was an expression for a bound involved in a function
12079 return type, it may be a SAVE_EXPR for which we weren't able
12080 to find a DIE previously. So try now. */
12081 else if (node->created_for
12082 && TREE_CODE (node->created_for) == SAVE_EXPR
12083 && 0 != (origin = (lookup_decl_die
12084 (SAVE_EXPR_CONTEXT
12085 (node->created_for)))))
12086 add_child_die (origin, die);
12087 else if (errorcount > 0 || sorrycount > 0)
12088 /* It's OK to be confused by errors in the input. */
12089 add_child_die (comp_unit_die, die);
12090 else if (node->created_for
12091 && ((DECL_P (node->created_for)
12092 && (context = DECL_CONTEXT (node->created_for)))
12093 || (TYPE_P (node->created_for)
12094 && (context = TYPE_CONTEXT (node->created_for))))
12095 && TREE_CODE (context) == FUNCTION_DECL)
12097 /* In certain situations, the lexical block containing a
12098 nested function can be optimized away, which results
12099 in the nested function die being orphaned. Likewise
12100 with the return type of that nested function. Force
12101 this to be a child of the containing function. */
12102 origin = lookup_decl_die (context);
12103 if (! origin)
12104 abort ();
12105 add_child_die (origin, die);
12107 else
12108 abort ();
12111 free (node);
12114 limbo_die_list = NULL;
12116 /* Walk through the list of incomplete types again, trying once more to
12117 emit full debugging info for them. */
12118 retry_incomplete_types ();
12120 /* We need to reverse all the dies before break_out_includes, or
12121 we'll see the end of an include file before the beginning. */
12122 reverse_all_dies (comp_unit_die);
12124 /* Generate separate CUs for each of the include files we've seen.
12125 They will go into limbo_die_list. */
12126 if (flag_eliminate_dwarf2_dups)
12127 break_out_includes (comp_unit_die);
12129 /* Traverse the DIE's and add add sibling attributes to those DIE's
12130 that have children. */
12131 add_sibling_attributes (comp_unit_die);
12132 for (node = limbo_die_list; node; node = node->next)
12133 add_sibling_attributes (node->die);
12135 /* Output a terminator label for the .text section. */
12136 text_section ();
12137 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, TEXT_END_LABEL, 0);
12139 /* Output the source line correspondence table. We must do this
12140 even if there is no line information. Otherwise, on an empty
12141 translation unit, we will generate a present, but empty,
12142 .debug_info section. IRIX 6.5 `nm' will then complain when
12143 examining the file. */
12144 if (! DWARF2_ASM_LINE_DEBUG_INFO)
12146 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
12147 output_line_info ();
12150 /* Output location list section if necessary. */
12151 if (have_location_lists)
12153 /* Output the location lists info. */
12154 named_section_flags (DEBUG_LOC_SECTION, SECTION_DEBUG);
12155 ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
12156 DEBUG_LOC_SECTION_LABEL, 0);
12157 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
12158 output_location_lists (die);
12159 have_location_lists = 0;
12162 /* We can only use the low/high_pc attributes if all of the code was
12163 in .text. */
12164 if (separate_line_info_table_in_use == 0)
12166 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
12167 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
12170 /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
12171 "base address". Use zero so that these addresses become absolute. */
12172 else if (have_location_lists || ranges_table_in_use)
12173 add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
12175 if (debug_info_level >= DINFO_LEVEL_NORMAL)
12176 add_AT_lbl_offset (comp_unit_die, DW_AT_stmt_list,
12177 debug_line_section_label);
12179 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12180 add_AT_lbl_offset (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
12182 /* Output all of the compilation units. We put the main one last so that
12183 the offsets are available to output_pubnames. */
12184 for (node = limbo_die_list; node; node = node->next)
12185 output_comp_unit (node->die);
12187 output_comp_unit (comp_unit_die);
12189 /* Output the abbreviation table. */
12190 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
12191 output_abbrev_section ();
12193 /* Output public names table if necessary. */
12194 if (pubname_table_in_use)
12196 named_section_flags (DEBUG_PUBNAMES_SECTION, SECTION_DEBUG);
12197 output_pubnames ();
12200 /* Output the address range information. We only put functions in the arange
12201 table, so don't write it out if we don't have any. */
12202 if (fde_table_in_use)
12204 named_section_flags (DEBUG_ARANGES_SECTION, SECTION_DEBUG);
12205 output_aranges ();
12208 /* Output ranges section if necessary. */
12209 if (ranges_table_in_use)
12211 named_section_flags (DEBUG_RANGES_SECTION, SECTION_DEBUG);
12212 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
12213 output_ranges ();
12216 /* Have to end the primary source file. */
12217 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12219 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
12220 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
12223 /* If we emitted any DW_FORM_strp form attribute, output the string
12224 table too. */
12225 if (debug_str_hash)
12226 ht_forall (debug_str_hash, output_indirect_string, NULL);
12228 #endif /* DWARF2_DEBUGGING_INFO || DWARF2_UNWIND_INFO */