c-decl.c (grokdeclarator): Do not complain about redeclaring visible "static" identif...
[gcc.git] / gcc / dwarf2out.c
1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004 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).
7
8 This file is part of GCC.
9
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.
14
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.
19
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. */
24
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. */
30
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. */
36
37 #include "config.h"
38 #include "system.h"
39 #include "coretypes.h"
40 #include "tm.h"
41 #include "tree.h"
42 #include "flags.h"
43 #include "real.h"
44 #include "rtl.h"
45 #include "hard-reg-set.h"
46 #include "regs.h"
47 #include "insn-config.h"
48 #include "reload.h"
49 #include "function.h"
50 #include "output.h"
51 #include "expr.h"
52 #include "libfuncs.h"
53 #include "except.h"
54 #include "dwarf2.h"
55 #include "dwarf2out.h"
56 #include "dwarf2asm.h"
57 #include "toplev.h"
58 #include "varray.h"
59 #include "ggc.h"
60 #include "md5.h"
61 #include "tm_p.h"
62 #include "diagnostic.h"
63 #include "debug.h"
64 #include "target.h"
65 #include "langhooks.h"
66 #include "hashtab.h"
67 #include "cgraph.h"
68 #include "input.h"
69
70 #ifdef DWARF2_DEBUGGING_INFO
71 static void dwarf2out_source_line (unsigned int, const char *);
72 #endif
73
74 /* DWARF2 Abbreviation Glossary:
75 CFA = Canonical Frame Address
76 a fixed address on the stack which identifies a call frame.
77 We define it to be the value of SP just before the call insn.
78 The CFA register and offset, which may change during the course
79 of the function, are used to calculate its value at runtime.
80 CFI = Call Frame Instruction
81 an instruction for the DWARF2 abstract machine
82 CIE = Common Information Entry
83 information describing information common to one or more FDEs
84 DIE = Debugging Information Entry
85 FDE = Frame Description Entry
86 information describing the stack call frame, in particular,
87 how to restore registers
88
89 DW_CFA_... = DWARF2 CFA call frame instruction
90 DW_TAG_... = DWARF2 DIE tag */
91
92 /* Decide whether we want to emit frame unwind information for the current
93 translation unit. */
94
95 int
96 dwarf2out_do_frame (void)
97 {
98 return (write_symbols == DWARF2_DEBUG
99 || write_symbols == VMS_AND_DWARF2_DEBUG
100 #ifdef DWARF2_FRAME_INFO
101 || DWARF2_FRAME_INFO
102 #endif
103 #ifdef DWARF2_UNWIND_INFO
104 || flag_unwind_tables
105 || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)
106 #endif
107 );
108 }
109
110 /* The size of the target's pointer type. */
111 #ifndef PTR_SIZE
112 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
113 #endif
114
115 /* Various versions of targetm.eh_frame_section. Note these must appear
116 outside the DWARF2_DEBUGGING_INFO || DWARF2_UNWIND_INFO macro guards. */
117
118 /* Version of targetm.eh_frame_section for systems with named sections. */
119 void
120 named_section_eh_frame_section (void)
121 {
122 #ifdef EH_FRAME_SECTION_NAME
123 #ifdef HAVE_LD_RO_RW_SECTION_MIXING
124 int fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
125 int per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
126 int lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
127 int flags;
128
129 flags = (! flag_pic
130 || ((fde_encoding & 0x70) != DW_EH_PE_absptr
131 && (fde_encoding & 0x70) != DW_EH_PE_aligned
132 && (per_encoding & 0x70) != DW_EH_PE_absptr
133 && (per_encoding & 0x70) != DW_EH_PE_aligned
134 && (lsda_encoding & 0x70) != DW_EH_PE_absptr
135 && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
136 ? 0 : SECTION_WRITE;
137 named_section_flags (EH_FRAME_SECTION_NAME, flags);
138 #else
139 named_section_flags (EH_FRAME_SECTION_NAME, SECTION_WRITE);
140 #endif
141 #endif
142 }
143
144 /* Version of targetm.eh_frame_section for systems using collect2. */
145 void
146 collect2_eh_frame_section (void)
147 {
148 tree label = get_file_function_name ('F');
149
150 data_section ();
151 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
152 (*targetm.asm_out.globalize_label) (asm_out_file, IDENTIFIER_POINTER (label));
153 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
154 }
155
156 /* Default version of targetm.eh_frame_section. */
157 void
158 default_eh_frame_section (void)
159 {
160 #ifdef EH_FRAME_SECTION_NAME
161 named_section_eh_frame_section ();
162 #else
163 collect2_eh_frame_section ();
164 #endif
165 }
166
167 /* Array of RTXes referenced by the debugging information, which therefore
168 must be kept around forever. */
169 static GTY(()) varray_type used_rtx_varray;
170
171 /* A pointer to the base of a list of incomplete types which might be
172 completed at some later time. incomplete_types_list needs to be a VARRAY
173 because we want to tell the garbage collector about it. */
174 static GTY(()) varray_type incomplete_types;
175
176 /* A pointer to the base of a table of references to declaration
177 scopes. This table is a display which tracks the nesting
178 of declaration scopes at the current scope and containing
179 scopes. This table is used to find the proper place to
180 define type declaration DIE's. */
181 static GTY(()) varray_type decl_scope_table;
182
183 /* How to start an assembler comment. */
184 #ifndef ASM_COMMENT_START
185 #define ASM_COMMENT_START ";#"
186 #endif
187
188 typedef struct dw_cfi_struct *dw_cfi_ref;
189 typedef struct dw_fde_struct *dw_fde_ref;
190 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
191
192 /* Call frames are described using a sequence of Call Frame
193 Information instructions. The register number, offset
194 and address fields are provided as possible operands;
195 their use is selected by the opcode field. */
196
197 enum dw_cfi_oprnd_type {
198 dw_cfi_oprnd_unused,
199 dw_cfi_oprnd_reg_num,
200 dw_cfi_oprnd_offset,
201 dw_cfi_oprnd_addr,
202 dw_cfi_oprnd_loc
203 };
204
205 typedef union dw_cfi_oprnd_struct GTY(())
206 {
207 unsigned long GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
208 HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
209 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
210 struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
211 }
212 dw_cfi_oprnd;
213
214 typedef struct dw_cfi_struct GTY(())
215 {
216 dw_cfi_ref dw_cfi_next;
217 enum dwarf_call_frame_info dw_cfi_opc;
218 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
219 dw_cfi_oprnd1;
220 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
221 dw_cfi_oprnd2;
222 }
223 dw_cfi_node;
224
225 /* This is how we define the location of the CFA. We use to handle it
226 as REG + OFFSET all the time, but now it can be more complex.
227 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
228 Instead of passing around REG and OFFSET, we pass a copy
229 of this structure. */
230 typedef struct cfa_loc GTY(())
231 {
232 unsigned long reg;
233 HOST_WIDE_INT offset;
234 HOST_WIDE_INT base_offset;
235 int indirect; /* 1 if CFA is accessed via a dereference. */
236 } dw_cfa_location;
237
238 /* All call frame descriptions (FDE's) in the GCC generated DWARF
239 refer to a single Common Information Entry (CIE), defined at
240 the beginning of the .debug_frame section. This use of a single
241 CIE obviates the need to keep track of multiple CIE's
242 in the DWARF generation routines below. */
243
244 typedef struct dw_fde_struct GTY(())
245 {
246 tree decl;
247 const char *dw_fde_begin;
248 const char *dw_fde_current_label;
249 const char *dw_fde_end;
250 dw_cfi_ref dw_fde_cfi;
251 unsigned funcdef_number;
252 unsigned all_throwers_are_sibcalls : 1;
253 unsigned nothrow : 1;
254 unsigned uses_eh_lsda : 1;
255 }
256 dw_fde_node;
257
258 /* Maximum size (in bytes) of an artificially generated label. */
259 #define MAX_ARTIFICIAL_LABEL_BYTES 30
260
261 /* The size of addresses as they appear in the Dwarf 2 data.
262 Some architectures use word addresses to refer to code locations,
263 but Dwarf 2 info always uses byte addresses. On such machines,
264 Dwarf 2 addresses need to be larger than the architecture's
265 pointers. */
266 #ifndef DWARF2_ADDR_SIZE
267 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
268 #endif
269
270 /* The size in bytes of a DWARF field indicating an offset or length
271 relative to a debug info section, specified to be 4 bytes in the
272 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
273 as PTR_SIZE. */
274
275 #ifndef DWARF_OFFSET_SIZE
276 #define DWARF_OFFSET_SIZE 4
277 #endif
278
279 /* According to the (draft) DWARF 3 specification, the initial length
280 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
281 bytes are 0xffffffff, followed by the length stored in the next 8
282 bytes.
283
284 However, the SGI/MIPS ABI uses an initial length which is equal to
285 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
286
287 #ifndef DWARF_INITIAL_LENGTH_SIZE
288 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
289 #endif
290
291 #define DWARF_VERSION 2
292
293 /* Round SIZE up to the nearest BOUNDARY. */
294 #define DWARF_ROUND(SIZE,BOUNDARY) \
295 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
296
297 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
298 #ifndef DWARF_CIE_DATA_ALIGNMENT
299 #ifdef STACK_GROWS_DOWNWARD
300 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
301 #else
302 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
303 #endif
304 #endif
305
306 /* A pointer to the base of a table that contains frame description
307 information for each routine. */
308 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table;
309
310 /* Number of elements currently allocated for fde_table. */
311 static GTY(()) unsigned fde_table_allocated;
312
313 /* Number of elements in fde_table currently in use. */
314 static GTY(()) unsigned fde_table_in_use;
315
316 /* Size (in elements) of increments by which we may expand the
317 fde_table. */
318 #define FDE_TABLE_INCREMENT 256
319
320 /* A list of call frame insns for the CIE. */
321 static GTY(()) dw_cfi_ref cie_cfi_head;
322
323 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
324 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
325 attribute that accelerates the lookup of the FDE associated
326 with the subprogram. This variable holds the table index of the FDE
327 associated with the current function (body) definition. */
328 static unsigned current_funcdef_fde;
329 #endif
330
331 struct indirect_string_node GTY(())
332 {
333 const char *str;
334 unsigned int refcount;
335 unsigned int form;
336 char *label;
337 };
338
339 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
340
341 static GTY(()) int dw2_string_counter;
342 static GTY(()) unsigned long dwarf2out_cfi_label_num;
343
344 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
345
346 /* Forward declarations for functions defined in this file. */
347
348 static char *stripattributes (const char *);
349 static const char *dwarf_cfi_name (unsigned);
350 static dw_cfi_ref new_cfi (void);
351 static void add_cfi (dw_cfi_ref *, dw_cfi_ref);
352 static void add_fde_cfi (const char *, dw_cfi_ref);
353 static void lookup_cfa_1 (dw_cfi_ref, dw_cfa_location *);
354 static void lookup_cfa (dw_cfa_location *);
355 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT);
356 static void initial_return_save (rtx);
357 static HOST_WIDE_INT stack_adjust_offset (rtx);
358 static void output_cfi (dw_cfi_ref, dw_fde_ref, int);
359 static void output_call_frame_info (int);
360 static void dwarf2out_stack_adjust (rtx);
361 static void queue_reg_save (const char *, rtx, HOST_WIDE_INT);
362 static void flush_queued_reg_saves (void);
363 static bool clobbers_queued_reg_save (rtx);
364 static void dwarf2out_frame_debug_expr (rtx, const char *);
365
366 /* Support for complex CFA locations. */
367 static void output_cfa_loc (dw_cfi_ref);
368 static void get_cfa_from_loc_descr (dw_cfa_location *,
369 struct dw_loc_descr_struct *);
370 static struct dw_loc_descr_struct *build_cfa_loc
371 (dw_cfa_location *);
372 static void def_cfa_1 (const char *, dw_cfa_location *);
373
374 /* How to start an assembler comment. */
375 #ifndef ASM_COMMENT_START
376 #define ASM_COMMENT_START ";#"
377 #endif
378
379 /* Data and reference forms for relocatable data. */
380 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
381 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
382
383 #ifndef DEBUG_FRAME_SECTION
384 #define DEBUG_FRAME_SECTION ".debug_frame"
385 #endif
386
387 #ifndef FUNC_BEGIN_LABEL
388 #define FUNC_BEGIN_LABEL "LFB"
389 #endif
390
391 #ifndef FUNC_END_LABEL
392 #define FUNC_END_LABEL "LFE"
393 #endif
394
395 #ifndef FRAME_BEGIN_LABEL
396 #define FRAME_BEGIN_LABEL "Lframe"
397 #endif
398 #define CIE_AFTER_SIZE_LABEL "LSCIE"
399 #define CIE_END_LABEL "LECIE"
400 #define FDE_LABEL "LSFDE"
401 #define FDE_AFTER_SIZE_LABEL "LASFDE"
402 #define FDE_END_LABEL "LEFDE"
403 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
404 #define LINE_NUMBER_END_LABEL "LELT"
405 #define LN_PROLOG_AS_LABEL "LASLTP"
406 #define LN_PROLOG_END_LABEL "LELTP"
407 #define DIE_LABEL_PREFIX "DW"
408
409 /* The DWARF 2 CFA column which tracks the return address. Normally this
410 is the column for PC, or the first column after all of the hard
411 registers. */
412 #ifndef DWARF_FRAME_RETURN_COLUMN
413 #ifdef PC_REGNUM
414 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
415 #else
416 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
417 #endif
418 #endif
419
420 /* The mapping from gcc register number to DWARF 2 CFA column number. By
421 default, we just provide columns for all registers. */
422 #ifndef DWARF_FRAME_REGNUM
423 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
424 #endif
425
426 /* The offset from the incoming value of %sp to the top of the stack frame
427 for the current function. */
428 #ifndef INCOMING_FRAME_SP_OFFSET
429 #define INCOMING_FRAME_SP_OFFSET 0
430 #endif
431 \f
432 /* Hook used by __throw. */
433
434 rtx
435 expand_builtin_dwarf_sp_column (void)
436 {
437 return GEN_INT (DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
438 }
439
440 /* Return a pointer to a copy of the section string name S with all
441 attributes stripped off, and an asterisk prepended (for assemble_name). */
442
443 static inline char *
444 stripattributes (const char *s)
445 {
446 char *stripped = xmalloc (strlen (s) + 2);
447 char *p = stripped;
448
449 *p++ = '*';
450
451 while (*s && *s != ',')
452 *p++ = *s++;
453
454 *p = '\0';
455 return stripped;
456 }
457
458 /* Generate code to initialize the register size table. */
459
460 void
461 expand_builtin_init_dwarf_reg_sizes (tree address)
462 {
463 int i;
464 enum machine_mode mode = TYPE_MODE (char_type_node);
465 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0);
466 rtx mem = gen_rtx_MEM (BLKmode, addr);
467 bool wrote_return_column = false;
468
469 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
470 if (DWARF_FRAME_REGNUM (i) < DWARF_FRAME_REGISTERS)
471 {
472 HOST_WIDE_INT offset = DWARF_FRAME_REGNUM (i) * GET_MODE_SIZE (mode);
473 enum machine_mode save_mode = reg_raw_mode[i];
474 HOST_WIDE_INT size;
475
476 if (HARD_REGNO_CALL_PART_CLOBBERED (i, save_mode))
477 save_mode = choose_hard_reg_mode (i, 1, true);
478 if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
479 {
480 if (save_mode == VOIDmode)
481 continue;
482 wrote_return_column = true;
483 }
484 size = GET_MODE_SIZE (save_mode);
485 if (offset < 0)
486 continue;
487
488 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
489 }
490
491 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
492 if (! wrote_return_column)
493 abort ();
494 i = DWARF_ALT_FRAME_RETURN_COLUMN;
495 wrote_return_column = false;
496 #else
497 i = DWARF_FRAME_RETURN_COLUMN;
498 #endif
499
500 if (! wrote_return_column)
501 {
502 enum machine_mode save_mode = Pmode;
503 HOST_WIDE_INT offset = i * GET_MODE_SIZE (mode);
504 HOST_WIDE_INT size = GET_MODE_SIZE (save_mode);
505 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
506 }
507 }
508
509 /* Convert a DWARF call frame info. operation to its string name */
510
511 static const char *
512 dwarf_cfi_name (unsigned int cfi_opc)
513 {
514 switch (cfi_opc)
515 {
516 case DW_CFA_advance_loc:
517 return "DW_CFA_advance_loc";
518 case DW_CFA_offset:
519 return "DW_CFA_offset";
520 case DW_CFA_restore:
521 return "DW_CFA_restore";
522 case DW_CFA_nop:
523 return "DW_CFA_nop";
524 case DW_CFA_set_loc:
525 return "DW_CFA_set_loc";
526 case DW_CFA_advance_loc1:
527 return "DW_CFA_advance_loc1";
528 case DW_CFA_advance_loc2:
529 return "DW_CFA_advance_loc2";
530 case DW_CFA_advance_loc4:
531 return "DW_CFA_advance_loc4";
532 case DW_CFA_offset_extended:
533 return "DW_CFA_offset_extended";
534 case DW_CFA_restore_extended:
535 return "DW_CFA_restore_extended";
536 case DW_CFA_undefined:
537 return "DW_CFA_undefined";
538 case DW_CFA_same_value:
539 return "DW_CFA_same_value";
540 case DW_CFA_register:
541 return "DW_CFA_register";
542 case DW_CFA_remember_state:
543 return "DW_CFA_remember_state";
544 case DW_CFA_restore_state:
545 return "DW_CFA_restore_state";
546 case DW_CFA_def_cfa:
547 return "DW_CFA_def_cfa";
548 case DW_CFA_def_cfa_register:
549 return "DW_CFA_def_cfa_register";
550 case DW_CFA_def_cfa_offset:
551 return "DW_CFA_def_cfa_offset";
552
553 /* DWARF 3 */
554 case DW_CFA_def_cfa_expression:
555 return "DW_CFA_def_cfa_expression";
556 case DW_CFA_expression:
557 return "DW_CFA_expression";
558 case DW_CFA_offset_extended_sf:
559 return "DW_CFA_offset_extended_sf";
560 case DW_CFA_def_cfa_sf:
561 return "DW_CFA_def_cfa_sf";
562 case DW_CFA_def_cfa_offset_sf:
563 return "DW_CFA_def_cfa_offset_sf";
564
565 /* SGI/MIPS specific */
566 case DW_CFA_MIPS_advance_loc8:
567 return "DW_CFA_MIPS_advance_loc8";
568
569 /* GNU extensions */
570 case DW_CFA_GNU_window_save:
571 return "DW_CFA_GNU_window_save";
572 case DW_CFA_GNU_args_size:
573 return "DW_CFA_GNU_args_size";
574 case DW_CFA_GNU_negative_offset_extended:
575 return "DW_CFA_GNU_negative_offset_extended";
576
577 default:
578 return "DW_CFA_<unknown>";
579 }
580 }
581
582 /* Return a pointer to a newly allocated Call Frame Instruction. */
583
584 static inline dw_cfi_ref
585 new_cfi (void)
586 {
587 dw_cfi_ref cfi = ggc_alloc (sizeof (dw_cfi_node));
588
589 cfi->dw_cfi_next = NULL;
590 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
591 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
592
593 return cfi;
594 }
595
596 /* Add a Call Frame Instruction to list of instructions. */
597
598 static inline void
599 add_cfi (dw_cfi_ref *list_head, dw_cfi_ref cfi)
600 {
601 dw_cfi_ref *p;
602
603 /* Find the end of the chain. */
604 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
605 ;
606
607 *p = cfi;
608 }
609
610 /* Generate a new label for the CFI info to refer to. */
611
612 char *
613 dwarf2out_cfi_label (void)
614 {
615 static char label[20];
616
617 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
618 ASM_OUTPUT_LABEL (asm_out_file, label);
619 return label;
620 }
621
622 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
623 or to the CIE if LABEL is NULL. */
624
625 static void
626 add_fde_cfi (const char *label, dw_cfi_ref cfi)
627 {
628 if (label)
629 {
630 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
631
632 if (*label == 0)
633 label = dwarf2out_cfi_label ();
634
635 if (fde->dw_fde_current_label == NULL
636 || strcmp (label, fde->dw_fde_current_label) != 0)
637 {
638 dw_cfi_ref xcfi;
639
640 fde->dw_fde_current_label = label = xstrdup (label);
641
642 /* Set the location counter to the new label. */
643 xcfi = new_cfi ();
644 xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
645 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
646 add_cfi (&fde->dw_fde_cfi, xcfi);
647 }
648
649 add_cfi (&fde->dw_fde_cfi, cfi);
650 }
651
652 else
653 add_cfi (&cie_cfi_head, cfi);
654 }
655
656 /* Subroutine of lookup_cfa. */
657
658 static inline void
659 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc)
660 {
661 switch (cfi->dw_cfi_opc)
662 {
663 case DW_CFA_def_cfa_offset:
664 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
665 break;
666 case DW_CFA_def_cfa_register:
667 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
668 break;
669 case DW_CFA_def_cfa:
670 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
671 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
672 break;
673 case DW_CFA_def_cfa_expression:
674 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
675 break;
676 default:
677 break;
678 }
679 }
680
681 /* Find the previous value for the CFA. */
682
683 static void
684 lookup_cfa (dw_cfa_location *loc)
685 {
686 dw_cfi_ref cfi;
687
688 loc->reg = (unsigned long) -1;
689 loc->offset = 0;
690 loc->indirect = 0;
691 loc->base_offset = 0;
692
693 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
694 lookup_cfa_1 (cfi, loc);
695
696 if (fde_table_in_use)
697 {
698 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
699 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
700 lookup_cfa_1 (cfi, loc);
701 }
702 }
703
704 /* The current rule for calculating the DWARF2 canonical frame address. */
705 static dw_cfa_location cfa;
706
707 /* The register used for saving registers to the stack, and its offset
708 from the CFA. */
709 static dw_cfa_location cfa_store;
710
711 /* The running total of the size of arguments pushed onto the stack. */
712 static HOST_WIDE_INT args_size;
713
714 /* The last args_size we actually output. */
715 static HOST_WIDE_INT old_args_size;
716
717 /* Entry point to update the canonical frame address (CFA).
718 LABEL is passed to add_fde_cfi. The value of CFA is now to be
719 calculated from REG+OFFSET. */
720
721 void
722 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
723 {
724 dw_cfa_location loc;
725 loc.indirect = 0;
726 loc.base_offset = 0;
727 loc.reg = reg;
728 loc.offset = offset;
729 def_cfa_1 (label, &loc);
730 }
731
732 /* This routine does the actual work. The CFA is now calculated from
733 the dw_cfa_location structure. */
734
735 static void
736 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
737 {
738 dw_cfi_ref cfi;
739 dw_cfa_location old_cfa, loc;
740
741 cfa = *loc_p;
742 loc = *loc_p;
743
744 if (cfa_store.reg == loc.reg && loc.indirect == 0)
745 cfa_store.offset = loc.offset;
746
747 loc.reg = DWARF_FRAME_REGNUM (loc.reg);
748 lookup_cfa (&old_cfa);
749
750 /* If nothing changed, no need to issue any call frame instructions. */
751 if (loc.reg == old_cfa.reg && loc.offset == old_cfa.offset
752 && loc.indirect == old_cfa.indirect
753 && (loc.indirect == 0 || loc.base_offset == old_cfa.base_offset))
754 return;
755
756 cfi = new_cfi ();
757
758 if (loc.reg == old_cfa.reg && !loc.indirect)
759 {
760 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction,
761 indicating the CFA register did not change but the offset
762 did. */
763 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
764 cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
765 }
766
767 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
768 else if (loc.offset == old_cfa.offset && old_cfa.reg != (unsigned long) -1
769 && !loc.indirect)
770 {
771 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
772 indicating the CFA register has changed to <register> but the
773 offset has not changed. */
774 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
775 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
776 }
777 #endif
778
779 else if (loc.indirect == 0)
780 {
781 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
782 indicating the CFA register has changed to <register> with
783 the specified offset. */
784 cfi->dw_cfi_opc = DW_CFA_def_cfa;
785 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
786 cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
787 }
788 else
789 {
790 /* Construct a DW_CFA_def_cfa_expression instruction to
791 calculate the CFA using a full location expression since no
792 register-offset pair is available. */
793 struct dw_loc_descr_struct *loc_list;
794
795 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
796 loc_list = build_cfa_loc (&loc);
797 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
798 }
799
800 add_fde_cfi (label, cfi);
801 }
802
803 /* Add the CFI for saving a register. REG is the CFA column number.
804 LABEL is passed to add_fde_cfi.
805 If SREG is -1, the register is saved at OFFSET from the CFA;
806 otherwise it is saved in SREG. */
807
808 static void
809 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
810 {
811 dw_cfi_ref cfi = new_cfi ();
812
813 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
814
815 /* The following comparison is correct. -1 is used to indicate that
816 the value isn't a register number. */
817 if (sreg == (unsigned int) -1)
818 {
819 if (reg & ~0x3f)
820 /* The register number won't fit in 6 bits, so we have to use
821 the long form. */
822 cfi->dw_cfi_opc = DW_CFA_offset_extended;
823 else
824 cfi->dw_cfi_opc = DW_CFA_offset;
825
826 #ifdef ENABLE_CHECKING
827 {
828 /* If we get an offset that is not a multiple of
829 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
830 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
831 description. */
832 HOST_WIDE_INT check_offset = offset / DWARF_CIE_DATA_ALIGNMENT;
833
834 if (check_offset * DWARF_CIE_DATA_ALIGNMENT != offset)
835 abort ();
836 }
837 #endif
838 offset /= DWARF_CIE_DATA_ALIGNMENT;
839 if (offset < 0)
840 cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
841
842 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
843 }
844 else if (sreg == reg)
845 /* We could emit a DW_CFA_same_value in this case, but don't bother. */
846 return;
847 else
848 {
849 cfi->dw_cfi_opc = DW_CFA_register;
850 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
851 }
852
853 add_fde_cfi (label, cfi);
854 }
855
856 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
857 This CFI tells the unwinder that it needs to restore the window registers
858 from the previous frame's window save area.
859
860 ??? Perhaps we should note in the CIE where windows are saved (instead of
861 assuming 0(cfa)) and what registers are in the window. */
862
863 void
864 dwarf2out_window_save (const char *label)
865 {
866 dw_cfi_ref cfi = new_cfi ();
867
868 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
869 add_fde_cfi (label, cfi);
870 }
871
872 /* Add a CFI to update the running total of the size of arguments
873 pushed onto the stack. */
874
875 void
876 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
877 {
878 dw_cfi_ref cfi;
879
880 if (size == old_args_size)
881 return;
882
883 old_args_size = size;
884
885 cfi = new_cfi ();
886 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
887 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
888 add_fde_cfi (label, cfi);
889 }
890
891 /* Entry point for saving a register to the stack. REG is the GCC register
892 number. LABEL and OFFSET are passed to reg_save. */
893
894 void
895 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
896 {
897 reg_save (label, DWARF_FRAME_REGNUM (reg), -1, offset);
898 }
899
900 /* Entry point for saving the return address in the stack.
901 LABEL and OFFSET are passed to reg_save. */
902
903 void
904 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
905 {
906 reg_save (label, DWARF_FRAME_RETURN_COLUMN, -1, offset);
907 }
908
909 /* Entry point for saving the return address in a register.
910 LABEL and SREG are passed to reg_save. */
911
912 void
913 dwarf2out_return_reg (const char *label, unsigned int sreg)
914 {
915 reg_save (label, DWARF_FRAME_RETURN_COLUMN, sreg, 0);
916 }
917
918 /* Record the initial position of the return address. RTL is
919 INCOMING_RETURN_ADDR_RTX. */
920
921 static void
922 initial_return_save (rtx rtl)
923 {
924 unsigned int reg = (unsigned int) -1;
925 HOST_WIDE_INT offset = 0;
926
927 switch (GET_CODE (rtl))
928 {
929 case REG:
930 /* RA is in a register. */
931 reg = DWARF_FRAME_REGNUM (REGNO (rtl));
932 break;
933
934 case MEM:
935 /* RA is on the stack. */
936 rtl = XEXP (rtl, 0);
937 switch (GET_CODE (rtl))
938 {
939 case REG:
940 if (REGNO (rtl) != STACK_POINTER_REGNUM)
941 abort ();
942 offset = 0;
943 break;
944
945 case PLUS:
946 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
947 abort ();
948 offset = INTVAL (XEXP (rtl, 1));
949 break;
950
951 case MINUS:
952 if (REGNO (XEXP (rtl, 0)) != STACK_POINTER_REGNUM)
953 abort ();
954 offset = -INTVAL (XEXP (rtl, 1));
955 break;
956
957 default:
958 abort ();
959 }
960
961 break;
962
963 case PLUS:
964 /* The return address is at some offset from any value we can
965 actually load. For instance, on the SPARC it is in %i7+8. Just
966 ignore the offset for now; it doesn't matter for unwinding frames. */
967 if (GET_CODE (XEXP (rtl, 1)) != CONST_INT)
968 abort ();
969 initial_return_save (XEXP (rtl, 0));
970 return;
971
972 default:
973 abort ();
974 }
975
976 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
977 }
978
979 /* Given a SET, calculate the amount of stack adjustment it
980 contains. */
981
982 static HOST_WIDE_INT
983 stack_adjust_offset (rtx pattern)
984 {
985 rtx src = SET_SRC (pattern);
986 rtx dest = SET_DEST (pattern);
987 HOST_WIDE_INT offset = 0;
988 enum rtx_code code;
989
990 if (dest == stack_pointer_rtx)
991 {
992 /* (set (reg sp) (plus (reg sp) (const_int))) */
993 code = GET_CODE (src);
994 if (! (code == PLUS || code == MINUS)
995 || XEXP (src, 0) != stack_pointer_rtx
996 || GET_CODE (XEXP (src, 1)) != CONST_INT)
997 return 0;
998
999 offset = INTVAL (XEXP (src, 1));
1000 if (code == PLUS)
1001 offset = -offset;
1002 }
1003 else if (GET_CODE (dest) == MEM)
1004 {
1005 /* (set (mem (pre_dec (reg sp))) (foo)) */
1006 src = XEXP (dest, 0);
1007 code = GET_CODE (src);
1008
1009 switch (code)
1010 {
1011 case PRE_MODIFY:
1012 case POST_MODIFY:
1013 if (XEXP (src, 0) == stack_pointer_rtx)
1014 {
1015 rtx val = XEXP (XEXP (src, 1), 1);
1016 /* We handle only adjustments by constant amount. */
1017 if (GET_CODE (XEXP (src, 1)) != PLUS ||
1018 GET_CODE (val) != CONST_INT)
1019 abort ();
1020 offset = -INTVAL (val);
1021 break;
1022 }
1023 return 0;
1024
1025 case PRE_DEC:
1026 case POST_DEC:
1027 if (XEXP (src, 0) == stack_pointer_rtx)
1028 {
1029 offset = GET_MODE_SIZE (GET_MODE (dest));
1030 break;
1031 }
1032 return 0;
1033
1034 case PRE_INC:
1035 case POST_INC:
1036 if (XEXP (src, 0) == stack_pointer_rtx)
1037 {
1038 offset = -GET_MODE_SIZE (GET_MODE (dest));
1039 break;
1040 }
1041 return 0;
1042
1043 default:
1044 return 0;
1045 }
1046 }
1047 else
1048 return 0;
1049
1050 return offset;
1051 }
1052
1053 /* Check INSN to see if it looks like a push or a stack adjustment, and
1054 make a note of it if it does. EH uses this information to find out how
1055 much extra space it needs to pop off the stack. */
1056
1057 static void
1058 dwarf2out_stack_adjust (rtx insn)
1059 {
1060 HOST_WIDE_INT offset;
1061 const char *label;
1062 int i;
1063
1064 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1065 with this function. Proper support would require all frame-related
1066 insns to be marked, and to be able to handle saving state around
1067 epilogues textually in the middle of the function. */
1068 if (prologue_epilogue_contains (insn) || sibcall_epilogue_contains (insn))
1069 return;
1070
1071 if (!flag_asynchronous_unwind_tables && GET_CODE (insn) == CALL_INSN)
1072 {
1073 /* Extract the size of the args from the CALL rtx itself. */
1074 insn = PATTERN (insn);
1075 if (GET_CODE (insn) == PARALLEL)
1076 insn = XVECEXP (insn, 0, 0);
1077 if (GET_CODE (insn) == SET)
1078 insn = SET_SRC (insn);
1079 if (GET_CODE (insn) != CALL)
1080 abort ();
1081
1082 dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
1083 return;
1084 }
1085
1086 /* If only calls can throw, and we have a frame pointer,
1087 save up adjustments until we see the CALL_INSN. */
1088 else if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1089 return;
1090
1091 if (GET_CODE (insn) == BARRIER)
1092 {
1093 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1094 the compiler will have already emitted a stack adjustment, but
1095 doesn't bother for calls to noreturn functions. */
1096 #ifdef STACK_GROWS_DOWNWARD
1097 offset = -args_size;
1098 #else
1099 offset = args_size;
1100 #endif
1101 }
1102 else if (GET_CODE (PATTERN (insn)) == SET)
1103 offset = stack_adjust_offset (PATTERN (insn));
1104 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1105 || GET_CODE (PATTERN (insn)) == SEQUENCE)
1106 {
1107 /* There may be stack adjustments inside compound insns. Search
1108 for them. */
1109 for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1110 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1111 offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i));
1112 }
1113 else
1114 return;
1115
1116 if (offset == 0)
1117 return;
1118
1119 if (cfa.reg == STACK_POINTER_REGNUM)
1120 cfa.offset += offset;
1121
1122 #ifndef STACK_GROWS_DOWNWARD
1123 offset = -offset;
1124 #endif
1125
1126 args_size += offset;
1127 if (args_size < 0)
1128 args_size = 0;
1129
1130 label = dwarf2out_cfi_label ();
1131 def_cfa_1 (label, &cfa);
1132 dwarf2out_args_size (label, args_size);
1133 }
1134
1135 #endif
1136
1137 /* We delay emitting a register save until either (a) we reach the end
1138 of the prologue or (b) the register is clobbered. This clusters
1139 register saves so that there are fewer pc advances. */
1140
1141 struct queued_reg_save GTY(())
1142 {
1143 struct queued_reg_save *next;
1144 rtx reg;
1145 HOST_WIDE_INT cfa_offset;
1146 };
1147
1148 static GTY(()) struct queued_reg_save *queued_reg_saves;
1149
1150 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1151 static const char *last_reg_save_label;
1152
1153 static void
1154 queue_reg_save (const char *label, rtx reg, HOST_WIDE_INT offset)
1155 {
1156 struct queued_reg_save *q = ggc_alloc (sizeof (*q));
1157
1158 q->next = queued_reg_saves;
1159 q->reg = reg;
1160 q->cfa_offset = offset;
1161 queued_reg_saves = q;
1162
1163 last_reg_save_label = label;
1164 }
1165
1166 static void
1167 flush_queued_reg_saves (void)
1168 {
1169 struct queued_reg_save *q, *next;
1170
1171 for (q = queued_reg_saves; q; q = next)
1172 {
1173 dwarf2out_reg_save (last_reg_save_label, REGNO (q->reg), q->cfa_offset);
1174 next = q->next;
1175 }
1176
1177 queued_reg_saves = NULL;
1178 last_reg_save_label = NULL;
1179 }
1180
1181 static bool
1182 clobbers_queued_reg_save (rtx insn)
1183 {
1184 struct queued_reg_save *q;
1185
1186 for (q = queued_reg_saves; q; q = q->next)
1187 if (modified_in_p (q->reg, insn))
1188 return true;
1189
1190 return false;
1191 }
1192
1193
1194 /* A temporary register holding an integral value used in adjusting SP
1195 or setting up the store_reg. The "offset" field holds the integer
1196 value, not an offset. */
1197 static dw_cfa_location cfa_temp;
1198
1199 /* Record call frame debugging information for an expression EXPR,
1200 which either sets SP or FP (adjusting how we calculate the frame
1201 address) or saves a register to the stack. LABEL indicates the
1202 address of EXPR.
1203
1204 This function encodes a state machine mapping rtxes to actions on
1205 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1206 users need not read the source code.
1207
1208 The High-Level Picture
1209
1210 Changes in the register we use to calculate the CFA: Currently we
1211 assume that if you copy the CFA register into another register, we
1212 should take the other one as the new CFA register; this seems to
1213 work pretty well. If it's wrong for some target, it's simple
1214 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1215
1216 Changes in the register we use for saving registers to the stack:
1217 This is usually SP, but not always. Again, we deduce that if you
1218 copy SP into another register (and SP is not the CFA register),
1219 then the new register is the one we will be using for register
1220 saves. This also seems to work.
1221
1222 Register saves: There's not much guesswork about this one; if
1223 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1224 register save, and the register used to calculate the destination
1225 had better be the one we think we're using for this purpose.
1226
1227 Except: If the register being saved is the CFA register, and the
1228 offset is nonzero, we are saving the CFA, so we assume we have to
1229 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1230 the intent is to save the value of SP from the previous frame.
1231
1232 Invariants / Summaries of Rules
1233
1234 cfa current rule for calculating the CFA. It usually
1235 consists of a register and an offset.
1236 cfa_store register used by prologue code to save things to the stack
1237 cfa_store.offset is the offset from the value of
1238 cfa_store.reg to the actual CFA
1239 cfa_temp register holding an integral value. cfa_temp.offset
1240 stores the value, which will be used to adjust the
1241 stack pointer. cfa_temp is also used like cfa_store,
1242 to track stores to the stack via fp or a temp reg.
1243
1244 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1245 with cfa.reg as the first operand changes the cfa.reg and its
1246 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1247 cfa_temp.offset.
1248
1249 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1250 expression yielding a constant. This sets cfa_temp.reg
1251 and cfa_temp.offset.
1252
1253 Rule 5: Create a new register cfa_store used to save items to the
1254 stack.
1255
1256 Rules 10-14: Save a register to the stack. Define offset as the
1257 difference of the original location and cfa_store's
1258 location (or cfa_temp's location if cfa_temp is used).
1259
1260 The Rules
1261
1262 "{a,b}" indicates a choice of a xor b.
1263 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1264
1265 Rule 1:
1266 (set <reg1> <reg2>:cfa.reg)
1267 effects: cfa.reg = <reg1>
1268 cfa.offset unchanged
1269 cfa_temp.reg = <reg1>
1270 cfa_temp.offset = cfa.offset
1271
1272 Rule 2:
1273 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1274 {<const_int>,<reg>:cfa_temp.reg}))
1275 effects: cfa.reg = sp if fp used
1276 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1277 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1278 if cfa_store.reg==sp
1279
1280 Rule 3:
1281 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1282 effects: cfa.reg = fp
1283 cfa_offset += +/- <const_int>
1284
1285 Rule 4:
1286 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1287 constraints: <reg1> != fp
1288 <reg1> != sp
1289 effects: cfa.reg = <reg1>
1290 cfa_temp.reg = <reg1>
1291 cfa_temp.offset = cfa.offset
1292
1293 Rule 5:
1294 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1295 constraints: <reg1> != fp
1296 <reg1> != sp
1297 effects: cfa_store.reg = <reg1>
1298 cfa_store.offset = cfa.offset - cfa_temp.offset
1299
1300 Rule 6:
1301 (set <reg> <const_int>)
1302 effects: cfa_temp.reg = <reg>
1303 cfa_temp.offset = <const_int>
1304
1305 Rule 7:
1306 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1307 effects: cfa_temp.reg = <reg1>
1308 cfa_temp.offset |= <const_int>
1309
1310 Rule 8:
1311 (set <reg> (high <exp>))
1312 effects: none
1313
1314 Rule 9:
1315 (set <reg> (lo_sum <exp> <const_int>))
1316 effects: cfa_temp.reg = <reg>
1317 cfa_temp.offset = <const_int>
1318
1319 Rule 10:
1320 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1321 effects: cfa_store.offset -= <const_int>
1322 cfa.offset = cfa_store.offset if cfa.reg == sp
1323 cfa.reg = sp
1324 cfa.base_offset = -cfa_store.offset
1325
1326 Rule 11:
1327 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1328 effects: cfa_store.offset += -/+ mode_size(mem)
1329 cfa.offset = cfa_store.offset if cfa.reg == sp
1330 cfa.reg = sp
1331 cfa.base_offset = -cfa_store.offset
1332
1333 Rule 12:
1334 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1335
1336 <reg2>)
1337 effects: cfa.reg = <reg1>
1338 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1339
1340 Rule 13:
1341 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1342 effects: cfa.reg = <reg1>
1343 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1344
1345 Rule 14:
1346 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1347 effects: cfa.reg = <reg1>
1348 cfa.base_offset = -cfa_temp.offset
1349 cfa_temp.offset -= mode_size(mem) */
1350
1351 static void
1352 dwarf2out_frame_debug_expr (rtx expr, const char *label)
1353 {
1354 rtx src, dest;
1355 HOST_WIDE_INT offset;
1356
1357 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1358 the PARALLEL independently. The first element is always processed if
1359 it is a SET. This is for backward compatibility. Other elements
1360 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1361 flag is set in them. */
1362 if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
1363 {
1364 int par_index;
1365 int limit = XVECLEN (expr, 0);
1366
1367 for (par_index = 0; par_index < limit; par_index++)
1368 if (GET_CODE (XVECEXP (expr, 0, par_index)) == SET
1369 && (RTX_FRAME_RELATED_P (XVECEXP (expr, 0, par_index))
1370 || par_index == 0))
1371 dwarf2out_frame_debug_expr (XVECEXP (expr, 0, par_index), label);
1372
1373 return;
1374 }
1375
1376 if (GET_CODE (expr) != SET)
1377 abort ();
1378
1379 src = SET_SRC (expr);
1380 dest = SET_DEST (expr);
1381
1382 switch (GET_CODE (dest))
1383 {
1384 case REG:
1385 /* Rule 1 */
1386 /* Update the CFA rule wrt SP or FP. Make sure src is
1387 relative to the current CFA register. */
1388 switch (GET_CODE (src))
1389 {
1390 /* Setting FP from SP. */
1391 case REG:
1392 if (cfa.reg == (unsigned) REGNO (src))
1393 /* OK. */
1394 ;
1395 else
1396 abort ();
1397
1398 /* We used to require that dest be either SP or FP, but the
1399 ARM copies SP to a temporary register, and from there to
1400 FP. So we just rely on the backends to only set
1401 RTX_FRAME_RELATED_P on appropriate insns. */
1402 cfa.reg = REGNO (dest);
1403 cfa_temp.reg = cfa.reg;
1404 cfa_temp.offset = cfa.offset;
1405 break;
1406
1407 case PLUS:
1408 case MINUS:
1409 case LO_SUM:
1410 if (dest == stack_pointer_rtx)
1411 {
1412 /* Rule 2 */
1413 /* Adjusting SP. */
1414 switch (GET_CODE (XEXP (src, 1)))
1415 {
1416 case CONST_INT:
1417 offset = INTVAL (XEXP (src, 1));
1418 break;
1419 case REG:
1420 if ((unsigned) REGNO (XEXP (src, 1)) != cfa_temp.reg)
1421 abort ();
1422 offset = cfa_temp.offset;
1423 break;
1424 default:
1425 abort ();
1426 }
1427
1428 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1429 {
1430 /* Restoring SP from FP in the epilogue. */
1431 if (cfa.reg != (unsigned) HARD_FRAME_POINTER_REGNUM)
1432 abort ();
1433 cfa.reg = STACK_POINTER_REGNUM;
1434 }
1435 else if (GET_CODE (src) == LO_SUM)
1436 /* Assume we've set the source reg of the LO_SUM from sp. */
1437 ;
1438 else if (XEXP (src, 0) != stack_pointer_rtx)
1439 abort ();
1440
1441 if (GET_CODE (src) != MINUS)
1442 offset = -offset;
1443 if (cfa.reg == STACK_POINTER_REGNUM)
1444 cfa.offset += offset;
1445 if (cfa_store.reg == STACK_POINTER_REGNUM)
1446 cfa_store.offset += offset;
1447 }
1448 else if (dest == hard_frame_pointer_rtx)
1449 {
1450 /* Rule 3 */
1451 /* Either setting the FP from an offset of the SP,
1452 or adjusting the FP */
1453 if (! frame_pointer_needed)
1454 abort ();
1455
1456 if (GET_CODE (XEXP (src, 0)) == REG
1457 && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
1458 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1459 {
1460 offset = INTVAL (XEXP (src, 1));
1461 if (GET_CODE (src) != MINUS)
1462 offset = -offset;
1463 cfa.offset += offset;
1464 cfa.reg = HARD_FRAME_POINTER_REGNUM;
1465 }
1466 else
1467 abort ();
1468 }
1469 else
1470 {
1471 if (GET_CODE (src) == MINUS)
1472 abort ();
1473
1474 /* Rule 4 */
1475 if (GET_CODE (XEXP (src, 0)) == REG
1476 && REGNO (XEXP (src, 0)) == cfa.reg
1477 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1478 {
1479 /* Setting a temporary CFA register that will be copied
1480 into the FP later on. */
1481 offset = - INTVAL (XEXP (src, 1));
1482 cfa.offset += offset;
1483 cfa.reg = REGNO (dest);
1484 /* Or used to save regs to the stack. */
1485 cfa_temp.reg = cfa.reg;
1486 cfa_temp.offset = cfa.offset;
1487 }
1488
1489 /* Rule 5 */
1490 else if (GET_CODE (XEXP (src, 0)) == REG
1491 && REGNO (XEXP (src, 0)) == cfa_temp.reg
1492 && XEXP (src, 1) == stack_pointer_rtx)
1493 {
1494 /* Setting a scratch register that we will use instead
1495 of SP for saving registers to the stack. */
1496 if (cfa.reg != STACK_POINTER_REGNUM)
1497 abort ();
1498 cfa_store.reg = REGNO (dest);
1499 cfa_store.offset = cfa.offset - cfa_temp.offset;
1500 }
1501
1502 /* Rule 9 */
1503 else if (GET_CODE (src) == LO_SUM
1504 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1505 {
1506 cfa_temp.reg = REGNO (dest);
1507 cfa_temp.offset = INTVAL (XEXP (src, 1));
1508 }
1509 else
1510 abort ();
1511 }
1512 break;
1513
1514 /* Rule 6 */
1515 case CONST_INT:
1516 cfa_temp.reg = REGNO (dest);
1517 cfa_temp.offset = INTVAL (src);
1518 break;
1519
1520 /* Rule 7 */
1521 case IOR:
1522 if (GET_CODE (XEXP (src, 0)) != REG
1523 || (unsigned) REGNO (XEXP (src, 0)) != cfa_temp.reg
1524 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1525 abort ();
1526
1527 if ((unsigned) REGNO (dest) != cfa_temp.reg)
1528 cfa_temp.reg = REGNO (dest);
1529 cfa_temp.offset |= INTVAL (XEXP (src, 1));
1530 break;
1531
1532 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1533 which will fill in all of the bits. */
1534 /* Rule 8 */
1535 case HIGH:
1536 break;
1537
1538 default:
1539 abort ();
1540 }
1541
1542 def_cfa_1 (label, &cfa);
1543 break;
1544
1545 case MEM:
1546 if (GET_CODE (src) != REG)
1547 abort ();
1548
1549 /* Saving a register to the stack. Make sure dest is relative to the
1550 CFA register. */
1551 switch (GET_CODE (XEXP (dest, 0)))
1552 {
1553 /* Rule 10 */
1554 /* With a push. */
1555 case PRE_MODIFY:
1556 /* We can't handle variable size modifications. */
1557 if (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1)) != CONST_INT)
1558 abort ();
1559 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1560
1561 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1562 || cfa_store.reg != STACK_POINTER_REGNUM)
1563 abort ();
1564
1565 cfa_store.offset += offset;
1566 if (cfa.reg == STACK_POINTER_REGNUM)
1567 cfa.offset = cfa_store.offset;
1568
1569 offset = -cfa_store.offset;
1570 break;
1571
1572 /* Rule 11 */
1573 case PRE_INC:
1574 case PRE_DEC:
1575 offset = GET_MODE_SIZE (GET_MODE (dest));
1576 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1577 offset = -offset;
1578
1579 if (REGNO (XEXP (XEXP (dest, 0), 0)) != STACK_POINTER_REGNUM
1580 || cfa_store.reg != STACK_POINTER_REGNUM)
1581 abort ();
1582
1583 cfa_store.offset += offset;
1584 if (cfa.reg == STACK_POINTER_REGNUM)
1585 cfa.offset = cfa_store.offset;
1586
1587 offset = -cfa_store.offset;
1588 break;
1589
1590 /* Rule 12 */
1591 /* With an offset. */
1592 case PLUS:
1593 case MINUS:
1594 case LO_SUM:
1595 if (GET_CODE (XEXP (XEXP (dest, 0), 1)) != CONST_INT)
1596 abort ();
1597 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1598 if (GET_CODE (XEXP (dest, 0)) == MINUS)
1599 offset = -offset;
1600
1601 if (cfa_store.reg == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1602 offset -= cfa_store.offset;
1603 else if (cfa_temp.reg == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1604 offset -= cfa_temp.offset;
1605 else
1606 abort ();
1607 break;
1608
1609 /* Rule 13 */
1610 /* Without an offset. */
1611 case REG:
1612 if (cfa_store.reg == (unsigned) REGNO (XEXP (dest, 0)))
1613 offset = -cfa_store.offset;
1614 else if (cfa_temp.reg == (unsigned) REGNO (XEXP (dest, 0)))
1615 offset = -cfa_temp.offset;
1616 else
1617 abort ();
1618 break;
1619
1620 /* Rule 14 */
1621 case POST_INC:
1622 if (cfa_temp.reg != (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)))
1623 abort ();
1624 offset = -cfa_temp.offset;
1625 cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1626 break;
1627
1628 default:
1629 abort ();
1630 }
1631
1632 if (REGNO (src) != STACK_POINTER_REGNUM
1633 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1634 && (unsigned) REGNO (src) == cfa.reg)
1635 {
1636 /* We're storing the current CFA reg into the stack. */
1637
1638 if (cfa.offset == 0)
1639 {
1640 /* If the source register is exactly the CFA, assume
1641 we're saving SP like any other register; this happens
1642 on the ARM. */
1643 def_cfa_1 (label, &cfa);
1644 queue_reg_save (label, stack_pointer_rtx, offset);
1645 break;
1646 }
1647 else
1648 {
1649 /* Otherwise, we'll need to look in the stack to
1650 calculate the CFA. */
1651 rtx x = XEXP (dest, 0);
1652
1653 if (GET_CODE (x) != REG)
1654 x = XEXP (x, 0);
1655 if (GET_CODE (x) != REG)
1656 abort ();
1657
1658 cfa.reg = REGNO (x);
1659 cfa.base_offset = offset;
1660 cfa.indirect = 1;
1661 def_cfa_1 (label, &cfa);
1662 break;
1663 }
1664 }
1665
1666 def_cfa_1 (label, &cfa);
1667 queue_reg_save (label, src, offset);
1668 break;
1669
1670 default:
1671 abort ();
1672 }
1673 }
1674
1675 /* Record call frame debugging information for INSN, which either
1676 sets SP or FP (adjusting how we calculate the frame address) or saves a
1677 register to the stack. If INSN is NULL_RTX, initialize our state. */
1678
1679 void
1680 dwarf2out_frame_debug (rtx insn)
1681 {
1682 const char *label;
1683 rtx src;
1684
1685 if (insn == NULL_RTX)
1686 {
1687 /* Flush any queued register saves. */
1688 flush_queued_reg_saves ();
1689
1690 /* Set up state for generating call frame debug info. */
1691 lookup_cfa (&cfa);
1692 if (cfa.reg != (unsigned long) DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM))
1693 abort ();
1694
1695 cfa.reg = STACK_POINTER_REGNUM;
1696 cfa_store = cfa;
1697 cfa_temp.reg = -1;
1698 cfa_temp.offset = 0;
1699 return;
1700 }
1701
1702 if (GET_CODE (insn) != INSN || clobbers_queued_reg_save (insn))
1703 flush_queued_reg_saves ();
1704
1705 if (! RTX_FRAME_RELATED_P (insn))
1706 {
1707 if (!ACCUMULATE_OUTGOING_ARGS)
1708 dwarf2out_stack_adjust (insn);
1709
1710 return;
1711 }
1712
1713 label = dwarf2out_cfi_label ();
1714 src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1715 if (src)
1716 insn = XEXP (src, 0);
1717 else
1718 insn = PATTERN (insn);
1719
1720 dwarf2out_frame_debug_expr (insn, label);
1721 }
1722
1723 #endif
1724
1725 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
1726 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
1727 (enum dwarf_call_frame_info cfi);
1728
1729 static enum dw_cfi_oprnd_type
1730 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
1731 {
1732 switch (cfi)
1733 {
1734 case DW_CFA_nop:
1735 case DW_CFA_GNU_window_save:
1736 return dw_cfi_oprnd_unused;
1737
1738 case DW_CFA_set_loc:
1739 case DW_CFA_advance_loc1:
1740 case DW_CFA_advance_loc2:
1741 case DW_CFA_advance_loc4:
1742 case DW_CFA_MIPS_advance_loc8:
1743 return dw_cfi_oprnd_addr;
1744
1745 case DW_CFA_offset:
1746 case DW_CFA_offset_extended:
1747 case DW_CFA_def_cfa:
1748 case DW_CFA_offset_extended_sf:
1749 case DW_CFA_def_cfa_sf:
1750 case DW_CFA_restore_extended:
1751 case DW_CFA_undefined:
1752 case DW_CFA_same_value:
1753 case DW_CFA_def_cfa_register:
1754 case DW_CFA_register:
1755 return dw_cfi_oprnd_reg_num;
1756
1757 case DW_CFA_def_cfa_offset:
1758 case DW_CFA_GNU_args_size:
1759 case DW_CFA_def_cfa_offset_sf:
1760 return dw_cfi_oprnd_offset;
1761
1762 case DW_CFA_def_cfa_expression:
1763 case DW_CFA_expression:
1764 return dw_cfi_oprnd_loc;
1765
1766 default:
1767 abort ();
1768 }
1769 }
1770
1771 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
1772 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
1773 (enum dwarf_call_frame_info cfi);
1774
1775 static enum dw_cfi_oprnd_type
1776 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
1777 {
1778 switch (cfi)
1779 {
1780 case DW_CFA_def_cfa:
1781 case DW_CFA_def_cfa_sf:
1782 case DW_CFA_offset:
1783 case DW_CFA_offset_extended_sf:
1784 case DW_CFA_offset_extended:
1785 return dw_cfi_oprnd_offset;
1786
1787 case DW_CFA_register:
1788 return dw_cfi_oprnd_reg_num;
1789
1790 default:
1791 return dw_cfi_oprnd_unused;
1792 }
1793 }
1794
1795 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1796
1797 /* Map register numbers held in the call frame info that gcc has
1798 collected using DWARF_FRAME_REGNUM to those that should be output in
1799 .debug_frame and .eh_frame. */
1800 #ifndef DWARF2_FRAME_REG_OUT
1801 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
1802 #endif
1803
1804 /* Output a Call Frame Information opcode and its operand(s). */
1805
1806 static void
1807 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
1808 {
1809 unsigned long r;
1810 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
1811 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1812 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
1813 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX,
1814 cfi->dw_cfi_oprnd1.dw_cfi_offset);
1815 else if (cfi->dw_cfi_opc == DW_CFA_offset)
1816 {
1817 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1818 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
1819 "DW_CFA_offset, column 0x%lx", r);
1820 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1821 }
1822 else if (cfi->dw_cfi_opc == DW_CFA_restore)
1823 {
1824 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1825 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
1826 "DW_CFA_restore, column 0x%lx", r);
1827 }
1828 else
1829 {
1830 dw2_asm_output_data (1, cfi->dw_cfi_opc,
1831 "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
1832
1833 switch (cfi->dw_cfi_opc)
1834 {
1835 case DW_CFA_set_loc:
1836 if (for_eh)
1837 dw2_asm_output_encoded_addr_rtx (
1838 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
1839 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
1840 NULL);
1841 else
1842 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
1843 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
1844 break;
1845
1846 case DW_CFA_advance_loc1:
1847 dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1848 fde->dw_fde_current_label, NULL);
1849 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1850 break;
1851
1852 case DW_CFA_advance_loc2:
1853 dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1854 fde->dw_fde_current_label, NULL);
1855 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1856 break;
1857
1858 case DW_CFA_advance_loc4:
1859 dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1860 fde->dw_fde_current_label, NULL);
1861 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1862 break;
1863
1864 case DW_CFA_MIPS_advance_loc8:
1865 dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1866 fde->dw_fde_current_label, NULL);
1867 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1868 break;
1869
1870 case DW_CFA_offset_extended:
1871 case DW_CFA_def_cfa:
1872 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1873 dw2_asm_output_data_uleb128 (r, NULL);
1874 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1875 break;
1876
1877 case DW_CFA_offset_extended_sf:
1878 case DW_CFA_def_cfa_sf:
1879 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1880 dw2_asm_output_data_uleb128 (r, NULL);
1881 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1882 break;
1883
1884 case DW_CFA_restore_extended:
1885 case DW_CFA_undefined:
1886 case DW_CFA_same_value:
1887 case DW_CFA_def_cfa_register:
1888 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1889 dw2_asm_output_data_uleb128 (r, NULL);
1890 break;
1891
1892 case DW_CFA_register:
1893 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1894 dw2_asm_output_data_uleb128 (r, NULL);
1895 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, for_eh);
1896 dw2_asm_output_data_uleb128 (r, NULL);
1897 break;
1898
1899 case DW_CFA_def_cfa_offset:
1900 case DW_CFA_GNU_args_size:
1901 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
1902 break;
1903
1904 case DW_CFA_def_cfa_offset_sf:
1905 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
1906 break;
1907
1908 case DW_CFA_GNU_window_save:
1909 break;
1910
1911 case DW_CFA_def_cfa_expression:
1912 case DW_CFA_expression:
1913 output_cfa_loc (cfi);
1914 break;
1915
1916 case DW_CFA_GNU_negative_offset_extended:
1917 /* Obsoleted by DW_CFA_offset_extended_sf. */
1918 abort ();
1919
1920 default:
1921 break;
1922 }
1923 }
1924 }
1925
1926 /* Output the call frame information used to record information
1927 that relates to calculating the frame pointer, and records the
1928 location of saved registers. */
1929
1930 static void
1931 output_call_frame_info (int for_eh)
1932 {
1933 unsigned int i;
1934 dw_fde_ref fde;
1935 dw_cfi_ref cfi;
1936 char l1[20], l2[20], section_start_label[20];
1937 bool any_lsda_needed = false;
1938 char augmentation[6];
1939 int augmentation_size;
1940 int fde_encoding = DW_EH_PE_absptr;
1941 int per_encoding = DW_EH_PE_absptr;
1942 int lsda_encoding = DW_EH_PE_absptr;
1943
1944 /* Don't emit a CIE if there won't be any FDEs. */
1945 if (fde_table_in_use == 0)
1946 return;
1947
1948 /* If we make FDEs linkonce, we may have to emit an empty label for
1949 an FDE that wouldn't otherwise be emitted. We want to avoid
1950 having an FDE kept around when the function it refers to is
1951 discarded. (Example where this matters: a primary function
1952 template in C++ requires EH information, but an explicit
1953 specialization doesn't. */
1954 if (TARGET_USES_WEAK_UNWIND_INFO
1955 && ! flag_asynchronous_unwind_tables
1956 && for_eh)
1957 for (i = 0; i < fde_table_in_use; i++)
1958 if ((fde_table[i].nothrow || fde_table[i].all_throwers_are_sibcalls)
1959 && !fde_table[i].uses_eh_lsda
1960 && ! DECL_ONE_ONLY (fde_table[i].decl))
1961 (*targetm.asm_out.unwind_label) (asm_out_file, fde_table[i].decl,
1962 /* empty */ 1);
1963
1964 /* If we don't have any functions we'll want to unwind out of, don't
1965 emit any EH unwind information. Note that if exceptions aren't
1966 enabled, we won't have collected nothrow information, and if we
1967 asked for asynchronous tables, we always want this info. */
1968 if (for_eh)
1969 {
1970 bool any_eh_needed = !flag_exceptions || flag_asynchronous_unwind_tables;
1971
1972 for (i = 0; i < fde_table_in_use; i++)
1973 if (fde_table[i].uses_eh_lsda)
1974 any_eh_needed = any_lsda_needed = true;
1975 else if (TARGET_USES_WEAK_UNWIND_INFO
1976 && DECL_ONE_ONLY (fde_table[i].decl))
1977 any_eh_needed = 1;
1978 else if (! fde_table[i].nothrow
1979 && ! fde_table[i].all_throwers_are_sibcalls)
1980 any_eh_needed = true;
1981
1982 if (! any_eh_needed)
1983 return;
1984 }
1985
1986 /* We're going to be generating comments, so turn on app. */
1987 if (flag_debug_asm)
1988 app_enable ();
1989
1990 if (for_eh)
1991 (*targetm.asm_out.eh_frame_section) ();
1992 else
1993 named_section_flags (DEBUG_FRAME_SECTION, SECTION_DEBUG);
1994
1995 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
1996 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
1997
1998 /* Output the CIE. */
1999 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
2000 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
2001 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
2002 "Length of Common Information Entry");
2003 ASM_OUTPUT_LABEL (asm_out_file, l1);
2004
2005 /* Now that the CIE pointer is PC-relative for EH,
2006 use 0 to identify the CIE. */
2007 dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
2008 (for_eh ? 0 : DW_CIE_ID),
2009 "CIE Identifier Tag");
2010
2011 dw2_asm_output_data (1, DW_CIE_VERSION, "CIE Version");
2012
2013 augmentation[0] = 0;
2014 augmentation_size = 0;
2015 if (for_eh)
2016 {
2017 char *p;
2018
2019 /* Augmentation:
2020 z Indicates that a uleb128 is present to size the
2021 augmentation section.
2022 L Indicates the encoding (and thus presence) of
2023 an LSDA pointer in the FDE augmentation.
2024 R Indicates a non-default pointer encoding for
2025 FDE code pointers.
2026 P Indicates the presence of an encoding + language
2027 personality routine in the CIE augmentation. */
2028
2029 fde_encoding = TARGET_USES_WEAK_UNWIND_INFO
2030 ? ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1)
2031 : ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
2032 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
2033 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
2034
2035 p = augmentation + 1;
2036 if (eh_personality_libfunc)
2037 {
2038 *p++ = 'P';
2039 augmentation_size += 1 + size_of_encoded_value (per_encoding);
2040 }
2041 if (any_lsda_needed)
2042 {
2043 *p++ = 'L';
2044 augmentation_size += 1;
2045 }
2046 if (fde_encoding != DW_EH_PE_absptr)
2047 {
2048 *p++ = 'R';
2049 augmentation_size += 1;
2050 }
2051 if (p > augmentation + 1)
2052 {
2053 augmentation[0] = 'z';
2054 *p = '\0';
2055 }
2056
2057 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
2058 if (eh_personality_libfunc && per_encoding == DW_EH_PE_aligned)
2059 {
2060 int offset = ( 4 /* Length */
2061 + 4 /* CIE Id */
2062 + 1 /* CIE version */
2063 + strlen (augmentation) + 1 /* Augmentation */
2064 + size_of_uleb128 (1) /* Code alignment */
2065 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
2066 + 1 /* RA column */
2067 + 1 /* Augmentation size */
2068 + 1 /* Personality encoding */ );
2069 int pad = -offset & (PTR_SIZE - 1);
2070
2071 augmentation_size += pad;
2072
2073 /* Augmentations should be small, so there's scarce need to
2074 iterate for a solution. Die if we exceed one uleb128 byte. */
2075 if (size_of_uleb128 (augmentation_size) != 1)
2076 abort ();
2077 }
2078 }
2079
2080 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
2081 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
2082 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
2083 "CIE Data Alignment Factor");
2084 dw2_asm_output_data (1, DWARF_FRAME_RETURN_COLUMN, "CIE RA Column");
2085
2086 if (augmentation[0])
2087 {
2088 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
2089 if (eh_personality_libfunc)
2090 {
2091 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
2092 eh_data_format_name (per_encoding));
2093 dw2_asm_output_encoded_addr_rtx (per_encoding,
2094 eh_personality_libfunc, NULL);
2095 }
2096
2097 if (any_lsda_needed)
2098 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
2099 eh_data_format_name (lsda_encoding));
2100
2101 if (fde_encoding != DW_EH_PE_absptr)
2102 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
2103 eh_data_format_name (fde_encoding));
2104 }
2105
2106 for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
2107 output_cfi (cfi, NULL, for_eh);
2108
2109 /* Pad the CIE out to an address sized boundary. */
2110 ASM_OUTPUT_ALIGN (asm_out_file,
2111 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
2112 ASM_OUTPUT_LABEL (asm_out_file, l2);
2113
2114 /* Loop through all of the FDE's. */
2115 for (i = 0; i < fde_table_in_use; i++)
2116 {
2117 fde = &fde_table[i];
2118
2119 /* Don't emit EH unwind info for leaf functions that don't need it. */
2120 if (for_eh && !flag_asynchronous_unwind_tables && flag_exceptions
2121 && (fde->nothrow || fde->all_throwers_are_sibcalls)
2122 && (! TARGET_USES_WEAK_UNWIND_INFO || ! DECL_ONE_ONLY (fde->decl))
2123 && !fde->uses_eh_lsda)
2124 continue;
2125
2126 (*targetm.asm_out.unwind_label) (asm_out_file, fde->decl, /* empty */ 0);
2127 (*targetm.asm_out.internal_label) (asm_out_file, FDE_LABEL, for_eh + i * 2);
2128 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + i * 2);
2129 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + i * 2);
2130 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
2131 "FDE Length");
2132 ASM_OUTPUT_LABEL (asm_out_file, l1);
2133
2134 if (for_eh)
2135 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
2136 else
2137 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
2138 "FDE CIE offset");
2139
2140 if (for_eh)
2141 {
2142 if (TARGET_USES_WEAK_UNWIND_INFO
2143 && DECL_ONE_ONLY (fde->decl))
2144 dw2_asm_output_encoded_addr_rtx (fde_encoding,
2145 gen_rtx_SYMBOL_REF (Pmode, IDENTIFIER_POINTER
2146 (DECL_ASSEMBLER_NAME (fde->decl))),
2147 "FDE initial location");
2148 else
2149 dw2_asm_output_encoded_addr_rtx (fde_encoding,
2150 gen_rtx_SYMBOL_REF (Pmode, fde->dw_fde_begin),
2151 "FDE initial location");
2152 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2153 fde->dw_fde_end, fde->dw_fde_begin,
2154 "FDE address range");
2155 }
2156 else
2157 {
2158 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
2159 "FDE initial location");
2160 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
2161 fde->dw_fde_end, fde->dw_fde_begin,
2162 "FDE address range");
2163 }
2164
2165 if (augmentation[0])
2166 {
2167 if (any_lsda_needed)
2168 {
2169 int size = size_of_encoded_value (lsda_encoding);
2170
2171 if (lsda_encoding == DW_EH_PE_aligned)
2172 {
2173 int offset = ( 4 /* Length */
2174 + 4 /* CIE offset */
2175 + 2 * size_of_encoded_value (fde_encoding)
2176 + 1 /* Augmentation size */ );
2177 int pad = -offset & (PTR_SIZE - 1);
2178
2179 size += pad;
2180 if (size_of_uleb128 (size) != 1)
2181 abort ();
2182 }
2183
2184 dw2_asm_output_data_uleb128 (size, "Augmentation size");
2185
2186 if (fde->uses_eh_lsda)
2187 {
2188 ASM_GENERATE_INTERNAL_LABEL (l1, "LLSDA",
2189 fde->funcdef_number);
2190 dw2_asm_output_encoded_addr_rtx (
2191 lsda_encoding, gen_rtx_SYMBOL_REF (Pmode, l1),
2192 "Language Specific Data Area");
2193 }
2194 else
2195 {
2196 if (lsda_encoding == DW_EH_PE_aligned)
2197 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2198 dw2_asm_output_data
2199 (size_of_encoded_value (lsda_encoding), 0,
2200 "Language Specific Data Area (none)");
2201 }
2202 }
2203 else
2204 dw2_asm_output_data_uleb128 (0, "Augmentation size");
2205 }
2206
2207 /* Loop through the Call Frame Instructions associated with
2208 this FDE. */
2209 fde->dw_fde_current_label = fde->dw_fde_begin;
2210 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
2211 output_cfi (cfi, fde, for_eh);
2212
2213 /* Pad the FDE out to an address sized boundary. */
2214 ASM_OUTPUT_ALIGN (asm_out_file,
2215 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
2216 ASM_OUTPUT_LABEL (asm_out_file, l2);
2217 }
2218
2219 if (for_eh && targetm.terminate_dw2_eh_frame_info)
2220 dw2_asm_output_data (4, 0, "End of Table");
2221 #ifdef MIPS_DEBUGGING_INFO
2222 /* Work around Irix 6 assembler bug whereby labels at the end of a section
2223 get a value of 0. Putting .align 0 after the label fixes it. */
2224 ASM_OUTPUT_ALIGN (asm_out_file, 0);
2225 #endif
2226
2227 /* Turn off app to make assembly quicker. */
2228 if (flag_debug_asm)
2229 app_disable ();
2230 }
2231
2232 /* Output a marker (i.e. a label) for the beginning of a function, before
2233 the prologue. */
2234
2235 void
2236 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
2237 const char *file ATTRIBUTE_UNUSED)
2238 {
2239 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2240 dw_fde_ref fde;
2241
2242 current_function_func_begin_label = 0;
2243
2244 #ifdef IA64_UNWIND_INFO
2245 /* ??? current_function_func_begin_label is also used by except.c
2246 for call-site information. We must emit this label if it might
2247 be used. */
2248 if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
2249 && ! dwarf2out_do_frame ())
2250 return;
2251 #else
2252 if (! dwarf2out_do_frame ())
2253 return;
2254 #endif
2255
2256 function_section (current_function_decl);
2257 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
2258 current_function_funcdef_no);
2259 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
2260 current_function_funcdef_no);
2261 current_function_func_begin_label = get_identifier (label);
2262
2263 #ifdef IA64_UNWIND_INFO
2264 /* We can elide the fde allocation if we're not emitting debug info. */
2265 if (! dwarf2out_do_frame ())
2266 return;
2267 #endif
2268
2269 /* Expand the fde table if necessary. */
2270 if (fde_table_in_use == fde_table_allocated)
2271 {
2272 fde_table_allocated += FDE_TABLE_INCREMENT;
2273 fde_table = ggc_realloc (fde_table,
2274 fde_table_allocated * sizeof (dw_fde_node));
2275 memset (fde_table + fde_table_in_use, 0,
2276 FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
2277 }
2278
2279 /* Record the FDE associated with this function. */
2280 current_funcdef_fde = fde_table_in_use;
2281
2282 /* Add the new FDE at the end of the fde_table. */
2283 fde = &fde_table[fde_table_in_use++];
2284 fde->decl = current_function_decl;
2285 fde->dw_fde_begin = xstrdup (label);
2286 fde->dw_fde_current_label = NULL;
2287 fde->dw_fde_end = NULL;
2288 fde->dw_fde_cfi = NULL;
2289 fde->funcdef_number = current_function_funcdef_no;
2290 fde->nothrow = current_function_nothrow;
2291 fde->uses_eh_lsda = cfun->uses_eh_lsda;
2292 fde->all_throwers_are_sibcalls = cfun->all_throwers_are_sibcalls;
2293
2294 args_size = old_args_size = 0;
2295
2296 /* We only want to output line number information for the genuine dwarf2
2297 prologue case, not the eh frame case. */
2298 #ifdef DWARF2_DEBUGGING_INFO
2299 if (file)
2300 dwarf2out_source_line (line, file);
2301 #endif
2302 }
2303
2304 /* Output a marker (i.e. a label) for the absolute end of the generated code
2305 for a function definition. This gets called *after* the epilogue code has
2306 been generated. */
2307
2308 void
2309 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
2310 const char *file ATTRIBUTE_UNUSED)
2311 {
2312 dw_fde_ref fde;
2313 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2314
2315 /* Output a label to mark the endpoint of the code generated for this
2316 function. */
2317 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
2318 current_function_funcdef_no);
2319 ASM_OUTPUT_LABEL (asm_out_file, label);
2320 fde = &fde_table[fde_table_in_use - 1];
2321 fde->dw_fde_end = xstrdup (label);
2322 }
2323
2324 void
2325 dwarf2out_frame_init (void)
2326 {
2327 /* Allocate the initial hunk of the fde_table. */
2328 fde_table = ggc_alloc_cleared (FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
2329 fde_table_allocated = FDE_TABLE_INCREMENT;
2330 fde_table_in_use = 0;
2331
2332 /* Generate the CFA instructions common to all FDE's. Do it now for the
2333 sake of lookup_cfa. */
2334
2335 #ifdef DWARF2_UNWIND_INFO
2336 /* On entry, the Canonical Frame Address is at SP. */
2337 dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
2338 initial_return_save (INCOMING_RETURN_ADDR_RTX);
2339 #endif
2340 }
2341
2342 void
2343 dwarf2out_frame_finish (void)
2344 {
2345 /* Output call frame information. */
2346 if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
2347 output_call_frame_info (0);
2348
2349 if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
2350 output_call_frame_info (1);
2351 }
2352 #endif
2353 \f
2354 /* And now, the subset of the debugging information support code necessary
2355 for emitting location expressions. */
2356
2357 /* We need some way to distinguish DW_OP_addr with a direct symbol
2358 relocation from DW_OP_addr with a dtp-relative symbol relocation. */
2359 #define INTERNAL_DW_OP_tls_addr (0x100 + DW_OP_addr)
2360
2361
2362 typedef struct dw_val_struct *dw_val_ref;
2363 typedef struct die_struct *dw_die_ref;
2364 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
2365 typedef struct dw_loc_list_struct *dw_loc_list_ref;
2366
2367 /* Each DIE may have a series of attribute/value pairs. Values
2368 can take on several forms. The forms that are used in this
2369 implementation are listed below. */
2370
2371 enum dw_val_class
2372 {
2373 dw_val_class_addr,
2374 dw_val_class_offset,
2375 dw_val_class_loc,
2376 dw_val_class_loc_list,
2377 dw_val_class_range_list,
2378 dw_val_class_const,
2379 dw_val_class_unsigned_const,
2380 dw_val_class_long_long,
2381 dw_val_class_vec,
2382 dw_val_class_flag,
2383 dw_val_class_die_ref,
2384 dw_val_class_fde_ref,
2385 dw_val_class_lbl_id,
2386 dw_val_class_lbl_offset,
2387 dw_val_class_str
2388 };
2389
2390 /* Describe a double word constant value. */
2391 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2392
2393 typedef struct dw_long_long_struct GTY(())
2394 {
2395 unsigned long hi;
2396 unsigned long low;
2397 }
2398 dw_long_long_const;
2399
2400 /* Describe a floating point constant value, or a vector constant value. */
2401
2402 typedef struct dw_vec_struct GTY(())
2403 {
2404 unsigned char * GTY((length ("%h.length"))) array;
2405 unsigned length;
2406 unsigned elt_size;
2407 }
2408 dw_vec_const;
2409
2410 /* The dw_val_node describes an attribute's value, as it is
2411 represented internally. */
2412
2413 typedef struct dw_val_struct GTY(())
2414 {
2415 enum dw_val_class val_class;
2416 union dw_val_struct_union
2417 {
2418 rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
2419 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
2420 dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
2421 dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
2422 HOST_WIDE_INT GTY ((default (""))) val_int;
2423 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
2424 dw_long_long_const GTY ((tag ("dw_val_class_long_long"))) val_long_long;
2425 dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
2426 struct dw_val_die_union
2427 {
2428 dw_die_ref die;
2429 int external;
2430 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
2431 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
2432 struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
2433 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
2434 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
2435 }
2436 GTY ((desc ("%1.val_class"))) v;
2437 }
2438 dw_val_node;
2439
2440 /* Locations in memory are described using a sequence of stack machine
2441 operations. */
2442
2443 typedef struct dw_loc_descr_struct GTY(())
2444 {
2445 dw_loc_descr_ref dw_loc_next;
2446 enum dwarf_location_atom dw_loc_opc;
2447 dw_val_node dw_loc_oprnd1;
2448 dw_val_node dw_loc_oprnd2;
2449 int dw_loc_addr;
2450 }
2451 dw_loc_descr_node;
2452
2453 /* Location lists are ranges + location descriptions for that range,
2454 so you can track variables that are in different places over
2455 their entire life. */
2456 typedef struct dw_loc_list_struct GTY(())
2457 {
2458 dw_loc_list_ref dw_loc_next;
2459 const char *begin; /* Label for begin address of range */
2460 const char *end; /* Label for end address of range */
2461 char *ll_symbol; /* Label for beginning of location list.
2462 Only on head of list */
2463 const char *section; /* Section this loclist is relative to */
2464 dw_loc_descr_ref expr;
2465 } dw_loc_list_node;
2466
2467 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2468
2469 static const char *dwarf_stack_op_name (unsigned);
2470 static dw_loc_descr_ref new_loc_descr (enum dwarf_location_atom,
2471 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
2472 static void add_loc_descr (dw_loc_descr_ref *, dw_loc_descr_ref);
2473 static unsigned long size_of_loc_descr (dw_loc_descr_ref);
2474 static unsigned long size_of_locs (dw_loc_descr_ref);
2475 static void output_loc_operands (dw_loc_descr_ref);
2476 static void output_loc_sequence (dw_loc_descr_ref);
2477
2478 /* Convert a DWARF stack opcode into its string name. */
2479
2480 static const char *
2481 dwarf_stack_op_name (unsigned int op)
2482 {
2483 switch (op)
2484 {
2485 case DW_OP_addr:
2486 case INTERNAL_DW_OP_tls_addr:
2487 return "DW_OP_addr";
2488 case DW_OP_deref:
2489 return "DW_OP_deref";
2490 case DW_OP_const1u:
2491 return "DW_OP_const1u";
2492 case DW_OP_const1s:
2493 return "DW_OP_const1s";
2494 case DW_OP_const2u:
2495 return "DW_OP_const2u";
2496 case DW_OP_const2s:
2497 return "DW_OP_const2s";
2498 case DW_OP_const4u:
2499 return "DW_OP_const4u";
2500 case DW_OP_const4s:
2501 return "DW_OP_const4s";
2502 case DW_OP_const8u:
2503 return "DW_OP_const8u";
2504 case DW_OP_const8s:
2505 return "DW_OP_const8s";
2506 case DW_OP_constu:
2507 return "DW_OP_constu";
2508 case DW_OP_consts:
2509 return "DW_OP_consts";
2510 case DW_OP_dup:
2511 return "DW_OP_dup";
2512 case DW_OP_drop:
2513 return "DW_OP_drop";
2514 case DW_OP_over:
2515 return "DW_OP_over";
2516 case DW_OP_pick:
2517 return "DW_OP_pick";
2518 case DW_OP_swap:
2519 return "DW_OP_swap";
2520 case DW_OP_rot:
2521 return "DW_OP_rot";
2522 case DW_OP_xderef:
2523 return "DW_OP_xderef";
2524 case DW_OP_abs:
2525 return "DW_OP_abs";
2526 case DW_OP_and:
2527 return "DW_OP_and";
2528 case DW_OP_div:
2529 return "DW_OP_div";
2530 case DW_OP_minus:
2531 return "DW_OP_minus";
2532 case DW_OP_mod:
2533 return "DW_OP_mod";
2534 case DW_OP_mul:
2535 return "DW_OP_mul";
2536 case DW_OP_neg:
2537 return "DW_OP_neg";
2538 case DW_OP_not:
2539 return "DW_OP_not";
2540 case DW_OP_or:
2541 return "DW_OP_or";
2542 case DW_OP_plus:
2543 return "DW_OP_plus";
2544 case DW_OP_plus_uconst:
2545 return "DW_OP_plus_uconst";
2546 case DW_OP_shl:
2547 return "DW_OP_shl";
2548 case DW_OP_shr:
2549 return "DW_OP_shr";
2550 case DW_OP_shra:
2551 return "DW_OP_shra";
2552 case DW_OP_xor:
2553 return "DW_OP_xor";
2554 case DW_OP_bra:
2555 return "DW_OP_bra";
2556 case DW_OP_eq:
2557 return "DW_OP_eq";
2558 case DW_OP_ge:
2559 return "DW_OP_ge";
2560 case DW_OP_gt:
2561 return "DW_OP_gt";
2562 case DW_OP_le:
2563 return "DW_OP_le";
2564 case DW_OP_lt:
2565 return "DW_OP_lt";
2566 case DW_OP_ne:
2567 return "DW_OP_ne";
2568 case DW_OP_skip:
2569 return "DW_OP_skip";
2570 case DW_OP_lit0:
2571 return "DW_OP_lit0";
2572 case DW_OP_lit1:
2573 return "DW_OP_lit1";
2574 case DW_OP_lit2:
2575 return "DW_OP_lit2";
2576 case DW_OP_lit3:
2577 return "DW_OP_lit3";
2578 case DW_OP_lit4:
2579 return "DW_OP_lit4";
2580 case DW_OP_lit5:
2581 return "DW_OP_lit5";
2582 case DW_OP_lit6:
2583 return "DW_OP_lit6";
2584 case DW_OP_lit7:
2585 return "DW_OP_lit7";
2586 case DW_OP_lit8:
2587 return "DW_OP_lit8";
2588 case DW_OP_lit9:
2589 return "DW_OP_lit9";
2590 case DW_OP_lit10:
2591 return "DW_OP_lit10";
2592 case DW_OP_lit11:
2593 return "DW_OP_lit11";
2594 case DW_OP_lit12:
2595 return "DW_OP_lit12";
2596 case DW_OP_lit13:
2597 return "DW_OP_lit13";
2598 case DW_OP_lit14:
2599 return "DW_OP_lit14";
2600 case DW_OP_lit15:
2601 return "DW_OP_lit15";
2602 case DW_OP_lit16:
2603 return "DW_OP_lit16";
2604 case DW_OP_lit17:
2605 return "DW_OP_lit17";
2606 case DW_OP_lit18:
2607 return "DW_OP_lit18";
2608 case DW_OP_lit19:
2609 return "DW_OP_lit19";
2610 case DW_OP_lit20:
2611 return "DW_OP_lit20";
2612 case DW_OP_lit21:
2613 return "DW_OP_lit21";
2614 case DW_OP_lit22:
2615 return "DW_OP_lit22";
2616 case DW_OP_lit23:
2617 return "DW_OP_lit23";
2618 case DW_OP_lit24:
2619 return "DW_OP_lit24";
2620 case DW_OP_lit25:
2621 return "DW_OP_lit25";
2622 case DW_OP_lit26:
2623 return "DW_OP_lit26";
2624 case DW_OP_lit27:
2625 return "DW_OP_lit27";
2626 case DW_OP_lit28:
2627 return "DW_OP_lit28";
2628 case DW_OP_lit29:
2629 return "DW_OP_lit29";
2630 case DW_OP_lit30:
2631 return "DW_OP_lit30";
2632 case DW_OP_lit31:
2633 return "DW_OP_lit31";
2634 case DW_OP_reg0:
2635 return "DW_OP_reg0";
2636 case DW_OP_reg1:
2637 return "DW_OP_reg1";
2638 case DW_OP_reg2:
2639 return "DW_OP_reg2";
2640 case DW_OP_reg3:
2641 return "DW_OP_reg3";
2642 case DW_OP_reg4:
2643 return "DW_OP_reg4";
2644 case DW_OP_reg5:
2645 return "DW_OP_reg5";
2646 case DW_OP_reg6:
2647 return "DW_OP_reg6";
2648 case DW_OP_reg7:
2649 return "DW_OP_reg7";
2650 case DW_OP_reg8:
2651 return "DW_OP_reg8";
2652 case DW_OP_reg9:
2653 return "DW_OP_reg9";
2654 case DW_OP_reg10:
2655 return "DW_OP_reg10";
2656 case DW_OP_reg11:
2657 return "DW_OP_reg11";
2658 case DW_OP_reg12:
2659 return "DW_OP_reg12";
2660 case DW_OP_reg13:
2661 return "DW_OP_reg13";
2662 case DW_OP_reg14:
2663 return "DW_OP_reg14";
2664 case DW_OP_reg15:
2665 return "DW_OP_reg15";
2666 case DW_OP_reg16:
2667 return "DW_OP_reg16";
2668 case DW_OP_reg17:
2669 return "DW_OP_reg17";
2670 case DW_OP_reg18:
2671 return "DW_OP_reg18";
2672 case DW_OP_reg19:
2673 return "DW_OP_reg19";
2674 case DW_OP_reg20:
2675 return "DW_OP_reg20";
2676 case DW_OP_reg21:
2677 return "DW_OP_reg21";
2678 case DW_OP_reg22:
2679 return "DW_OP_reg22";
2680 case DW_OP_reg23:
2681 return "DW_OP_reg23";
2682 case DW_OP_reg24:
2683 return "DW_OP_reg24";
2684 case DW_OP_reg25:
2685 return "DW_OP_reg25";
2686 case DW_OP_reg26:
2687 return "DW_OP_reg26";
2688 case DW_OP_reg27:
2689 return "DW_OP_reg27";
2690 case DW_OP_reg28:
2691 return "DW_OP_reg28";
2692 case DW_OP_reg29:
2693 return "DW_OP_reg29";
2694 case DW_OP_reg30:
2695 return "DW_OP_reg30";
2696 case DW_OP_reg31:
2697 return "DW_OP_reg31";
2698 case DW_OP_breg0:
2699 return "DW_OP_breg0";
2700 case DW_OP_breg1:
2701 return "DW_OP_breg1";
2702 case DW_OP_breg2:
2703 return "DW_OP_breg2";
2704 case DW_OP_breg3:
2705 return "DW_OP_breg3";
2706 case DW_OP_breg4:
2707 return "DW_OP_breg4";
2708 case DW_OP_breg5:
2709 return "DW_OP_breg5";
2710 case DW_OP_breg6:
2711 return "DW_OP_breg6";
2712 case DW_OP_breg7:
2713 return "DW_OP_breg7";
2714 case DW_OP_breg8:
2715 return "DW_OP_breg8";
2716 case DW_OP_breg9:
2717 return "DW_OP_breg9";
2718 case DW_OP_breg10:
2719 return "DW_OP_breg10";
2720 case DW_OP_breg11:
2721 return "DW_OP_breg11";
2722 case DW_OP_breg12:
2723 return "DW_OP_breg12";
2724 case DW_OP_breg13:
2725 return "DW_OP_breg13";
2726 case DW_OP_breg14:
2727 return "DW_OP_breg14";
2728 case DW_OP_breg15:
2729 return "DW_OP_breg15";
2730 case DW_OP_breg16:
2731 return "DW_OP_breg16";
2732 case DW_OP_breg17:
2733 return "DW_OP_breg17";
2734 case DW_OP_breg18:
2735 return "DW_OP_breg18";
2736 case DW_OP_breg19:
2737 return "DW_OP_breg19";
2738 case DW_OP_breg20:
2739 return "DW_OP_breg20";
2740 case DW_OP_breg21:
2741 return "DW_OP_breg21";
2742 case DW_OP_breg22:
2743 return "DW_OP_breg22";
2744 case DW_OP_breg23:
2745 return "DW_OP_breg23";
2746 case DW_OP_breg24:
2747 return "DW_OP_breg24";
2748 case DW_OP_breg25:
2749 return "DW_OP_breg25";
2750 case DW_OP_breg26:
2751 return "DW_OP_breg26";
2752 case DW_OP_breg27:
2753 return "DW_OP_breg27";
2754 case DW_OP_breg28:
2755 return "DW_OP_breg28";
2756 case DW_OP_breg29:
2757 return "DW_OP_breg29";
2758 case DW_OP_breg30:
2759 return "DW_OP_breg30";
2760 case DW_OP_breg31:
2761 return "DW_OP_breg31";
2762 case DW_OP_regx:
2763 return "DW_OP_regx";
2764 case DW_OP_fbreg:
2765 return "DW_OP_fbreg";
2766 case DW_OP_bregx:
2767 return "DW_OP_bregx";
2768 case DW_OP_piece:
2769 return "DW_OP_piece";
2770 case DW_OP_deref_size:
2771 return "DW_OP_deref_size";
2772 case DW_OP_xderef_size:
2773 return "DW_OP_xderef_size";
2774 case DW_OP_nop:
2775 return "DW_OP_nop";
2776 case DW_OP_push_object_address:
2777 return "DW_OP_push_object_address";
2778 case DW_OP_call2:
2779 return "DW_OP_call2";
2780 case DW_OP_call4:
2781 return "DW_OP_call4";
2782 case DW_OP_call_ref:
2783 return "DW_OP_call_ref";
2784 case DW_OP_GNU_push_tls_address:
2785 return "DW_OP_GNU_push_tls_address";
2786 default:
2787 return "OP_<unknown>";
2788 }
2789 }
2790
2791 /* Return a pointer to a newly allocated location description. Location
2792 descriptions are simple expression terms that can be strung
2793 together to form more complicated location (address) descriptions. */
2794
2795 static inline dw_loc_descr_ref
2796 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
2797 unsigned HOST_WIDE_INT oprnd2)
2798 {
2799 dw_loc_descr_ref descr = ggc_alloc_cleared (sizeof (dw_loc_descr_node));
2800
2801 descr->dw_loc_opc = op;
2802 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
2803 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
2804 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
2805 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
2806
2807 return descr;
2808 }
2809
2810
2811 /* Add a location description term to a location description expression. */
2812
2813 static inline void
2814 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
2815 {
2816 dw_loc_descr_ref *d;
2817
2818 /* Find the end of the chain. */
2819 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
2820 ;
2821
2822 *d = descr;
2823 }
2824
2825 /* Return the size of a location descriptor. */
2826
2827 static unsigned long
2828 size_of_loc_descr (dw_loc_descr_ref loc)
2829 {
2830 unsigned long size = 1;
2831
2832 switch (loc->dw_loc_opc)
2833 {
2834 case DW_OP_addr:
2835 case INTERNAL_DW_OP_tls_addr:
2836 size += DWARF2_ADDR_SIZE;
2837 break;
2838 case DW_OP_const1u:
2839 case DW_OP_const1s:
2840 size += 1;
2841 break;
2842 case DW_OP_const2u:
2843 case DW_OP_const2s:
2844 size += 2;
2845 break;
2846 case DW_OP_const4u:
2847 case DW_OP_const4s:
2848 size += 4;
2849 break;
2850 case DW_OP_const8u:
2851 case DW_OP_const8s:
2852 size += 8;
2853 break;
2854 case DW_OP_constu:
2855 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2856 break;
2857 case DW_OP_consts:
2858 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2859 break;
2860 case DW_OP_pick:
2861 size += 1;
2862 break;
2863 case DW_OP_plus_uconst:
2864 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2865 break;
2866 case DW_OP_skip:
2867 case DW_OP_bra:
2868 size += 2;
2869 break;
2870 case DW_OP_breg0:
2871 case DW_OP_breg1:
2872 case DW_OP_breg2:
2873 case DW_OP_breg3:
2874 case DW_OP_breg4:
2875 case DW_OP_breg5:
2876 case DW_OP_breg6:
2877 case DW_OP_breg7:
2878 case DW_OP_breg8:
2879 case DW_OP_breg9:
2880 case DW_OP_breg10:
2881 case DW_OP_breg11:
2882 case DW_OP_breg12:
2883 case DW_OP_breg13:
2884 case DW_OP_breg14:
2885 case DW_OP_breg15:
2886 case DW_OP_breg16:
2887 case DW_OP_breg17:
2888 case DW_OP_breg18:
2889 case DW_OP_breg19:
2890 case DW_OP_breg20:
2891 case DW_OP_breg21:
2892 case DW_OP_breg22:
2893 case DW_OP_breg23:
2894 case DW_OP_breg24:
2895 case DW_OP_breg25:
2896 case DW_OP_breg26:
2897 case DW_OP_breg27:
2898 case DW_OP_breg28:
2899 case DW_OP_breg29:
2900 case DW_OP_breg30:
2901 case DW_OP_breg31:
2902 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2903 break;
2904 case DW_OP_regx:
2905 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2906 break;
2907 case DW_OP_fbreg:
2908 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
2909 break;
2910 case DW_OP_bregx:
2911 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2912 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
2913 break;
2914 case DW_OP_piece:
2915 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2916 break;
2917 case DW_OP_deref_size:
2918 case DW_OP_xderef_size:
2919 size += 1;
2920 break;
2921 case DW_OP_call2:
2922 size += 2;
2923 break;
2924 case DW_OP_call4:
2925 size += 4;
2926 break;
2927 case DW_OP_call_ref:
2928 size += DWARF2_ADDR_SIZE;
2929 break;
2930 default:
2931 break;
2932 }
2933
2934 return size;
2935 }
2936
2937 /* Return the size of a series of location descriptors. */
2938
2939 static unsigned long
2940 size_of_locs (dw_loc_descr_ref loc)
2941 {
2942 unsigned long size;
2943
2944 for (size = 0; loc != NULL; loc = loc->dw_loc_next)
2945 {
2946 loc->dw_loc_addr = size;
2947 size += size_of_loc_descr (loc);
2948 }
2949
2950 return size;
2951 }
2952
2953 /* Output location description stack opcode's operands (if any). */
2954
2955 static void
2956 output_loc_operands (dw_loc_descr_ref loc)
2957 {
2958 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2959 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2960
2961 switch (loc->dw_loc_opc)
2962 {
2963 #ifdef DWARF2_DEBUGGING_INFO
2964 case DW_OP_addr:
2965 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
2966 break;
2967 case DW_OP_const2u:
2968 case DW_OP_const2s:
2969 dw2_asm_output_data (2, val1->v.val_int, NULL);
2970 break;
2971 case DW_OP_const4u:
2972 case DW_OP_const4s:
2973 dw2_asm_output_data (4, val1->v.val_int, NULL);
2974 break;
2975 case DW_OP_const8u:
2976 case DW_OP_const8s:
2977 if (HOST_BITS_PER_LONG < 64)
2978 abort ();
2979 dw2_asm_output_data (8, val1->v.val_int, NULL);
2980 break;
2981 case DW_OP_skip:
2982 case DW_OP_bra:
2983 {
2984 int offset;
2985
2986 if (val1->val_class == dw_val_class_loc)
2987 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2988 else
2989 abort ();
2990
2991 dw2_asm_output_data (2, offset, NULL);
2992 }
2993 break;
2994 #else
2995 case DW_OP_addr:
2996 case DW_OP_const2u:
2997 case DW_OP_const2s:
2998 case DW_OP_const4u:
2999 case DW_OP_const4s:
3000 case DW_OP_const8u:
3001 case DW_OP_const8s:
3002 case DW_OP_skip:
3003 case DW_OP_bra:
3004 /* We currently don't make any attempt to make sure these are
3005 aligned properly like we do for the main unwind info, so
3006 don't support emitting things larger than a byte if we're
3007 only doing unwinding. */
3008 abort ();
3009 #endif
3010 case DW_OP_const1u:
3011 case DW_OP_const1s:
3012 dw2_asm_output_data (1, val1->v.val_int, NULL);
3013 break;
3014 case DW_OP_constu:
3015 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3016 break;
3017 case DW_OP_consts:
3018 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3019 break;
3020 case DW_OP_pick:
3021 dw2_asm_output_data (1, val1->v.val_int, NULL);
3022 break;
3023 case DW_OP_plus_uconst:
3024 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3025 break;
3026 case DW_OP_breg0:
3027 case DW_OP_breg1:
3028 case DW_OP_breg2:
3029 case DW_OP_breg3:
3030 case DW_OP_breg4:
3031 case DW_OP_breg5:
3032 case DW_OP_breg6:
3033 case DW_OP_breg7:
3034 case DW_OP_breg8:
3035 case DW_OP_breg9:
3036 case DW_OP_breg10:
3037 case DW_OP_breg11:
3038 case DW_OP_breg12:
3039 case DW_OP_breg13:
3040 case DW_OP_breg14:
3041 case DW_OP_breg15:
3042 case DW_OP_breg16:
3043 case DW_OP_breg17:
3044 case DW_OP_breg18:
3045 case DW_OP_breg19:
3046 case DW_OP_breg20:
3047 case DW_OP_breg21:
3048 case DW_OP_breg22:
3049 case DW_OP_breg23:
3050 case DW_OP_breg24:
3051 case DW_OP_breg25:
3052 case DW_OP_breg26:
3053 case DW_OP_breg27:
3054 case DW_OP_breg28:
3055 case DW_OP_breg29:
3056 case DW_OP_breg30:
3057 case DW_OP_breg31:
3058 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3059 break;
3060 case DW_OP_regx:
3061 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3062 break;
3063 case DW_OP_fbreg:
3064 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3065 break;
3066 case DW_OP_bregx:
3067 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3068 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
3069 break;
3070 case DW_OP_piece:
3071 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3072 break;
3073 case DW_OP_deref_size:
3074 case DW_OP_xderef_size:
3075 dw2_asm_output_data (1, val1->v.val_int, NULL);
3076 break;
3077
3078 case INTERNAL_DW_OP_tls_addr:
3079 #ifdef ASM_OUTPUT_DWARF_DTPREL
3080 ASM_OUTPUT_DWARF_DTPREL (asm_out_file, DWARF2_ADDR_SIZE,
3081 val1->v.val_addr);
3082 fputc ('\n', asm_out_file);
3083 #else
3084 abort ();
3085 #endif
3086 break;
3087
3088 default:
3089 /* Other codes have no operands. */
3090 break;
3091 }
3092 }
3093
3094 /* Output a sequence of location operations. */
3095
3096 static void
3097 output_loc_sequence (dw_loc_descr_ref loc)
3098 {
3099 for (; loc != NULL; loc = loc->dw_loc_next)
3100 {
3101 /* Output the opcode. */
3102 dw2_asm_output_data (1, loc->dw_loc_opc,
3103 "%s", dwarf_stack_op_name (loc->dw_loc_opc));
3104
3105 /* Output the operand(s) (if any). */
3106 output_loc_operands (loc);
3107 }
3108 }
3109
3110 /* This routine will generate the correct assembly data for a location
3111 description based on a cfi entry with a complex address. */
3112
3113 static void
3114 output_cfa_loc (dw_cfi_ref cfi)
3115 {
3116 dw_loc_descr_ref loc;
3117 unsigned long size;
3118
3119 /* Output the size of the block. */
3120 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
3121 size = size_of_locs (loc);
3122 dw2_asm_output_data_uleb128 (size, NULL);
3123
3124 /* Now output the operations themselves. */
3125 output_loc_sequence (loc);
3126 }
3127
3128 /* This function builds a dwarf location descriptor sequence from
3129 a dw_cfa_location. */
3130
3131 static struct dw_loc_descr_struct *
3132 build_cfa_loc (dw_cfa_location *cfa)
3133 {
3134 struct dw_loc_descr_struct *head, *tmp;
3135
3136 if (cfa->indirect == 0)
3137 abort ();
3138
3139 if (cfa->base_offset)
3140 {
3141 if (cfa->reg <= 31)
3142 head = new_loc_descr (DW_OP_breg0 + cfa->reg, cfa->base_offset, 0);
3143 else
3144 head = new_loc_descr (DW_OP_bregx, cfa->reg, cfa->base_offset);
3145 }
3146 else if (cfa->reg <= 31)
3147 head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
3148 else
3149 head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
3150
3151 head->dw_loc_oprnd1.val_class = dw_val_class_const;
3152 tmp = new_loc_descr (DW_OP_deref, 0, 0);
3153 add_loc_descr (&head, tmp);
3154 if (cfa->offset != 0)
3155 {
3156 tmp = new_loc_descr (DW_OP_plus_uconst, cfa->offset, 0);
3157 add_loc_descr (&head, tmp);
3158 }
3159
3160 return head;
3161 }
3162
3163 /* This function fills in aa dw_cfa_location structure from a dwarf location
3164 descriptor sequence. */
3165
3166 static void
3167 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
3168 {
3169 struct dw_loc_descr_struct *ptr;
3170 cfa->offset = 0;
3171 cfa->base_offset = 0;
3172 cfa->indirect = 0;
3173 cfa->reg = -1;
3174
3175 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
3176 {
3177 enum dwarf_location_atom op = ptr->dw_loc_opc;
3178
3179 switch (op)
3180 {
3181 case DW_OP_reg0:
3182 case DW_OP_reg1:
3183 case DW_OP_reg2:
3184 case DW_OP_reg3:
3185 case DW_OP_reg4:
3186 case DW_OP_reg5:
3187 case DW_OP_reg6:
3188 case DW_OP_reg7:
3189 case DW_OP_reg8:
3190 case DW_OP_reg9:
3191 case DW_OP_reg10:
3192 case DW_OP_reg11:
3193 case DW_OP_reg12:
3194 case DW_OP_reg13:
3195 case DW_OP_reg14:
3196 case DW_OP_reg15:
3197 case DW_OP_reg16:
3198 case DW_OP_reg17:
3199 case DW_OP_reg18:
3200 case DW_OP_reg19:
3201 case DW_OP_reg20:
3202 case DW_OP_reg21:
3203 case DW_OP_reg22:
3204 case DW_OP_reg23:
3205 case DW_OP_reg24:
3206 case DW_OP_reg25:
3207 case DW_OP_reg26:
3208 case DW_OP_reg27:
3209 case DW_OP_reg28:
3210 case DW_OP_reg29:
3211 case DW_OP_reg30:
3212 case DW_OP_reg31:
3213 cfa->reg = op - DW_OP_reg0;
3214 break;
3215 case DW_OP_regx:
3216 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3217 break;
3218 case DW_OP_breg0:
3219 case DW_OP_breg1:
3220 case DW_OP_breg2:
3221 case DW_OP_breg3:
3222 case DW_OP_breg4:
3223 case DW_OP_breg5:
3224 case DW_OP_breg6:
3225 case DW_OP_breg7:
3226 case DW_OP_breg8:
3227 case DW_OP_breg9:
3228 case DW_OP_breg10:
3229 case DW_OP_breg11:
3230 case DW_OP_breg12:
3231 case DW_OP_breg13:
3232 case DW_OP_breg14:
3233 case DW_OP_breg15:
3234 case DW_OP_breg16:
3235 case DW_OP_breg17:
3236 case DW_OP_breg18:
3237 case DW_OP_breg19:
3238 case DW_OP_breg20:
3239 case DW_OP_breg21:
3240 case DW_OP_breg22:
3241 case DW_OP_breg23:
3242 case DW_OP_breg24:
3243 case DW_OP_breg25:
3244 case DW_OP_breg26:
3245 case DW_OP_breg27:
3246 case DW_OP_breg28:
3247 case DW_OP_breg29:
3248 case DW_OP_breg30:
3249 case DW_OP_breg31:
3250 cfa->reg = op - DW_OP_breg0;
3251 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
3252 break;
3253 case DW_OP_bregx:
3254 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3255 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
3256 break;
3257 case DW_OP_deref:
3258 cfa->indirect = 1;
3259 break;
3260 case DW_OP_plus_uconst:
3261 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
3262 break;
3263 default:
3264 internal_error ("DW_LOC_OP %s not implemented\n",
3265 dwarf_stack_op_name (ptr->dw_loc_opc));
3266 }
3267 }
3268 }
3269 #endif /* .debug_frame support */
3270 \f
3271 /* And now, the support for symbolic debugging information. */
3272 #ifdef DWARF2_DEBUGGING_INFO
3273
3274 /* .debug_str support. */
3275 static int output_indirect_string (void **, void *);
3276
3277 static void dwarf2out_init (const char *);
3278 static void dwarf2out_finish (const char *);
3279 static void dwarf2out_define (unsigned int, const char *);
3280 static void dwarf2out_undef (unsigned int, const char *);
3281 static void dwarf2out_start_source_file (unsigned, const char *);
3282 static void dwarf2out_end_source_file (unsigned);
3283 static void dwarf2out_begin_block (unsigned, unsigned);
3284 static void dwarf2out_end_block (unsigned, unsigned);
3285 static bool dwarf2out_ignore_block (tree);
3286 static void dwarf2out_global_decl (tree);
3287 static void dwarf2out_type_decl (tree, int);
3288 static void dwarf2out_imported_module_or_decl (tree, tree);
3289 static void dwarf2out_abstract_function (tree);
3290 static void dwarf2out_var_location (rtx);
3291 static void dwarf2out_begin_function (tree);
3292
3293 /* The debug hooks structure. */
3294
3295 const struct gcc_debug_hooks dwarf2_debug_hooks =
3296 {
3297 dwarf2out_init,
3298 dwarf2out_finish,
3299 dwarf2out_define,
3300 dwarf2out_undef,
3301 dwarf2out_start_source_file,
3302 dwarf2out_end_source_file,
3303 dwarf2out_begin_block,
3304 dwarf2out_end_block,
3305 dwarf2out_ignore_block,
3306 dwarf2out_source_line,
3307 dwarf2out_begin_prologue,
3308 debug_nothing_int_charstar, /* end_prologue */
3309 dwarf2out_end_epilogue,
3310 dwarf2out_begin_function,
3311 debug_nothing_int, /* end_function */
3312 dwarf2out_decl, /* function_decl */
3313 dwarf2out_global_decl,
3314 dwarf2out_type_decl, /* type_decl */
3315 dwarf2out_imported_module_or_decl,
3316 debug_nothing_tree, /* deferred_inline_function */
3317 /* The DWARF 2 backend tries to reduce debugging bloat by not
3318 emitting the abstract description of inline functions until
3319 something tries to reference them. */
3320 dwarf2out_abstract_function, /* outlining_inline_function */
3321 debug_nothing_rtx, /* label */
3322 debug_nothing_int, /* handle_pch */
3323 dwarf2out_var_location
3324 };
3325 #endif
3326 \f
3327 /* NOTE: In the comments in this file, many references are made to
3328 "Debugging Information Entries". This term is abbreviated as `DIE'
3329 throughout the remainder of this file. */
3330
3331 /* An internal representation of the DWARF output is built, and then
3332 walked to generate the DWARF debugging info. The walk of the internal
3333 representation is done after the entire program has been compiled.
3334 The types below are used to describe the internal representation. */
3335
3336 /* Various DIE's use offsets relative to the beginning of the
3337 .debug_info section to refer to each other. */
3338
3339 typedef long int dw_offset;
3340
3341 /* Define typedefs here to avoid circular dependencies. */
3342
3343 typedef struct dw_attr_struct *dw_attr_ref;
3344 typedef struct dw_line_info_struct *dw_line_info_ref;
3345 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3346 typedef struct pubname_struct *pubname_ref;
3347 typedef struct dw_ranges_struct *dw_ranges_ref;
3348
3349 /* Each entry in the line_info_table maintains the file and
3350 line number associated with the label generated for that
3351 entry. The label gives the PC value associated with
3352 the line number entry. */
3353
3354 typedef struct dw_line_info_struct GTY(())
3355 {
3356 unsigned long dw_file_num;
3357 unsigned long dw_line_num;
3358 }
3359 dw_line_info_entry;
3360
3361 /* Line information for functions in separate sections; each one gets its
3362 own sequence. */
3363 typedef struct dw_separate_line_info_struct GTY(())
3364 {
3365 unsigned long dw_file_num;
3366 unsigned long dw_line_num;
3367 unsigned long function;
3368 }
3369 dw_separate_line_info_entry;
3370
3371 /* Each DIE attribute has a field specifying the attribute kind,
3372 a link to the next attribute in the chain, and an attribute value.
3373 Attributes are typically linked below the DIE they modify. */
3374
3375 typedef struct dw_attr_struct GTY(())
3376 {
3377 enum dwarf_attribute dw_attr;
3378 dw_attr_ref dw_attr_next;
3379 dw_val_node dw_attr_val;
3380 }
3381 dw_attr_node;
3382
3383 /* The Debugging Information Entry (DIE) structure */
3384
3385 typedef struct die_struct GTY(())
3386 {
3387 enum dwarf_tag die_tag;
3388 char *die_symbol;
3389 dw_attr_ref die_attr;
3390 dw_die_ref die_parent;
3391 dw_die_ref die_child;
3392 dw_die_ref die_sib;
3393 dw_die_ref die_definition; /* ref from a specification to its definition */
3394 dw_offset die_offset;
3395 unsigned long die_abbrev;
3396 int die_mark;
3397 unsigned int decl_id;
3398 }
3399 die_node;
3400
3401 /* The pubname structure */
3402
3403 typedef struct pubname_struct GTY(())
3404 {
3405 dw_die_ref die;
3406 char *name;
3407 }
3408 pubname_entry;
3409
3410 struct dw_ranges_struct GTY(())
3411 {
3412 int block_num;
3413 };
3414
3415 /* The limbo die list structure. */
3416 typedef struct limbo_die_struct GTY(())
3417 {
3418 dw_die_ref die;
3419 tree created_for;
3420 struct limbo_die_struct *next;
3421 }
3422 limbo_die_node;
3423
3424 /* How to start an assembler comment. */
3425 #ifndef ASM_COMMENT_START
3426 #define ASM_COMMENT_START ";#"
3427 #endif
3428
3429 /* Define a macro which returns nonzero for a TYPE_DECL which was
3430 implicitly generated for a tagged type.
3431
3432 Note that unlike the gcc front end (which generates a NULL named
3433 TYPE_DECL node for each complete tagged type, each array type, and
3434 each function type node created) the g++ front end generates a
3435 _named_ TYPE_DECL node for each tagged type node created.
3436 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3437 generate a DW_TAG_typedef DIE for them. */
3438
3439 #define TYPE_DECL_IS_STUB(decl) \
3440 (DECL_NAME (decl) == NULL_TREE \
3441 || (DECL_ARTIFICIAL (decl) \
3442 && is_tagged_type (TREE_TYPE (decl)) \
3443 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3444 /* This is necessary for stub decls that \
3445 appear in nested inline functions. */ \
3446 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3447 && (decl_ultimate_origin (decl) \
3448 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3449
3450 /* Information concerning the compilation unit's programming
3451 language, and compiler version. */
3452
3453 /* Fixed size portion of the DWARF compilation unit header. */
3454 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3455 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3456
3457 /* Fixed size portion of public names info. */
3458 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3459
3460 /* Fixed size portion of the address range info. */
3461 #define DWARF_ARANGES_HEADER_SIZE \
3462 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3463 DWARF2_ADDR_SIZE * 2) \
3464 - DWARF_INITIAL_LENGTH_SIZE)
3465
3466 /* Size of padding portion in the address range info. It must be
3467 aligned to twice the pointer size. */
3468 #define DWARF_ARANGES_PAD_SIZE \
3469 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3470 DWARF2_ADDR_SIZE * 2) \
3471 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3472
3473 /* Use assembler line directives if available. */
3474 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3475 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3476 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3477 #else
3478 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3479 #endif
3480 #endif
3481
3482 /* Minimum line offset in a special line info. opcode.
3483 This value was chosen to give a reasonable range of values. */
3484 #define DWARF_LINE_BASE -10
3485
3486 /* First special line opcode - leave room for the standard opcodes. */
3487 #define DWARF_LINE_OPCODE_BASE 10
3488
3489 /* Range of line offsets in a special line info. opcode. */
3490 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3491
3492 /* Flag that indicates the initial value of the is_stmt_start flag.
3493 In the present implementation, we do not mark any lines as
3494 the beginning of a source statement, because that information
3495 is not made available by the GCC front-end. */
3496 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3497
3498 #ifdef DWARF2_DEBUGGING_INFO
3499 /* This location is used by calc_die_sizes() to keep track
3500 the offset of each DIE within the .debug_info section. */
3501 static unsigned long next_die_offset;
3502 #endif
3503
3504 /* Record the root of the DIE's built for the current compilation unit. */
3505 static GTY(()) dw_die_ref comp_unit_die;
3506
3507 /* A list of DIEs with a NULL parent waiting to be relocated. */
3508 static GTY(()) limbo_die_node *limbo_die_list;
3509
3510 /* Filenames referenced by this compilation unit. */
3511 static GTY(()) varray_type file_table;
3512 static GTY(()) varray_type file_table_emitted;
3513 static GTY(()) size_t file_table_last_lookup_index;
3514
3515 /* A hash table of references to DIE's that describe declarations.
3516 The key is a DECL_UID() which is a unique number identifying each decl. */
3517 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
3518
3519 /* Node of the variable location list. */
3520 struct var_loc_node GTY ((chain_next ("%h.next")))
3521 {
3522 rtx GTY (()) var_loc_note;
3523 const char * GTY (()) label;
3524 struct var_loc_node * GTY (()) next;
3525 };
3526
3527 /* Variable location list. */
3528 struct var_loc_list_def GTY (())
3529 {
3530 struct var_loc_node * GTY (()) first;
3531
3532 /* Do not mark the last element of the chained list because
3533 it is marked through the chain. */
3534 struct var_loc_node * GTY ((skip ("%h"))) last;
3535
3536 /* DECL_UID of the variable decl. */
3537 unsigned int decl_id;
3538 };
3539 typedef struct var_loc_list_def var_loc_list;
3540
3541
3542 /* Table of decl location linked lists. */
3543 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
3544
3545 /* A pointer to the base of a list of references to DIE's that
3546 are uniquely identified by their tag, presence/absence of
3547 children DIE's, and list of attribute/value pairs. */
3548 static GTY((length ("abbrev_die_table_allocated")))
3549 dw_die_ref *abbrev_die_table;
3550
3551 /* Number of elements currently allocated for abbrev_die_table. */
3552 static GTY(()) unsigned abbrev_die_table_allocated;
3553
3554 /* Number of elements in type_die_table currently in use. */
3555 static GTY(()) unsigned abbrev_die_table_in_use;
3556
3557 /* Size (in elements) of increments by which we may expand the
3558 abbrev_die_table. */
3559 #define ABBREV_DIE_TABLE_INCREMENT 256
3560
3561 /* A pointer to the base of a table that contains line information
3562 for each source code line in .text in the compilation unit. */
3563 static GTY((length ("line_info_table_allocated")))
3564 dw_line_info_ref line_info_table;
3565
3566 /* Number of elements currently allocated for line_info_table. */
3567 static GTY(()) unsigned line_info_table_allocated;
3568
3569 /* Number of elements in line_info_table currently in use. */
3570 static GTY(()) unsigned line_info_table_in_use;
3571
3572 /* A pointer to the base of a table that contains line information
3573 for each source code line outside of .text in the compilation unit. */
3574 static GTY ((length ("separate_line_info_table_allocated")))
3575 dw_separate_line_info_ref separate_line_info_table;
3576
3577 /* Number of elements currently allocated for separate_line_info_table. */
3578 static GTY(()) unsigned separate_line_info_table_allocated;
3579
3580 /* Number of elements in separate_line_info_table currently in use. */
3581 static GTY(()) unsigned separate_line_info_table_in_use;
3582
3583 /* Size (in elements) of increments by which we may expand the
3584 line_info_table. */
3585 #define LINE_INFO_TABLE_INCREMENT 1024
3586
3587 /* A pointer to the base of a table that contains a list of publicly
3588 accessible names. */
3589 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table;
3590
3591 /* Number of elements currently allocated for pubname_table. */
3592 static GTY(()) unsigned pubname_table_allocated;
3593
3594 /* Number of elements in pubname_table currently in use. */
3595 static GTY(()) unsigned pubname_table_in_use;
3596
3597 /* Size (in elements) of increments by which we may expand the
3598 pubname_table. */
3599 #define PUBNAME_TABLE_INCREMENT 64
3600
3601 /* Array of dies for which we should generate .debug_arange info. */
3602 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
3603
3604 /* Number of elements currently allocated for arange_table. */
3605 static GTY(()) unsigned arange_table_allocated;
3606
3607 /* Number of elements in arange_table currently in use. */
3608 static GTY(()) unsigned arange_table_in_use;
3609
3610 /* Size (in elements) of increments by which we may expand the
3611 arange_table. */
3612 #define ARANGE_TABLE_INCREMENT 64
3613
3614 /* Array of dies for which we should generate .debug_ranges info. */
3615 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
3616
3617 /* Number of elements currently allocated for ranges_table. */
3618 static GTY(()) unsigned ranges_table_allocated;
3619
3620 /* Number of elements in ranges_table currently in use. */
3621 static GTY(()) unsigned ranges_table_in_use;
3622
3623 /* Size (in elements) of increments by which we may expand the
3624 ranges_table. */
3625 #define RANGES_TABLE_INCREMENT 64
3626
3627 /* Whether we have location lists that need outputting */
3628 static GTY(()) unsigned have_location_lists;
3629
3630 /* Unique label counter. */
3631 static GTY(()) unsigned int loclabel_num;
3632
3633 #ifdef DWARF2_DEBUGGING_INFO
3634 /* Record whether the function being analyzed contains inlined functions. */
3635 static int current_function_has_inlines;
3636 #endif
3637 #if 0 && defined (MIPS_DEBUGGING_INFO)
3638 static int comp_unit_has_inlines;
3639 #endif
3640
3641 /* Number of file tables emitted in maybe_emit_file(). */
3642 static GTY(()) int emitcount = 0;
3643
3644 /* Number of internal labels generated by gen_internal_sym(). */
3645 static GTY(()) int label_num;
3646
3647 #ifdef DWARF2_DEBUGGING_INFO
3648
3649 /* Forward declarations for functions defined in this file. */
3650
3651 static int is_pseudo_reg (rtx);
3652 static tree type_main_variant (tree);
3653 static int is_tagged_type (tree);
3654 static const char *dwarf_tag_name (unsigned);
3655 static const char *dwarf_attr_name (unsigned);
3656 static const char *dwarf_form_name (unsigned);
3657 #if 0
3658 static const char *dwarf_type_encoding_name (unsigned);
3659 #endif
3660 static tree decl_ultimate_origin (tree);
3661 static tree block_ultimate_origin (tree);
3662 static tree decl_class_context (tree);
3663 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
3664 static inline enum dw_val_class AT_class (dw_attr_ref);
3665 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3666 static inline unsigned AT_flag (dw_attr_ref);
3667 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3668 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
3669 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3670 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
3671 static void add_AT_long_long (dw_die_ref, enum dwarf_attribute, unsigned long,
3672 unsigned long);
3673 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3674 unsigned int, unsigned char *);
3675 static hashval_t debug_str_do_hash (const void *);
3676 static int debug_str_eq (const void *, const void *);
3677 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3678 static inline const char *AT_string (dw_attr_ref);
3679 static int AT_string_form (dw_attr_ref);
3680 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3681 static void add_AT_specification (dw_die_ref, dw_die_ref);
3682 static inline dw_die_ref AT_ref (dw_attr_ref);
3683 static inline int AT_ref_external (dw_attr_ref);
3684 static inline void set_AT_ref_external (dw_attr_ref, int);
3685 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
3686 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3687 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
3688 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3689 dw_loc_list_ref);
3690 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
3691 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
3692 static inline rtx AT_addr (dw_attr_ref);
3693 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3694 static void add_AT_lbl_offset (dw_die_ref, enum dwarf_attribute, const char *);
3695 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
3696 unsigned HOST_WIDE_INT);
3697 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3698 unsigned long);
3699 static inline const char *AT_lbl (dw_attr_ref);
3700 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
3701 static const char *get_AT_low_pc (dw_die_ref);
3702 static const char *get_AT_hi_pc (dw_die_ref);
3703 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
3704 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
3705 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
3706 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
3707 static bool is_c_family (void);
3708 static bool is_cxx (void);
3709 static bool is_java (void);
3710 static bool is_fortran (void);
3711 static bool is_ada (void);
3712 static void remove_AT (dw_die_ref, enum dwarf_attribute);
3713 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
3714 static inline void free_die (dw_die_ref);
3715 static void remove_children (dw_die_ref);
3716 static void add_child_die (dw_die_ref, dw_die_ref);
3717 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
3718 static dw_die_ref lookup_type_die (tree);
3719 static void equate_type_number_to_die (tree, dw_die_ref);
3720 static hashval_t decl_die_table_hash (const void *);
3721 static int decl_die_table_eq (const void *, const void *);
3722 static dw_die_ref lookup_decl_die (tree);
3723 static hashval_t decl_loc_table_hash (const void *);
3724 static int decl_loc_table_eq (const void *, const void *);
3725 static var_loc_list *lookup_decl_loc (tree);
3726 static void equate_decl_number_to_die (tree, dw_die_ref);
3727 static void add_var_loc_to_decl (tree, struct var_loc_node *);
3728 static void print_spaces (FILE *);
3729 static void print_die (dw_die_ref, FILE *);
3730 static void print_dwarf_line_table (FILE *);
3731 static void reverse_die_lists (dw_die_ref);
3732 static void reverse_all_dies (dw_die_ref);
3733 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
3734 static dw_die_ref pop_compile_unit (dw_die_ref);
3735 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
3736 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
3737 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
3738 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
3739 static int same_dw_val_p (dw_val_node *, dw_val_node *, int *);
3740 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
3741 static int same_die_p (dw_die_ref, dw_die_ref, int *);
3742 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
3743 static void compute_section_prefix (dw_die_ref);
3744 static int is_type_die (dw_die_ref);
3745 static int is_comdat_die (dw_die_ref);
3746 static int is_symbol_die (dw_die_ref);
3747 static void assign_symbol_names (dw_die_ref);
3748 static void break_out_includes (dw_die_ref);
3749 static hashval_t htab_cu_hash (const void *);
3750 static int htab_cu_eq (const void *, const void *);
3751 static void htab_cu_del (void *);
3752 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
3753 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
3754 static void add_sibling_attributes (dw_die_ref);
3755 static void build_abbrev_table (dw_die_ref);
3756 static void output_location_lists (dw_die_ref);
3757 static int constant_size (long unsigned);
3758 static unsigned long size_of_die (dw_die_ref);
3759 static void calc_die_sizes (dw_die_ref);
3760 static void mark_dies (dw_die_ref);
3761 static void unmark_dies (dw_die_ref);
3762 static void unmark_all_dies (dw_die_ref);
3763 static unsigned long size_of_pubnames (void);
3764 static unsigned long size_of_aranges (void);
3765 static enum dwarf_form value_format (dw_attr_ref);
3766 static void output_value_format (dw_attr_ref);
3767 static void output_abbrev_section (void);
3768 static void output_die_symbol (dw_die_ref);
3769 static void output_die (dw_die_ref);
3770 static void output_compilation_unit_header (void);
3771 static void output_comp_unit (dw_die_ref, int);
3772 static const char *dwarf2_name (tree, int);
3773 static void add_pubname (tree, dw_die_ref);
3774 static void output_pubnames (void);
3775 static void add_arange (tree, dw_die_ref);
3776 static void output_aranges (void);
3777 static unsigned int add_ranges (tree);
3778 static void output_ranges (void);
3779 static void output_line_info (void);
3780 static void output_file_names (void);
3781 static dw_die_ref base_type_die (tree);
3782 static tree root_type (tree);
3783 static int is_base_type (tree);
3784 static bool is_subrange_type (tree);
3785 static dw_die_ref subrange_type_die (tree, dw_die_ref);
3786 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
3787 static int type_is_enum (tree);
3788 static unsigned int reg_number (rtx);
3789 static dw_loc_descr_ref reg_loc_descriptor (rtx);
3790 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int);
3791 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx);
3792 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
3793 static dw_loc_descr_ref based_loc_descr (unsigned, HOST_WIDE_INT, bool);
3794 static int is_based_loc (rtx);
3795 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode, bool);
3796 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx);
3797 static dw_loc_descr_ref loc_descriptor (rtx, bool);
3798 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int);
3799 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
3800 static tree field_type (tree);
3801 static unsigned int simple_type_align_in_bits (tree);
3802 static unsigned int simple_decl_align_in_bits (tree);
3803 static unsigned HOST_WIDE_INT simple_type_size_in_bits (tree);
3804 static HOST_WIDE_INT field_byte_offset (tree);
3805 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
3806 dw_loc_descr_ref);
3807 static void add_data_member_location_attribute (dw_die_ref, tree);
3808 static void add_const_value_attribute (dw_die_ref, rtx);
3809 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
3810 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
3811 static void insert_float (rtx, unsigned char *);
3812 static rtx rtl_for_decl_location (tree);
3813 static void add_location_or_const_value_attribute (dw_die_ref, tree,
3814 enum dwarf_attribute);
3815 static void tree_add_const_value_attribute (dw_die_ref, tree);
3816 static void add_name_attribute (dw_die_ref, const char *);
3817 static void add_comp_dir_attribute (dw_die_ref);
3818 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
3819 static void add_subscript_info (dw_die_ref, tree);
3820 static void add_byte_size_attribute (dw_die_ref, tree);
3821 static void add_bit_offset_attribute (dw_die_ref, tree);
3822 static void add_bit_size_attribute (dw_die_ref, tree);
3823 static void add_prototyped_attribute (dw_die_ref, tree);
3824 static void add_abstract_origin_attribute (dw_die_ref, tree);
3825 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
3826 static void add_src_coords_attributes (dw_die_ref, tree);
3827 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
3828 static void push_decl_scope (tree);
3829 static void pop_decl_scope (void);
3830 static dw_die_ref scope_die_for (tree, dw_die_ref);
3831 static inline int local_scope_p (dw_die_ref);
3832 static inline int class_or_namespace_scope_p (dw_die_ref);
3833 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
3834 static const char *type_tag (tree);
3835 static tree member_declared_type (tree);
3836 #if 0
3837 static const char *decl_start_label (tree);
3838 #endif
3839 static void gen_array_type_die (tree, dw_die_ref);
3840 static void gen_set_type_die (tree, dw_die_ref);
3841 #if 0
3842 static void gen_entry_point_die (tree, dw_die_ref);
3843 #endif
3844 static void gen_inlined_enumeration_type_die (tree, dw_die_ref);
3845 static void gen_inlined_structure_type_die (tree, dw_die_ref);
3846 static void gen_inlined_union_type_die (tree, dw_die_ref);
3847 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
3848 static dw_die_ref gen_formal_parameter_die (tree, dw_die_ref);
3849 static void gen_unspecified_parameters_die (tree, dw_die_ref);
3850 static void gen_formal_types_die (tree, dw_die_ref);
3851 static void gen_subprogram_die (tree, dw_die_ref);
3852 static void gen_variable_die (tree, dw_die_ref);
3853 static void gen_label_die (tree, dw_die_ref);
3854 static void gen_lexical_block_die (tree, dw_die_ref, int);
3855 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
3856 static void gen_field_die (tree, dw_die_ref);
3857 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
3858 static dw_die_ref gen_compile_unit_die (const char *);
3859 static void gen_string_type_die (tree, dw_die_ref);
3860 static void gen_inheritance_die (tree, tree, dw_die_ref);
3861 static void gen_member_die (tree, dw_die_ref);
3862 static void gen_struct_or_union_type_die (tree, dw_die_ref);
3863 static void gen_subroutine_type_die (tree, dw_die_ref);
3864 static void gen_typedef_die (tree, dw_die_ref);
3865 static void gen_type_die (tree, dw_die_ref);
3866 static void gen_tagged_type_instantiation_die (tree, dw_die_ref);
3867 static void gen_block_die (tree, dw_die_ref, int);
3868 static void decls_for_scope (tree, dw_die_ref, int);
3869 static int is_redundant_typedef (tree);
3870 static void gen_namespace_die (tree);
3871 static void gen_decl_die (tree, dw_die_ref);
3872 static dw_die_ref force_decl_die (tree);
3873 static dw_die_ref force_type_die (tree);
3874 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
3875 static void declare_in_namespace (tree, dw_die_ref);
3876 static unsigned lookup_filename (const char *);
3877 static void init_file_table (void);
3878 static void retry_incomplete_types (void);
3879 static void gen_type_die_for_member (tree, tree, dw_die_ref);
3880 static void splice_child_die (dw_die_ref, dw_die_ref);
3881 static int file_info_cmp (const void *, const void *);
3882 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
3883 const char *, const char *, unsigned);
3884 static void add_loc_descr_to_loc_list (dw_loc_list_ref *, dw_loc_descr_ref,
3885 const char *, const char *,
3886 const char *);
3887 static void output_loc_list (dw_loc_list_ref);
3888 static char *gen_internal_sym (const char *);
3889
3890 static void prune_unmark_dies (dw_die_ref);
3891 static void prune_unused_types_mark (dw_die_ref, int);
3892 static void prune_unused_types_walk (dw_die_ref);
3893 static void prune_unused_types_walk_attribs (dw_die_ref);
3894 static void prune_unused_types_prune (dw_die_ref);
3895 static void prune_unused_types (void);
3896 static int maybe_emit_file (int);
3897
3898 /* Section names used to hold DWARF debugging information. */
3899 #ifndef DEBUG_INFO_SECTION
3900 #define DEBUG_INFO_SECTION ".debug_info"
3901 #endif
3902 #ifndef DEBUG_ABBREV_SECTION
3903 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3904 #endif
3905 #ifndef DEBUG_ARANGES_SECTION
3906 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3907 #endif
3908 #ifndef DEBUG_MACINFO_SECTION
3909 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
3910 #endif
3911 #ifndef DEBUG_LINE_SECTION
3912 #define DEBUG_LINE_SECTION ".debug_line"
3913 #endif
3914 #ifndef DEBUG_LOC_SECTION
3915 #define DEBUG_LOC_SECTION ".debug_loc"
3916 #endif
3917 #ifndef DEBUG_PUBNAMES_SECTION
3918 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
3919 #endif
3920 #ifndef DEBUG_STR_SECTION
3921 #define DEBUG_STR_SECTION ".debug_str"
3922 #endif
3923 #ifndef DEBUG_RANGES_SECTION
3924 #define DEBUG_RANGES_SECTION ".debug_ranges"
3925 #endif
3926
3927 /* Standard ELF section names for compiled code and data. */
3928 #ifndef TEXT_SECTION_NAME
3929 #define TEXT_SECTION_NAME ".text"
3930 #endif
3931
3932 /* Section flags for .debug_str section. */
3933 #define DEBUG_STR_SECTION_FLAGS \
3934 (HAVE_GAS_SHF_MERGE && flag_merge_constants \
3935 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
3936 : SECTION_DEBUG)
3937
3938 /* Labels we insert at beginning sections we can reference instead of
3939 the section names themselves. */
3940
3941 #ifndef TEXT_SECTION_LABEL
3942 #define TEXT_SECTION_LABEL "Ltext"
3943 #endif
3944 #ifndef DEBUG_LINE_SECTION_LABEL
3945 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
3946 #endif
3947 #ifndef DEBUG_INFO_SECTION_LABEL
3948 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
3949 #endif
3950 #ifndef DEBUG_ABBREV_SECTION_LABEL
3951 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
3952 #endif
3953 #ifndef DEBUG_LOC_SECTION_LABEL
3954 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
3955 #endif
3956 #ifndef DEBUG_RANGES_SECTION_LABEL
3957 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
3958 #endif
3959 #ifndef DEBUG_MACINFO_SECTION_LABEL
3960 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
3961 #endif
3962
3963 /* Definitions of defaults for formats and names of various special
3964 (artificial) labels which may be generated within this file (when the -g
3965 options is used and DWARF2_DEBUGGING_INFO is in effect.
3966 If necessary, these may be overridden from within the tm.h file, but
3967 typically, overriding these defaults is unnecessary. */
3968
3969 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
3970 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3971 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3972 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3973 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3974 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3975 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3976 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
3977
3978 #ifndef TEXT_END_LABEL
3979 #define TEXT_END_LABEL "Letext"
3980 #endif
3981 #ifndef BLOCK_BEGIN_LABEL
3982 #define BLOCK_BEGIN_LABEL "LBB"
3983 #endif
3984 #ifndef BLOCK_END_LABEL
3985 #define BLOCK_END_LABEL "LBE"
3986 #endif
3987 #ifndef LINE_CODE_LABEL
3988 #define LINE_CODE_LABEL "LM"
3989 #endif
3990 #ifndef SEPARATE_LINE_CODE_LABEL
3991 #define SEPARATE_LINE_CODE_LABEL "LSM"
3992 #endif
3993 \f
3994 /* We allow a language front-end to designate a function that is to be
3995 called to "demangle" any name before it it put into a DIE. */
3996
3997 static const char *(*demangle_name_func) (const char *);
3998
3999 void
4000 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4001 {
4002 demangle_name_func = func;
4003 }
4004
4005 /* Test if rtl node points to a pseudo register. */
4006
4007 static inline int
4008 is_pseudo_reg (rtx rtl)
4009 {
4010 return ((GET_CODE (rtl) == REG && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4011 || (GET_CODE (rtl) == SUBREG
4012 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4013 }
4014
4015 /* Return a reference to a type, with its const and volatile qualifiers
4016 removed. */
4017
4018 static inline tree
4019 type_main_variant (tree type)
4020 {
4021 type = TYPE_MAIN_VARIANT (type);
4022
4023 /* ??? There really should be only one main variant among any group of
4024 variants of a given type (and all of the MAIN_VARIANT values for all
4025 members of the group should point to that one type) but sometimes the C
4026 front-end messes this up for array types, so we work around that bug
4027 here. */
4028 if (TREE_CODE (type) == ARRAY_TYPE)
4029 while (type != TYPE_MAIN_VARIANT (type))
4030 type = TYPE_MAIN_VARIANT (type);
4031
4032 return type;
4033 }
4034
4035 /* Return nonzero if the given type node represents a tagged type. */
4036
4037 static inline int
4038 is_tagged_type (tree type)
4039 {
4040 enum tree_code code = TREE_CODE (type);
4041
4042 return (code == RECORD_TYPE || code == UNION_TYPE
4043 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4044 }
4045
4046 /* Convert a DIE tag into its string name. */
4047
4048 static const char *
4049 dwarf_tag_name (unsigned int tag)
4050 {
4051 switch (tag)
4052 {
4053 case DW_TAG_padding:
4054 return "DW_TAG_padding";
4055 case DW_TAG_array_type:
4056 return "DW_TAG_array_type";
4057 case DW_TAG_class_type:
4058 return "DW_TAG_class_type";
4059 case DW_TAG_entry_point:
4060 return "DW_TAG_entry_point";
4061 case DW_TAG_enumeration_type:
4062 return "DW_TAG_enumeration_type";
4063 case DW_TAG_formal_parameter:
4064 return "DW_TAG_formal_parameter";
4065 case DW_TAG_imported_declaration:
4066 return "DW_TAG_imported_declaration";
4067 case DW_TAG_label:
4068 return "DW_TAG_label";
4069 case DW_TAG_lexical_block:
4070 return "DW_TAG_lexical_block";
4071 case DW_TAG_member:
4072 return "DW_TAG_member";
4073 case DW_TAG_pointer_type:
4074 return "DW_TAG_pointer_type";
4075 case DW_TAG_reference_type:
4076 return "DW_TAG_reference_type";
4077 case DW_TAG_compile_unit:
4078 return "DW_TAG_compile_unit";
4079 case DW_TAG_string_type:
4080 return "DW_TAG_string_type";
4081 case DW_TAG_structure_type:
4082 return "DW_TAG_structure_type";
4083 case DW_TAG_subroutine_type:
4084 return "DW_TAG_subroutine_type";
4085 case DW_TAG_typedef:
4086 return "DW_TAG_typedef";
4087 case DW_TAG_union_type:
4088 return "DW_TAG_union_type";
4089 case DW_TAG_unspecified_parameters:
4090 return "DW_TAG_unspecified_parameters";
4091 case DW_TAG_variant:
4092 return "DW_TAG_variant";
4093 case DW_TAG_common_block:
4094 return "DW_TAG_common_block";
4095 case DW_TAG_common_inclusion:
4096 return "DW_TAG_common_inclusion";
4097 case DW_TAG_inheritance:
4098 return "DW_TAG_inheritance";
4099 case DW_TAG_inlined_subroutine:
4100 return "DW_TAG_inlined_subroutine";
4101 case DW_TAG_module:
4102 return "DW_TAG_module";
4103 case DW_TAG_ptr_to_member_type:
4104 return "DW_TAG_ptr_to_member_type";
4105 case DW_TAG_set_type:
4106 return "DW_TAG_set_type";
4107 case DW_TAG_subrange_type:
4108 return "DW_TAG_subrange_type";
4109 case DW_TAG_with_stmt:
4110 return "DW_TAG_with_stmt";
4111 case DW_TAG_access_declaration:
4112 return "DW_TAG_access_declaration";
4113 case DW_TAG_base_type:
4114 return "DW_TAG_base_type";
4115 case DW_TAG_catch_block:
4116 return "DW_TAG_catch_block";
4117 case DW_TAG_const_type:
4118 return "DW_TAG_const_type";
4119 case DW_TAG_constant:
4120 return "DW_TAG_constant";
4121 case DW_TAG_enumerator:
4122 return "DW_TAG_enumerator";
4123 case DW_TAG_file_type:
4124 return "DW_TAG_file_type";
4125 case DW_TAG_friend:
4126 return "DW_TAG_friend";
4127 case DW_TAG_namelist:
4128 return "DW_TAG_namelist";
4129 case DW_TAG_namelist_item:
4130 return "DW_TAG_namelist_item";
4131 case DW_TAG_namespace:
4132 return "DW_TAG_namespace";
4133 case DW_TAG_packed_type:
4134 return "DW_TAG_packed_type";
4135 case DW_TAG_subprogram:
4136 return "DW_TAG_subprogram";
4137 case DW_TAG_template_type_param:
4138 return "DW_TAG_template_type_param";
4139 case DW_TAG_template_value_param:
4140 return "DW_TAG_template_value_param";
4141 case DW_TAG_thrown_type:
4142 return "DW_TAG_thrown_type";
4143 case DW_TAG_try_block:
4144 return "DW_TAG_try_block";
4145 case DW_TAG_variant_part:
4146 return "DW_TAG_variant_part";
4147 case DW_TAG_variable:
4148 return "DW_TAG_variable";
4149 case DW_TAG_volatile_type:
4150 return "DW_TAG_volatile_type";
4151 case DW_TAG_imported_module:
4152 return "DW_TAG_imported_module";
4153 case DW_TAG_MIPS_loop:
4154 return "DW_TAG_MIPS_loop";
4155 case DW_TAG_format_label:
4156 return "DW_TAG_format_label";
4157 case DW_TAG_function_template:
4158 return "DW_TAG_function_template";
4159 case DW_TAG_class_template:
4160 return "DW_TAG_class_template";
4161 case DW_TAG_GNU_BINCL:
4162 return "DW_TAG_GNU_BINCL";
4163 case DW_TAG_GNU_EINCL:
4164 return "DW_TAG_GNU_EINCL";
4165 default:
4166 return "DW_TAG_<unknown>";
4167 }
4168 }
4169
4170 /* Convert a DWARF attribute code into its string name. */
4171
4172 static const char *
4173 dwarf_attr_name (unsigned int attr)
4174 {
4175 switch (attr)
4176 {
4177 case DW_AT_sibling:
4178 return "DW_AT_sibling";
4179 case DW_AT_location:
4180 return "DW_AT_location";
4181 case DW_AT_name:
4182 return "DW_AT_name";
4183 case DW_AT_ordering:
4184 return "DW_AT_ordering";
4185 case DW_AT_subscr_data:
4186 return "DW_AT_subscr_data";
4187 case DW_AT_byte_size:
4188 return "DW_AT_byte_size";
4189 case DW_AT_bit_offset:
4190 return "DW_AT_bit_offset";
4191 case DW_AT_bit_size:
4192 return "DW_AT_bit_size";
4193 case DW_AT_element_list:
4194 return "DW_AT_element_list";
4195 case DW_AT_stmt_list:
4196 return "DW_AT_stmt_list";
4197 case DW_AT_low_pc:
4198 return "DW_AT_low_pc";
4199 case DW_AT_high_pc:
4200 return "DW_AT_high_pc";
4201 case DW_AT_language:
4202 return "DW_AT_language";
4203 case DW_AT_member:
4204 return "DW_AT_member";
4205 case DW_AT_discr:
4206 return "DW_AT_discr";
4207 case DW_AT_discr_value:
4208 return "DW_AT_discr_value";
4209 case DW_AT_visibility:
4210 return "DW_AT_visibility";
4211 case DW_AT_import:
4212 return "DW_AT_import";
4213 case DW_AT_string_length:
4214 return "DW_AT_string_length";
4215 case DW_AT_common_reference:
4216 return "DW_AT_common_reference";
4217 case DW_AT_comp_dir:
4218 return "DW_AT_comp_dir";
4219 case DW_AT_const_value:
4220 return "DW_AT_const_value";
4221 case DW_AT_containing_type:
4222 return "DW_AT_containing_type";
4223 case DW_AT_default_value:
4224 return "DW_AT_default_value";
4225 case DW_AT_inline:
4226 return "DW_AT_inline";
4227 case DW_AT_is_optional:
4228 return "DW_AT_is_optional";
4229 case DW_AT_lower_bound:
4230 return "DW_AT_lower_bound";
4231 case DW_AT_producer:
4232 return "DW_AT_producer";
4233 case DW_AT_prototyped:
4234 return "DW_AT_prototyped";
4235 case DW_AT_return_addr:
4236 return "DW_AT_return_addr";
4237 case DW_AT_start_scope:
4238 return "DW_AT_start_scope";
4239 case DW_AT_stride_size:
4240 return "DW_AT_stride_size";
4241 case DW_AT_upper_bound:
4242 return "DW_AT_upper_bound";
4243 case DW_AT_abstract_origin:
4244 return "DW_AT_abstract_origin";
4245 case DW_AT_accessibility:
4246 return "DW_AT_accessibility";
4247 case DW_AT_address_class:
4248 return "DW_AT_address_class";
4249 case DW_AT_artificial:
4250 return "DW_AT_artificial";
4251 case DW_AT_base_types:
4252 return "DW_AT_base_types";
4253 case DW_AT_calling_convention:
4254 return "DW_AT_calling_convention";
4255 case DW_AT_count:
4256 return "DW_AT_count";
4257 case DW_AT_data_member_location:
4258 return "DW_AT_data_member_location";
4259 case DW_AT_decl_column:
4260 return "DW_AT_decl_column";
4261 case DW_AT_decl_file:
4262 return "DW_AT_decl_file";
4263 case DW_AT_decl_line:
4264 return "DW_AT_decl_line";
4265 case DW_AT_declaration:
4266 return "DW_AT_declaration";
4267 case DW_AT_discr_list:
4268 return "DW_AT_discr_list";
4269 case DW_AT_encoding:
4270 return "DW_AT_encoding";
4271 case DW_AT_external:
4272 return "DW_AT_external";
4273 case DW_AT_frame_base:
4274 return "DW_AT_frame_base";
4275 case DW_AT_friend:
4276 return "DW_AT_friend";
4277 case DW_AT_identifier_case:
4278 return "DW_AT_identifier_case";
4279 case DW_AT_macro_info:
4280 return "DW_AT_macro_info";
4281 case DW_AT_namelist_items:
4282 return "DW_AT_namelist_items";
4283 case DW_AT_priority:
4284 return "DW_AT_priority";
4285 case DW_AT_segment:
4286 return "DW_AT_segment";
4287 case DW_AT_specification:
4288 return "DW_AT_specification";
4289 case DW_AT_static_link:
4290 return "DW_AT_static_link";
4291 case DW_AT_type:
4292 return "DW_AT_type";
4293 case DW_AT_use_location:
4294 return "DW_AT_use_location";
4295 case DW_AT_variable_parameter:
4296 return "DW_AT_variable_parameter";
4297 case DW_AT_virtuality:
4298 return "DW_AT_virtuality";
4299 case DW_AT_vtable_elem_location:
4300 return "DW_AT_vtable_elem_location";
4301
4302 case DW_AT_allocated:
4303 return "DW_AT_allocated";
4304 case DW_AT_associated:
4305 return "DW_AT_associated";
4306 case DW_AT_data_location:
4307 return "DW_AT_data_location";
4308 case DW_AT_stride:
4309 return "DW_AT_stride";
4310 case DW_AT_entry_pc:
4311 return "DW_AT_entry_pc";
4312 case DW_AT_use_UTF8:
4313 return "DW_AT_use_UTF8";
4314 case DW_AT_extension:
4315 return "DW_AT_extension";
4316 case DW_AT_ranges:
4317 return "DW_AT_ranges";
4318 case DW_AT_trampoline:
4319 return "DW_AT_trampoline";
4320 case DW_AT_call_column:
4321 return "DW_AT_call_column";
4322 case DW_AT_call_file:
4323 return "DW_AT_call_file";
4324 case DW_AT_call_line:
4325 return "DW_AT_call_line";
4326
4327 case DW_AT_MIPS_fde:
4328 return "DW_AT_MIPS_fde";
4329 case DW_AT_MIPS_loop_begin:
4330 return "DW_AT_MIPS_loop_begin";
4331 case DW_AT_MIPS_tail_loop_begin:
4332 return "DW_AT_MIPS_tail_loop_begin";
4333 case DW_AT_MIPS_epilog_begin:
4334 return "DW_AT_MIPS_epilog_begin";
4335 case DW_AT_MIPS_loop_unroll_factor:
4336 return "DW_AT_MIPS_loop_unroll_factor";
4337 case DW_AT_MIPS_software_pipeline_depth:
4338 return "DW_AT_MIPS_software_pipeline_depth";
4339 case DW_AT_MIPS_linkage_name:
4340 return "DW_AT_MIPS_linkage_name";
4341 case DW_AT_MIPS_stride:
4342 return "DW_AT_MIPS_stride";
4343 case DW_AT_MIPS_abstract_name:
4344 return "DW_AT_MIPS_abstract_name";
4345 case DW_AT_MIPS_clone_origin:
4346 return "DW_AT_MIPS_clone_origin";
4347 case DW_AT_MIPS_has_inlines:
4348 return "DW_AT_MIPS_has_inlines";
4349
4350 case DW_AT_sf_names:
4351 return "DW_AT_sf_names";
4352 case DW_AT_src_info:
4353 return "DW_AT_src_info";
4354 case DW_AT_mac_info:
4355 return "DW_AT_mac_info";
4356 case DW_AT_src_coords:
4357 return "DW_AT_src_coords";
4358 case DW_AT_body_begin:
4359 return "DW_AT_body_begin";
4360 case DW_AT_body_end:
4361 return "DW_AT_body_end";
4362 case DW_AT_GNU_vector:
4363 return "DW_AT_GNU_vector";
4364
4365 case DW_AT_VMS_rtnbeg_pd_address:
4366 return "DW_AT_VMS_rtnbeg_pd_address";
4367
4368 default:
4369 return "DW_AT_<unknown>";
4370 }
4371 }
4372
4373 /* Convert a DWARF value form code into its string name. */
4374
4375 static const char *
4376 dwarf_form_name (unsigned int form)
4377 {
4378 switch (form)
4379 {
4380 case DW_FORM_addr:
4381 return "DW_FORM_addr";
4382 case DW_FORM_block2:
4383 return "DW_FORM_block2";
4384 case DW_FORM_block4:
4385 return "DW_FORM_block4";
4386 case DW_FORM_data2:
4387 return "DW_FORM_data2";
4388 case DW_FORM_data4:
4389 return "DW_FORM_data4";
4390 case DW_FORM_data8:
4391 return "DW_FORM_data8";
4392 case DW_FORM_string:
4393 return "DW_FORM_string";
4394 case DW_FORM_block:
4395 return "DW_FORM_block";
4396 case DW_FORM_block1:
4397 return "DW_FORM_block1";
4398 case DW_FORM_data1:
4399 return "DW_FORM_data1";
4400 case DW_FORM_flag:
4401 return "DW_FORM_flag";
4402 case DW_FORM_sdata:
4403 return "DW_FORM_sdata";
4404 case DW_FORM_strp:
4405 return "DW_FORM_strp";
4406 case DW_FORM_udata:
4407 return "DW_FORM_udata";
4408 case DW_FORM_ref_addr:
4409 return "DW_FORM_ref_addr";
4410 case DW_FORM_ref1:
4411 return "DW_FORM_ref1";
4412 case DW_FORM_ref2:
4413 return "DW_FORM_ref2";
4414 case DW_FORM_ref4:
4415 return "DW_FORM_ref4";
4416 case DW_FORM_ref8:
4417 return "DW_FORM_ref8";
4418 case DW_FORM_ref_udata:
4419 return "DW_FORM_ref_udata";
4420 case DW_FORM_indirect:
4421 return "DW_FORM_indirect";
4422 default:
4423 return "DW_FORM_<unknown>";
4424 }
4425 }
4426
4427 /* Convert a DWARF type code into its string name. */
4428
4429 #if 0
4430 static const char *
4431 dwarf_type_encoding_name (unsigned enc)
4432 {
4433 switch (enc)
4434 {
4435 case DW_ATE_address:
4436 return "DW_ATE_address";
4437 case DW_ATE_boolean:
4438 return "DW_ATE_boolean";
4439 case DW_ATE_complex_float:
4440 return "DW_ATE_complex_float";
4441 case DW_ATE_float:
4442 return "DW_ATE_float";
4443 case DW_ATE_signed:
4444 return "DW_ATE_signed";
4445 case DW_ATE_signed_char:
4446 return "DW_ATE_signed_char";
4447 case DW_ATE_unsigned:
4448 return "DW_ATE_unsigned";
4449 case DW_ATE_unsigned_char:
4450 return "DW_ATE_unsigned_char";
4451 default:
4452 return "DW_ATE_<unknown>";
4453 }
4454 }
4455 #endif
4456 \f
4457 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4458 instance of an inlined instance of a decl which is local to an inline
4459 function, so we have to trace all of the way back through the origin chain
4460 to find out what sort of node actually served as the original seed for the
4461 given block. */
4462
4463 static tree
4464 decl_ultimate_origin (tree decl)
4465 {
4466 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4467 nodes in the function to point to themselves; ignore that if
4468 we're trying to output the abstract instance of this function. */
4469 if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4470 return NULL_TREE;
4471
4472 #ifdef ENABLE_CHECKING
4473 if (DECL_FROM_INLINE (DECL_ORIGIN (decl)))
4474 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4475 most distant ancestor, this should never happen. */
4476 abort ();
4477 #endif
4478
4479 return DECL_ABSTRACT_ORIGIN (decl);
4480 }
4481
4482 /* Determine the "ultimate origin" of a block. The block may be an inlined
4483 instance of an inlined instance of a block which is local to an inline
4484 function, so we have to trace all of the way back through the origin chain
4485 to find out what sort of node actually served as the original seed for the
4486 given block. */
4487
4488 static tree
4489 block_ultimate_origin (tree block)
4490 {
4491 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4492
4493 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4494 nodes in the function to point to themselves; ignore that if
4495 we're trying to output the abstract instance of this function. */
4496 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4497 return NULL_TREE;
4498
4499 if (immediate_origin == NULL_TREE)
4500 return NULL_TREE;
4501 else
4502 {
4503 tree ret_val;
4504 tree lookahead = immediate_origin;
4505
4506 do
4507 {
4508 ret_val = lookahead;
4509 lookahead = (TREE_CODE (ret_val) == BLOCK
4510 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
4511 }
4512 while (lookahead != NULL && lookahead != ret_val);
4513
4514 return ret_val;
4515 }
4516 }
4517
4518 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4519 of a virtual function may refer to a base class, so we check the 'this'
4520 parameter. */
4521
4522 static tree
4523 decl_class_context (tree decl)
4524 {
4525 tree context = NULL_TREE;
4526
4527 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4528 context = DECL_CONTEXT (decl);
4529 else
4530 context = TYPE_MAIN_VARIANT
4531 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4532
4533 if (context && !TYPE_P (context))
4534 context = NULL_TREE;
4535
4536 return context;
4537 }
4538 \f
4539 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4540 addition order, and correct that in reverse_all_dies. */
4541
4542 static inline void
4543 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
4544 {
4545 if (die != NULL && attr != NULL)
4546 {
4547 attr->dw_attr_next = die->die_attr;
4548 die->die_attr = attr;
4549 }
4550 }
4551
4552 static inline enum dw_val_class
4553 AT_class (dw_attr_ref a)
4554 {
4555 return a->dw_attr_val.val_class;
4556 }
4557
4558 /* Add a flag value attribute to a DIE. */
4559
4560 static inline void
4561 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4562 {
4563 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4564
4565 attr->dw_attr_next = NULL;
4566 attr->dw_attr = attr_kind;
4567 attr->dw_attr_val.val_class = dw_val_class_flag;
4568 attr->dw_attr_val.v.val_flag = flag;
4569 add_dwarf_attr (die, attr);
4570 }
4571
4572 static inline unsigned
4573 AT_flag (dw_attr_ref a)
4574 {
4575 if (a && AT_class (a) == dw_val_class_flag)
4576 return a->dw_attr_val.v.val_flag;
4577
4578 abort ();
4579 }
4580
4581 /* Add a signed integer attribute value to a DIE. */
4582
4583 static inline void
4584 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4585 {
4586 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4587
4588 attr->dw_attr_next = NULL;
4589 attr->dw_attr = attr_kind;
4590 attr->dw_attr_val.val_class = dw_val_class_const;
4591 attr->dw_attr_val.v.val_int = int_val;
4592 add_dwarf_attr (die, attr);
4593 }
4594
4595 static inline HOST_WIDE_INT
4596 AT_int (dw_attr_ref a)
4597 {
4598 if (a && AT_class (a) == dw_val_class_const)
4599 return a->dw_attr_val.v.val_int;
4600
4601 abort ();
4602 }
4603
4604 /* Add an unsigned integer attribute value to a DIE. */
4605
4606 static inline void
4607 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4608 unsigned HOST_WIDE_INT unsigned_val)
4609 {
4610 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4611
4612 attr->dw_attr_next = NULL;
4613 attr->dw_attr = attr_kind;
4614 attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
4615 attr->dw_attr_val.v.val_unsigned = unsigned_val;
4616 add_dwarf_attr (die, attr);
4617 }
4618
4619 static inline unsigned HOST_WIDE_INT
4620 AT_unsigned (dw_attr_ref a)
4621 {
4622 if (a && AT_class (a) == dw_val_class_unsigned_const)
4623 return a->dw_attr_val.v.val_unsigned;
4624
4625 abort ();
4626 }
4627
4628 /* Add an unsigned double integer attribute value to a DIE. */
4629
4630 static inline void
4631 add_AT_long_long (dw_die_ref die, enum dwarf_attribute attr_kind,
4632 long unsigned int val_hi, long unsigned int val_low)
4633 {
4634 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4635
4636 attr->dw_attr_next = NULL;
4637 attr->dw_attr = attr_kind;
4638 attr->dw_attr_val.val_class = dw_val_class_long_long;
4639 attr->dw_attr_val.v.val_long_long.hi = val_hi;
4640 attr->dw_attr_val.v.val_long_long.low = val_low;
4641 add_dwarf_attr (die, attr);
4642 }
4643
4644 /* Add a floating point attribute value to a DIE and return it. */
4645
4646 static inline void
4647 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4648 unsigned int length, unsigned int elt_size, unsigned char *array)
4649 {
4650 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4651
4652 attr->dw_attr_next = NULL;
4653 attr->dw_attr = attr_kind;
4654 attr->dw_attr_val.val_class = dw_val_class_vec;
4655 attr->dw_attr_val.v.val_vec.length = length;
4656 attr->dw_attr_val.v.val_vec.elt_size = elt_size;
4657 attr->dw_attr_val.v.val_vec.array = array;
4658 add_dwarf_attr (die, attr);
4659 }
4660
4661 /* Hash and equality functions for debug_str_hash. */
4662
4663 static hashval_t
4664 debug_str_do_hash (const void *x)
4665 {
4666 return htab_hash_string (((const struct indirect_string_node *)x)->str);
4667 }
4668
4669 static int
4670 debug_str_eq (const void *x1, const void *x2)
4671 {
4672 return strcmp ((((const struct indirect_string_node *)x1)->str),
4673 (const char *)x2) == 0;
4674 }
4675
4676 /* Add a string attribute value to a DIE. */
4677
4678 static inline void
4679 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4680 {
4681 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4682 struct indirect_string_node *node;
4683 void **slot;
4684
4685 if (! debug_str_hash)
4686 debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
4687 debug_str_eq, NULL);
4688
4689 slot = htab_find_slot_with_hash (debug_str_hash, str,
4690 htab_hash_string (str), INSERT);
4691 if (*slot == NULL)
4692 *slot = ggc_alloc_cleared (sizeof (struct indirect_string_node));
4693 node = (struct indirect_string_node *) *slot;
4694 node->str = ggc_strdup (str);
4695 node->refcount++;
4696
4697 attr->dw_attr_next = NULL;
4698 attr->dw_attr = attr_kind;
4699 attr->dw_attr_val.val_class = dw_val_class_str;
4700 attr->dw_attr_val.v.val_str = node;
4701 add_dwarf_attr (die, attr);
4702 }
4703
4704 static inline const char *
4705 AT_string (dw_attr_ref a)
4706 {
4707 if (a && AT_class (a) == dw_val_class_str)
4708 return a->dw_attr_val.v.val_str->str;
4709
4710 abort ();
4711 }
4712
4713 /* Find out whether a string should be output inline in DIE
4714 or out-of-line in .debug_str section. */
4715
4716 static int
4717 AT_string_form (dw_attr_ref a)
4718 {
4719 if (a && AT_class (a) == dw_val_class_str)
4720 {
4721 struct indirect_string_node *node;
4722 unsigned int len;
4723 char label[32];
4724
4725 node = a->dw_attr_val.v.val_str;
4726 if (node->form)
4727 return node->form;
4728
4729 len = strlen (node->str) + 1;
4730
4731 /* If the string is shorter or equal to the size of the reference, it is
4732 always better to put it inline. */
4733 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
4734 return node->form = DW_FORM_string;
4735
4736 /* If we cannot expect the linker to merge strings in .debug_str
4737 section, only put it into .debug_str if it is worth even in this
4738 single module. */
4739 if ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) == 0
4740 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len)
4741 return node->form = DW_FORM_string;
4742
4743 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
4744 ++dw2_string_counter;
4745 node->label = xstrdup (label);
4746
4747 return node->form = DW_FORM_strp;
4748 }
4749
4750 abort ();
4751 }
4752
4753 /* Add a DIE reference attribute value to a DIE. */
4754
4755 static inline void
4756 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
4757 {
4758 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4759
4760 attr->dw_attr_next = NULL;
4761 attr->dw_attr = attr_kind;
4762 attr->dw_attr_val.val_class = dw_val_class_die_ref;
4763 attr->dw_attr_val.v.val_die_ref.die = targ_die;
4764 attr->dw_attr_val.v.val_die_ref.external = 0;
4765 add_dwarf_attr (die, attr);
4766 }
4767
4768 /* Add an AT_specification attribute to a DIE, and also make the back
4769 pointer from the specification to the definition. */
4770
4771 static inline void
4772 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
4773 {
4774 add_AT_die_ref (die, DW_AT_specification, targ_die);
4775 if (targ_die->die_definition)
4776 abort ();
4777 targ_die->die_definition = die;
4778 }
4779
4780 static inline dw_die_ref
4781 AT_ref (dw_attr_ref a)
4782 {
4783 if (a && AT_class (a) == dw_val_class_die_ref)
4784 return a->dw_attr_val.v.val_die_ref.die;
4785
4786 abort ();
4787 }
4788
4789 static inline int
4790 AT_ref_external (dw_attr_ref a)
4791 {
4792 if (a && AT_class (a) == dw_val_class_die_ref)
4793 return a->dw_attr_val.v.val_die_ref.external;
4794
4795 return 0;
4796 }
4797
4798 static inline void
4799 set_AT_ref_external (dw_attr_ref a, int i)
4800 {
4801 if (a && AT_class (a) == dw_val_class_die_ref)
4802 a->dw_attr_val.v.val_die_ref.external = i;
4803 else
4804 abort ();
4805 }
4806
4807 /* Add an FDE reference attribute value to a DIE. */
4808
4809 static inline void
4810 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
4811 {
4812 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4813
4814 attr->dw_attr_next = NULL;
4815 attr->dw_attr = attr_kind;
4816 attr->dw_attr_val.val_class = dw_val_class_fde_ref;
4817 attr->dw_attr_val.v.val_fde_index = targ_fde;
4818 add_dwarf_attr (die, attr);
4819 }
4820
4821 /* Add a location description attribute value to a DIE. */
4822
4823 static inline void
4824 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
4825 {
4826 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4827
4828 attr->dw_attr_next = NULL;
4829 attr->dw_attr = attr_kind;
4830 attr->dw_attr_val.val_class = dw_val_class_loc;
4831 attr->dw_attr_val.v.val_loc = loc;
4832 add_dwarf_attr (die, attr);
4833 }
4834
4835 static inline dw_loc_descr_ref
4836 AT_loc (dw_attr_ref a)
4837 {
4838 if (a && AT_class (a) == dw_val_class_loc)
4839 return a->dw_attr_val.v.val_loc;
4840
4841 abort ();
4842 }
4843
4844 static inline void
4845 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
4846 {
4847 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4848
4849 attr->dw_attr_next = NULL;
4850 attr->dw_attr = attr_kind;
4851 attr->dw_attr_val.val_class = dw_val_class_loc_list;
4852 attr->dw_attr_val.v.val_loc_list = loc_list;
4853 add_dwarf_attr (die, attr);
4854 have_location_lists = 1;
4855 }
4856
4857 static inline dw_loc_list_ref
4858 AT_loc_list (dw_attr_ref a)
4859 {
4860 if (a && AT_class (a) == dw_val_class_loc_list)
4861 return a->dw_attr_val.v.val_loc_list;
4862
4863 abort ();
4864 }
4865
4866 /* Add an address constant attribute value to a DIE. */
4867
4868 static inline void
4869 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
4870 {
4871 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4872
4873 attr->dw_attr_next = NULL;
4874 attr->dw_attr = attr_kind;
4875 attr->dw_attr_val.val_class = dw_val_class_addr;
4876 attr->dw_attr_val.v.val_addr = addr;
4877 add_dwarf_attr (die, attr);
4878 }
4879
4880 static inline rtx
4881 AT_addr (dw_attr_ref a)
4882 {
4883 if (a && AT_class (a) == dw_val_class_addr)
4884 return a->dw_attr_val.v.val_addr;
4885
4886 abort ();
4887 }
4888
4889 /* Add a label identifier attribute value to a DIE. */
4890
4891 static inline void
4892 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
4893 {
4894 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4895
4896 attr->dw_attr_next = NULL;
4897 attr->dw_attr = attr_kind;
4898 attr->dw_attr_val.val_class = dw_val_class_lbl_id;
4899 attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
4900 add_dwarf_attr (die, attr);
4901 }
4902
4903 /* Add a section offset attribute value to a DIE. */
4904
4905 static inline void
4906 add_AT_lbl_offset (dw_die_ref die, enum dwarf_attribute attr_kind, const char *label)
4907 {
4908 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4909
4910 attr->dw_attr_next = NULL;
4911 attr->dw_attr = attr_kind;
4912 attr->dw_attr_val.val_class = dw_val_class_lbl_offset;
4913 attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
4914 add_dwarf_attr (die, attr);
4915 }
4916
4917 /* Add an offset attribute value to a DIE. */
4918
4919 static inline void
4920 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
4921 unsigned HOST_WIDE_INT offset)
4922 {
4923 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4924
4925 attr->dw_attr_next = NULL;
4926 attr->dw_attr = attr_kind;
4927 attr->dw_attr_val.val_class = dw_val_class_offset;
4928 attr->dw_attr_val.v.val_offset = offset;
4929 add_dwarf_attr (die, attr);
4930 }
4931
4932 /* Add an range_list attribute value to a DIE. */
4933
4934 static void
4935 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
4936 long unsigned int offset)
4937 {
4938 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4939
4940 attr->dw_attr_next = NULL;
4941 attr->dw_attr = attr_kind;
4942 attr->dw_attr_val.val_class = dw_val_class_range_list;
4943 attr->dw_attr_val.v.val_offset = offset;
4944 add_dwarf_attr (die, attr);
4945 }
4946
4947 static inline const char *
4948 AT_lbl (dw_attr_ref a)
4949 {
4950 if (a && (AT_class (a) == dw_val_class_lbl_id
4951 || AT_class (a) == dw_val_class_lbl_offset))
4952 return a->dw_attr_val.v.val_lbl_id;
4953
4954 abort ();
4955 }
4956
4957 /* Get the attribute of type attr_kind. */
4958
4959 static dw_attr_ref
4960 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
4961 {
4962 dw_attr_ref a;
4963 dw_die_ref spec = NULL;
4964
4965 if (die != NULL)
4966 {
4967 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
4968 if (a->dw_attr == attr_kind)
4969 return a;
4970 else if (a->dw_attr == DW_AT_specification
4971 || a->dw_attr == DW_AT_abstract_origin)
4972 spec = AT_ref (a);
4973
4974 if (spec)
4975 return get_AT (spec, attr_kind);
4976 }
4977
4978 return NULL;
4979 }
4980
4981 /* Return the "low pc" attribute value, typically associated with a subprogram
4982 DIE. Return null if the "low pc" attribute is either not present, or if it
4983 cannot be represented as an assembler label identifier. */
4984
4985 static inline const char *
4986 get_AT_low_pc (dw_die_ref die)
4987 {
4988 dw_attr_ref a = get_AT (die, DW_AT_low_pc);
4989
4990 return a ? AT_lbl (a) : NULL;
4991 }
4992
4993 /* Return the "high pc" attribute value, typically associated with a subprogram
4994 DIE. Return null if the "high pc" attribute is either not present, or if it
4995 cannot be represented as an assembler label identifier. */
4996
4997 static inline const char *
4998 get_AT_hi_pc (dw_die_ref die)
4999 {
5000 dw_attr_ref a = get_AT (die, DW_AT_high_pc);
5001
5002 return a ? AT_lbl (a) : NULL;
5003 }
5004
5005 /* Return the value of the string attribute designated by ATTR_KIND, or
5006 NULL if it is not present. */
5007
5008 static inline const char *
5009 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5010 {
5011 dw_attr_ref a = get_AT (die, attr_kind);
5012
5013 return a ? AT_string (a) : NULL;
5014 }
5015
5016 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5017 if it is not present. */
5018
5019 static inline int
5020 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5021 {
5022 dw_attr_ref a = get_AT (die, attr_kind);
5023
5024 return a ? AT_flag (a) : 0;
5025 }
5026
5027 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5028 if it is not present. */
5029
5030 static inline unsigned
5031 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5032 {
5033 dw_attr_ref a = get_AT (die, attr_kind);
5034
5035 return a ? AT_unsigned (a) : 0;
5036 }
5037
5038 static inline dw_die_ref
5039 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5040 {
5041 dw_attr_ref a = get_AT (die, attr_kind);
5042
5043 return a ? AT_ref (a) : NULL;
5044 }
5045
5046 /* Return TRUE if the language is C or C++. */
5047
5048 static inline bool
5049 is_c_family (void)
5050 {
5051 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5052
5053 return (lang == DW_LANG_C || lang == DW_LANG_C89
5054 || lang == DW_LANG_C_plus_plus);
5055 }
5056
5057 /* Return TRUE if the language is C++. */
5058
5059 static inline bool
5060 is_cxx (void)
5061 {
5062 return (get_AT_unsigned (comp_unit_die, DW_AT_language)
5063 == DW_LANG_C_plus_plus);
5064 }
5065
5066 /* Return TRUE if the language is Fortran. */
5067
5068 static inline bool
5069 is_fortran (void)
5070 {
5071 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5072
5073 return lang == DW_LANG_Fortran77 || lang == DW_LANG_Fortran90;
5074 }
5075
5076 /* Return TRUE if the language is Java. */
5077
5078 static inline bool
5079 is_java (void)
5080 {
5081 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5082
5083 return lang == DW_LANG_Java;
5084 }
5085
5086 /* Return TRUE if the language is Ada. */
5087
5088 static inline bool
5089 is_ada (void)
5090 {
5091 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5092
5093 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5094 }
5095
5096 /* Free up the memory used by A. */
5097
5098 static inline void free_AT (dw_attr_ref);
5099 static inline void
5100 free_AT (dw_attr_ref a)
5101 {
5102 if (AT_class (a) == dw_val_class_str)
5103 if (a->dw_attr_val.v.val_str->refcount)
5104 a->dw_attr_val.v.val_str->refcount--;
5105 }
5106
5107 /* Remove the specified attribute if present. */
5108
5109 static void
5110 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5111 {
5112 dw_attr_ref *p;
5113 dw_attr_ref removed = NULL;
5114
5115 if (die != NULL)
5116 {
5117 for (p = &(die->die_attr); *p; p = &((*p)->dw_attr_next))
5118 if ((*p)->dw_attr == attr_kind)
5119 {
5120 removed = *p;
5121 *p = (*p)->dw_attr_next;
5122 break;
5123 }
5124
5125 if (removed != 0)
5126 free_AT (removed);
5127 }
5128 }
5129
5130 /* Remove child die whose die_tag is specified tag. */
5131
5132 static void
5133 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5134 {
5135 dw_die_ref current, prev, next;
5136 current = die->die_child;
5137 prev = NULL;
5138 while (current != NULL)
5139 {
5140 if (current->die_tag == tag)
5141 {
5142 next = current->die_sib;
5143 if (prev == NULL)
5144 die->die_child = next;
5145 else
5146 prev->die_sib = next;
5147 free_die (current);
5148 current = next;
5149 }
5150 else
5151 {
5152 prev = current;
5153 current = current->die_sib;
5154 }
5155 }
5156 }
5157
5158 /* Free up the memory used by DIE. */
5159
5160 static inline void
5161 free_die (dw_die_ref die)
5162 {
5163 remove_children (die);
5164 }
5165
5166 /* Discard the children of this DIE. */
5167
5168 static void
5169 remove_children (dw_die_ref die)
5170 {
5171 dw_die_ref child_die = die->die_child;
5172
5173 die->die_child = NULL;
5174
5175 while (child_die != NULL)
5176 {
5177 dw_die_ref tmp_die = child_die;
5178 dw_attr_ref a;
5179
5180 child_die = child_die->die_sib;
5181
5182 for (a = tmp_die->die_attr; a != NULL;)
5183 {
5184 dw_attr_ref tmp_a = a;
5185
5186 a = a->dw_attr_next;
5187 free_AT (tmp_a);
5188 }
5189
5190 free_die (tmp_die);
5191 }
5192 }
5193
5194 /* Add a child DIE below its parent. We build the lists up in reverse
5195 addition order, and correct that in reverse_all_dies. */
5196
5197 static inline void
5198 add_child_die (dw_die_ref die, dw_die_ref child_die)
5199 {
5200 if (die != NULL && child_die != NULL)
5201 {
5202 if (die == child_die)
5203 abort ();
5204
5205 child_die->die_parent = die;
5206 child_die->die_sib = die->die_child;
5207 die->die_child = child_die;
5208 }
5209 }
5210
5211 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5212 is the specification, to the front of PARENT's list of children. */
5213
5214 static void
5215 splice_child_die (dw_die_ref parent, dw_die_ref child)
5216 {
5217 dw_die_ref *p;
5218
5219 /* We want the declaration DIE from inside the class, not the
5220 specification DIE at toplevel. */
5221 if (child->die_parent != parent)
5222 {
5223 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5224
5225 if (tmp)
5226 child = tmp;
5227 }
5228
5229 if (child->die_parent != parent
5230 && child->die_parent != get_AT_ref (parent, DW_AT_specification))
5231 abort ();
5232
5233 for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
5234 if (*p == child)
5235 {
5236 *p = child->die_sib;
5237 break;
5238 }
5239
5240 child->die_parent = parent;
5241 child->die_sib = parent->die_child;
5242 parent->die_child = child;
5243 }
5244
5245 /* Return a pointer to a newly created DIE node. */
5246
5247 static inline dw_die_ref
5248 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5249 {
5250 dw_die_ref die = ggc_alloc_cleared (sizeof (die_node));
5251
5252 die->die_tag = tag_value;
5253
5254 if (parent_die != NULL)
5255 add_child_die (parent_die, die);
5256 else
5257 {
5258 limbo_die_node *limbo_node;
5259
5260 limbo_node = ggc_alloc_cleared (sizeof (limbo_die_node));
5261 limbo_node->die = die;
5262 limbo_node->created_for = t;
5263 limbo_node->next = limbo_die_list;
5264 limbo_die_list = limbo_node;
5265 }
5266
5267 return die;
5268 }
5269
5270 /* Return the DIE associated with the given type specifier. */
5271
5272 static inline dw_die_ref
5273 lookup_type_die (tree type)
5274 {
5275 return TYPE_SYMTAB_DIE (type);
5276 }
5277
5278 /* Equate a DIE to a given type specifier. */
5279
5280 static inline void
5281 equate_type_number_to_die (tree type, dw_die_ref type_die)
5282 {
5283 TYPE_SYMTAB_DIE (type) = type_die;
5284 }
5285
5286 /* Returns a hash value for X (which really is a die_struct). */
5287
5288 static hashval_t
5289 decl_die_table_hash (const void *x)
5290 {
5291 return (hashval_t) ((const dw_die_ref) x)->decl_id;
5292 }
5293
5294 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5295
5296 static int
5297 decl_die_table_eq (const void *x, const void *y)
5298 {
5299 return (((const dw_die_ref) x)->decl_id == DECL_UID ((const tree) y));
5300 }
5301
5302 /* Return the DIE associated with a given declaration. */
5303
5304 static inline dw_die_ref
5305 lookup_decl_die (tree decl)
5306 {
5307 return htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
5308 }
5309
5310 /* Returns a hash value for X (which really is a var_loc_list). */
5311
5312 static hashval_t
5313 decl_loc_table_hash (const void *x)
5314 {
5315 return (hashval_t) ((const var_loc_list *) x)->decl_id;
5316 }
5317
5318 /* Return nonzero if decl_id of var_loc_list X is the same as
5319 UID of decl *Y. */
5320
5321 static int
5322 decl_loc_table_eq (const void *x, const void *y)
5323 {
5324 return (((const var_loc_list *) x)->decl_id == DECL_UID ((const tree) y));
5325 }
5326
5327 /* Return the var_loc list associated with a given declaration. */
5328
5329 static inline var_loc_list *
5330 lookup_decl_loc (tree decl)
5331 {
5332 return htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
5333 }
5334
5335 /* Equate a DIE to a particular declaration. */
5336
5337 static void
5338 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
5339 {
5340 unsigned int decl_id = DECL_UID (decl);
5341 void **slot;
5342
5343 slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
5344 *slot = decl_die;
5345 decl_die->decl_id = decl_id;
5346 }
5347
5348 /* Add a variable location node to the linked list for DECL. */
5349
5350 static void
5351 add_var_loc_to_decl (tree decl, struct var_loc_node *loc)
5352 {
5353 unsigned int decl_id = DECL_UID (decl);
5354 var_loc_list *temp;
5355 void **slot;
5356
5357 slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
5358 if (*slot == NULL)
5359 {
5360 temp = ggc_alloc_cleared (sizeof (var_loc_list));
5361 temp->decl_id = decl_id;
5362 *slot = temp;
5363 }
5364 else
5365 temp = *slot;
5366
5367 if (temp->last)
5368 {
5369 /* If the current location is the same as the end of the list,
5370 we have nothing to do. */
5371 if (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->last->var_loc_note),
5372 NOTE_VAR_LOCATION_LOC (loc->var_loc_note)))
5373 {
5374 /* Add LOC to the end of list and update LAST. */
5375 temp->last->next = loc;
5376 temp->last = loc;
5377 }
5378 }
5379 /* Do not add empty location to the beginning of the list. */
5380 else if (NOTE_VAR_LOCATION_LOC (loc->var_loc_note) != NULL_RTX)
5381 {
5382 temp->first = loc;
5383 temp->last = loc;
5384 }
5385 }
5386 \f
5387 /* Keep track of the number of spaces used to indent the
5388 output of the debugging routines that print the structure of
5389 the DIE internal representation. */
5390 static int print_indent;
5391
5392 /* Indent the line the number of spaces given by print_indent. */
5393
5394 static inline void
5395 print_spaces (FILE *outfile)
5396 {
5397 fprintf (outfile, "%*s", print_indent, "");
5398 }
5399
5400 /* Print the information associated with a given DIE, and its children.
5401 This routine is a debugging aid only. */
5402
5403 static void
5404 print_die (dw_die_ref die, FILE *outfile)
5405 {
5406 dw_attr_ref a;
5407 dw_die_ref c;
5408
5409 print_spaces (outfile);
5410 fprintf (outfile, "DIE %4lu: %s\n",
5411 die->die_offset, dwarf_tag_name (die->die_tag));
5412 print_spaces (outfile);
5413 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
5414 fprintf (outfile, " offset: %lu\n", die->die_offset);
5415
5416 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5417 {
5418 print_spaces (outfile);
5419 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
5420
5421 switch (AT_class (a))
5422 {
5423 case dw_val_class_addr:
5424 fprintf (outfile, "address");
5425 break;
5426 case dw_val_class_offset:
5427 fprintf (outfile, "offset");
5428 break;
5429 case dw_val_class_loc:
5430 fprintf (outfile, "location descriptor");
5431 break;
5432 case dw_val_class_loc_list:
5433 fprintf (outfile, "location list -> label:%s",
5434 AT_loc_list (a)->ll_symbol);
5435 break;
5436 case dw_val_class_range_list:
5437 fprintf (outfile, "range list");
5438 break;
5439 case dw_val_class_const:
5440 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
5441 break;
5442 case dw_val_class_unsigned_const:
5443 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
5444 break;
5445 case dw_val_class_long_long:
5446 fprintf (outfile, "constant (%lu,%lu)",
5447 a->dw_attr_val.v.val_long_long.hi,
5448 a->dw_attr_val.v.val_long_long.low);
5449 break;
5450 case dw_val_class_vec:
5451 fprintf (outfile, "floating-point or vector constant");
5452 break;
5453 case dw_val_class_flag:
5454 fprintf (outfile, "%u", AT_flag (a));
5455 break;
5456 case dw_val_class_die_ref:
5457 if (AT_ref (a) != NULL)
5458 {
5459 if (AT_ref (a)->die_symbol)
5460 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5461 else
5462 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5463 }
5464 else
5465 fprintf (outfile, "die -> <null>");
5466 break;
5467 case dw_val_class_lbl_id:
5468 case dw_val_class_lbl_offset:
5469 fprintf (outfile, "label: %s", AT_lbl (a));
5470 break;
5471 case dw_val_class_str:
5472 if (AT_string (a) != NULL)
5473 fprintf (outfile, "\"%s\"", AT_string (a));
5474 else
5475 fprintf (outfile, "<null>");
5476 break;
5477 default:
5478 break;
5479 }
5480
5481 fprintf (outfile, "\n");
5482 }
5483
5484 if (die->die_child != NULL)
5485 {
5486 print_indent += 4;
5487 for (c = die->die_child; c != NULL; c = c->die_sib)
5488 print_die (c, outfile);
5489
5490 print_indent -= 4;
5491 }
5492 if (print_indent == 0)
5493 fprintf (outfile, "\n");
5494 }
5495
5496 /* Print the contents of the source code line number correspondence table.
5497 This routine is a debugging aid only. */
5498
5499 static void
5500 print_dwarf_line_table (FILE *outfile)
5501 {
5502 unsigned i;
5503 dw_line_info_ref line_info;
5504
5505 fprintf (outfile, "\n\nDWARF source line information\n");
5506 for (i = 1; i < line_info_table_in_use; i++)
5507 {
5508 line_info = &line_info_table[i];
5509 fprintf (outfile, "%5d: ", i);
5510 fprintf (outfile, "%-20s",
5511 VARRAY_CHAR_PTR (file_table, line_info->dw_file_num));
5512 fprintf (outfile, "%6ld", line_info->dw_line_num);
5513 fprintf (outfile, "\n");
5514 }
5515
5516 fprintf (outfile, "\n\n");
5517 }
5518
5519 /* Print the information collected for a given DIE. */
5520
5521 void
5522 debug_dwarf_die (dw_die_ref die)
5523 {
5524 print_die (die, stderr);
5525 }
5526
5527 /* Print all DWARF information collected for the compilation unit.
5528 This routine is a debugging aid only. */
5529
5530 void
5531 debug_dwarf (void)
5532 {
5533 print_indent = 0;
5534 print_die (comp_unit_die, stderr);
5535 if (! DWARF2_ASM_LINE_DEBUG_INFO)
5536 print_dwarf_line_table (stderr);
5537 }
5538 \f
5539 /* We build up the lists of children and attributes by pushing new ones
5540 onto the beginning of the list. Reverse the lists for DIE so that
5541 they are in order of addition. */
5542
5543 static void
5544 reverse_die_lists (dw_die_ref die)
5545 {
5546 dw_die_ref c, cp, cn;
5547 dw_attr_ref a, ap, an;
5548
5549 for (a = die->die_attr, ap = 0; a; a = an)
5550 {
5551 an = a->dw_attr_next;
5552 a->dw_attr_next = ap;
5553 ap = a;
5554 }
5555
5556 die->die_attr = ap;
5557
5558 for (c = die->die_child, cp = 0; c; c = cn)
5559 {
5560 cn = c->die_sib;
5561 c->die_sib = cp;
5562 cp = c;
5563 }
5564
5565 die->die_child = cp;
5566 }
5567
5568 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5569 reverse all dies in add_sibling_attributes, which runs through all the dies,
5570 it would reverse all the dies. Now, however, since we don't call
5571 reverse_die_lists in add_sibling_attributes, we need a routine to
5572 recursively reverse all the dies. This is that routine. */
5573
5574 static void
5575 reverse_all_dies (dw_die_ref die)
5576 {
5577 dw_die_ref c;
5578
5579 reverse_die_lists (die);
5580
5581 for (c = die->die_child; c; c = c->die_sib)
5582 reverse_all_dies (c);
5583 }
5584
5585 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5586 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5587 DIE that marks the start of the DIEs for this include file. */
5588
5589 static dw_die_ref
5590 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
5591 {
5592 const char *filename = get_AT_string (bincl_die, DW_AT_name);
5593 dw_die_ref new_unit = gen_compile_unit_die (filename);
5594
5595 new_unit->die_sib = old_unit;
5596 return new_unit;
5597 }
5598
5599 /* Close an include-file CU and reopen the enclosing one. */
5600
5601 static dw_die_ref
5602 pop_compile_unit (dw_die_ref old_unit)
5603 {
5604 dw_die_ref new_unit = old_unit->die_sib;
5605
5606 old_unit->die_sib = NULL;
5607 return new_unit;
5608 }
5609
5610 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5611 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5612
5613 /* Calculate the checksum of a location expression. */
5614
5615 static inline void
5616 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
5617 {
5618 CHECKSUM (loc->dw_loc_opc);
5619 CHECKSUM (loc->dw_loc_oprnd1);
5620 CHECKSUM (loc->dw_loc_oprnd2);
5621 }
5622
5623 /* Calculate the checksum of an attribute. */
5624
5625 static void
5626 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
5627 {
5628 dw_loc_descr_ref loc;
5629 rtx r;
5630
5631 CHECKSUM (at->dw_attr);
5632
5633 /* We don't care about differences in file numbering. */
5634 if (at->dw_attr == DW_AT_decl_file
5635 /* Or that this was compiled with a different compiler snapshot; if
5636 the output is the same, that's what matters. */
5637 || at->dw_attr == DW_AT_producer)
5638 return;
5639
5640 switch (AT_class (at))
5641 {
5642 case dw_val_class_const:
5643 CHECKSUM (at->dw_attr_val.v.val_int);
5644 break;
5645 case dw_val_class_unsigned_const:
5646 CHECKSUM (at->dw_attr_val.v.val_unsigned);
5647 break;
5648 case dw_val_class_long_long:
5649 CHECKSUM (at->dw_attr_val.v.val_long_long);
5650 break;
5651 case dw_val_class_vec:
5652 CHECKSUM (at->dw_attr_val.v.val_vec);
5653 break;
5654 case dw_val_class_flag:
5655 CHECKSUM (at->dw_attr_val.v.val_flag);
5656 break;
5657 case dw_val_class_str:
5658 CHECKSUM_STRING (AT_string (at));
5659 break;
5660
5661 case dw_val_class_addr:
5662 r = AT_addr (at);
5663 switch (GET_CODE (r))
5664 {
5665 case SYMBOL_REF:
5666 CHECKSUM_STRING (XSTR (r, 0));
5667 break;
5668
5669 default:
5670 abort ();
5671 }
5672 break;
5673
5674 case dw_val_class_offset:
5675 CHECKSUM (at->dw_attr_val.v.val_offset);
5676 break;
5677
5678 case dw_val_class_loc:
5679 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5680 loc_checksum (loc, ctx);
5681 break;
5682
5683 case dw_val_class_die_ref:
5684 die_checksum (AT_ref (at), ctx, mark);
5685 break;
5686
5687 case dw_val_class_fde_ref:
5688 case dw_val_class_lbl_id:
5689 case dw_val_class_lbl_offset:
5690 break;
5691
5692 default:
5693 break;
5694 }
5695 }
5696
5697 /* Calculate the checksum of a DIE. */
5698
5699 static void
5700 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
5701 {
5702 dw_die_ref c;
5703 dw_attr_ref a;
5704
5705 /* To avoid infinite recursion. */
5706 if (die->die_mark)
5707 {
5708 CHECKSUM (die->die_mark);
5709 return;
5710 }
5711 die->die_mark = ++(*mark);
5712
5713 CHECKSUM (die->die_tag);
5714
5715 for (a = die->die_attr; a; a = a->dw_attr_next)
5716 attr_checksum (a, ctx, mark);
5717
5718 for (c = die->die_child; c; c = c->die_sib)
5719 die_checksum (c, ctx, mark);
5720 }
5721
5722 #undef CHECKSUM
5723 #undef CHECKSUM_STRING
5724
5725 /* Do the location expressions look same? */
5726 static inline int
5727 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
5728 {
5729 return loc1->dw_loc_opc == loc2->dw_loc_opc
5730 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
5731 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
5732 }
5733
5734 /* Do the values look the same? */
5735 static int
5736 same_dw_val_p (dw_val_node *v1, dw_val_node *v2, int *mark)
5737 {
5738 dw_loc_descr_ref loc1, loc2;
5739 rtx r1, r2;
5740
5741 if (v1->val_class != v2->val_class)
5742 return 0;
5743
5744 switch (v1->val_class)
5745 {
5746 case dw_val_class_const:
5747 return v1->v.val_int == v2->v.val_int;
5748 case dw_val_class_unsigned_const:
5749 return v1->v.val_unsigned == v2->v.val_unsigned;
5750 case dw_val_class_long_long:
5751 return v1->v.val_long_long.hi == v2->v.val_long_long.hi
5752 && v1->v.val_long_long.low == v2->v.val_long_long.low;
5753 case dw_val_class_vec:
5754 if (v1->v.val_vec.length != v2->v.val_vec.length
5755 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
5756 return 0;
5757 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
5758 v1->v.val_vec.length * v1->v.val_vec.elt_size))
5759 return 0;
5760 return 1;
5761 case dw_val_class_flag:
5762 return v1->v.val_flag == v2->v.val_flag;
5763 case dw_val_class_str:
5764 return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
5765
5766 case dw_val_class_addr:
5767 r1 = v1->v.val_addr;
5768 r2 = v2->v.val_addr;
5769 if (GET_CODE (r1) != GET_CODE (r2))
5770 return 0;
5771 switch (GET_CODE (r1))
5772 {
5773 case SYMBOL_REF:
5774 return !strcmp (XSTR (r1, 0), XSTR (r2, 0));
5775
5776 default:
5777 abort ();
5778 }
5779
5780 case dw_val_class_offset:
5781 return v1->v.val_offset == v2->v.val_offset;
5782
5783 case dw_val_class_loc:
5784 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
5785 loc1 && loc2;
5786 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
5787 if (!same_loc_p (loc1, loc2, mark))
5788 return 0;
5789 return !loc1 && !loc2;
5790
5791 case dw_val_class_die_ref:
5792 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
5793
5794 case dw_val_class_fde_ref:
5795 case dw_val_class_lbl_id:
5796 case dw_val_class_lbl_offset:
5797 return 1;
5798
5799 default:
5800 return 1;
5801 }
5802 }
5803
5804 /* Do the attributes look the same? */
5805
5806 static int
5807 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
5808 {
5809 if (at1->dw_attr != at2->dw_attr)
5810 return 0;
5811
5812 /* We don't care about differences in file numbering. */
5813 if (at1->dw_attr == DW_AT_decl_file
5814 /* Or that this was compiled with a different compiler snapshot; if
5815 the output is the same, that's what matters. */
5816 || at1->dw_attr == DW_AT_producer)
5817 return 1;
5818
5819 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
5820 }
5821
5822 /* Do the dies look the same? */
5823
5824 static int
5825 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
5826 {
5827 dw_die_ref c1, c2;
5828 dw_attr_ref a1, a2;
5829
5830 /* To avoid infinite recursion. */
5831 if (die1->die_mark)
5832 return die1->die_mark == die2->die_mark;
5833 die1->die_mark = die2->die_mark = ++(*mark);
5834
5835 if (die1->die_tag != die2->die_tag)
5836 return 0;
5837
5838 for (a1 = die1->die_attr, a2 = die2->die_attr;
5839 a1 && a2;
5840 a1 = a1->dw_attr_next, a2 = a2->dw_attr_next)
5841 if (!same_attr_p (a1, a2, mark))
5842 return 0;
5843 if (a1 || a2)
5844 return 0;
5845
5846 for (c1 = die1->die_child, c2 = die2->die_child;
5847 c1 && c2;
5848 c1 = c1->die_sib, c2 = c2->die_sib)
5849 if (!same_die_p (c1, c2, mark))
5850 return 0;
5851 if (c1 || c2)
5852 return 0;
5853
5854 return 1;
5855 }
5856
5857 /* Do the dies look the same? Wrapper around same_die_p. */
5858
5859 static int
5860 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
5861 {
5862 int mark = 0;
5863 int ret = same_die_p (die1, die2, &mark);
5864
5865 unmark_all_dies (die1);
5866 unmark_all_dies (die2);
5867
5868 return ret;
5869 }
5870
5871 /* The prefix to attach to symbols on DIEs in the current comdat debug
5872 info section. */
5873 static char *comdat_symbol_id;
5874
5875 /* The index of the current symbol within the current comdat CU. */
5876 static unsigned int comdat_symbol_number;
5877
5878 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
5879 children, and set comdat_symbol_id accordingly. */
5880
5881 static void
5882 compute_section_prefix (dw_die_ref unit_die)
5883 {
5884 const char *die_name = get_AT_string (unit_die, DW_AT_name);
5885 const char *base = die_name ? lbasename (die_name) : "anonymous";
5886 char *name = alloca (strlen (base) + 64);
5887 char *p;
5888 int i, mark;
5889 unsigned char checksum[16];
5890 struct md5_ctx ctx;
5891
5892 /* Compute the checksum of the DIE, then append part of it as hex digits to
5893 the name filename of the unit. */
5894
5895 md5_init_ctx (&ctx);
5896 mark = 0;
5897 die_checksum (unit_die, &ctx, &mark);
5898 unmark_all_dies (unit_die);
5899 md5_finish_ctx (&ctx, checksum);
5900
5901 sprintf (name, "%s.", base);
5902 clean_symbol_name (name);
5903
5904 p = name + strlen (name);
5905 for (i = 0; i < 4; i++)
5906 {
5907 sprintf (p, "%.2x", checksum[i]);
5908 p += 2;
5909 }
5910
5911 comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
5912 comdat_symbol_number = 0;
5913 }
5914
5915 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
5916
5917 static int
5918 is_type_die (dw_die_ref die)
5919 {
5920 switch (die->die_tag)
5921 {
5922 case DW_TAG_array_type:
5923 case DW_TAG_class_type:
5924 case DW_TAG_enumeration_type:
5925 case DW_TAG_pointer_type:
5926 case DW_TAG_reference_type:
5927 case DW_TAG_string_type:
5928 case DW_TAG_structure_type:
5929 case DW_TAG_subroutine_type:
5930 case DW_TAG_union_type:
5931 case DW_TAG_ptr_to_member_type:
5932 case DW_TAG_set_type:
5933 case DW_TAG_subrange_type:
5934 case DW_TAG_base_type:
5935 case DW_TAG_const_type:
5936 case DW_TAG_file_type:
5937 case DW_TAG_packed_type:
5938 case DW_TAG_volatile_type:
5939 case DW_TAG_typedef:
5940 return 1;
5941 default:
5942 return 0;
5943 }
5944 }
5945
5946 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
5947 Basically, we want to choose the bits that are likely to be shared between
5948 compilations (types) and leave out the bits that are specific to individual
5949 compilations (functions). */
5950
5951 static int
5952 is_comdat_die (dw_die_ref c)
5953 {
5954 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
5955 we do for stabs. The advantage is a greater likelihood of sharing between
5956 objects that don't include headers in the same order (and therefore would
5957 put the base types in a different comdat). jason 8/28/00 */
5958
5959 if (c->die_tag == DW_TAG_base_type)
5960 return 0;
5961
5962 if (c->die_tag == DW_TAG_pointer_type
5963 || c->die_tag == DW_TAG_reference_type
5964 || c->die_tag == DW_TAG_const_type
5965 || c->die_tag == DW_TAG_volatile_type)
5966 {
5967 dw_die_ref t = get_AT_ref (c, DW_AT_type);
5968
5969 return t ? is_comdat_die (t) : 0;
5970 }
5971
5972 return is_type_die (c);
5973 }
5974
5975 /* Returns 1 iff C is the sort of DIE that might be referred to from another
5976 compilation unit. */
5977
5978 static int
5979 is_symbol_die (dw_die_ref c)
5980 {
5981 return (is_type_die (c)
5982 || (get_AT (c, DW_AT_declaration)
5983 && !get_AT (c, DW_AT_specification)));
5984 }
5985
5986 static char *
5987 gen_internal_sym (const char *prefix)
5988 {
5989 char buf[256];
5990
5991 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
5992 return xstrdup (buf);
5993 }
5994
5995 /* Assign symbols to all worthy DIEs under DIE. */
5996
5997 static void
5998 assign_symbol_names (dw_die_ref die)
5999 {
6000 dw_die_ref c;
6001
6002 if (is_symbol_die (die))
6003 {
6004 if (comdat_symbol_id)
6005 {
6006 char *p = alloca (strlen (comdat_symbol_id) + 64);
6007
6008 sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
6009 comdat_symbol_id, comdat_symbol_number++);
6010 die->die_symbol = xstrdup (p);
6011 }
6012 else
6013 die->die_symbol = gen_internal_sym ("LDIE");
6014 }
6015
6016 for (c = die->die_child; c != NULL; c = c->die_sib)
6017 assign_symbol_names (c);
6018 }
6019
6020 struct cu_hash_table_entry
6021 {
6022 dw_die_ref cu;
6023 unsigned min_comdat_num, max_comdat_num;
6024 struct cu_hash_table_entry *next;
6025 };
6026
6027 /* Routines to manipulate hash table of CUs. */
6028 static hashval_t
6029 htab_cu_hash (const void *of)
6030 {
6031 const struct cu_hash_table_entry *entry = of;
6032
6033 return htab_hash_string (entry->cu->die_symbol);
6034 }
6035
6036 static int
6037 htab_cu_eq (const void *of1, const void *of2)
6038 {
6039 const struct cu_hash_table_entry *entry1 = of1;
6040 const struct die_struct *entry2 = of2;
6041
6042 return !strcmp (entry1->cu->die_symbol, entry2->die_symbol);
6043 }
6044
6045 static void
6046 htab_cu_del (void *what)
6047 {
6048 struct cu_hash_table_entry *next, *entry = what;
6049
6050 while (entry)
6051 {
6052 next = entry->next;
6053 free (entry);
6054 entry = next;
6055 }
6056 }
6057
6058 /* Check whether we have already seen this CU and set up SYM_NUM
6059 accordingly. */
6060 static int
6061 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
6062 {
6063 struct cu_hash_table_entry dummy;
6064 struct cu_hash_table_entry **slot, *entry, *last = &dummy;
6065
6066 dummy.max_comdat_num = 0;
6067
6068 slot = (struct cu_hash_table_entry **)
6069 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6070 INSERT);
6071 entry = *slot;
6072
6073 for (; entry; last = entry, entry = entry->next)
6074 {
6075 if (same_die_p_wrap (cu, entry->cu))
6076 break;
6077 }
6078
6079 if (entry)
6080 {
6081 *sym_num = entry->min_comdat_num;
6082 return 1;
6083 }
6084
6085 entry = xcalloc (1, sizeof (struct cu_hash_table_entry));
6086 entry->cu = cu;
6087 entry->min_comdat_num = *sym_num = last->max_comdat_num;
6088 entry->next = *slot;
6089 *slot = entry;
6090
6091 return 0;
6092 }
6093
6094 /* Record SYM_NUM to record of CU in HTABLE. */
6095 static void
6096 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
6097 {
6098 struct cu_hash_table_entry **slot, *entry;
6099
6100 slot = (struct cu_hash_table_entry **)
6101 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6102 NO_INSERT);
6103 entry = *slot;
6104
6105 entry->max_comdat_num = sym_num;
6106 }
6107
6108 /* Traverse the DIE (which is always comp_unit_die), and set up
6109 additional compilation units for each of the include files we see
6110 bracketed by BINCL/EINCL. */
6111
6112 static void
6113 break_out_includes (dw_die_ref die)
6114 {
6115 dw_die_ref *ptr;
6116 dw_die_ref unit = NULL;
6117 limbo_die_node *node, **pnode;
6118 htab_t cu_hash_table;
6119
6120 for (ptr = &(die->die_child); *ptr;)
6121 {
6122 dw_die_ref c = *ptr;
6123
6124 if (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
6125 || (unit && is_comdat_die (c)))
6126 {
6127 /* This DIE is for a secondary CU; remove it from the main one. */
6128 *ptr = c->die_sib;
6129
6130 if (c->die_tag == DW_TAG_GNU_BINCL)
6131 {
6132 unit = push_new_compile_unit (unit, c);
6133 free_die (c);
6134 }
6135 else if (c->die_tag == DW_TAG_GNU_EINCL)
6136 {
6137 unit = pop_compile_unit (unit);
6138 free_die (c);
6139 }
6140 else
6141 add_child_die (unit, c);
6142 }
6143 else
6144 {
6145 /* Leave this DIE in the main CU. */
6146 ptr = &(c->die_sib);
6147 continue;
6148 }
6149 }
6150
6151 #if 0
6152 /* We can only use this in debugging, since the frontend doesn't check
6153 to make sure that we leave every include file we enter. */
6154 if (unit != NULL)
6155 abort ();
6156 #endif
6157
6158 assign_symbol_names (die);
6159 cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
6160 for (node = limbo_die_list, pnode = &limbo_die_list;
6161 node;
6162 node = node->next)
6163 {
6164 int is_dupl;
6165
6166 compute_section_prefix (node->die);
6167 is_dupl = check_duplicate_cu (node->die, cu_hash_table,
6168 &comdat_symbol_number);
6169 assign_symbol_names (node->die);
6170 if (is_dupl)
6171 *pnode = node->next;
6172 else
6173 {
6174 pnode = &node->next;
6175 record_comdat_symbol_number (node->die, cu_hash_table,
6176 comdat_symbol_number);
6177 }
6178 }
6179 htab_delete (cu_hash_table);
6180 }
6181
6182 /* Traverse the DIE and add a sibling attribute if it may have the
6183 effect of speeding up access to siblings. To save some space,
6184 avoid generating sibling attributes for DIE's without children. */
6185
6186 static void
6187 add_sibling_attributes (dw_die_ref die)
6188 {
6189 dw_die_ref c;
6190
6191 if (die->die_tag != DW_TAG_compile_unit
6192 && die->die_sib && die->die_child != NULL)
6193 /* Add the sibling link to the front of the attribute list. */
6194 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
6195
6196 for (c = die->die_child; c != NULL; c = c->die_sib)
6197 add_sibling_attributes (c);
6198 }
6199
6200 /* Output all location lists for the DIE and its children. */
6201
6202 static void
6203 output_location_lists (dw_die_ref die)
6204 {
6205 dw_die_ref c;
6206 dw_attr_ref d_attr;
6207
6208 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6209 if (AT_class (d_attr) == dw_val_class_loc_list)
6210 output_loc_list (AT_loc_list (d_attr));
6211
6212 for (c = die->die_child; c != NULL; c = c->die_sib)
6213 output_location_lists (c);
6214
6215 }
6216
6217 /* The format of each DIE (and its attribute value pairs) is encoded in an
6218 abbreviation table. This routine builds the abbreviation table and assigns
6219 a unique abbreviation id for each abbreviation entry. The children of each
6220 die are visited recursively. */
6221
6222 static void
6223 build_abbrev_table (dw_die_ref die)
6224 {
6225 unsigned long abbrev_id;
6226 unsigned int n_alloc;
6227 dw_die_ref c;
6228 dw_attr_ref d_attr, a_attr;
6229
6230 /* Scan the DIE references, and mark as external any that refer to
6231 DIEs from other CUs (i.e. those which are not marked). */
6232 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6233 if (AT_class (d_attr) == dw_val_class_die_ref
6234 && AT_ref (d_attr)->die_mark == 0)
6235 {
6236 if (AT_ref (d_attr)->die_symbol == 0)
6237 abort ();
6238
6239 set_AT_ref_external (d_attr, 1);
6240 }
6241
6242 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6243 {
6244 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6245
6246 if (abbrev->die_tag == die->die_tag)
6247 {
6248 if ((abbrev->die_child != NULL) == (die->die_child != NULL))
6249 {
6250 a_attr = abbrev->die_attr;
6251 d_attr = die->die_attr;
6252
6253 while (a_attr != NULL && d_attr != NULL)
6254 {
6255 if ((a_attr->dw_attr != d_attr->dw_attr)
6256 || (value_format (a_attr) != value_format (d_attr)))
6257 break;
6258
6259 a_attr = a_attr->dw_attr_next;
6260 d_attr = d_attr->dw_attr_next;
6261 }
6262
6263 if (a_attr == NULL && d_attr == NULL)
6264 break;
6265 }
6266 }
6267 }
6268
6269 if (abbrev_id >= abbrev_die_table_in_use)
6270 {
6271 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
6272 {
6273 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
6274 abbrev_die_table = ggc_realloc (abbrev_die_table,
6275 sizeof (dw_die_ref) * n_alloc);
6276
6277 memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
6278 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
6279 abbrev_die_table_allocated = n_alloc;
6280 }
6281
6282 ++abbrev_die_table_in_use;
6283 abbrev_die_table[abbrev_id] = die;
6284 }
6285
6286 die->die_abbrev = abbrev_id;
6287 for (c = die->die_child; c != NULL; c = c->die_sib)
6288 build_abbrev_table (c);
6289 }
6290 \f
6291 /* Return the power-of-two number of bytes necessary to represent VALUE. */
6292
6293 static int
6294 constant_size (long unsigned int value)
6295 {
6296 int log;
6297
6298 if (value == 0)
6299 log = 0;
6300 else
6301 log = floor_log2 (value);
6302
6303 log = log / 8;
6304 log = 1 << (floor_log2 (log) + 1);
6305
6306 return log;
6307 }
6308
6309 /* Return the size of a DIE as it is represented in the
6310 .debug_info section. */
6311
6312 static unsigned long
6313 size_of_die (dw_die_ref die)
6314 {
6315 unsigned long size = 0;
6316 dw_attr_ref a;
6317
6318 size += size_of_uleb128 (die->die_abbrev);
6319 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6320 {
6321 switch (AT_class (a))
6322 {
6323 case dw_val_class_addr:
6324 size += DWARF2_ADDR_SIZE;
6325 break;
6326 case dw_val_class_offset:
6327 size += DWARF_OFFSET_SIZE;
6328 break;
6329 case dw_val_class_loc:
6330 {
6331 unsigned long lsize = size_of_locs (AT_loc (a));
6332
6333 /* Block length. */
6334 size += constant_size (lsize);
6335 size += lsize;
6336 }
6337 break;
6338 case dw_val_class_loc_list:
6339 size += DWARF_OFFSET_SIZE;
6340 break;
6341 case dw_val_class_range_list:
6342 size += DWARF_OFFSET_SIZE;
6343 break;
6344 case dw_val_class_const:
6345 size += size_of_sleb128 (AT_int (a));
6346 break;
6347 case dw_val_class_unsigned_const:
6348 size += constant_size (AT_unsigned (a));
6349 break;
6350 case dw_val_class_long_long:
6351 size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
6352 break;
6353 case dw_val_class_vec:
6354 size += 1 + (a->dw_attr_val.v.val_vec.length
6355 * a->dw_attr_val.v.val_vec.elt_size); /* block */
6356 break;
6357 case dw_val_class_flag:
6358 size += 1;
6359 break;
6360 case dw_val_class_die_ref:
6361 if (AT_ref_external (a))
6362 size += DWARF2_ADDR_SIZE;
6363 else
6364 size += DWARF_OFFSET_SIZE;
6365 break;
6366 case dw_val_class_fde_ref:
6367 size += DWARF_OFFSET_SIZE;
6368 break;
6369 case dw_val_class_lbl_id:
6370 size += DWARF2_ADDR_SIZE;
6371 break;
6372 case dw_val_class_lbl_offset:
6373 size += DWARF_OFFSET_SIZE;
6374 break;
6375 case dw_val_class_str:
6376 if (AT_string_form (a) == DW_FORM_strp)
6377 size += DWARF_OFFSET_SIZE;
6378 else
6379 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
6380 break;
6381 default:
6382 abort ();
6383 }
6384 }
6385
6386 return size;
6387 }
6388
6389 /* Size the debugging information associated with a given DIE. Visits the
6390 DIE's children recursively. Updates the global variable next_die_offset, on
6391 each time through. Uses the current value of next_die_offset to update the
6392 die_offset field in each DIE. */
6393
6394 static void
6395 calc_die_sizes (dw_die_ref die)
6396 {
6397 dw_die_ref c;
6398
6399 die->die_offset = next_die_offset;
6400 next_die_offset += size_of_die (die);
6401
6402 for (c = die->die_child; c != NULL; c = c->die_sib)
6403 calc_die_sizes (c);
6404
6405 if (die->die_child != NULL)
6406 /* Count the null byte used to terminate sibling lists. */
6407 next_die_offset += 1;
6408 }
6409
6410 /* Set the marks for a die and its children. We do this so
6411 that we know whether or not a reference needs to use FORM_ref_addr; only
6412 DIEs in the same CU will be marked. We used to clear out the offset
6413 and use that as the flag, but ran into ordering problems. */
6414
6415 static void
6416 mark_dies (dw_die_ref die)
6417 {
6418 dw_die_ref c;
6419
6420 if (die->die_mark)
6421 abort ();
6422
6423 die->die_mark = 1;
6424 for (c = die->die_child; c; c = c->die_sib)
6425 mark_dies (c);
6426 }
6427
6428 /* Clear the marks for a die and its children. */
6429
6430 static void
6431 unmark_dies (dw_die_ref die)
6432 {
6433 dw_die_ref c;
6434
6435 if (!die->die_mark)
6436 abort ();
6437
6438 die->die_mark = 0;
6439 for (c = die->die_child; c; c = c->die_sib)
6440 unmark_dies (c);
6441 }
6442
6443 /* Clear the marks for a die, its children and referred dies. */
6444
6445 static void
6446 unmark_all_dies (dw_die_ref die)
6447 {
6448 dw_die_ref c;
6449 dw_attr_ref a;
6450
6451 if (!die->die_mark)
6452 return;
6453 die->die_mark = 0;
6454
6455 for (c = die->die_child; c; c = c->die_sib)
6456 unmark_all_dies (c);
6457
6458 for (a = die->die_attr; a; a = a->dw_attr_next)
6459 if (AT_class (a) == dw_val_class_die_ref)
6460 unmark_all_dies (AT_ref (a));
6461 }
6462
6463 /* Return the size of the .debug_pubnames table generated for the
6464 compilation unit. */
6465
6466 static unsigned long
6467 size_of_pubnames (void)
6468 {
6469 unsigned long size;
6470 unsigned i;
6471
6472 size = DWARF_PUBNAMES_HEADER_SIZE;
6473 for (i = 0; i < pubname_table_in_use; i++)
6474 {
6475 pubname_ref p = &pubname_table[i];
6476 size += DWARF_OFFSET_SIZE + strlen (p->name) + 1;
6477 }
6478
6479 size += DWARF_OFFSET_SIZE;
6480 return size;
6481 }
6482
6483 /* Return the size of the information in the .debug_aranges section. */
6484
6485 static unsigned long
6486 size_of_aranges (void)
6487 {
6488 unsigned long size;
6489
6490 size = DWARF_ARANGES_HEADER_SIZE;
6491
6492 /* Count the address/length pair for this compilation unit. */
6493 size += 2 * DWARF2_ADDR_SIZE;
6494 size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
6495
6496 /* Count the two zero words used to terminated the address range table. */
6497 size += 2 * DWARF2_ADDR_SIZE;
6498 return size;
6499 }
6500 \f
6501 /* Select the encoding of an attribute value. */
6502
6503 static enum dwarf_form
6504 value_format (dw_attr_ref a)
6505 {
6506 switch (a->dw_attr_val.val_class)
6507 {
6508 case dw_val_class_addr:
6509 return DW_FORM_addr;
6510 case dw_val_class_range_list:
6511 case dw_val_class_offset:
6512 if (DWARF_OFFSET_SIZE == 4)
6513 return DW_FORM_data4;
6514 if (DWARF_OFFSET_SIZE == 8)
6515 return DW_FORM_data8;
6516 abort ();
6517 case dw_val_class_loc_list:
6518 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6519 .debug_loc section */
6520 return DW_FORM_data4;
6521 case dw_val_class_loc:
6522 switch (constant_size (size_of_locs (AT_loc (a))))
6523 {
6524 case 1:
6525 return DW_FORM_block1;
6526 case 2:
6527 return DW_FORM_block2;
6528 default:
6529 abort ();
6530 }
6531 case dw_val_class_const:
6532 return DW_FORM_sdata;
6533 case dw_val_class_unsigned_const:
6534 switch (constant_size (AT_unsigned (a)))
6535 {
6536 case 1:
6537 return DW_FORM_data1;
6538 case 2:
6539 return DW_FORM_data2;
6540 case 4:
6541 return DW_FORM_data4;
6542 case 8:
6543 return DW_FORM_data8;
6544 default:
6545 abort ();
6546 }
6547 case dw_val_class_long_long:
6548 return DW_FORM_block1;
6549 case dw_val_class_vec:
6550 return DW_FORM_block1;
6551 case dw_val_class_flag:
6552 return DW_FORM_flag;
6553 case dw_val_class_die_ref:
6554 if (AT_ref_external (a))
6555 return DW_FORM_ref_addr;
6556 else
6557 return DW_FORM_ref;
6558 case dw_val_class_fde_ref:
6559 return DW_FORM_data;
6560 case dw_val_class_lbl_id:
6561 return DW_FORM_addr;
6562 case dw_val_class_lbl_offset:
6563 return DW_FORM_data;
6564 case dw_val_class_str:
6565 return AT_string_form (a);
6566
6567 default:
6568 abort ();
6569 }
6570 }
6571
6572 /* Output the encoding of an attribute value. */
6573
6574 static void
6575 output_value_format (dw_attr_ref a)
6576 {
6577 enum dwarf_form form = value_format (a);
6578
6579 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
6580 }
6581
6582 /* Output the .debug_abbrev section which defines the DIE abbreviation
6583 table. */
6584
6585 static void
6586 output_abbrev_section (void)
6587 {
6588 unsigned long abbrev_id;
6589
6590 dw_attr_ref a_attr;
6591
6592 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6593 {
6594 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6595
6596 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
6597 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
6598 dwarf_tag_name (abbrev->die_tag));
6599
6600 if (abbrev->die_child != NULL)
6601 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
6602 else
6603 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
6604
6605 for (a_attr = abbrev->die_attr; a_attr != NULL;
6606 a_attr = a_attr->dw_attr_next)
6607 {
6608 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
6609 dwarf_attr_name (a_attr->dw_attr));
6610 output_value_format (a_attr);
6611 }
6612
6613 dw2_asm_output_data (1, 0, NULL);
6614 dw2_asm_output_data (1, 0, NULL);
6615 }
6616
6617 /* Terminate the table. */
6618 dw2_asm_output_data (1, 0, NULL);
6619 }
6620
6621 /* Output a symbol we can use to refer to this DIE from another CU. */
6622
6623 static inline void
6624 output_die_symbol (dw_die_ref die)
6625 {
6626 char *sym = die->die_symbol;
6627
6628 if (sym == 0)
6629 return;
6630
6631 if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
6632 /* We make these global, not weak; if the target doesn't support
6633 .linkonce, it doesn't support combining the sections, so debugging
6634 will break. */
6635 (*targetm.asm_out.globalize_label) (asm_out_file, sym);
6636
6637 ASM_OUTPUT_LABEL (asm_out_file, sym);
6638 }
6639
6640 /* Return a new location list, given the begin and end range, and the
6641 expression. gensym tells us whether to generate a new internal symbol for
6642 this location list node, which is done for the head of the list only. */
6643
6644 static inline dw_loc_list_ref
6645 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
6646 const char *section, unsigned int gensym)
6647 {
6648 dw_loc_list_ref retlist = ggc_alloc_cleared (sizeof (dw_loc_list_node));
6649
6650 retlist->begin = begin;
6651 retlist->end = end;
6652 retlist->expr = expr;
6653 retlist->section = section;
6654 if (gensym)
6655 retlist->ll_symbol = gen_internal_sym ("LLST");
6656
6657 return retlist;
6658 }
6659
6660 /* Add a location description expression to a location list. */
6661
6662 static inline void
6663 add_loc_descr_to_loc_list (dw_loc_list_ref *list_head, dw_loc_descr_ref descr,
6664 const char *begin, const char *end,
6665 const char *section)
6666 {
6667 dw_loc_list_ref *d;
6668
6669 /* Find the end of the chain. */
6670 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6671 ;
6672
6673 /* Add a new location list node to the list. */
6674 *d = new_loc_list (descr, begin, end, section, 0);
6675 }
6676
6677 /* Output the location list given to us. */
6678
6679 static void
6680 output_loc_list (dw_loc_list_ref list_head)
6681 {
6682 dw_loc_list_ref curr = list_head;
6683
6684 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6685
6686 /* Walk the location list, and output each range + expression. */
6687 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
6688 {
6689 unsigned long size;
6690 if (separate_line_info_table_in_use == 0)
6691 {
6692 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6693 "Location list begin address (%s)",
6694 list_head->ll_symbol);
6695 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6696 "Location list end address (%s)",
6697 list_head->ll_symbol);
6698 }
6699 else
6700 {
6701 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
6702 "Location list begin address (%s)",
6703 list_head->ll_symbol);
6704 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
6705 "Location list end address (%s)",
6706 list_head->ll_symbol);
6707 }
6708 size = size_of_locs (curr->expr);
6709
6710 /* Output the block length for this list of location operations. */
6711 if (size > 0xffff)
6712 abort ();
6713 dw2_asm_output_data (2, size, "%s", "Location expression size");
6714
6715 output_loc_sequence (curr->expr);
6716 }
6717
6718 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
6719 "Location list terminator begin (%s)",
6720 list_head->ll_symbol);
6721 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
6722 "Location list terminator end (%s)",
6723 list_head->ll_symbol);
6724 }
6725
6726 /* Output the DIE and its attributes. Called recursively to generate
6727 the definitions of each child DIE. */
6728
6729 static void
6730 output_die (dw_die_ref die)
6731 {
6732 dw_attr_ref a;
6733 dw_die_ref c;
6734 unsigned long size;
6735
6736 /* If someone in another CU might refer to us, set up a symbol for
6737 them to point to. */
6738 if (die->die_symbol)
6739 output_die_symbol (die);
6740
6741 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
6742 die->die_offset, dwarf_tag_name (die->die_tag));
6743
6744 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6745 {
6746 const char *name = dwarf_attr_name (a->dw_attr);
6747
6748 switch (AT_class (a))
6749 {
6750 case dw_val_class_addr:
6751 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
6752 break;
6753
6754 case dw_val_class_offset:
6755 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
6756 "%s", name);
6757 break;
6758
6759 case dw_val_class_range_list:
6760 {
6761 char *p = strchr (ranges_section_label, '\0');
6762
6763 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
6764 a->dw_attr_val.v.val_offset);
6765 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
6766 "%s", name);
6767 *p = '\0';
6768 }
6769 break;
6770
6771 case dw_val_class_loc:
6772 size = size_of_locs (AT_loc (a));
6773
6774 /* Output the block length for this list of location operations. */
6775 dw2_asm_output_data (constant_size (size), size, "%s", name);
6776
6777 output_loc_sequence (AT_loc (a));
6778 break;
6779
6780 case dw_val_class_const:
6781 /* ??? It would be slightly more efficient to use a scheme like is
6782 used for unsigned constants below, but gdb 4.x does not sign
6783 extend. Gdb 5.x does sign extend. */
6784 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
6785 break;
6786
6787 case dw_val_class_unsigned_const:
6788 dw2_asm_output_data (constant_size (AT_unsigned (a)),
6789 AT_unsigned (a), "%s", name);
6790 break;
6791
6792 case dw_val_class_long_long:
6793 {
6794 unsigned HOST_WIDE_INT first, second;
6795
6796 dw2_asm_output_data (1,
6797 2 * HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6798 "%s", name);
6799
6800 if (WORDS_BIG_ENDIAN)
6801 {
6802 first = a->dw_attr_val.v.val_long_long.hi;
6803 second = a->dw_attr_val.v.val_long_long.low;
6804 }
6805 else
6806 {
6807 first = a->dw_attr_val.v.val_long_long.low;
6808 second = a->dw_attr_val.v.val_long_long.hi;
6809 }
6810
6811 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6812 first, "long long constant");
6813 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6814 second, NULL);
6815 }
6816 break;
6817
6818 case dw_val_class_vec:
6819 {
6820 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
6821 unsigned int len = a->dw_attr_val.v.val_vec.length;
6822 unsigned int i;
6823 unsigned char *p;
6824
6825 dw2_asm_output_data (1, len * elt_size, "%s", name);
6826 if (elt_size > sizeof (HOST_WIDE_INT))
6827 {
6828 elt_size /= 2;
6829 len *= 2;
6830 }
6831 for (i = 0, p = a->dw_attr_val.v.val_vec.array;
6832 i < len;
6833 i++, p += elt_size)
6834 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
6835 "fp or vector constant word %u", i);
6836 break;
6837 }
6838
6839 case dw_val_class_flag:
6840 dw2_asm_output_data (1, AT_flag (a), "%s", name);
6841 break;
6842
6843 case dw_val_class_loc_list:
6844 {
6845 char *sym = AT_loc_list (a)->ll_symbol;
6846
6847 if (sym == 0)
6848 abort ();
6849 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, "%s", name);
6850 }
6851 break;
6852
6853 case dw_val_class_die_ref:
6854 if (AT_ref_external (a))
6855 {
6856 char *sym = AT_ref (a)->die_symbol;
6857
6858 if (sym == 0)
6859 abort ();
6860 dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, "%s", name);
6861 }
6862 else if (AT_ref (a)->die_offset == 0)
6863 abort ();
6864 else
6865 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
6866 "%s", name);
6867 break;
6868
6869 case dw_val_class_fde_ref:
6870 {
6871 char l1[20];
6872
6873 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
6874 a->dw_attr_val.v.val_fde_index * 2);
6875 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, "%s", name);
6876 }
6877 break;
6878
6879 case dw_val_class_lbl_id:
6880 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
6881 break;
6882
6883 case dw_val_class_lbl_offset:
6884 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a), "%s", name);
6885 break;
6886
6887 case dw_val_class_str:
6888 if (AT_string_form (a) == DW_FORM_strp)
6889 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
6890 a->dw_attr_val.v.val_str->label,
6891 "%s: \"%s\"", name, AT_string (a));
6892 else
6893 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
6894 break;
6895
6896 default:
6897 abort ();
6898 }
6899 }
6900
6901 for (c = die->die_child; c != NULL; c = c->die_sib)
6902 output_die (c);
6903
6904 /* Add null byte to terminate sibling list. */
6905 if (die->die_child != NULL)
6906 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
6907 die->die_offset);
6908 }
6909
6910 /* Output the compilation unit that appears at the beginning of the
6911 .debug_info section, and precedes the DIE descriptions. */
6912
6913 static void
6914 output_compilation_unit_header (void)
6915 {
6916 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
6917 dw2_asm_output_data (4, 0xffffffff,
6918 "Initial length escape value indicating 64-bit DWARF extension");
6919 dw2_asm_output_data (DWARF_OFFSET_SIZE,
6920 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
6921 "Length of Compilation Unit Info");
6922 dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
6923 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
6924 "Offset Into Abbrev. Section");
6925 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
6926 }
6927
6928 /* Output the compilation unit DIE and its children. */
6929
6930 static void
6931 output_comp_unit (dw_die_ref die, int output_if_empty)
6932 {
6933 const char *secname;
6934 char *oldsym, *tmp;
6935
6936 /* Unless we are outputting main CU, we may throw away empty ones. */
6937 if (!output_if_empty && die->die_child == NULL)
6938 return;
6939
6940 /* Even if there are no children of this DIE, we must output the information
6941 about the compilation unit. Otherwise, on an empty translation unit, we
6942 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
6943 will then complain when examining the file. First mark all the DIEs in
6944 this CU so we know which get local refs. */
6945 mark_dies (die);
6946
6947 build_abbrev_table (die);
6948
6949 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
6950 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
6951 calc_die_sizes (die);
6952
6953 oldsym = die->die_symbol;
6954 if (oldsym)
6955 {
6956 tmp = alloca (strlen (oldsym) + 24);
6957
6958 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
6959 secname = tmp;
6960 die->die_symbol = NULL;
6961 }
6962 else
6963 secname = (const char *) DEBUG_INFO_SECTION;
6964
6965 /* Output debugging information. */
6966 named_section_flags (secname, SECTION_DEBUG);
6967 output_compilation_unit_header ();
6968 output_die (die);
6969
6970 /* Leave the marks on the main CU, so we can check them in
6971 output_pubnames. */
6972 if (oldsym)
6973 {
6974 unmark_dies (die);
6975 die->die_symbol = oldsym;
6976 }
6977 }
6978
6979 /* The DWARF2 pubname for a nested thingy looks like "A::f". The
6980 output of lang_hooks.decl_printable_name for C++ looks like
6981 "A::f(int)". Let's drop the argument list, and maybe the scope. */
6982
6983 static const char *
6984 dwarf2_name (tree decl, int scope)
6985 {
6986 return lang_hooks.decl_printable_name (decl, scope ? 1 : 0);
6987 }
6988
6989 /* Add a new entry to .debug_pubnames if appropriate. */
6990
6991 static void
6992 add_pubname (tree decl, dw_die_ref die)
6993 {
6994 pubname_ref p;
6995
6996 if (! TREE_PUBLIC (decl))
6997 return;
6998
6999 if (pubname_table_in_use == pubname_table_allocated)
7000 {
7001 pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
7002 pubname_table
7003 = ggc_realloc (pubname_table,
7004 (pubname_table_allocated * sizeof (pubname_entry)));
7005 memset (pubname_table + pubname_table_in_use, 0,
7006 PUBNAME_TABLE_INCREMENT * sizeof (pubname_entry));
7007 }
7008
7009 p = &pubname_table[pubname_table_in_use++];
7010 p->die = die;
7011 p->name = xstrdup (dwarf2_name (decl, 1));
7012 }
7013
7014 /* Output the public names table used to speed up access to externally
7015 visible names. For now, only generate entries for externally
7016 visible procedures. */
7017
7018 static void
7019 output_pubnames (void)
7020 {
7021 unsigned i;
7022 unsigned long pubnames_length = size_of_pubnames ();
7023
7024 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7025 dw2_asm_output_data (4, 0xffffffff,
7026 "Initial length escape value indicating 64-bit DWARF extension");
7027 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
7028 "Length of Public Names Info");
7029 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7030 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7031 "Offset of Compilation Unit Info");
7032 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
7033 "Compilation Unit Length");
7034
7035 for (i = 0; i < pubname_table_in_use; i++)
7036 {
7037 pubname_ref pub = &pubname_table[i];
7038
7039 /* We shouldn't see pubnames for DIEs outside of the main CU. */
7040 if (pub->die->die_mark == 0)
7041 abort ();
7042
7043 dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
7044 "DIE offset");
7045
7046 dw2_asm_output_nstring (pub->name, -1, "external name");
7047 }
7048
7049 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
7050 }
7051
7052 /* Add a new entry to .debug_aranges if appropriate. */
7053
7054 static void
7055 add_arange (tree decl, dw_die_ref die)
7056 {
7057 if (! DECL_SECTION_NAME (decl))
7058 return;
7059
7060 if (arange_table_in_use == arange_table_allocated)
7061 {
7062 arange_table_allocated += ARANGE_TABLE_INCREMENT;
7063 arange_table = ggc_realloc (arange_table,
7064 (arange_table_allocated
7065 * sizeof (dw_die_ref)));
7066 memset (arange_table + arange_table_in_use, 0,
7067 ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
7068 }
7069
7070 arange_table[arange_table_in_use++] = die;
7071 }
7072
7073 /* Output the information that goes into the .debug_aranges table.
7074 Namely, define the beginning and ending address range of the
7075 text section generated for this compilation unit. */
7076
7077 static void
7078 output_aranges (void)
7079 {
7080 unsigned i;
7081 unsigned long aranges_length = size_of_aranges ();
7082
7083 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7084 dw2_asm_output_data (4, 0xffffffff,
7085 "Initial length escape value indicating 64-bit DWARF extension");
7086 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
7087 "Length of Address Ranges Info");
7088 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7089 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7090 "Offset of Compilation Unit Info");
7091 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
7092 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
7093
7094 /* We need to align to twice the pointer size here. */
7095 if (DWARF_ARANGES_PAD_SIZE)
7096 {
7097 /* Pad using a 2 byte words so that padding is correct for any
7098 pointer size. */
7099 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
7100 2 * DWARF2_ADDR_SIZE);
7101 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
7102 dw2_asm_output_data (2, 0, NULL);
7103 }
7104
7105 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
7106 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
7107 text_section_label, "Length");
7108
7109 for (i = 0; i < arange_table_in_use; i++)
7110 {
7111 dw_die_ref die = arange_table[i];
7112
7113 /* We shouldn't see aranges for DIEs outside of the main CU. */
7114 if (die->die_mark == 0)
7115 abort ();
7116
7117 if (die->die_tag == DW_TAG_subprogram)
7118 {
7119 dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
7120 "Address");
7121 dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
7122 get_AT_low_pc (die), "Length");
7123 }
7124 else
7125 {
7126 /* A static variable; extract the symbol from DW_AT_location.
7127 Note that this code isn't currently hit, as we only emit
7128 aranges for functions (jason 9/23/99). */
7129 dw_attr_ref a = get_AT (die, DW_AT_location);
7130 dw_loc_descr_ref loc;
7131
7132 if (! a || AT_class (a) != dw_val_class_loc)
7133 abort ();
7134
7135 loc = AT_loc (a);
7136 if (loc->dw_loc_opc != DW_OP_addr)
7137 abort ();
7138
7139 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
7140 loc->dw_loc_oprnd1.v.val_addr, "Address");
7141 dw2_asm_output_data (DWARF2_ADDR_SIZE,
7142 get_AT_unsigned (die, DW_AT_byte_size),
7143 "Length");
7144 }
7145 }
7146
7147 /* Output the terminator words. */
7148 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7149 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7150 }
7151
7152 /* Add a new entry to .debug_ranges. Return the offset at which it
7153 was placed. */
7154
7155 static unsigned int
7156 add_ranges (tree block)
7157 {
7158 unsigned int in_use = ranges_table_in_use;
7159
7160 if (in_use == ranges_table_allocated)
7161 {
7162 ranges_table_allocated += RANGES_TABLE_INCREMENT;
7163 ranges_table
7164 = ggc_realloc (ranges_table, (ranges_table_allocated
7165 * sizeof (struct dw_ranges_struct)));
7166 memset (ranges_table + ranges_table_in_use, 0,
7167 RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
7168 }
7169
7170 ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
7171 ranges_table_in_use = in_use + 1;
7172
7173 return in_use * 2 * DWARF2_ADDR_SIZE;
7174 }
7175
7176 static void
7177 output_ranges (void)
7178 {
7179 unsigned i;
7180 static const char *const start_fmt = "Offset 0x%x";
7181 const char *fmt = start_fmt;
7182
7183 for (i = 0; i < ranges_table_in_use; i++)
7184 {
7185 int block_num = ranges_table[i].block_num;
7186
7187 if (block_num)
7188 {
7189 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
7190 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
7191
7192 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
7193 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
7194
7195 /* If all code is in the text section, then the compilation
7196 unit base address defaults to DW_AT_low_pc, which is the
7197 base of the text section. */
7198 if (separate_line_info_table_in_use == 0)
7199 {
7200 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
7201 text_section_label,
7202 fmt, i * 2 * DWARF2_ADDR_SIZE);
7203 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
7204 text_section_label, NULL);
7205 }
7206
7207 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7208 compilation unit base address to zero, which allows us to
7209 use absolute addresses, and not worry about whether the
7210 target supports cross-section arithmetic. */
7211 else
7212 {
7213 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
7214 fmt, i * 2 * DWARF2_ADDR_SIZE);
7215 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
7216 }
7217
7218 fmt = NULL;
7219 }
7220 else
7221 {
7222 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7223 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7224 fmt = start_fmt;
7225 }
7226 }
7227 }
7228
7229 /* Data structure containing information about input files. */
7230 struct file_info
7231 {
7232 char *path; /* Complete file name. */
7233 char *fname; /* File name part. */
7234 int length; /* Length of entire string. */
7235 int file_idx; /* Index in input file table. */
7236 int dir_idx; /* Index in directory table. */
7237 };
7238
7239 /* Data structure containing information about directories with source
7240 files. */
7241 struct dir_info
7242 {
7243 char *path; /* Path including directory name. */
7244 int length; /* Path length. */
7245 int prefix; /* Index of directory entry which is a prefix. */
7246 int count; /* Number of files in this directory. */
7247 int dir_idx; /* Index of directory used as base. */
7248 int used; /* Used in the end? */
7249 };
7250
7251 /* Callback function for file_info comparison. We sort by looking at
7252 the directories in the path. */
7253
7254 static int
7255 file_info_cmp (const void *p1, const void *p2)
7256 {
7257 const struct file_info *s1 = p1;
7258 const struct file_info *s2 = p2;
7259 unsigned char *cp1;
7260 unsigned char *cp2;
7261
7262 /* Take care of file names without directories. We need to make sure that
7263 we return consistent values to qsort since some will get confused if
7264 we return the same value when identical operands are passed in opposite
7265 orders. So if neither has a directory, return 0 and otherwise return
7266 1 or -1 depending on which one has the directory. */
7267 if ((s1->path == s1->fname || s2->path == s2->fname))
7268 return (s2->path == s2->fname) - (s1->path == s1->fname);
7269
7270 cp1 = (unsigned char *) s1->path;
7271 cp2 = (unsigned char *) s2->path;
7272
7273 while (1)
7274 {
7275 ++cp1;
7276 ++cp2;
7277 /* Reached the end of the first path? If so, handle like above. */
7278 if ((cp1 == (unsigned char *) s1->fname)
7279 || (cp2 == (unsigned char *) s2->fname))
7280 return ((cp2 == (unsigned char *) s2->fname)
7281 - (cp1 == (unsigned char *) s1->fname));
7282
7283 /* Character of current path component the same? */
7284 else if (*cp1 != *cp2)
7285 return *cp1 - *cp2;
7286 }
7287 }
7288
7289 /* Output the directory table and the file name table. We try to minimize
7290 the total amount of memory needed. A heuristic is used to avoid large
7291 slowdowns with many input files. */
7292
7293 static void
7294 output_file_names (void)
7295 {
7296 struct file_info *files;
7297 struct dir_info *dirs;
7298 int *saved;
7299 int *savehere;
7300 int *backmap;
7301 size_t ndirs;
7302 int idx_offset;
7303 size_t i;
7304 int idx;
7305
7306 /* Handle the case where file_table is empty. */
7307 if (VARRAY_ACTIVE_SIZE (file_table) <= 1)
7308 {
7309 dw2_asm_output_data (1, 0, "End directory table");
7310 dw2_asm_output_data (1, 0, "End file name table");
7311 return;
7312 }
7313
7314 /* Allocate the various arrays we need. */
7315 files = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct file_info));
7316 dirs = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct dir_info));
7317
7318 /* Sort the file names. */
7319 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7320 {
7321 char *f;
7322
7323 /* Skip all leading "./". */
7324 f = VARRAY_CHAR_PTR (file_table, i);
7325 while (f[0] == '.' && f[1] == '/')
7326 f += 2;
7327
7328 /* Create a new array entry. */
7329 files[i].path = f;
7330 files[i].length = strlen (f);
7331 files[i].file_idx = i;
7332
7333 /* Search for the file name part. */
7334 f = strrchr (f, '/');
7335 files[i].fname = f == NULL ? files[i].path : f + 1;
7336 }
7337
7338 qsort (files + 1, VARRAY_ACTIVE_SIZE (file_table) - 1,
7339 sizeof (files[0]), file_info_cmp);
7340
7341 /* Find all the different directories used. */
7342 dirs[0].path = files[1].path;
7343 dirs[0].length = files[1].fname - files[1].path;
7344 dirs[0].prefix = -1;
7345 dirs[0].count = 1;
7346 dirs[0].dir_idx = 0;
7347 dirs[0].used = 0;
7348 files[1].dir_idx = 0;
7349 ndirs = 1;
7350
7351 for (i = 2; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7352 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
7353 && memcmp (dirs[ndirs - 1].path, files[i].path,
7354 dirs[ndirs - 1].length) == 0)
7355 {
7356 /* Same directory as last entry. */
7357 files[i].dir_idx = ndirs - 1;
7358 ++dirs[ndirs - 1].count;
7359 }
7360 else
7361 {
7362 size_t j;
7363
7364 /* This is a new directory. */
7365 dirs[ndirs].path = files[i].path;
7366 dirs[ndirs].length = files[i].fname - files[i].path;
7367 dirs[ndirs].count = 1;
7368 dirs[ndirs].dir_idx = ndirs;
7369 dirs[ndirs].used = 0;
7370 files[i].dir_idx = ndirs;
7371
7372 /* Search for a prefix. */
7373 dirs[ndirs].prefix = -1;
7374 for (j = 0; j < ndirs; j++)
7375 if (dirs[j].length < dirs[ndirs].length
7376 && dirs[j].length > 1
7377 && (dirs[ndirs].prefix == -1
7378 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
7379 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
7380 dirs[ndirs].prefix = j;
7381
7382 ++ndirs;
7383 }
7384
7385 /* Now to the actual work. We have to find a subset of the directories which
7386 allow expressing the file name using references to the directory table
7387 with the least amount of characters. We do not do an exhaustive search
7388 where we would have to check out every combination of every single
7389 possible prefix. Instead we use a heuristic which provides nearly optimal
7390 results in most cases and never is much off. */
7391 saved = alloca (ndirs * sizeof (int));
7392 savehere = alloca (ndirs * sizeof (int));
7393
7394 memset (saved, '\0', ndirs * sizeof (saved[0]));
7395 for (i = 0; i < ndirs; i++)
7396 {
7397 size_t j;
7398 int total;
7399
7400 /* We can always save some space for the current directory. But this
7401 does not mean it will be enough to justify adding the directory. */
7402 savehere[i] = dirs[i].length;
7403 total = (savehere[i] - saved[i]) * dirs[i].count;
7404
7405 for (j = i + 1; j < ndirs; j++)
7406 {
7407 savehere[j] = 0;
7408 if (saved[j] < dirs[i].length)
7409 {
7410 /* Determine whether the dirs[i] path is a prefix of the
7411 dirs[j] path. */
7412 int k;
7413
7414 k = dirs[j].prefix;
7415 while (k != -1 && k != (int) i)
7416 k = dirs[k].prefix;
7417
7418 if (k == (int) i)
7419 {
7420 /* Yes it is. We can possibly safe some memory but
7421 writing the filenames in dirs[j] relative to
7422 dirs[i]. */
7423 savehere[j] = dirs[i].length;
7424 total += (savehere[j] - saved[j]) * dirs[j].count;
7425 }
7426 }
7427 }
7428
7429 /* Check whether we can safe enough to justify adding the dirs[i]
7430 directory. */
7431 if (total > dirs[i].length + 1)
7432 {
7433 /* It's worthwhile adding. */
7434 for (j = i; j < ndirs; j++)
7435 if (savehere[j] > 0)
7436 {
7437 /* Remember how much we saved for this directory so far. */
7438 saved[j] = savehere[j];
7439
7440 /* Remember the prefix directory. */
7441 dirs[j].dir_idx = i;
7442 }
7443 }
7444 }
7445
7446 /* We have to emit them in the order they appear in the file_table array
7447 since the index is used in the debug info generation. To do this
7448 efficiently we generate a back-mapping of the indices first. */
7449 backmap = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (int));
7450 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7451 {
7452 backmap[files[i].file_idx] = i;
7453
7454 /* Mark this directory as used. */
7455 dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
7456 }
7457
7458 /* That was it. We are ready to emit the information. First emit the
7459 directory name table. We have to make sure the first actually emitted
7460 directory name has index one; zero is reserved for the current working
7461 directory. Make sure we do not confuse these indices with the one for the
7462 constructed table (even though most of the time they are identical). */
7463 idx = 1;
7464 idx_offset = dirs[0].length > 0 ? 1 : 0;
7465 for (i = 1 - idx_offset; i < ndirs; i++)
7466 if (dirs[i].used != 0)
7467 {
7468 dirs[i].used = idx++;
7469 dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
7470 "Directory Entry: 0x%x", dirs[i].used);
7471 }
7472
7473 dw2_asm_output_data (1, 0, "End directory table");
7474
7475 /* Correct the index for the current working directory entry if it
7476 exists. */
7477 if (idx_offset == 0)
7478 dirs[0].used = 0;
7479
7480 /* Now write all the file names. */
7481 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7482 {
7483 int file_idx = backmap[i];
7484 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
7485
7486 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
7487 "File Entry: 0x%lx", (unsigned long) i);
7488
7489 /* Include directory index. */
7490 dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
7491
7492 /* Modification time. */
7493 dw2_asm_output_data_uleb128 (0, NULL);
7494
7495 /* File length in bytes. */
7496 dw2_asm_output_data_uleb128 (0, NULL);
7497 }
7498
7499 dw2_asm_output_data (1, 0, "End file name table");
7500 }
7501
7502
7503 /* Output the source line number correspondence information. This
7504 information goes into the .debug_line section. */
7505
7506 static void
7507 output_line_info (void)
7508 {
7509 char l1[20], l2[20], p1[20], p2[20];
7510 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7511 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7512 unsigned opc;
7513 unsigned n_op_args;
7514 unsigned long lt_index;
7515 unsigned long current_line;
7516 long line_offset;
7517 long line_delta;
7518 unsigned long current_file;
7519 unsigned long function;
7520
7521 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
7522 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
7523 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
7524 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
7525
7526 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7527 dw2_asm_output_data (4, 0xffffffff,
7528 "Initial length escape value indicating 64-bit DWARF extension");
7529 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
7530 "Length of Source Line Info");
7531 ASM_OUTPUT_LABEL (asm_out_file, l1);
7532
7533 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7534 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
7535 ASM_OUTPUT_LABEL (asm_out_file, p1);
7536
7537 /* Define the architecture-dependent minimum instruction length (in
7538 bytes). In this implementation of DWARF, this field is used for
7539 information purposes only. Since GCC generates assembly language,
7540 we have no a priori knowledge of how many instruction bytes are
7541 generated for each source line, and therefore can use only the
7542 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7543 commands. Accordingly, we fix this as `1', which is "correct
7544 enough" for all architectures, and don't let the target override. */
7545 dw2_asm_output_data (1, 1,
7546 "Minimum Instruction Length");
7547
7548 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
7549 "Default is_stmt_start flag");
7550 dw2_asm_output_data (1, DWARF_LINE_BASE,
7551 "Line Base Value (Special Opcodes)");
7552 dw2_asm_output_data (1, DWARF_LINE_RANGE,
7553 "Line Range Value (Special Opcodes)");
7554 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
7555 "Special Opcode Base");
7556
7557 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
7558 {
7559 switch (opc)
7560 {
7561 case DW_LNS_advance_pc:
7562 case DW_LNS_advance_line:
7563 case DW_LNS_set_file:
7564 case DW_LNS_set_column:
7565 case DW_LNS_fixed_advance_pc:
7566 n_op_args = 1;
7567 break;
7568 default:
7569 n_op_args = 0;
7570 break;
7571 }
7572
7573 dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
7574 opc, n_op_args);
7575 }
7576
7577 /* Write out the information about the files we use. */
7578 output_file_names ();
7579 ASM_OUTPUT_LABEL (asm_out_file, p2);
7580
7581 /* We used to set the address register to the first location in the text
7582 section here, but that didn't accomplish anything since we already
7583 have a line note for the opening brace of the first function. */
7584
7585 /* Generate the line number to PC correspondence table, encoded as
7586 a series of state machine operations. */
7587 current_file = 1;
7588 current_line = 1;
7589 strcpy (prev_line_label, text_section_label);
7590 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
7591 {
7592 dw_line_info_ref line_info = &line_info_table[lt_index];
7593
7594 #if 0
7595 /* Disable this optimization for now; GDB wants to see two line notes
7596 at the beginning of a function so it can find the end of the
7597 prologue. */
7598
7599 /* Don't emit anything for redundant notes. Just updating the
7600 address doesn't accomplish anything, because we already assume
7601 that anything after the last address is this line. */
7602 if (line_info->dw_line_num == current_line
7603 && line_info->dw_file_num == current_file)
7604 continue;
7605 #endif
7606
7607 /* Emit debug info for the address of the current line.
7608
7609 Unfortunately, we have little choice here currently, and must always
7610 use the most general form. GCC does not know the address delta
7611 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
7612 attributes which will give an upper bound on the address range. We
7613 could perhaps use length attributes to determine when it is safe to
7614 use DW_LNS_fixed_advance_pc. */
7615
7616 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
7617 if (0)
7618 {
7619 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
7620 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7621 "DW_LNS_fixed_advance_pc");
7622 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7623 }
7624 else
7625 {
7626 /* This can handle any delta. This takes
7627 4+DWARF2_ADDR_SIZE bytes. */
7628 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7629 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7630 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7631 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7632 }
7633
7634 strcpy (prev_line_label, line_label);
7635
7636 /* Emit debug info for the source file of the current line, if
7637 different from the previous line. */
7638 if (line_info->dw_file_num != current_file)
7639 {
7640 current_file = line_info->dw_file_num;
7641 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7642 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7643 VARRAY_CHAR_PTR (file_table,
7644 current_file));
7645 }
7646
7647 /* Emit debug info for the current line number, choosing the encoding
7648 that uses the least amount of space. */
7649 if (line_info->dw_line_num != current_line)
7650 {
7651 line_offset = line_info->dw_line_num - current_line;
7652 line_delta = line_offset - DWARF_LINE_BASE;
7653 current_line = line_info->dw_line_num;
7654 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7655 /* This can handle deltas from -10 to 234, using the current
7656 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
7657 takes 1 byte. */
7658 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7659 "line %lu", current_line);
7660 else
7661 {
7662 /* This can handle any delta. This takes at least 4 bytes,
7663 depending on the value being encoded. */
7664 dw2_asm_output_data (1, DW_LNS_advance_line,
7665 "advance to line %lu", current_line);
7666 dw2_asm_output_data_sleb128 (line_offset, NULL);
7667 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7668 }
7669 }
7670 else
7671 /* We still need to start a new row, so output a copy insn. */
7672 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7673 }
7674
7675 /* Emit debug info for the address of the end of the function. */
7676 if (0)
7677 {
7678 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7679 "DW_LNS_fixed_advance_pc");
7680 dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
7681 }
7682 else
7683 {
7684 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7685 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7686 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7687 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
7688 }
7689
7690 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7691 dw2_asm_output_data_uleb128 (1, NULL);
7692 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7693
7694 function = 0;
7695 current_file = 1;
7696 current_line = 1;
7697 for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
7698 {
7699 dw_separate_line_info_ref line_info
7700 = &separate_line_info_table[lt_index];
7701
7702 #if 0
7703 /* Don't emit anything for redundant notes. */
7704 if (line_info->dw_line_num == current_line
7705 && line_info->dw_file_num == current_file
7706 && line_info->function == function)
7707 goto cont;
7708 #endif
7709
7710 /* Emit debug info for the address of the current line. If this is
7711 a new function, or the first line of a function, then we need
7712 to handle it differently. */
7713 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
7714 lt_index);
7715 if (function != line_info->function)
7716 {
7717 function = line_info->function;
7718
7719 /* Set the address register to the first line in the function. */
7720 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7721 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7722 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7723 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7724 }
7725 else
7726 {
7727 /* ??? See the DW_LNS_advance_pc comment above. */
7728 if (0)
7729 {
7730 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7731 "DW_LNS_fixed_advance_pc");
7732 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7733 }
7734 else
7735 {
7736 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7737 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7738 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7739 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7740 }
7741 }
7742
7743 strcpy (prev_line_label, line_label);
7744
7745 /* Emit debug info for the source file of the current line, if
7746 different from the previous line. */
7747 if (line_info->dw_file_num != current_file)
7748 {
7749 current_file = line_info->dw_file_num;
7750 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7751 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7752 VARRAY_CHAR_PTR (file_table,
7753 current_file));
7754 }
7755
7756 /* Emit debug info for the current line number, choosing the encoding
7757 that uses the least amount of space. */
7758 if (line_info->dw_line_num != current_line)
7759 {
7760 line_offset = line_info->dw_line_num - current_line;
7761 line_delta = line_offset - DWARF_LINE_BASE;
7762 current_line = line_info->dw_line_num;
7763 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7764 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7765 "line %lu", current_line);
7766 else
7767 {
7768 dw2_asm_output_data (1, DW_LNS_advance_line,
7769 "advance to line %lu", current_line);
7770 dw2_asm_output_data_sleb128 (line_offset, NULL);
7771 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7772 }
7773 }
7774 else
7775 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7776
7777 #if 0
7778 cont:
7779 #endif
7780
7781 lt_index++;
7782
7783 /* If we're done with a function, end its sequence. */
7784 if (lt_index == separate_line_info_table_in_use
7785 || separate_line_info_table[lt_index].function != function)
7786 {
7787 current_file = 1;
7788 current_line = 1;
7789
7790 /* Emit debug info for the address of the end of the function. */
7791 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
7792 if (0)
7793 {
7794 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7795 "DW_LNS_fixed_advance_pc");
7796 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7797 }
7798 else
7799 {
7800 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7801 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7802 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7803 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7804 }
7805
7806 /* Output the marker for the end of this sequence. */
7807 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7808 dw2_asm_output_data_uleb128 (1, NULL);
7809 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7810 }
7811 }
7812
7813 /* Output the marker for the end of the line number info. */
7814 ASM_OUTPUT_LABEL (asm_out_file, l2);
7815 }
7816 \f
7817 /* Given a pointer to a tree node for some base type, return a pointer to
7818 a DIE that describes the given type.
7819
7820 This routine must only be called for GCC type nodes that correspond to
7821 Dwarf base (fundamental) types. */
7822
7823 static dw_die_ref
7824 base_type_die (tree type)
7825 {
7826 dw_die_ref base_type_result;
7827 const char *type_name;
7828 enum dwarf_type encoding;
7829 tree name = TYPE_NAME (type);
7830
7831 if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
7832 return 0;
7833
7834 if (name)
7835 {
7836 if (TREE_CODE (name) == TYPE_DECL)
7837 name = DECL_NAME (name);
7838
7839 type_name = IDENTIFIER_POINTER (name);
7840 }
7841 else
7842 type_name = "__unknown__";
7843
7844 switch (TREE_CODE (type))
7845 {
7846 case INTEGER_TYPE:
7847 /* Carefully distinguish the C character types, without messing
7848 up if the language is not C. Note that we check only for the names
7849 that contain spaces; other names might occur by coincidence in other
7850 languages. */
7851 if (! (TYPE_PRECISION (type) == CHAR_TYPE_SIZE
7852 && (type == char_type_node
7853 || ! strcmp (type_name, "signed char")
7854 || ! strcmp (type_name, "unsigned char"))))
7855 {
7856 if (TREE_UNSIGNED (type))
7857 encoding = DW_ATE_unsigned;
7858 else
7859 encoding = DW_ATE_signed;
7860 break;
7861 }
7862 /* else fall through. */
7863
7864 case CHAR_TYPE:
7865 /* GNU Pascal/Ada CHAR type. Not used in C. */
7866 if (TREE_UNSIGNED (type))
7867 encoding = DW_ATE_unsigned_char;
7868 else
7869 encoding = DW_ATE_signed_char;
7870 break;
7871
7872 case REAL_TYPE:
7873 encoding = DW_ATE_float;
7874 break;
7875
7876 /* Dwarf2 doesn't know anything about complex ints, so use
7877 a user defined type for it. */
7878 case COMPLEX_TYPE:
7879 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
7880 encoding = DW_ATE_complex_float;
7881 else
7882 encoding = DW_ATE_lo_user;
7883 break;
7884
7885 case BOOLEAN_TYPE:
7886 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
7887 encoding = DW_ATE_boolean;
7888 break;
7889
7890 default:
7891 /* No other TREE_CODEs are Dwarf fundamental types. */
7892 abort ();
7893 }
7894
7895 base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
7896 if (demangle_name_func)
7897 type_name = (*demangle_name_func) (type_name);
7898
7899 add_AT_string (base_type_result, DW_AT_name, type_name);
7900 add_AT_unsigned (base_type_result, DW_AT_byte_size,
7901 int_size_in_bytes (type));
7902 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
7903
7904 return base_type_result;
7905 }
7906
7907 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
7908 the Dwarf "root" type for the given input type. The Dwarf "root" type of
7909 a given type is generally the same as the given type, except that if the
7910 given type is a pointer or reference type, then the root type of the given
7911 type is the root type of the "basis" type for the pointer or reference
7912 type. (This definition of the "root" type is recursive.) Also, the root
7913 type of a `const' qualified type or a `volatile' qualified type is the
7914 root type of the given type without the qualifiers. */
7915
7916 static tree
7917 root_type (tree type)
7918 {
7919 if (TREE_CODE (type) == ERROR_MARK)
7920 return error_mark_node;
7921
7922 switch (TREE_CODE (type))
7923 {
7924 case ERROR_MARK:
7925 return error_mark_node;
7926
7927 case POINTER_TYPE:
7928 case REFERENCE_TYPE:
7929 return type_main_variant (root_type (TREE_TYPE (type)));
7930
7931 default:
7932 return type_main_variant (type);
7933 }
7934 }
7935
7936 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
7937 given input type is a Dwarf "fundamental" type. Otherwise return null. */
7938
7939 static inline int
7940 is_base_type (tree type)
7941 {
7942 switch (TREE_CODE (type))
7943 {
7944 case ERROR_MARK:
7945 case VOID_TYPE:
7946 case INTEGER_TYPE:
7947 case REAL_TYPE:
7948 case COMPLEX_TYPE:
7949 case BOOLEAN_TYPE:
7950 case CHAR_TYPE:
7951 return 1;
7952
7953 case SET_TYPE:
7954 case ARRAY_TYPE:
7955 case RECORD_TYPE:
7956 case UNION_TYPE:
7957 case QUAL_UNION_TYPE:
7958 case ENUMERAL_TYPE:
7959 case FUNCTION_TYPE:
7960 case METHOD_TYPE:
7961 case POINTER_TYPE:
7962 case REFERENCE_TYPE:
7963 case FILE_TYPE:
7964 case OFFSET_TYPE:
7965 case LANG_TYPE:
7966 case VECTOR_TYPE:
7967 return 0;
7968
7969 default:
7970 abort ();
7971 }
7972
7973 return 0;
7974 }
7975
7976 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
7977 node, return the size in bits for the type if it is a constant, or else
7978 return the alignment for the type if the type's size is not constant, or
7979 else return BITS_PER_WORD if the type actually turns out to be an
7980 ERROR_MARK node. */
7981
7982 static inline unsigned HOST_WIDE_INT
7983 simple_type_size_in_bits (tree type)
7984 {
7985 if (TREE_CODE (type) == ERROR_MARK)
7986 return BITS_PER_WORD;
7987 else if (TYPE_SIZE (type) == NULL_TREE)
7988 return 0;
7989 else if (host_integerp (TYPE_SIZE (type), 1))
7990 return tree_low_cst (TYPE_SIZE (type), 1);
7991 else
7992 return TYPE_ALIGN (type);
7993 }
7994
7995 /* Return true if the debug information for the given type should be
7996 emitted as a subrange type. */
7997
7998 static inline bool
7999 is_subrange_type (tree type)
8000 {
8001 tree subtype = TREE_TYPE (type);
8002
8003 if (TREE_CODE (type) == INTEGER_TYPE
8004 && subtype != NULL_TREE)
8005 {
8006 if (TREE_CODE (subtype) == INTEGER_TYPE)
8007 return true;
8008 if (TREE_CODE (subtype) == ENUMERAL_TYPE)
8009 return true;
8010 }
8011 return false;
8012 }
8013
8014 /* Given a pointer to a tree node for a subrange type, return a pointer
8015 to a DIE that describes the given type. */
8016
8017 static dw_die_ref
8018 subrange_type_die (tree type, dw_die_ref context_die)
8019 {
8020 dw_die_ref subtype_die;
8021 dw_die_ref subrange_die;
8022 tree name = TYPE_NAME (type);
8023 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
8024 tree subtype = TREE_TYPE (type);
8025
8026 if (context_die == NULL)
8027 context_die = comp_unit_die;
8028
8029 if (TREE_CODE (subtype) == ENUMERAL_TYPE)
8030 subtype_die = gen_enumeration_type_die (subtype, context_die);
8031 else
8032 subtype_die = base_type_die (subtype);
8033
8034 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
8035
8036 if (name != NULL)
8037 {
8038 if (TREE_CODE (name) == TYPE_DECL)
8039 name = DECL_NAME (name);
8040 add_name_attribute (subrange_die, IDENTIFIER_POINTER (name));
8041 }
8042
8043 if (int_size_in_bytes (subtype) != size_in_bytes)
8044 {
8045 /* The size of the subrange type and its base type do not match,
8046 so we need to generate a size attribute for the subrange type. */
8047 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
8048 }
8049
8050 if (TYPE_MIN_VALUE (type) != NULL)
8051 add_bound_info (subrange_die, DW_AT_lower_bound,
8052 TYPE_MIN_VALUE (type));
8053 if (TYPE_MAX_VALUE (type) != NULL)
8054 add_bound_info (subrange_die, DW_AT_upper_bound,
8055 TYPE_MAX_VALUE (type));
8056 add_AT_die_ref (subrange_die, DW_AT_type, subtype_die);
8057
8058 return subrange_die;
8059 }
8060
8061 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
8062 entry that chains various modifiers in front of the given type. */
8063
8064 static dw_die_ref
8065 modified_type_die (tree type, int is_const_type, int is_volatile_type,
8066 dw_die_ref context_die)
8067 {
8068 enum tree_code code = TREE_CODE (type);
8069 dw_die_ref mod_type_die = NULL;
8070 dw_die_ref sub_die = NULL;
8071 tree item_type = NULL;
8072
8073 if (code != ERROR_MARK)
8074 {
8075 tree qualified_type;
8076
8077 /* See if we already have the appropriately qualified variant of
8078 this type. */
8079 qualified_type
8080 = get_qualified_type (type,
8081 ((is_const_type ? TYPE_QUAL_CONST : 0)
8082 | (is_volatile_type
8083 ? TYPE_QUAL_VOLATILE : 0)));
8084
8085 /* If we do, then we can just use its DIE, if it exists. */
8086 if (qualified_type)
8087 {
8088 mod_type_die = lookup_type_die (qualified_type);
8089 if (mod_type_die)
8090 return mod_type_die;
8091 }
8092
8093 /* Handle C typedef types. */
8094 if (qualified_type && TYPE_NAME (qualified_type)
8095 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL
8096 && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type)))
8097 {
8098 tree type_name = TYPE_NAME (qualified_type);
8099 tree dtype = TREE_TYPE (type_name);
8100
8101 if (qualified_type == dtype)
8102 {
8103 /* For a named type, use the typedef. */
8104 gen_type_die (qualified_type, context_die);
8105 mod_type_die = lookup_type_die (qualified_type);
8106 }
8107 else if (is_const_type < TYPE_READONLY (dtype)
8108 || is_volatile_type < TYPE_VOLATILE (dtype))
8109 /* cv-unqualified version of named type. Just use the unnamed
8110 type to which it refers. */
8111 mod_type_die
8112 = modified_type_die (DECL_ORIGINAL_TYPE (type_name),
8113 is_const_type, is_volatile_type,
8114 context_die);
8115
8116 /* Else cv-qualified version of named type; fall through. */
8117 }
8118
8119 if (mod_type_die)
8120 /* OK. */
8121 ;
8122 else if (is_const_type)
8123 {
8124 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
8125 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
8126 }
8127 else if (is_volatile_type)
8128 {
8129 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
8130 sub_die = modified_type_die (type, 0, 0, context_die);
8131 }
8132 else if (code == POINTER_TYPE)
8133 {
8134 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
8135 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8136 simple_type_size_in_bits (type) / BITS_PER_UNIT);
8137 #if 0
8138 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
8139 #endif
8140 item_type = TREE_TYPE (type);
8141 }
8142 else if (code == REFERENCE_TYPE)
8143 {
8144 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
8145 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8146 simple_type_size_in_bits (type) / BITS_PER_UNIT);
8147 #if 0
8148 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
8149 #endif
8150 item_type = TREE_TYPE (type);
8151 }
8152 else if (is_subrange_type (type))
8153 mod_type_die = subrange_type_die (type, context_die);
8154 else if (is_base_type (type))
8155 mod_type_die = base_type_die (type);
8156 else
8157 {
8158 gen_type_die (type, context_die);
8159
8160 /* We have to get the type_main_variant here (and pass that to the
8161 `lookup_type_die' routine) because the ..._TYPE node we have
8162 might simply be a *copy* of some original type node (where the
8163 copy was created to help us keep track of typedef names) and
8164 that copy might have a different TYPE_UID from the original
8165 ..._TYPE node. */
8166 if (TREE_CODE (type) != VECTOR_TYPE)
8167 mod_type_die = lookup_type_die (type_main_variant (type));
8168 else
8169 /* Vectors have the debugging information in the type,
8170 not the main variant. */
8171 mod_type_die = lookup_type_die (type);
8172 if (mod_type_die == NULL)
8173 abort ();
8174 }
8175
8176 /* We want to equate the qualified type to the die below. */
8177 type = qualified_type;
8178 }
8179
8180 if (type)
8181 equate_type_number_to_die (type, mod_type_die);
8182 if (item_type)
8183 /* We must do this after the equate_type_number_to_die call, in case
8184 this is a recursive type. This ensures that the modified_type_die
8185 recursion will terminate even if the type is recursive. Recursive
8186 types are possible in Ada. */
8187 sub_die = modified_type_die (item_type,
8188 TYPE_READONLY (item_type),
8189 TYPE_VOLATILE (item_type),
8190 context_die);
8191
8192 if (sub_die != NULL)
8193 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
8194
8195 return mod_type_die;
8196 }
8197
8198 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8199 an enumerated type. */
8200
8201 static inline int
8202 type_is_enum (tree type)
8203 {
8204 return TREE_CODE (type) == ENUMERAL_TYPE;
8205 }
8206
8207 /* Return the register number described by a given RTL node. */
8208
8209 static unsigned int
8210 reg_number (rtx rtl)
8211 {
8212 unsigned regno = REGNO (rtl);
8213
8214 if (regno >= FIRST_PSEUDO_REGISTER)
8215 abort ();
8216
8217 return DBX_REGISTER_NUMBER (regno);
8218 }
8219
8220 /* Return a location descriptor that designates a machine register or
8221 zero if there is none. */
8222
8223 static dw_loc_descr_ref
8224 reg_loc_descriptor (rtx rtl)
8225 {
8226 unsigned reg;
8227 rtx regs;
8228
8229 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
8230 return 0;
8231
8232 reg = reg_number (rtl);
8233 regs = (*targetm.dwarf_register_span) (rtl);
8234
8235 if (hard_regno_nregs[reg][GET_MODE (rtl)] > 1
8236 || regs)
8237 return multiple_reg_loc_descriptor (rtl, regs);
8238 else
8239 return one_reg_loc_descriptor (reg);
8240 }
8241
8242 /* Return a location descriptor that designates a machine register for
8243 a given hard register number. */
8244
8245 static dw_loc_descr_ref
8246 one_reg_loc_descriptor (unsigned int regno)
8247 {
8248 if (regno <= 31)
8249 return new_loc_descr (DW_OP_reg0 + regno, 0, 0);
8250 else
8251 return new_loc_descr (DW_OP_regx, regno, 0);
8252 }
8253
8254 /* Given an RTL of a register, return a location descriptor that
8255 designates a value that spans more than one register. */
8256
8257 static dw_loc_descr_ref
8258 multiple_reg_loc_descriptor (rtx rtl, rtx regs)
8259 {
8260 int nregs, size, i;
8261 unsigned reg;
8262 dw_loc_descr_ref loc_result = NULL;
8263
8264 reg = reg_number (rtl);
8265 nregs = hard_regno_nregs[reg][GET_MODE (rtl)];
8266
8267 /* Simple, contiguous registers. */
8268 if (regs == NULL_RTX)
8269 {
8270 size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
8271
8272 loc_result = NULL;
8273 while (nregs--)
8274 {
8275 dw_loc_descr_ref t;
8276
8277 t = one_reg_loc_descriptor (reg);
8278 add_loc_descr (&loc_result, t);
8279 add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
8280 ++reg;
8281 }
8282 return loc_result;
8283 }
8284
8285 /* Now onto stupid register sets in non contiguous locations. */
8286
8287 if (GET_CODE (regs) != PARALLEL)
8288 abort ();
8289
8290 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8291 loc_result = NULL;
8292
8293 for (i = 0; i < XVECLEN (regs, 0); ++i)
8294 {
8295 dw_loc_descr_ref t;
8296
8297 t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)));
8298 add_loc_descr (&loc_result, t);
8299 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8300 add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
8301 }
8302 return loc_result;
8303 }
8304
8305 /* Return a location descriptor that designates a constant. */
8306
8307 static dw_loc_descr_ref
8308 int_loc_descriptor (HOST_WIDE_INT i)
8309 {
8310 enum dwarf_location_atom op;
8311
8312 /* Pick the smallest representation of a constant, rather than just
8313 defaulting to the LEB encoding. */
8314 if (i >= 0)
8315 {
8316 if (i <= 31)
8317 op = DW_OP_lit0 + i;
8318 else if (i <= 0xff)
8319 op = DW_OP_const1u;
8320 else if (i <= 0xffff)
8321 op = DW_OP_const2u;
8322 else if (HOST_BITS_PER_WIDE_INT == 32
8323 || i <= 0xffffffff)
8324 op = DW_OP_const4u;
8325 else
8326 op = DW_OP_constu;
8327 }
8328 else
8329 {
8330 if (i >= -0x80)
8331 op = DW_OP_const1s;
8332 else if (i >= -0x8000)
8333 op = DW_OP_const2s;
8334 else if (HOST_BITS_PER_WIDE_INT == 32
8335 || i >= -0x80000000)
8336 op = DW_OP_const4s;
8337 else
8338 op = DW_OP_consts;
8339 }
8340
8341 return new_loc_descr (op, i, 0);
8342 }
8343
8344 /* Return a location descriptor that designates a base+offset location. */
8345
8346 static dw_loc_descr_ref
8347 based_loc_descr (unsigned int reg, HOST_WIDE_INT offset, bool can_use_fbreg)
8348 {
8349 dw_loc_descr_ref loc_result;
8350 /* For the "frame base", we use the frame pointer or stack pointer
8351 registers, since the RTL for local variables is relative to one of
8352 them. */
8353 unsigned fp_reg = DBX_REGISTER_NUMBER (frame_pointer_needed
8354 ? HARD_FRAME_POINTER_REGNUM
8355 : STACK_POINTER_REGNUM);
8356
8357 if (reg == fp_reg && can_use_fbreg)
8358 loc_result = new_loc_descr (DW_OP_fbreg, offset, 0);
8359 else if (reg <= 31)
8360 loc_result = new_loc_descr (DW_OP_breg0 + reg, offset, 0);
8361 else
8362 loc_result = new_loc_descr (DW_OP_bregx, reg, offset);
8363
8364 return loc_result;
8365 }
8366
8367 /* Return true if this RTL expression describes a base+offset calculation. */
8368
8369 static inline int
8370 is_based_loc (rtx rtl)
8371 {
8372 return (GET_CODE (rtl) == PLUS
8373 && ((GET_CODE (XEXP (rtl, 0)) == REG
8374 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
8375 && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
8376 }
8377
8378 /* The following routine converts the RTL for a variable or parameter
8379 (resident in memory) into an equivalent Dwarf representation of a
8380 mechanism for getting the address of that same variable onto the top of a
8381 hypothetical "address evaluation" stack.
8382
8383 When creating memory location descriptors, we are effectively transforming
8384 the RTL for a memory-resident object into its Dwarf postfix expression
8385 equivalent. This routine recursively descends an RTL tree, turning
8386 it into Dwarf postfix code as it goes.
8387
8388 MODE is the mode of the memory reference, needed to handle some
8389 autoincrement addressing modes.
8390
8391 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the location
8392 list for RTL. We can't use it when we are emitting location list for
8393 virtual variable frame_base_decl (i.e. a location list for DW_AT_frame_base)
8394 which describes how frame base changes when !frame_pointer_needed.
8395
8396 Return 0 if we can't represent the location. */
8397
8398 static dw_loc_descr_ref
8399 mem_loc_descriptor (rtx rtl, enum machine_mode mode, bool can_use_fbreg)
8400 {
8401 dw_loc_descr_ref mem_loc_result = NULL;
8402
8403 /* Note that for a dynamically sized array, the location we will generate a
8404 description of here will be the lowest numbered location which is
8405 actually within the array. That's *not* necessarily the same as the
8406 zeroth element of the array. */
8407
8408 rtl = (*targetm.delegitimize_address) (rtl);
8409
8410 switch (GET_CODE (rtl))
8411 {
8412 case POST_INC:
8413 case POST_DEC:
8414 case POST_MODIFY:
8415 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
8416 just fall into the SUBREG code. */
8417
8418 /* ... fall through ... */
8419
8420 case SUBREG:
8421 /* The case of a subreg may arise when we have a local (register)
8422 variable or a formal (register) parameter which doesn't quite fill
8423 up an entire register. For now, just assume that it is
8424 legitimate to make the Dwarf info refer to the whole register which
8425 contains the given subreg. */
8426 rtl = SUBREG_REG (rtl);
8427
8428 /* ... fall through ... */
8429
8430 case REG:
8431 /* Whenever a register number forms a part of the description of the
8432 method for calculating the (dynamic) address of a memory resident
8433 object, DWARF rules require the register number be referred to as
8434 a "base register". This distinction is not based in any way upon
8435 what category of register the hardware believes the given register
8436 belongs to. This is strictly DWARF terminology we're dealing with
8437 here. Note that in cases where the location of a memory-resident
8438 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8439 OP_CONST (0)) the actual DWARF location descriptor that we generate
8440 may just be OP_BASEREG (basereg). This may look deceptively like
8441 the object in question was allocated to a register (rather than in
8442 memory) so DWARF consumers need to be aware of the subtle
8443 distinction between OP_REG and OP_BASEREG. */
8444 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
8445 mem_loc_result = based_loc_descr (reg_number (rtl), 0, can_use_fbreg);
8446 break;
8447
8448 case MEM:
8449 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
8450 can_use_fbreg);
8451 if (mem_loc_result != 0)
8452 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
8453 break;
8454
8455 case LO_SUM:
8456 rtl = XEXP (rtl, 1);
8457
8458 /* ... fall through ... */
8459
8460 case LABEL_REF:
8461 /* Some ports can transform a symbol ref into a label ref, because
8462 the symbol ref is too far away and has to be dumped into a constant
8463 pool. */
8464 case CONST:
8465 case SYMBOL_REF:
8466 /* Alternatively, the symbol in the constant pool might be referenced
8467 by a different symbol. */
8468 if (GET_CODE (rtl) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (rtl))
8469 {
8470 bool marked;
8471 rtx tmp = get_pool_constant_mark (rtl, &marked);
8472
8473 if (GET_CODE (tmp) == SYMBOL_REF)
8474 {
8475 rtl = tmp;
8476 if (CONSTANT_POOL_ADDRESS_P (tmp))
8477 get_pool_constant_mark (tmp, &marked);
8478 else
8479 marked = true;
8480 }
8481
8482 /* If all references to this pool constant were optimized away,
8483 it was not output and thus we can't represent it.
8484 FIXME: might try to use DW_OP_const_value here, though
8485 DW_OP_piece complicates it. */
8486 if (!marked)
8487 return 0;
8488 }
8489
8490 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
8491 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
8492 mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
8493 VARRAY_PUSH_RTX (used_rtx_varray, rtl);
8494 break;
8495
8496 case PRE_MODIFY:
8497 /* Extract the PLUS expression nested inside and fall into
8498 PLUS code below. */
8499 rtl = XEXP (rtl, 1);
8500 goto plus;
8501
8502 case PRE_INC:
8503 case PRE_DEC:
8504 /* Turn these into a PLUS expression and fall into the PLUS code
8505 below. */
8506 rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
8507 GEN_INT (GET_CODE (rtl) == PRE_INC
8508 ? GET_MODE_UNIT_SIZE (mode)
8509 : -GET_MODE_UNIT_SIZE (mode)));
8510
8511 /* ... fall through ... */
8512
8513 case PLUS:
8514 plus:
8515 if (is_based_loc (rtl))
8516 mem_loc_result = based_loc_descr (reg_number (XEXP (rtl, 0)),
8517 INTVAL (XEXP (rtl, 1)),
8518 can_use_fbreg);
8519 else
8520 {
8521 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode,
8522 can_use_fbreg);
8523 if (mem_loc_result == 0)
8524 break;
8525
8526 if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
8527 && INTVAL (XEXP (rtl, 1)) >= 0)
8528 add_loc_descr (&mem_loc_result,
8529 new_loc_descr (DW_OP_plus_uconst,
8530 INTVAL (XEXP (rtl, 1)), 0));
8531 else
8532 {
8533 add_loc_descr (&mem_loc_result,
8534 mem_loc_descriptor (XEXP (rtl, 1), mode,
8535 can_use_fbreg));
8536 add_loc_descr (&mem_loc_result,
8537 new_loc_descr (DW_OP_plus, 0, 0));
8538 }
8539 }
8540 break;
8541
8542 case MULT:
8543 {
8544 /* If a pseudo-reg is optimized away, it is possible for it to
8545 be replaced with a MEM containing a multiply. */
8546 dw_loc_descr_ref op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
8547 can_use_fbreg);
8548 dw_loc_descr_ref op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
8549 can_use_fbreg);
8550
8551 if (op0 == 0 || op1 == 0)
8552 break;
8553
8554 mem_loc_result = op0;
8555 add_loc_descr (&mem_loc_result, op1);
8556 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
8557 break;
8558 }
8559
8560 case CONST_INT:
8561 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
8562 break;
8563
8564 case ADDRESSOF:
8565 /* If this is a MEM, return its address. Otherwise, we can't
8566 represent this. */
8567 if (GET_CODE (XEXP (rtl, 0)) == MEM)
8568 return mem_loc_descriptor (XEXP (XEXP (rtl, 0), 0), mode,
8569 can_use_fbreg);
8570 else
8571 return 0;
8572
8573 default:
8574 abort ();
8575 }
8576
8577 return mem_loc_result;
8578 }
8579
8580 /* Return a descriptor that describes the concatenation of two locations.
8581 This is typically a complex variable. */
8582
8583 static dw_loc_descr_ref
8584 concat_loc_descriptor (rtx x0, rtx x1)
8585 {
8586 dw_loc_descr_ref cc_loc_result = NULL;
8587 dw_loc_descr_ref x0_ref = loc_descriptor (x0, true);
8588 dw_loc_descr_ref x1_ref = loc_descriptor (x1, true);
8589
8590 if (x0_ref == 0 || x1_ref == 0)
8591 return 0;
8592
8593 cc_loc_result = x0_ref;
8594 add_loc_descr (&cc_loc_result,
8595 new_loc_descr (DW_OP_piece,
8596 GET_MODE_SIZE (GET_MODE (x0)), 0));
8597
8598 add_loc_descr (&cc_loc_result, x1_ref);
8599 add_loc_descr (&cc_loc_result,
8600 new_loc_descr (DW_OP_piece,
8601 GET_MODE_SIZE (GET_MODE (x1)), 0));
8602
8603 return cc_loc_result;
8604 }
8605
8606 /* Output a proper Dwarf location descriptor for a variable or parameter
8607 which is either allocated in a register or in a memory location. For a
8608 register, we just generate an OP_REG and the register number. For a
8609 memory location we provide a Dwarf postfix expression describing how to
8610 generate the (dynamic) address of the object onto the address stack.
8611
8612 If we don't know how to describe it, return 0. */
8613
8614 static dw_loc_descr_ref
8615 loc_descriptor (rtx rtl, bool can_use_fbreg)
8616 {
8617 dw_loc_descr_ref loc_result = NULL;
8618
8619 switch (GET_CODE (rtl))
8620 {
8621 case SUBREG:
8622 /* The case of a subreg may arise when we have a local (register)
8623 variable or a formal (register) parameter which doesn't quite fill
8624 up an entire register. For now, just assume that it is
8625 legitimate to make the Dwarf info refer to the whole register which
8626 contains the given subreg. */
8627 rtl = SUBREG_REG (rtl);
8628
8629 /* ... fall through ... */
8630
8631 case REG:
8632 loc_result = reg_loc_descriptor (rtl);
8633 break;
8634
8635 case MEM:
8636 loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
8637 can_use_fbreg);
8638 break;
8639
8640 case CONCAT:
8641 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
8642 break;
8643
8644 case VAR_LOCATION:
8645 /* Single part. */
8646 if (GET_CODE (XEXP (rtl, 1)) != PARALLEL)
8647 {
8648 loc_result = loc_descriptor (XEXP (XEXP (rtl, 1), 0), can_use_fbreg);
8649 }
8650 /* Multiple parts. */
8651 else
8652 {
8653 rtvec par_elems = XVEC (XEXP (rtl, 1), 0);
8654 int num_elem = GET_NUM_ELEM (par_elems);
8655 enum machine_mode mode;
8656 int i;
8657
8658 /* Create the first one, so we have something to add to. */
8659 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
8660 can_use_fbreg);
8661 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
8662 add_loc_descr (&loc_result,
8663 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (mode), 0));
8664 for (i = 1; i < num_elem; i++)
8665 {
8666 dw_loc_descr_ref temp;
8667
8668 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
8669 can_use_fbreg);
8670 add_loc_descr (&loc_result, temp);
8671 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
8672 add_loc_descr (&loc_result,
8673 new_loc_descr (DW_OP_piece,
8674 GET_MODE_SIZE (mode), 0));
8675 }
8676 }
8677 break;
8678
8679 default:
8680 abort ();
8681 }
8682
8683 return loc_result;
8684 }
8685
8686 /* Similar, but generate the descriptor from trees instead of rtl. This comes
8687 up particularly with variable length arrays. If ADDRESSP is nonzero, we are
8688 looking for an address. Otherwise, we return a value. If we can't make a
8689 descriptor, return 0. */
8690
8691 static dw_loc_descr_ref
8692 loc_descriptor_from_tree (tree loc, int addressp)
8693 {
8694 dw_loc_descr_ref ret, ret1;
8695 int indirect_p = 0;
8696 int unsignedp = TREE_UNSIGNED (TREE_TYPE (loc));
8697 enum dwarf_location_atom op;
8698
8699 /* ??? Most of the time we do not take proper care for sign/zero
8700 extending the values properly. Hopefully this won't be a real
8701 problem... */
8702
8703 switch (TREE_CODE (loc))
8704 {
8705 case ERROR_MARK:
8706 return 0;
8707
8708 case WITH_RECORD_EXPR:
8709 case PLACEHOLDER_EXPR:
8710 /* This case involves extracting fields from an object to determine the
8711 position of other fields. We don't try to encode this here. The
8712 only user of this is Ada, which encodes the needed information using
8713 the names of types. */
8714 return 0;
8715
8716 case CALL_EXPR:
8717 return 0;
8718
8719 case PREINCREMENT_EXPR:
8720 case PREDECREMENT_EXPR:
8721 case POSTINCREMENT_EXPR:
8722 case POSTDECREMENT_EXPR:
8723 /* There are no opcodes for these operations. */
8724 return 0;
8725
8726 case ADDR_EXPR:
8727 /* We can support this only if we can look through conversions and
8728 find an INDIRECT_EXPR. */
8729 for (loc = TREE_OPERAND (loc, 0);
8730 TREE_CODE (loc) == CONVERT_EXPR || TREE_CODE (loc) == NOP_EXPR
8731 || TREE_CODE (loc) == NON_LVALUE_EXPR
8732 || TREE_CODE (loc) == VIEW_CONVERT_EXPR
8733 || TREE_CODE (loc) == SAVE_EXPR;
8734 loc = TREE_OPERAND (loc, 0))
8735 ;
8736
8737 return (TREE_CODE (loc) == INDIRECT_REF
8738 ? loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp)
8739 : 0);
8740
8741 case VAR_DECL:
8742 if (DECL_THREAD_LOCAL (loc))
8743 {
8744 rtx rtl;
8745
8746 #ifndef ASM_OUTPUT_DWARF_DTPREL
8747 /* If this is not defined, we have no way to emit the data. */
8748 return 0;
8749 #endif
8750
8751 /* The way DW_OP_GNU_push_tls_address is specified, we can only
8752 look up addresses of objects in the current module. */
8753 if (DECL_EXTERNAL (loc))
8754 return 0;
8755
8756 rtl = rtl_for_decl_location (loc);
8757 if (rtl == NULL_RTX)
8758 return 0;
8759
8760 if (GET_CODE (rtl) != MEM)
8761 return 0;
8762 rtl = XEXP (rtl, 0);
8763 if (! CONSTANT_P (rtl))
8764 return 0;
8765
8766 ret = new_loc_descr (INTERNAL_DW_OP_tls_addr, 0, 0);
8767 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8768 ret->dw_loc_oprnd1.v.val_addr = rtl;
8769
8770 ret1 = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
8771 add_loc_descr (&ret, ret1);
8772
8773 indirect_p = 1;
8774 break;
8775 }
8776 /* Fall through. */
8777
8778 case PARM_DECL:
8779 {
8780 rtx rtl = rtl_for_decl_location (loc);
8781
8782 if (rtl == NULL_RTX)
8783 return 0;
8784 else if (CONSTANT_P (rtl))
8785 {
8786 ret = new_loc_descr (DW_OP_addr, 0, 0);
8787 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8788 ret->dw_loc_oprnd1.v.val_addr = rtl;
8789 indirect_p = 1;
8790 }
8791 else
8792 {
8793 enum machine_mode mode = GET_MODE (rtl);
8794
8795 if (GET_CODE (rtl) == MEM)
8796 {
8797 indirect_p = 1;
8798 rtl = XEXP (rtl, 0);
8799 }
8800
8801 ret = mem_loc_descriptor (rtl, mode, true);
8802 }
8803 }
8804 break;
8805
8806 case INDIRECT_REF:
8807 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8808 indirect_p = 1;
8809 break;
8810
8811 case COMPOUND_EXPR:
8812 return loc_descriptor_from_tree (TREE_OPERAND (loc, 1), addressp);
8813
8814 case NOP_EXPR:
8815 case CONVERT_EXPR:
8816 case NON_LVALUE_EXPR:
8817 case VIEW_CONVERT_EXPR:
8818 case SAVE_EXPR:
8819 case MODIFY_EXPR:
8820 return loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp);
8821
8822 case COMPONENT_REF:
8823 case BIT_FIELD_REF:
8824 case ARRAY_REF:
8825 case ARRAY_RANGE_REF:
8826 {
8827 tree obj, offset;
8828 HOST_WIDE_INT bitsize, bitpos, bytepos;
8829 enum machine_mode mode;
8830 int volatilep;
8831
8832 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
8833 &unsignedp, &volatilep);
8834
8835 if (obj == loc)
8836 return 0;
8837
8838 ret = loc_descriptor_from_tree (obj, 1);
8839 if (ret == 0
8840 || bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
8841 return 0;
8842
8843 if (offset != NULL_TREE)
8844 {
8845 /* Variable offset. */
8846 add_loc_descr (&ret, loc_descriptor_from_tree (offset, 0));
8847 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
8848 }
8849
8850 if (!addressp)
8851 indirect_p = 1;
8852
8853 bytepos = bitpos / BITS_PER_UNIT;
8854 if (bytepos > 0)
8855 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
8856 else if (bytepos < 0)
8857 {
8858 add_loc_descr (&ret, int_loc_descriptor (bytepos));
8859 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
8860 }
8861 break;
8862 }
8863
8864 case INTEGER_CST:
8865 if (host_integerp (loc, 0))
8866 ret = int_loc_descriptor (tree_low_cst (loc, 0));
8867 else
8868 return 0;
8869 break;
8870
8871 case CONSTRUCTOR:
8872 {
8873 /* Get an RTL for this, if something has been emitted. */
8874 rtx rtl = lookup_constant_def (loc);
8875 enum machine_mode mode;
8876
8877 if (GET_CODE (rtl) != MEM)
8878 return 0;
8879 mode = GET_MODE (rtl);
8880 rtl = XEXP (rtl, 0);
8881
8882 rtl = (*targetm.delegitimize_address) (rtl);
8883
8884 indirect_p = 1;
8885 ret = mem_loc_descriptor (rtl, mode, true);
8886 break;
8887 }
8888
8889 case TRUTH_AND_EXPR:
8890 case TRUTH_ANDIF_EXPR:
8891 case BIT_AND_EXPR:
8892 op = DW_OP_and;
8893 goto do_binop;
8894
8895 case TRUTH_XOR_EXPR:
8896 case BIT_XOR_EXPR:
8897 op = DW_OP_xor;
8898 goto do_binop;
8899
8900 case TRUTH_OR_EXPR:
8901 case TRUTH_ORIF_EXPR:
8902 case BIT_IOR_EXPR:
8903 op = DW_OP_or;
8904 goto do_binop;
8905
8906 case FLOOR_DIV_EXPR:
8907 case CEIL_DIV_EXPR:
8908 case ROUND_DIV_EXPR:
8909 case TRUNC_DIV_EXPR:
8910 op = DW_OP_div;
8911 goto do_binop;
8912
8913 case MINUS_EXPR:
8914 op = DW_OP_minus;
8915 goto do_binop;
8916
8917 case FLOOR_MOD_EXPR:
8918 case CEIL_MOD_EXPR:
8919 case ROUND_MOD_EXPR:
8920 case TRUNC_MOD_EXPR:
8921 op = DW_OP_mod;
8922 goto do_binop;
8923
8924 case MULT_EXPR:
8925 op = DW_OP_mul;
8926 goto do_binop;
8927
8928 case LSHIFT_EXPR:
8929 op = DW_OP_shl;
8930 goto do_binop;
8931
8932 case RSHIFT_EXPR:
8933 op = (unsignedp ? DW_OP_shr : DW_OP_shra);
8934 goto do_binop;
8935
8936 case PLUS_EXPR:
8937 if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
8938 && host_integerp (TREE_OPERAND (loc, 1), 0))
8939 {
8940 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8941 if (ret == 0)
8942 return 0;
8943
8944 add_loc_descr (&ret,
8945 new_loc_descr (DW_OP_plus_uconst,
8946 tree_low_cst (TREE_OPERAND (loc, 1),
8947 0),
8948 0));
8949 break;
8950 }
8951
8952 op = DW_OP_plus;
8953 goto do_binop;
8954
8955 case LE_EXPR:
8956 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8957 return 0;
8958
8959 op = DW_OP_le;
8960 goto do_binop;
8961
8962 case GE_EXPR:
8963 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8964 return 0;
8965
8966 op = DW_OP_ge;
8967 goto do_binop;
8968
8969 case LT_EXPR:
8970 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8971 return 0;
8972
8973 op = DW_OP_lt;
8974 goto do_binop;
8975
8976 case GT_EXPR:
8977 if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8978 return 0;
8979
8980 op = DW_OP_gt;
8981 goto do_binop;
8982
8983 case EQ_EXPR:
8984 op = DW_OP_eq;
8985 goto do_binop;
8986
8987 case NE_EXPR:
8988 op = DW_OP_ne;
8989 goto do_binop;
8990
8991 do_binop:
8992 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8993 ret1 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
8994 if (ret == 0 || ret1 == 0)
8995 return 0;
8996
8997 add_loc_descr (&ret, ret1);
8998 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
8999 break;
9000
9001 case TRUTH_NOT_EXPR:
9002 case BIT_NOT_EXPR:
9003 op = DW_OP_not;
9004 goto do_unop;
9005
9006 case ABS_EXPR:
9007 op = DW_OP_abs;
9008 goto do_unop;
9009
9010 case NEGATE_EXPR:
9011 op = DW_OP_neg;
9012 goto do_unop;
9013
9014 do_unop:
9015 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
9016 if (ret == 0)
9017 return 0;
9018
9019 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9020 break;
9021
9022 case MIN_EXPR:
9023 case MAX_EXPR:
9024 {
9025 const enum tree_code code =
9026 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
9027
9028 loc = build (COND_EXPR, TREE_TYPE (loc),
9029 build (code, integer_type_node,
9030 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
9031 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
9032 }
9033
9034 /* ... fall through ... */
9035
9036 case COND_EXPR:
9037 {
9038 dw_loc_descr_ref lhs
9039 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
9040 dw_loc_descr_ref rhs
9041 = loc_descriptor_from_tree (TREE_OPERAND (loc, 2), 0);
9042 dw_loc_descr_ref bra_node, jump_node, tmp;
9043
9044 ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
9045 if (ret == 0 || lhs == 0 || rhs == 0)
9046 return 0;
9047
9048 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
9049 add_loc_descr (&ret, bra_node);
9050
9051 add_loc_descr (&ret, rhs);
9052 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
9053 add_loc_descr (&ret, jump_node);
9054
9055 add_loc_descr (&ret, lhs);
9056 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9057 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
9058
9059 /* ??? Need a node to point the skip at. Use a nop. */
9060 tmp = new_loc_descr (DW_OP_nop, 0, 0);
9061 add_loc_descr (&ret, tmp);
9062 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9063 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
9064 }
9065 break;
9066
9067 case EXPR_WITH_FILE_LOCATION:
9068 return loc_descriptor_from_tree (EXPR_WFL_NODE (loc), addressp);
9069
9070 default:
9071 /* Leave front-end specific codes as simply unknown. This comes
9072 up, for instance, with the C STMT_EXPR. */
9073 if ((unsigned int) TREE_CODE (loc)
9074 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
9075 return 0;
9076
9077 /* Otherwise this is a generic code; we should just lists all of
9078 these explicitly. Aborting means we forgot one. */
9079 abort ();
9080 }
9081
9082 /* Show if we can't fill the request for an address. */
9083 if (addressp && indirect_p == 0)
9084 return 0;
9085
9086 /* If we've got an address and don't want one, dereference. */
9087 if (!addressp && indirect_p > 0)
9088 {
9089 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
9090
9091 if (size > DWARF2_ADDR_SIZE || size == -1)
9092 return 0;
9093 else if (size == DWARF2_ADDR_SIZE)
9094 op = DW_OP_deref;
9095 else
9096 op = DW_OP_deref_size;
9097
9098 add_loc_descr (&ret, new_loc_descr (op, size, 0));
9099 }
9100
9101 return ret;
9102 }
9103
9104 /* Given a value, round it up to the lowest multiple of `boundary'
9105 which is not less than the value itself. */
9106
9107 static inline HOST_WIDE_INT
9108 ceiling (HOST_WIDE_INT value, unsigned int boundary)
9109 {
9110 return (((value + boundary - 1) / boundary) * boundary);
9111 }
9112
9113 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
9114 pointer to the declared type for the relevant field variable, or return
9115 `integer_type_node' if the given node turns out to be an
9116 ERROR_MARK node. */
9117
9118 static inline tree
9119 field_type (tree decl)
9120 {
9121 tree type;
9122
9123 if (TREE_CODE (decl) == ERROR_MARK)
9124 return integer_type_node;
9125
9126 type = DECL_BIT_FIELD_TYPE (decl);
9127 if (type == NULL_TREE)
9128 type = TREE_TYPE (decl);
9129
9130 return type;
9131 }
9132
9133 /* Given a pointer to a tree node, return the alignment in bits for
9134 it, or else return BITS_PER_WORD if the node actually turns out to
9135 be an ERROR_MARK node. */
9136
9137 static inline unsigned
9138 simple_type_align_in_bits (tree type)
9139 {
9140 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
9141 }
9142
9143 static inline unsigned
9144 simple_decl_align_in_bits (tree decl)
9145 {
9146 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
9147 }
9148
9149 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
9150 lowest addressed byte of the "containing object" for the given FIELD_DECL,
9151 or return 0 if we are unable to determine what that offset is, either
9152 because the argument turns out to be a pointer to an ERROR_MARK node, or
9153 because the offset is actually variable. (We can't handle the latter case
9154 just yet). */
9155
9156 static HOST_WIDE_INT
9157 field_byte_offset (tree decl)
9158 {
9159 unsigned int type_align_in_bits;
9160 unsigned int decl_align_in_bits;
9161 unsigned HOST_WIDE_INT type_size_in_bits;
9162 HOST_WIDE_INT object_offset_in_bits;
9163 tree type;
9164 tree field_size_tree;
9165 HOST_WIDE_INT bitpos_int;
9166 HOST_WIDE_INT deepest_bitpos;
9167 unsigned HOST_WIDE_INT field_size_in_bits;
9168
9169 if (TREE_CODE (decl) == ERROR_MARK)
9170 return 0;
9171 else if (TREE_CODE (decl) != FIELD_DECL)
9172 abort ();
9173
9174 type = field_type (decl);
9175 field_size_tree = DECL_SIZE (decl);
9176
9177 /* The size could be unspecified if there was an error, or for
9178 a flexible array member. */
9179 if (! field_size_tree)
9180 field_size_tree = bitsize_zero_node;
9181
9182 /* We cannot yet cope with fields whose positions are variable, so
9183 for now, when we see such things, we simply return 0. Someday, we may
9184 be able to handle such cases, but it will be damn difficult. */
9185 if (! host_integerp (bit_position (decl), 0))
9186 return 0;
9187
9188 bitpos_int = int_bit_position (decl);
9189
9190 /* If we don't know the size of the field, pretend it's a full word. */
9191 if (host_integerp (field_size_tree, 1))
9192 field_size_in_bits = tree_low_cst (field_size_tree, 1);
9193 else
9194 field_size_in_bits = BITS_PER_WORD;
9195
9196 type_size_in_bits = simple_type_size_in_bits (type);
9197 type_align_in_bits = simple_type_align_in_bits (type);
9198 decl_align_in_bits = simple_decl_align_in_bits (decl);
9199
9200 /* The GCC front-end doesn't make any attempt to keep track of the starting
9201 bit offset (relative to the start of the containing structure type) of the
9202 hypothetical "containing object" for a bit-field. Thus, when computing
9203 the byte offset value for the start of the "containing object" of a
9204 bit-field, we must deduce this information on our own. This can be rather
9205 tricky to do in some cases. For example, handling the following structure
9206 type definition when compiling for an i386/i486 target (which only aligns
9207 long long's to 32-bit boundaries) can be very tricky:
9208
9209 struct S { int field1; long long field2:31; };
9210
9211 Fortunately, there is a simple rule-of-thumb which can be used in such
9212 cases. When compiling for an i386/i486, GCC will allocate 8 bytes for the
9213 structure shown above. It decides to do this based upon one simple rule
9214 for bit-field allocation. GCC allocates each "containing object" for each
9215 bit-field at the first (i.e. lowest addressed) legitimate alignment
9216 boundary (based upon the required minimum alignment for the declared type
9217 of the field) which it can possibly use, subject to the condition that
9218 there is still enough available space remaining in the containing object
9219 (when allocated at the selected point) to fully accommodate all of the
9220 bits of the bit-field itself.
9221
9222 This simple rule makes it obvious why GCC allocates 8 bytes for each
9223 object of the structure type shown above. When looking for a place to
9224 allocate the "containing object" for `field2', the compiler simply tries
9225 to allocate a 64-bit "containing object" at each successive 32-bit
9226 boundary (starting at zero) until it finds a place to allocate that 64-
9227 bit field such that at least 31 contiguous (and previously unallocated)
9228 bits remain within that selected 64 bit field. (As it turns out, for the
9229 example above, the compiler finds it is OK to allocate the "containing
9230 object" 64-bit field at bit-offset zero within the structure type.)
9231
9232 Here we attempt to work backwards from the limited set of facts we're
9233 given, and we try to deduce from those facts, where GCC must have believed
9234 that the containing object started (within the structure type). The value
9235 we deduce is then used (by the callers of this routine) to generate
9236 DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9237 and, in the case of DW_AT_location, regular fields as well). */
9238
9239 /* Figure out the bit-distance from the start of the structure to the
9240 "deepest" bit of the bit-field. */
9241 deepest_bitpos = bitpos_int + field_size_in_bits;
9242
9243 /* This is the tricky part. Use some fancy footwork to deduce where the
9244 lowest addressed bit of the containing object must be. */
9245 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9246
9247 /* Round up to type_align by default. This works best for bitfields. */
9248 object_offset_in_bits += type_align_in_bits - 1;
9249 object_offset_in_bits /= type_align_in_bits;
9250 object_offset_in_bits *= type_align_in_bits;
9251
9252 if (object_offset_in_bits > bitpos_int)
9253 {
9254 /* Sigh, the decl must be packed. */
9255 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9256
9257 /* Round up to decl_align instead. */
9258 object_offset_in_bits += decl_align_in_bits - 1;
9259 object_offset_in_bits /= decl_align_in_bits;
9260 object_offset_in_bits *= decl_align_in_bits;
9261 }
9262
9263 return object_offset_in_bits / BITS_PER_UNIT;
9264 }
9265 \f
9266 /* The following routines define various Dwarf attributes and any data
9267 associated with them. */
9268
9269 /* Add a location description attribute value to a DIE.
9270
9271 This emits location attributes suitable for whole variables and
9272 whole parameters. Note that the location attributes for struct fields are
9273 generated by the routine `data_member_location_attribute' below. */
9274
9275 static inline void
9276 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
9277 dw_loc_descr_ref descr)
9278 {
9279 if (descr != 0)
9280 add_AT_loc (die, attr_kind, descr);
9281 }
9282
9283 /* Attach the specialized form of location attribute used for data members of
9284 struct and union types. In the special case of a FIELD_DECL node which
9285 represents a bit-field, the "offset" part of this special location
9286 descriptor must indicate the distance in bytes from the lowest-addressed
9287 byte of the containing struct or union type to the lowest-addressed byte of
9288 the "containing object" for the bit-field. (See the `field_byte_offset'
9289 function above).
9290
9291 For any given bit-field, the "containing object" is a hypothetical object
9292 (of some integral or enum type) within which the given bit-field lives. The
9293 type of this hypothetical "containing object" is always the same as the
9294 declared type of the individual bit-field itself (for GCC anyway... the
9295 DWARF spec doesn't actually mandate this). Note that it is the size (in
9296 bytes) of the hypothetical "containing object" which will be given in the
9297 DW_AT_byte_size attribute for this bit-field. (See the
9298 `byte_size_attribute' function below.) It is also used when calculating the
9299 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
9300 function below.) */
9301
9302 static void
9303 add_data_member_location_attribute (dw_die_ref die, tree decl)
9304 {
9305 HOST_WIDE_INT offset;
9306 dw_loc_descr_ref loc_descr = 0;
9307
9308 if (TREE_CODE (decl) == TREE_VEC)
9309 {
9310 /* We're working on the TAG_inheritance for a base class. */
9311 if (TREE_VIA_VIRTUAL (decl) && is_cxx ())
9312 {
9313 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9314 aren't at a fixed offset from all (sub)objects of the same
9315 type. We need to extract the appropriate offset from our
9316 vtable. The following dwarf expression means
9317
9318 BaseAddr = ObAddr + *((*ObAddr) - Offset)
9319
9320 This is specific to the V3 ABI, of course. */
9321
9322 dw_loc_descr_ref tmp;
9323
9324 /* Make a copy of the object address. */
9325 tmp = new_loc_descr (DW_OP_dup, 0, 0);
9326 add_loc_descr (&loc_descr, tmp);
9327
9328 /* Extract the vtable address. */
9329 tmp = new_loc_descr (DW_OP_deref, 0, 0);
9330 add_loc_descr (&loc_descr, tmp);
9331
9332 /* Calculate the address of the offset. */
9333 offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
9334 if (offset >= 0)
9335 abort ();
9336
9337 tmp = int_loc_descriptor (-offset);
9338 add_loc_descr (&loc_descr, tmp);
9339 tmp = new_loc_descr (DW_OP_minus, 0, 0);
9340 add_loc_descr (&loc_descr, tmp);
9341
9342 /* Extract the offset. */
9343 tmp = new_loc_descr (DW_OP_deref, 0, 0);
9344 add_loc_descr (&loc_descr, tmp);
9345
9346 /* Add it to the object address. */
9347 tmp = new_loc_descr (DW_OP_plus, 0, 0);
9348 add_loc_descr (&loc_descr, tmp);
9349 }
9350 else
9351 offset = tree_low_cst (BINFO_OFFSET (decl), 0);
9352 }
9353 else
9354 offset = field_byte_offset (decl);
9355
9356 if (! loc_descr)
9357 {
9358 enum dwarf_location_atom op;
9359
9360 /* The DWARF2 standard says that we should assume that the structure
9361 address is already on the stack, so we can specify a structure field
9362 address by using DW_OP_plus_uconst. */
9363
9364 #ifdef MIPS_DEBUGGING_INFO
9365 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9366 operator correctly. It works only if we leave the offset on the
9367 stack. */
9368 op = DW_OP_constu;
9369 #else
9370 op = DW_OP_plus_uconst;
9371 #endif
9372
9373 loc_descr = new_loc_descr (op, offset, 0);
9374 }
9375
9376 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
9377 }
9378
9379 /* Writes integer values to dw_vec_const array. */
9380
9381 static void
9382 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
9383 {
9384 while (size != 0)
9385 {
9386 *dest++ = val & 0xff;
9387 val >>= 8;
9388 --size;
9389 }
9390 }
9391
9392 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
9393
9394 static HOST_WIDE_INT
9395 extract_int (const unsigned char *src, unsigned int size)
9396 {
9397 HOST_WIDE_INT val = 0;
9398
9399 src += size;
9400 while (size != 0)
9401 {
9402 val <<= 8;
9403 val |= *--src & 0xff;
9404 --size;
9405 }
9406 return val;
9407 }
9408
9409 /* Writes floating point values to dw_vec_const array. */
9410
9411 static void
9412 insert_float (rtx rtl, unsigned char *array)
9413 {
9414 REAL_VALUE_TYPE rv;
9415 long val[4];
9416 int i;
9417
9418 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
9419 real_to_target (val, &rv, GET_MODE (rtl));
9420
9421 /* real_to_target puts 32-bit pieces in each long. Pack them. */
9422 for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
9423 {
9424 insert_int (val[i], 4, array);
9425 array += 4;
9426 }
9427 }
9428
9429 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9430 does not have a "location" either in memory or in a register. These
9431 things can arise in GNU C when a constant is passed as an actual parameter
9432 to an inlined function. They can also arise in C++ where declared
9433 constants do not necessarily get memory "homes". */
9434
9435 static void
9436 add_const_value_attribute (dw_die_ref die, rtx rtl)
9437 {
9438 switch (GET_CODE (rtl))
9439 {
9440 case CONST_INT:
9441 {
9442 HOST_WIDE_INT val = INTVAL (rtl);
9443
9444 if (val < 0)
9445 add_AT_int (die, DW_AT_const_value, val);
9446 else
9447 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
9448 }
9449 break;
9450
9451 case CONST_DOUBLE:
9452 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9453 floating-point constant. A CONST_DOUBLE is used whenever the
9454 constant requires more than one word in order to be adequately
9455 represented. We output CONST_DOUBLEs as blocks. */
9456 {
9457 enum machine_mode mode = GET_MODE (rtl);
9458
9459 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
9460 {
9461 unsigned int length = GET_MODE_SIZE (mode);
9462 unsigned char *array = ggc_alloc (length);
9463
9464 insert_float (rtl, array);
9465 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
9466 }
9467 else
9468 {
9469 /* ??? We really should be using HOST_WIDE_INT throughout. */
9470 if (HOST_BITS_PER_LONG != HOST_BITS_PER_WIDE_INT)
9471 abort ();
9472
9473 add_AT_long_long (die, DW_AT_const_value,
9474 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
9475 }
9476 }
9477 break;
9478
9479 case CONST_VECTOR:
9480 {
9481 enum machine_mode mode = GET_MODE (rtl);
9482 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
9483 unsigned int length = CONST_VECTOR_NUNITS (rtl);
9484 unsigned char *array = ggc_alloc (length * elt_size);
9485 unsigned int i;
9486 unsigned char *p;
9487
9488 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
9489 {
9490 for (i = 0, p = array; i < length; i++, p += elt_size)
9491 {
9492 rtx elt = CONST_VECTOR_ELT (rtl, i);
9493 HOST_WIDE_INT lo, hi;
9494 if (GET_CODE (elt) == CONST_INT)
9495 {
9496 lo = INTVAL (elt);
9497 hi = -(lo < 0);
9498 }
9499 else if (GET_CODE (elt) == CONST_DOUBLE)
9500 {
9501 lo = CONST_DOUBLE_LOW (elt);
9502 hi = CONST_DOUBLE_HIGH (elt);
9503 }
9504 else
9505 abort ();
9506
9507 if (elt_size <= sizeof (HOST_WIDE_INT))
9508 insert_int (lo, elt_size, p);
9509 else if (elt_size == 2 * sizeof (HOST_WIDE_INT))
9510 {
9511 unsigned char *p0 = p;
9512 unsigned char *p1 = p + sizeof (HOST_WIDE_INT);
9513
9514 if (WORDS_BIG_ENDIAN)
9515 {
9516 p0 = p1;
9517 p1 = p;
9518 }
9519 insert_int (lo, sizeof (HOST_WIDE_INT), p0);
9520 insert_int (hi, sizeof (HOST_WIDE_INT), p1);
9521 }
9522 else
9523 abort ();
9524 }
9525 }
9526 else if (GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
9527 {
9528 for (i = 0, p = array; i < length; i++, p += elt_size)
9529 {
9530 rtx elt = CONST_VECTOR_ELT (rtl, i);
9531 insert_float (elt, p);
9532 }
9533 }
9534 else
9535 abort ();
9536
9537 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
9538 }
9539 break;
9540
9541 case CONST_STRING:
9542 add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
9543 break;
9544
9545 case SYMBOL_REF:
9546 case LABEL_REF:
9547 case CONST:
9548 add_AT_addr (die, DW_AT_const_value, rtl);
9549 VARRAY_PUSH_RTX (used_rtx_varray, rtl);
9550 break;
9551
9552 case PLUS:
9553 /* In cases where an inlined instance of an inline function is passed
9554 the address of an `auto' variable (which is local to the caller) we
9555 can get a situation where the DECL_RTL of the artificial local
9556 variable (for the inlining) which acts as a stand-in for the
9557 corresponding formal parameter (of the inline function) will look
9558 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
9559 exactly a compile-time constant expression, but it isn't the address
9560 of the (artificial) local variable either. Rather, it represents the
9561 *value* which the artificial local variable always has during its
9562 lifetime. We currently have no way to represent such quasi-constant
9563 values in Dwarf, so for now we just punt and generate nothing. */
9564 break;
9565
9566 default:
9567 /* No other kinds of rtx should be possible here. */
9568 abort ();
9569 }
9570
9571 }
9572
9573 static rtx
9574 rtl_for_decl_location (tree decl)
9575 {
9576 rtx rtl;
9577
9578 /* Here we have to decide where we are going to say the parameter "lives"
9579 (as far as the debugger is concerned). We only have a couple of
9580 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9581
9582 DECL_RTL normally indicates where the parameter lives during most of the
9583 activation of the function. If optimization is enabled however, this
9584 could be either NULL or else a pseudo-reg. Both of those cases indicate
9585 that the parameter doesn't really live anywhere (as far as the code
9586 generation parts of GCC are concerned) during most of the function's
9587 activation. That will happen (for example) if the parameter is never
9588 referenced within the function.
9589
9590 We could just generate a location descriptor here for all non-NULL
9591 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9592 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9593 where DECL_RTL is NULL or is a pseudo-reg.
9594
9595 Note however that we can only get away with using DECL_INCOMING_RTL as
9596 a backup substitute for DECL_RTL in certain limited cases. In cases
9597 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
9598 we can be sure that the parameter was passed using the same type as it is
9599 declared to have within the function, and that its DECL_INCOMING_RTL
9600 points us to a place where a value of that type is passed.
9601
9602 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
9603 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
9604 because in these cases DECL_INCOMING_RTL points us to a value of some
9605 type which is *different* from the type of the parameter itself. Thus,
9606 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
9607 such cases, the debugger would end up (for example) trying to fetch a
9608 `float' from a place which actually contains the first part of a
9609 `double'. That would lead to really incorrect and confusing
9610 output at debug-time.
9611
9612 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
9613 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
9614 are a couple of exceptions however. On little-endian machines we can
9615 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
9616 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
9617 an integral type that is smaller than TREE_TYPE (decl). These cases arise
9618 when (on a little-endian machine) a non-prototyped function has a
9619 parameter declared to be of type `short' or `char'. In such cases,
9620 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
9621 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
9622 passed `int' value. If the debugger then uses that address to fetch
9623 a `short' or a `char' (on a little-endian machine) the result will be
9624 the correct data, so we allow for such exceptional cases below.
9625
9626 Note that our goal here is to describe the place where the given formal
9627 parameter lives during most of the function's activation (i.e. between the
9628 end of the prologue and the start of the epilogue). We'll do that as best
9629 as we can. Note however that if the given formal parameter is modified
9630 sometime during the execution of the function, then a stack backtrace (at
9631 debug-time) will show the function as having been called with the *new*
9632 value rather than the value which was originally passed in. This happens
9633 rarely enough that it is not a major problem, but it *is* a problem, and
9634 I'd like to fix it.
9635
9636 A future version of dwarf2out.c may generate two additional attributes for
9637 any given DW_TAG_formal_parameter DIE which will describe the "passed
9638 type" and the "passed location" for the given formal parameter in addition
9639 to the attributes we now generate to indicate the "declared type" and the
9640 "active location" for each parameter. This additional set of attributes
9641 could be used by debuggers for stack backtraces. Separately, note that
9642 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
9643 This happens (for example) for inlined-instances of inline function formal
9644 parameters which are never referenced. This really shouldn't be
9645 happening. All PARM_DECL nodes should get valid non-NULL
9646 DECL_INCOMING_RTL values, but integrate.c doesn't currently generate these
9647 values for inlined instances of inline function parameters, so when we see
9648 such cases, we are just out-of-luck for the time being (until integrate.c
9649 gets fixed). */
9650
9651 /* Use DECL_RTL as the "location" unless we find something better. */
9652 rtl = DECL_RTL_IF_SET (decl);
9653
9654 /* When generating abstract instances, ignore everything except
9655 constants, symbols living in memory, and symbols living in
9656 fixed registers. */
9657 if (! reload_completed)
9658 {
9659 if (rtl
9660 && (CONSTANT_P (rtl)
9661 || (GET_CODE (rtl) == MEM
9662 && CONSTANT_P (XEXP (rtl, 0)))
9663 || (GET_CODE (rtl) == REG
9664 && TREE_CODE (decl) == VAR_DECL
9665 && TREE_STATIC (decl))))
9666 {
9667 rtl = (*targetm.delegitimize_address) (rtl);
9668 return rtl;
9669 }
9670 rtl = NULL_RTX;
9671 }
9672 else if (TREE_CODE (decl) == PARM_DECL)
9673 {
9674 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
9675 {
9676 tree declared_type = type_main_variant (TREE_TYPE (decl));
9677 tree passed_type = type_main_variant (DECL_ARG_TYPE (decl));
9678
9679 /* This decl represents a formal parameter which was optimized out.
9680 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
9681 all cases where (rtl == NULL_RTX) just below. */
9682 if (declared_type == passed_type)
9683 rtl = DECL_INCOMING_RTL (decl);
9684 else if (! BYTES_BIG_ENDIAN
9685 && TREE_CODE (declared_type) == INTEGER_TYPE
9686 && (GET_MODE_SIZE (TYPE_MODE (declared_type))
9687 <= GET_MODE_SIZE (TYPE_MODE (passed_type))))
9688 rtl = DECL_INCOMING_RTL (decl);
9689 }
9690
9691 /* If the parm was passed in registers, but lives on the stack, then
9692 make a big endian correction if the mode of the type of the
9693 parameter is not the same as the mode of the rtl. */
9694 /* ??? This is the same series of checks that are made in dbxout.c before
9695 we reach the big endian correction code there. It isn't clear if all
9696 of these checks are necessary here, but keeping them all is the safe
9697 thing to do. */
9698 else if (GET_CODE (rtl) == MEM
9699 && XEXP (rtl, 0) != const0_rtx
9700 && ! CONSTANT_P (XEXP (rtl, 0))
9701 /* Not passed in memory. */
9702 && GET_CODE (DECL_INCOMING_RTL (decl)) != MEM
9703 /* Not passed by invisible reference. */
9704 && (GET_CODE (XEXP (rtl, 0)) != REG
9705 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
9706 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
9707 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
9708 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
9709 #endif
9710 )
9711 /* Big endian correction check. */
9712 && BYTES_BIG_ENDIAN
9713 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
9714 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
9715 < UNITS_PER_WORD))
9716 {
9717 int offset = (UNITS_PER_WORD
9718 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
9719
9720 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
9721 plus_constant (XEXP (rtl, 0), offset));
9722 }
9723 }
9724
9725 if (rtl != NULL_RTX)
9726 {
9727 rtl = eliminate_regs (rtl, 0, NULL_RTX);
9728 #ifdef LEAF_REG_REMAP
9729 if (current_function_uses_only_leaf_regs)
9730 leaf_renumber_regs_insn (rtl);
9731 #endif
9732 }
9733
9734 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
9735 and will have been substituted directly into all expressions that use it.
9736 C does not have such a concept, but C++ and other languages do. */
9737 else if (TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
9738 {
9739 /* If a variable is initialized with a string constant without embedded
9740 zeros, build CONST_STRING. */
9741 if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
9742 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
9743 {
9744 tree arrtype = TREE_TYPE (decl);
9745 tree enttype = TREE_TYPE (arrtype);
9746 tree domain = TYPE_DOMAIN (arrtype);
9747 tree init = DECL_INITIAL (decl);
9748 enum machine_mode mode = TYPE_MODE (enttype);
9749
9750 if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
9751 && domain
9752 && integer_zerop (TYPE_MIN_VALUE (domain))
9753 && compare_tree_int (TYPE_MAX_VALUE (domain),
9754 TREE_STRING_LENGTH (init) - 1) == 0
9755 && ((size_t) TREE_STRING_LENGTH (init)
9756 == strlen (TREE_STRING_POINTER (init)) + 1))
9757 rtl = gen_rtx_CONST_STRING (VOIDmode, TREE_STRING_POINTER (init));
9758 }
9759 /* If the initializer is something that we know will expand into an
9760 immediate RTL constant, expand it now. Expanding anything else
9761 tends to produce unresolved symbols; see debug/5770 and c++/6381. */
9762 else if (TREE_CODE (DECL_INITIAL (decl)) == INTEGER_CST
9763 || TREE_CODE (DECL_INITIAL (decl)) == REAL_CST)
9764 {
9765 rtl = expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
9766 EXPAND_INITIALIZER);
9767 /* If expand_expr returns a MEM, it wasn't immediate. */
9768 if (rtl && GET_CODE (rtl) == MEM)
9769 abort ();
9770 }
9771 }
9772
9773 if (rtl)
9774 rtl = (*targetm.delegitimize_address) (rtl);
9775
9776 /* If we don't look past the constant pool, we risk emitting a
9777 reference to a constant pool entry that isn't referenced from
9778 code, and thus is not emitted. */
9779 if (rtl)
9780 rtl = avoid_constant_pool_reference (rtl);
9781
9782 return rtl;
9783 }
9784
9785 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
9786 data attribute for a variable or a parameter. We generate the
9787 DW_AT_const_value attribute only in those cases where the given variable
9788 or parameter does not have a true "location" either in memory or in a
9789 register. This can happen (for example) when a constant is passed as an
9790 actual argument in a call to an inline function. (It's possible that
9791 these things can crop up in other ways also.) Note that one type of
9792 constant value which can be passed into an inlined function is a constant
9793 pointer. This can happen for example if an actual argument in an inlined
9794 function call evaluates to a compile-time constant address. */
9795
9796 static void
9797 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
9798 enum dwarf_attribute attr)
9799 {
9800 rtx rtl;
9801 dw_loc_descr_ref descr;
9802 var_loc_list *loc_list;
9803
9804 if (TREE_CODE (decl) == ERROR_MARK)
9805 return;
9806 else if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
9807 abort ();
9808
9809 /* See if we possibly have multiple locations for this variable. */
9810 loc_list = lookup_decl_loc (decl);
9811
9812 /* If it truly has multiple locations, the first and last node will
9813 differ. */
9814 if (loc_list && loc_list->first != loc_list->last)
9815 {
9816 const char *secname;
9817 const char *endname;
9818 dw_loc_list_ref list;
9819 rtx varloc;
9820 struct var_loc_node *node;
9821
9822 /* We need to figure out what section we should use as the base
9823 for the address ranges where a given location is valid.
9824 1. If this particular DECL has a section associated with it,
9825 use that.
9826 2. If this function has a section associated with it, use
9827 that.
9828 3. Otherwise, use the text section.
9829 XXX: If you split a variable across multiple sections, this
9830 won't notice. */
9831
9832 if (DECL_SECTION_NAME (decl))
9833 {
9834 tree sectree = DECL_SECTION_NAME (decl);
9835 secname = TREE_STRING_POINTER (sectree);
9836 }
9837 else if (current_function_decl
9838 && DECL_SECTION_NAME (current_function_decl))
9839 {
9840 tree sectree = DECL_SECTION_NAME (current_function_decl);
9841 secname = TREE_STRING_POINTER (sectree);
9842 }
9843 else
9844 secname = text_section_label;
9845
9846 /* Now that we know what section we are using for a base,
9847 actually construct the list of locations.
9848 The first location information is what is passed to the
9849 function that creates the location list, and the remaining
9850 locations just get added on to that list.
9851 Note that we only know the start address for a location
9852 (IE location changes), so to build the range, we use
9853 the range [current location start, next location start].
9854 This means we have to special case the last node, and generate
9855 a range of [last location start, end of function label]. */
9856
9857 node = loc_list->first;
9858 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
9859 list = new_loc_list (loc_descriptor (varloc, attr != DW_AT_frame_base),
9860 node->label, node->next->label, secname, 1);
9861 node = node->next;
9862
9863 for (; node->next; node = node->next)
9864 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
9865 {
9866 /* The variable has a location between NODE->LABEL and
9867 NODE->NEXT->LABEL. */
9868 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
9869 add_loc_descr_to_loc_list (&list,
9870 loc_descriptor (varloc,
9871 attr != DW_AT_frame_base),
9872 node->label, node->next->label, secname);
9873 }
9874
9875 /* If the variable has a location at the last label
9876 it keeps its location until the end of function. */
9877 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
9878 {
9879 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
9880
9881 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
9882 if (!current_function_decl)
9883 endname = text_end_label;
9884 else
9885 {
9886 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
9887 current_function_funcdef_no);
9888 endname = ggc_strdup (label_id);
9889 }
9890 add_loc_descr_to_loc_list (&list,
9891 loc_descriptor (varloc,
9892 attr != DW_AT_frame_base),
9893 node->label, endname, secname);
9894 }
9895
9896 /* Finally, add the location list to the DIE, and we are done. */
9897 add_AT_loc_list (die, attr, list);
9898 return;
9899 }
9900
9901 rtl = rtl_for_decl_location (decl);
9902 if (rtl == NULL_RTX)
9903 return;
9904
9905 switch (GET_CODE (rtl))
9906 {
9907 case ADDRESSOF:
9908 /* The address of a variable that was optimized away;
9909 don't emit anything. */
9910 break;
9911
9912 case CONST_INT:
9913 case CONST_DOUBLE:
9914 case CONST_VECTOR:
9915 case CONST_STRING:
9916 case SYMBOL_REF:
9917 case LABEL_REF:
9918 case CONST:
9919 case PLUS:
9920 /* DECL_RTL could be (plus (reg ...) (const_int ...)) */
9921 add_const_value_attribute (die, rtl);
9922 break;
9923
9924 case MEM:
9925 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
9926 {
9927 /* Need loc_descriptor_from_tree since that's where we know
9928 how to handle TLS variables. Want the object's address
9929 since the top-level DW_AT_location assumes such. See
9930 the confusion in loc_descriptor for reference. */
9931 descr = loc_descriptor_from_tree (decl, 1);
9932 }
9933 else
9934 {
9935 case REG:
9936 case SUBREG:
9937 case CONCAT:
9938 descr = loc_descriptor (rtl, true);
9939 }
9940 add_AT_location_description (die, attr, descr);
9941 break;
9942
9943 case PARALLEL:
9944 {
9945 rtvec par_elems = XVEC (rtl, 0);
9946 int num_elem = GET_NUM_ELEM (par_elems);
9947 enum machine_mode mode;
9948 int i;
9949
9950 /* Create the first one, so we have something to add to. */
9951 descr = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0), true);
9952 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
9953 add_loc_descr (&descr,
9954 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (mode), 0));
9955 for (i = 1; i < num_elem; i++)
9956 {
9957 dw_loc_descr_ref temp;
9958
9959 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0), true);
9960 add_loc_descr (&descr, temp);
9961 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
9962 add_loc_descr (&descr,
9963 new_loc_descr (DW_OP_piece,
9964 GET_MODE_SIZE (mode), 0));
9965 }
9966 }
9967 add_AT_location_description (die, DW_AT_location, descr);
9968 break;
9969
9970 default:
9971 abort ();
9972 }
9973 }
9974
9975 /* If we don't have a copy of this variable in memory for some reason (such
9976 as a C++ member constant that doesn't have an out-of-line definition),
9977 we should tell the debugger about the constant value. */
9978
9979 static void
9980 tree_add_const_value_attribute (dw_die_ref var_die, tree decl)
9981 {
9982 tree init = DECL_INITIAL (decl);
9983 tree type = TREE_TYPE (decl);
9984
9985 if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init
9986 && initializer_constant_valid_p (init, type) == null_pointer_node)
9987 /* OK */;
9988 else
9989 return;
9990
9991 switch (TREE_CODE (type))
9992 {
9993 case INTEGER_TYPE:
9994 if (host_integerp (init, 0))
9995 add_AT_unsigned (var_die, DW_AT_const_value,
9996 tree_low_cst (init, 0));
9997 else
9998 add_AT_long_long (var_die, DW_AT_const_value,
9999 TREE_INT_CST_HIGH (init),
10000 TREE_INT_CST_LOW (init));
10001 break;
10002
10003 default:;
10004 }
10005 }
10006
10007 /* Generate a DW_AT_name attribute given some string value to be included as
10008 the value of the attribute. */
10009
10010 static void
10011 add_name_attribute (dw_die_ref die, const char *name_string)
10012 {
10013 if (name_string != NULL && *name_string != 0)
10014 {
10015 if (demangle_name_func)
10016 name_string = (*demangle_name_func) (name_string);
10017
10018 add_AT_string (die, DW_AT_name, name_string);
10019 }
10020 }
10021
10022 /* Generate a DW_AT_comp_dir attribute for DIE. */
10023
10024 static void
10025 add_comp_dir_attribute (dw_die_ref die)
10026 {
10027 const char *wd = get_src_pwd ();
10028 if (wd != NULL)
10029 add_AT_string (die, DW_AT_comp_dir, wd);
10030 }
10031
10032 /* Given a tree node describing an array bound (either lower or upper) output
10033 a representation for that bound. */
10034
10035 static void
10036 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
10037 {
10038 switch (TREE_CODE (bound))
10039 {
10040 case ERROR_MARK:
10041 return;
10042
10043 /* All fixed-bounds are represented by INTEGER_CST nodes. */
10044 case INTEGER_CST:
10045 if (! host_integerp (bound, 0)
10046 || (bound_attr == DW_AT_lower_bound
10047 && (((is_c_family () || is_java ()) && integer_zerop (bound))
10048 || (is_fortran () && integer_onep (bound)))))
10049 /* Use the default. */
10050 ;
10051 else
10052 add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
10053 break;
10054
10055 case CONVERT_EXPR:
10056 case NOP_EXPR:
10057 case NON_LVALUE_EXPR:
10058 case VIEW_CONVERT_EXPR:
10059 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
10060 break;
10061
10062 case SAVE_EXPR:
10063 /* If optimization is turned on, the SAVE_EXPRs that describe how to
10064 access the upper bound values may be bogus. If they refer to a
10065 register, they may only describe how to get at these values at the
10066 points in the generated code right after they have just been
10067 computed. Worse yet, in the typical case, the upper bound values
10068 will not even *be* computed in the optimized code (though the
10069 number of elements will), so these SAVE_EXPRs are entirely
10070 bogus. In order to compensate for this fact, we check here to see
10071 if optimization is enabled, and if so, we don't add an attribute
10072 for the (unknown and unknowable) upper bound. This should not
10073 cause too much trouble for existing (stupid?) debuggers because
10074 they have to deal with empty upper bounds location descriptions
10075 anyway in order to be able to deal with incomplete array types.
10076 Of course an intelligent debugger (GDB?) should be able to
10077 comprehend that a missing upper bound specification in an array
10078 type used for a storage class `auto' local array variable
10079 indicates that the upper bound is both unknown (at compile- time)
10080 and unknowable (at run-time) due to optimization.
10081
10082 We assume that a MEM rtx is safe because gcc wouldn't put the
10083 value there unless it was going to be used repeatedly in the
10084 function, i.e. for cleanups. */
10085 if (SAVE_EXPR_RTL (bound)
10086 && (! optimize || GET_CODE (SAVE_EXPR_RTL (bound)) == MEM))
10087 {
10088 dw_die_ref ctx = lookup_decl_die (current_function_decl);
10089 dw_die_ref decl_die = new_die (DW_TAG_variable, ctx, bound);
10090 rtx loc = SAVE_EXPR_RTL (bound);
10091
10092 /* If the RTL for the SAVE_EXPR is memory, handle the case where
10093 it references an outer function's frame. */
10094 if (GET_CODE (loc) == MEM)
10095 {
10096 rtx new_addr = fix_lexical_addr (XEXP (loc, 0), bound);
10097
10098 if (XEXP (loc, 0) != new_addr)
10099 loc = gen_rtx_MEM (GET_MODE (loc), new_addr);
10100 }
10101
10102 add_AT_flag (decl_die, DW_AT_artificial, 1);
10103 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
10104 add_AT_location_description (decl_die, DW_AT_location,
10105 loc_descriptor (loc, true));
10106 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10107 }
10108
10109 /* Else leave out the attribute. */
10110 break;
10111
10112 case VAR_DECL:
10113 case PARM_DECL:
10114 {
10115 dw_die_ref decl_die = lookup_decl_die (bound);
10116
10117 /* ??? Can this happen, or should the variable have been bound
10118 first? Probably it can, since I imagine that we try to create
10119 the types of parameters in the order in which they exist in
10120 the list, and won't have created a forward reference to a
10121 later parameter. */
10122 if (decl_die != NULL)
10123 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10124 break;
10125 }
10126
10127 default:
10128 {
10129 /* Otherwise try to create a stack operation procedure to
10130 evaluate the value of the array bound. */
10131
10132 dw_die_ref ctx, decl_die;
10133 dw_loc_descr_ref loc;
10134
10135 loc = loc_descriptor_from_tree (bound, 0);
10136 if (loc == NULL)
10137 break;
10138
10139 if (current_function_decl == 0)
10140 ctx = comp_unit_die;
10141 else
10142 ctx = lookup_decl_die (current_function_decl);
10143
10144 /* If we weren't able to find a context, it's most likely the case
10145 that we are processing the return type of the function. So
10146 make a SAVE_EXPR to point to it and have the limbo DIE code
10147 find the proper die. The save_expr function doesn't always
10148 make a SAVE_EXPR, so do it ourselves. */
10149 if (ctx == 0)
10150 bound = build (SAVE_EXPR, TREE_TYPE (bound), bound,
10151 current_function_decl, NULL_TREE);
10152
10153 decl_die = new_die (DW_TAG_variable, ctx, bound);
10154 add_AT_flag (decl_die, DW_AT_artificial, 1);
10155 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
10156 add_AT_loc (decl_die, DW_AT_location, loc);
10157
10158 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10159 break;
10160 }
10161 }
10162 }
10163
10164 /* Note that the block of subscript information for an array type also
10165 includes information about the element type of type given array type. */
10166
10167 static void
10168 add_subscript_info (dw_die_ref type_die, tree type)
10169 {
10170 #ifndef MIPS_DEBUGGING_INFO
10171 unsigned dimension_number;
10172 #endif
10173 tree lower, upper;
10174 dw_die_ref subrange_die;
10175
10176 /* The GNU compilers represent multidimensional array types as sequences of
10177 one dimensional array types whose element types are themselves array
10178 types. Here we squish that down, so that each multidimensional array
10179 type gets only one array_type DIE in the Dwarf debugging info. The draft
10180 Dwarf specification say that we are allowed to do this kind of
10181 compression in C (because there is no difference between an array or
10182 arrays and a multidimensional array in C) but for other source languages
10183 (e.g. Ada) we probably shouldn't do this. */
10184
10185 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10186 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10187 We work around this by disabling this feature. See also
10188 gen_array_type_die. */
10189 #ifndef MIPS_DEBUGGING_INFO
10190 for (dimension_number = 0;
10191 TREE_CODE (type) == ARRAY_TYPE;
10192 type = TREE_TYPE (type), dimension_number++)
10193 #endif
10194 {
10195 tree domain = TYPE_DOMAIN (type);
10196
10197 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
10198 and (in GNU C only) variable bounds. Handle all three forms
10199 here. */
10200 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
10201 if (domain)
10202 {
10203 /* We have an array type with specified bounds. */
10204 lower = TYPE_MIN_VALUE (domain);
10205 upper = TYPE_MAX_VALUE (domain);
10206
10207 /* Define the index type. */
10208 if (TREE_TYPE (domain))
10209 {
10210 /* ??? This is probably an Ada unnamed subrange type. Ignore the
10211 TREE_TYPE field. We can't emit debug info for this
10212 because it is an unnamed integral type. */
10213 if (TREE_CODE (domain) == INTEGER_TYPE
10214 && TYPE_NAME (domain) == NULL_TREE
10215 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
10216 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
10217 ;
10218 else
10219 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
10220 type_die);
10221 }
10222
10223 /* ??? If upper is NULL, the array has unspecified length,
10224 but it does have a lower bound. This happens with Fortran
10225 dimension arr(N:*)
10226 Since the debugger is definitely going to need to know N
10227 to produce useful results, go ahead and output the lower
10228 bound solo, and hope the debugger can cope. */
10229
10230 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
10231 if (upper)
10232 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
10233 }
10234
10235 /* Otherwise we have an array type with an unspecified length. The
10236 DWARF-2 spec does not say how to handle this; let's just leave out the
10237 bounds. */
10238 }
10239 }
10240
10241 static void
10242 add_byte_size_attribute (dw_die_ref die, tree tree_node)
10243 {
10244 unsigned size;
10245
10246 switch (TREE_CODE (tree_node))
10247 {
10248 case ERROR_MARK:
10249 size = 0;
10250 break;
10251 case ENUMERAL_TYPE:
10252 case RECORD_TYPE:
10253 case UNION_TYPE:
10254 case QUAL_UNION_TYPE:
10255 size = int_size_in_bytes (tree_node);
10256 break;
10257 case FIELD_DECL:
10258 /* For a data member of a struct or union, the DW_AT_byte_size is
10259 generally given as the number of bytes normally allocated for an
10260 object of the *declared* type of the member itself. This is true
10261 even for bit-fields. */
10262 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
10263 break;
10264 default:
10265 abort ();
10266 }
10267
10268 /* Note that `size' might be -1 when we get to this point. If it is, that
10269 indicates that the byte size of the entity in question is variable. We
10270 have no good way of expressing this fact in Dwarf at the present time,
10271 so just let the -1 pass on through. */
10272 add_AT_unsigned (die, DW_AT_byte_size, size);
10273 }
10274
10275 /* For a FIELD_DECL node which represents a bit-field, output an attribute
10276 which specifies the distance in bits from the highest order bit of the
10277 "containing object" for the bit-field to the highest order bit of the
10278 bit-field itself.
10279
10280 For any given bit-field, the "containing object" is a hypothetical object
10281 (of some integral or enum type) within which the given bit-field lives. The
10282 type of this hypothetical "containing object" is always the same as the
10283 declared type of the individual bit-field itself. The determination of the
10284 exact location of the "containing object" for a bit-field is rather
10285 complicated. It's handled by the `field_byte_offset' function (above).
10286
10287 Note that it is the size (in bytes) of the hypothetical "containing object"
10288 which will be given in the DW_AT_byte_size attribute for this bit-field.
10289 (See `byte_size_attribute' above). */
10290
10291 static inline void
10292 add_bit_offset_attribute (dw_die_ref die, tree decl)
10293 {
10294 HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
10295 tree type = DECL_BIT_FIELD_TYPE (decl);
10296 HOST_WIDE_INT bitpos_int;
10297 HOST_WIDE_INT highest_order_object_bit_offset;
10298 HOST_WIDE_INT highest_order_field_bit_offset;
10299 HOST_WIDE_INT unsigned bit_offset;
10300
10301 /* Must be a field and a bit field. */
10302 if (!type
10303 || TREE_CODE (decl) != FIELD_DECL)
10304 abort ();
10305
10306 /* We can't yet handle bit-fields whose offsets are variable, so if we
10307 encounter such things, just return without generating any attribute
10308 whatsoever. Likewise for variable or too large size. */
10309 if (! host_integerp (bit_position (decl), 0)
10310 || ! host_integerp (DECL_SIZE (decl), 1))
10311 return;
10312
10313 bitpos_int = int_bit_position (decl);
10314
10315 /* Note that the bit offset is always the distance (in bits) from the
10316 highest-order bit of the "containing object" to the highest-order bit of
10317 the bit-field itself. Since the "high-order end" of any object or field
10318 is different on big-endian and little-endian machines, the computation
10319 below must take account of these differences. */
10320 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
10321 highest_order_field_bit_offset = bitpos_int;
10322
10323 if (! BYTES_BIG_ENDIAN)
10324 {
10325 highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
10326 highest_order_object_bit_offset += simple_type_size_in_bits (type);
10327 }
10328
10329 bit_offset
10330 = (! BYTES_BIG_ENDIAN
10331 ? highest_order_object_bit_offset - highest_order_field_bit_offset
10332 : highest_order_field_bit_offset - highest_order_object_bit_offset);
10333
10334 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
10335 }
10336
10337 /* For a FIELD_DECL node which represents a bit field, output an attribute
10338 which specifies the length in bits of the given field. */
10339
10340 static inline void
10341 add_bit_size_attribute (dw_die_ref die, tree decl)
10342 {
10343 /* Must be a field and a bit field. */
10344 if (TREE_CODE (decl) != FIELD_DECL
10345 || ! DECL_BIT_FIELD_TYPE (decl))
10346 abort ();
10347
10348 if (host_integerp (DECL_SIZE (decl), 1))
10349 add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
10350 }
10351
10352 /* If the compiled language is ANSI C, then add a 'prototyped'
10353 attribute, if arg types are given for the parameters of a function. */
10354
10355 static inline void
10356 add_prototyped_attribute (dw_die_ref die, tree func_type)
10357 {
10358 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
10359 && TYPE_ARG_TYPES (func_type) != NULL)
10360 add_AT_flag (die, DW_AT_prototyped, 1);
10361 }
10362
10363 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
10364 by looking in either the type declaration or object declaration
10365 equate table. */
10366
10367 static inline void
10368 add_abstract_origin_attribute (dw_die_ref die, tree origin)
10369 {
10370 dw_die_ref origin_die = NULL;
10371
10372 if (TREE_CODE (origin) != FUNCTION_DECL)
10373 {
10374 /* We may have gotten separated from the block for the inlined
10375 function, if we're in an exception handler or some such; make
10376 sure that the abstract function has been written out.
10377
10378 Doing this for nested functions is wrong, however; functions are
10379 distinct units, and our context might not even be inline. */
10380 tree fn = origin;
10381
10382 if (TYPE_P (fn))
10383 fn = TYPE_STUB_DECL (fn);
10384
10385 fn = decl_function_context (fn);
10386 if (fn)
10387 dwarf2out_abstract_function (fn);
10388 }
10389
10390 if (DECL_P (origin))
10391 origin_die = lookup_decl_die (origin);
10392 else if (TYPE_P (origin))
10393 origin_die = lookup_type_die (origin);
10394
10395 if (origin_die == NULL)
10396 abort ();
10397
10398 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
10399 }
10400
10401 /* We do not currently support the pure_virtual attribute. */
10402
10403 static inline void
10404 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
10405 {
10406 if (DECL_VINDEX (func_decl))
10407 {
10408 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
10409
10410 if (host_integerp (DECL_VINDEX (func_decl), 0))
10411 add_AT_loc (die, DW_AT_vtable_elem_location,
10412 new_loc_descr (DW_OP_constu,
10413 tree_low_cst (DECL_VINDEX (func_decl), 0),
10414 0));
10415
10416 /* GNU extension: Record what type this method came from originally. */
10417 if (debug_info_level > DINFO_LEVEL_TERSE)
10418 add_AT_die_ref (die, DW_AT_containing_type,
10419 lookup_type_die (DECL_CONTEXT (func_decl)));
10420 }
10421 }
10422 \f
10423 /* Add source coordinate attributes for the given decl. */
10424
10425 static void
10426 add_src_coords_attributes (dw_die_ref die, tree decl)
10427 {
10428 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10429
10430 add_AT_unsigned (die, DW_AT_decl_file, file_index);
10431 add_AT_unsigned (die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
10432 }
10433
10434 /* Add a DW_AT_name attribute and source coordinate attribute for the
10435 given decl, but only if it actually has a name. */
10436
10437 static void
10438 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
10439 {
10440 tree decl_name;
10441
10442 decl_name = DECL_NAME (decl);
10443 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
10444 {
10445 add_name_attribute (die, dwarf2_name (decl, 0));
10446 if (! DECL_ARTIFICIAL (decl))
10447 add_src_coords_attributes (die, decl);
10448
10449 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
10450 && TREE_PUBLIC (decl)
10451 && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
10452 && !DECL_ABSTRACT (decl))
10453 add_AT_string (die, DW_AT_MIPS_linkage_name,
10454 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
10455 }
10456
10457 #ifdef VMS_DEBUGGING_INFO
10458 /* Get the function's name, as described by its RTL. This may be different
10459 from the DECL_NAME name used in the source file. */
10460 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
10461 {
10462 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
10463 XEXP (DECL_RTL (decl), 0));
10464 VARRAY_PUSH_RTX (used_rtx_varray, XEXP (DECL_RTL (decl), 0));
10465 }
10466 #endif
10467 }
10468
10469 /* Push a new declaration scope. */
10470
10471 static void
10472 push_decl_scope (tree scope)
10473 {
10474 VARRAY_PUSH_TREE (decl_scope_table, scope);
10475 }
10476
10477 /* Pop a declaration scope. */
10478
10479 static inline void
10480 pop_decl_scope (void)
10481 {
10482 if (VARRAY_ACTIVE_SIZE (decl_scope_table) <= 0)
10483 abort ();
10484
10485 VARRAY_POP (decl_scope_table);
10486 }
10487
10488 /* Return the DIE for the scope that immediately contains this type.
10489 Non-named types get global scope. Named types nested in other
10490 types get their containing scope if it's open, or global scope
10491 otherwise. All other types (i.e. function-local named types) get
10492 the current active scope. */
10493
10494 static dw_die_ref
10495 scope_die_for (tree t, dw_die_ref context_die)
10496 {
10497 dw_die_ref scope_die = NULL;
10498 tree containing_scope;
10499 int i;
10500
10501 /* Non-types always go in the current scope. */
10502 if (! TYPE_P (t))
10503 abort ();
10504
10505 containing_scope = TYPE_CONTEXT (t);
10506
10507 /* Use the containing namespace if it was passed in (for a declaration). */
10508 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
10509 {
10510 if (context_die == lookup_decl_die (containing_scope))
10511 /* OK */;
10512 else
10513 containing_scope = NULL_TREE;
10514 }
10515
10516 /* Ignore function type "scopes" from the C frontend. They mean that
10517 a tagged type is local to a parmlist of a function declarator, but
10518 that isn't useful to DWARF. */
10519 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
10520 containing_scope = NULL_TREE;
10521
10522 if (containing_scope == NULL_TREE)
10523 scope_die = comp_unit_die;
10524 else if (TYPE_P (containing_scope))
10525 {
10526 /* For types, we can just look up the appropriate DIE. But
10527 first we check to see if we're in the middle of emitting it
10528 so we know where the new DIE should go. */
10529 for (i = VARRAY_ACTIVE_SIZE (decl_scope_table) - 1; i >= 0; --i)
10530 if (VARRAY_TREE (decl_scope_table, i) == containing_scope)
10531 break;
10532
10533 if (i < 0)
10534 {
10535 if (debug_info_level > DINFO_LEVEL_TERSE
10536 && !TREE_ASM_WRITTEN (containing_scope))
10537 abort ();
10538
10539 /* If none of the current dies are suitable, we get file scope. */
10540 scope_die = comp_unit_die;
10541 }
10542 else
10543 scope_die = lookup_type_die (containing_scope);
10544 }
10545 else
10546 scope_die = context_die;
10547
10548 return scope_die;
10549 }
10550
10551 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
10552
10553 static inline int
10554 local_scope_p (dw_die_ref context_die)
10555 {
10556 for (; context_die; context_die = context_die->die_parent)
10557 if (context_die->die_tag == DW_TAG_inlined_subroutine
10558 || context_die->die_tag == DW_TAG_subprogram)
10559 return 1;
10560
10561 return 0;
10562 }
10563
10564 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10565 whether or not to treat a DIE in this context as a declaration. */
10566
10567 static inline int
10568 class_or_namespace_scope_p (dw_die_ref context_die)
10569 {
10570 return (context_die
10571 && (context_die->die_tag == DW_TAG_structure_type
10572 || context_die->die_tag == DW_TAG_union_type
10573 || context_die->die_tag == DW_TAG_namespace));
10574 }
10575
10576 /* Many forms of DIEs require a "type description" attribute. This
10577 routine locates the proper "type descriptor" die for the type given
10578 by 'type', and adds a DW_AT_type attribute below the given die. */
10579
10580 static void
10581 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
10582 int decl_volatile, dw_die_ref context_die)
10583 {
10584 enum tree_code code = TREE_CODE (type);
10585 dw_die_ref type_die = NULL;
10586
10587 /* ??? If this type is an unnamed subrange type of an integral or
10588 floating-point type, use the inner type. This is because we have no
10589 support for unnamed types in base_type_die. This can happen if this is
10590 an Ada subrange type. Correct solution is emit a subrange type die. */
10591 if ((code == INTEGER_TYPE || code == REAL_TYPE)
10592 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
10593 type = TREE_TYPE (type), code = TREE_CODE (type);
10594
10595 if (code == ERROR_MARK
10596 /* Handle a special case. For functions whose return type is void, we
10597 generate *no* type attribute. (Note that no object may have type
10598 `void', so this only applies to function return types). */
10599 || code == VOID_TYPE)
10600 return;
10601
10602 type_die = modified_type_die (type,
10603 decl_const || TYPE_READONLY (type),
10604 decl_volatile || TYPE_VOLATILE (type),
10605 context_die);
10606
10607 if (type_die != NULL)
10608 add_AT_die_ref (object_die, DW_AT_type, type_die);
10609 }
10610
10611 /* Given a tree pointer to a struct, class, union, or enum type node, return
10612 a pointer to the (string) tag name for the given type, or zero if the type
10613 was declared without a tag. */
10614
10615 static const char *
10616 type_tag (tree type)
10617 {
10618 const char *name = 0;
10619
10620 if (TYPE_NAME (type) != 0)
10621 {
10622 tree t = 0;
10623
10624 /* Find the IDENTIFIER_NODE for the type name. */
10625 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
10626 t = TYPE_NAME (type);
10627
10628 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
10629 a TYPE_DECL node, regardless of whether or not a `typedef' was
10630 involved. */
10631 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10632 && ! DECL_IGNORED_P (TYPE_NAME (type)))
10633 t = DECL_NAME (TYPE_NAME (type));
10634
10635 /* Now get the name as a string, or invent one. */
10636 if (t != 0)
10637 name = IDENTIFIER_POINTER (t);
10638 }
10639
10640 return (name == 0 || *name == '\0') ? 0 : name;
10641 }
10642
10643 /* Return the type associated with a data member, make a special check
10644 for bit field types. */
10645
10646 static inline tree
10647 member_declared_type (tree member)
10648 {
10649 return (DECL_BIT_FIELD_TYPE (member)
10650 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
10651 }
10652
10653 /* Get the decl's label, as described by its RTL. This may be different
10654 from the DECL_NAME name used in the source file. */
10655
10656 #if 0
10657 static const char *
10658 decl_start_label (tree decl)
10659 {
10660 rtx x;
10661 const char *fnname;
10662
10663 x = DECL_RTL (decl);
10664 if (GET_CODE (x) != MEM)
10665 abort ();
10666
10667 x = XEXP (x, 0);
10668 if (GET_CODE (x) != SYMBOL_REF)
10669 abort ();
10670
10671 fnname = XSTR (x, 0);
10672 return fnname;
10673 }
10674 #endif
10675 \f
10676 /* These routines generate the internal representation of the DIE's for
10677 the compilation unit. Debugging information is collected by walking
10678 the declaration trees passed in from dwarf2out_decl(). */
10679
10680 static void
10681 gen_array_type_die (tree type, dw_die_ref context_die)
10682 {
10683 dw_die_ref scope_die = scope_die_for (type, context_die);
10684 dw_die_ref array_die;
10685 tree element_type;
10686
10687 /* ??? The SGI dwarf reader fails for array of array of enum types unless
10688 the inner array type comes before the outer array type. Thus we must
10689 call gen_type_die before we call new_die. See below also. */
10690 #ifdef MIPS_DEBUGGING_INFO
10691 gen_type_die (TREE_TYPE (type), context_die);
10692 #endif
10693
10694 array_die = new_die (DW_TAG_array_type, scope_die, type);
10695 add_name_attribute (array_die, type_tag (type));
10696 equate_type_number_to_die (type, array_die);
10697
10698 if (TREE_CODE (type) == VECTOR_TYPE)
10699 {
10700 /* The frontend feeds us a representation for the vector as a struct
10701 containing an array. Pull out the array type. */
10702 type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
10703 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
10704 }
10705
10706 #if 0
10707 /* We default the array ordering. SDB will probably do
10708 the right things even if DW_AT_ordering is not present. It's not even
10709 an issue until we start to get into multidimensional arrays anyway. If
10710 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
10711 then we'll have to put the DW_AT_ordering attribute back in. (But if
10712 and when we find out that we need to put these in, we will only do so
10713 for multidimensional arrays. */
10714 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
10715 #endif
10716
10717 #ifdef MIPS_DEBUGGING_INFO
10718 /* The SGI compilers handle arrays of unknown bound by setting
10719 AT_declaration and not emitting any subrange DIEs. */
10720 if (! TYPE_DOMAIN (type))
10721 add_AT_flag (array_die, DW_AT_declaration, 1);
10722 else
10723 #endif
10724 add_subscript_info (array_die, type);
10725
10726 /* Add representation of the type of the elements of this array type. */
10727 element_type = TREE_TYPE (type);
10728
10729 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10730 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10731 We work around this by disabling this feature. See also
10732 add_subscript_info. */
10733 #ifndef MIPS_DEBUGGING_INFO
10734 while (TREE_CODE (element_type) == ARRAY_TYPE)
10735 element_type = TREE_TYPE (element_type);
10736
10737 gen_type_die (element_type, context_die);
10738 #endif
10739
10740 add_type_attribute (array_die, element_type, 0, 0, context_die);
10741 }
10742
10743 static void
10744 gen_set_type_die (tree type, dw_die_ref context_die)
10745 {
10746 dw_die_ref type_die
10747 = new_die (DW_TAG_set_type, scope_die_for (type, context_die), type);
10748
10749 equate_type_number_to_die (type, type_die);
10750 add_type_attribute (type_die, TREE_TYPE (type), 0, 0, context_die);
10751 }
10752
10753 #if 0
10754 static void
10755 gen_entry_point_die (tree decl, dw_die_ref context_die)
10756 {
10757 tree origin = decl_ultimate_origin (decl);
10758 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
10759
10760 if (origin != NULL)
10761 add_abstract_origin_attribute (decl_die, origin);
10762 else
10763 {
10764 add_name_and_src_coords_attributes (decl_die, decl);
10765 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
10766 0, 0, context_die);
10767 }
10768
10769 if (DECL_ABSTRACT (decl))
10770 equate_decl_number_to_die (decl, decl_die);
10771 else
10772 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
10773 }
10774 #endif
10775
10776 /* Walk through the list of incomplete types again, trying once more to
10777 emit full debugging info for them. */
10778
10779 static void
10780 retry_incomplete_types (void)
10781 {
10782 int i;
10783
10784 for (i = VARRAY_ACTIVE_SIZE (incomplete_types) - 1; i >= 0; i--)
10785 gen_type_die (VARRAY_TREE (incomplete_types, i), comp_unit_die);
10786 }
10787
10788 /* Generate a DIE to represent an inlined instance of an enumeration type. */
10789
10790 static void
10791 gen_inlined_enumeration_type_die (tree type, dw_die_ref context_die)
10792 {
10793 dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die, type);
10794
10795 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10796 be incomplete and such types are not marked. */
10797 add_abstract_origin_attribute (type_die, type);
10798 }
10799
10800 /* Generate a DIE to represent an inlined instance of a structure type. */
10801
10802 static void
10803 gen_inlined_structure_type_die (tree type, dw_die_ref context_die)
10804 {
10805 dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die, type);
10806
10807 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10808 be incomplete and such types are not marked. */
10809 add_abstract_origin_attribute (type_die, type);
10810 }
10811
10812 /* Generate a DIE to represent an inlined instance of a union type. */
10813
10814 static void
10815 gen_inlined_union_type_die (tree type, dw_die_ref context_die)
10816 {
10817 dw_die_ref type_die = new_die (DW_TAG_union_type, context_die, type);
10818
10819 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10820 be incomplete and such types are not marked. */
10821 add_abstract_origin_attribute (type_die, type);
10822 }
10823
10824 /* Generate a DIE to represent an enumeration type. Note that these DIEs
10825 include all of the information about the enumeration values also. Each
10826 enumerated type name/value is listed as a child of the enumerated type
10827 DIE. */
10828
10829 static dw_die_ref
10830 gen_enumeration_type_die (tree type, dw_die_ref context_die)
10831 {
10832 dw_die_ref type_die = lookup_type_die (type);
10833
10834 if (type_die == NULL)
10835 {
10836 type_die = new_die (DW_TAG_enumeration_type,
10837 scope_die_for (type, context_die), type);
10838 equate_type_number_to_die (type, type_die);
10839 add_name_attribute (type_die, type_tag (type));
10840 }
10841 else if (! TYPE_SIZE (type))
10842 return type_die;
10843 else
10844 remove_AT (type_die, DW_AT_declaration);
10845
10846 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
10847 given enum type is incomplete, do not generate the DW_AT_byte_size
10848 attribute or the DW_AT_element_list attribute. */
10849 if (TYPE_SIZE (type))
10850 {
10851 tree link;
10852
10853 TREE_ASM_WRITTEN (type) = 1;
10854 add_byte_size_attribute (type_die, type);
10855 if (TYPE_STUB_DECL (type) != NULL_TREE)
10856 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
10857
10858 /* If the first reference to this type was as the return type of an
10859 inline function, then it may not have a parent. Fix this now. */
10860 if (type_die->die_parent == NULL)
10861 add_child_die (scope_die_for (type, context_die), type_die);
10862
10863 for (link = TYPE_FIELDS (type);
10864 link != NULL; link = TREE_CHAIN (link))
10865 {
10866 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
10867 tree value = TREE_VALUE (link);
10868
10869 add_name_attribute (enum_die,
10870 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
10871
10872 if (host_integerp (value, TREE_UNSIGNED (TREE_TYPE (value))))
10873 /* DWARF2 does not provide a way of indicating whether or
10874 not enumeration constants are signed or unsigned. GDB
10875 always assumes the values are signed, so we output all
10876 values as if they were signed. That means that
10877 enumeration constants with very large unsigned values
10878 will appear to have negative values in the debugger. */
10879 add_AT_int (enum_die, DW_AT_const_value,
10880 tree_low_cst (value, tree_int_cst_sgn (value) > 0));
10881 }
10882 }
10883 else
10884 add_AT_flag (type_die, DW_AT_declaration, 1);
10885
10886 return type_die;
10887 }
10888
10889 /* Generate a DIE to represent either a real live formal parameter decl or to
10890 represent just the type of some formal parameter position in some function
10891 type.
10892
10893 Note that this routine is a bit unusual because its argument may be a
10894 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
10895 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
10896 node. If it's the former then this function is being called to output a
10897 DIE to represent a formal parameter object (or some inlining thereof). If
10898 it's the latter, then this function is only being called to output a
10899 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
10900 argument type of some subprogram type. */
10901
10902 static dw_die_ref
10903 gen_formal_parameter_die (tree node, dw_die_ref context_die)
10904 {
10905 dw_die_ref parm_die
10906 = new_die (DW_TAG_formal_parameter, context_die, node);
10907 tree origin;
10908
10909 switch (TREE_CODE_CLASS (TREE_CODE (node)))
10910 {
10911 case 'd':
10912 origin = decl_ultimate_origin (node);
10913 if (origin != NULL)
10914 add_abstract_origin_attribute (parm_die, origin);
10915 else
10916 {
10917 add_name_and_src_coords_attributes (parm_die, node);
10918 add_type_attribute (parm_die, TREE_TYPE (node),
10919 TREE_READONLY (node),
10920 TREE_THIS_VOLATILE (node),
10921 context_die);
10922 if (DECL_ARTIFICIAL (node))
10923 add_AT_flag (parm_die, DW_AT_artificial, 1);
10924 }
10925
10926 equate_decl_number_to_die (node, parm_die);
10927 if (! DECL_ABSTRACT (node))
10928 add_location_or_const_value_attribute (parm_die, node, DW_AT_location);
10929
10930 break;
10931
10932 case 't':
10933 /* We were called with some kind of a ..._TYPE node. */
10934 add_type_attribute (parm_die, node, 0, 0, context_die);
10935 break;
10936
10937 default:
10938 abort ();
10939 }
10940
10941 return parm_die;
10942 }
10943
10944 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
10945 at the end of an (ANSI prototyped) formal parameters list. */
10946
10947 static void
10948 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
10949 {
10950 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
10951 }
10952
10953 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
10954 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
10955 parameters as specified in some function type specification (except for
10956 those which appear as part of a function *definition*). */
10957
10958 static void
10959 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
10960 {
10961 tree link;
10962 tree formal_type = NULL;
10963 tree first_parm_type;
10964 tree arg;
10965
10966 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
10967 {
10968 arg = DECL_ARGUMENTS (function_or_method_type);
10969 function_or_method_type = TREE_TYPE (function_or_method_type);
10970 }
10971 else
10972 arg = NULL_TREE;
10973
10974 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
10975
10976 /* Make our first pass over the list of formal parameter types and output a
10977 DW_TAG_formal_parameter DIE for each one. */
10978 for (link = first_parm_type; link; )
10979 {
10980 dw_die_ref parm_die;
10981
10982 formal_type = TREE_VALUE (link);
10983 if (formal_type == void_type_node)
10984 break;
10985
10986 /* Output a (nameless) DIE to represent the formal parameter itself. */
10987 parm_die = gen_formal_parameter_die (formal_type, context_die);
10988 if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
10989 && link == first_parm_type)
10990 || (arg && DECL_ARTIFICIAL (arg)))
10991 add_AT_flag (parm_die, DW_AT_artificial, 1);
10992
10993 link = TREE_CHAIN (link);
10994 if (arg)
10995 arg = TREE_CHAIN (arg);
10996 }
10997
10998 /* If this function type has an ellipsis, add a
10999 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
11000 if (formal_type != void_type_node)
11001 gen_unspecified_parameters_die (function_or_method_type, context_die);
11002
11003 /* Make our second (and final) pass over the list of formal parameter types
11004 and output DIEs to represent those types (as necessary). */
11005 for (link = TYPE_ARG_TYPES (function_or_method_type);
11006 link && TREE_VALUE (link);
11007 link = TREE_CHAIN (link))
11008 gen_type_die (TREE_VALUE (link), context_die);
11009 }
11010
11011 /* We want to generate the DIE for TYPE so that we can generate the
11012 die for MEMBER, which has been defined; we will need to refer back
11013 to the member declaration nested within TYPE. If we're trying to
11014 generate minimal debug info for TYPE, processing TYPE won't do the
11015 trick; we need to attach the member declaration by hand. */
11016
11017 static void
11018 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
11019 {
11020 gen_type_die (type, context_die);
11021
11022 /* If we're trying to avoid duplicate debug info, we may not have
11023 emitted the member decl for this function. Emit it now. */
11024 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
11025 && ! lookup_decl_die (member))
11026 {
11027 if (decl_ultimate_origin (member))
11028 abort ();
11029
11030 push_decl_scope (type);
11031 if (TREE_CODE (member) == FUNCTION_DECL)
11032 gen_subprogram_die (member, lookup_type_die (type));
11033 else
11034 gen_variable_die (member, lookup_type_die (type));
11035
11036 pop_decl_scope ();
11037 }
11038 }
11039
11040 /* Generate the DWARF2 info for the "abstract" instance of a function which we
11041 may later generate inlined and/or out-of-line instances of. */
11042
11043 static void
11044 dwarf2out_abstract_function (tree decl)
11045 {
11046 dw_die_ref old_die;
11047 tree save_fn;
11048 tree context;
11049 int was_abstract = DECL_ABSTRACT (decl);
11050
11051 /* Make sure we have the actual abstract inline, not a clone. */
11052 decl = DECL_ORIGIN (decl);
11053
11054 old_die = lookup_decl_die (decl);
11055 if (old_die && get_AT (old_die, DW_AT_inline))
11056 /* We've already generated the abstract instance. */
11057 return;
11058
11059 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
11060 we don't get confused by DECL_ABSTRACT. */
11061 if (debug_info_level > DINFO_LEVEL_TERSE)
11062 {
11063 context = decl_class_context (decl);
11064 if (context)
11065 gen_type_die_for_member
11066 (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
11067 }
11068
11069 /* Pretend we've just finished compiling this function. */
11070 save_fn = current_function_decl;
11071 current_function_decl = decl;
11072
11073 set_decl_abstract_flags (decl, 1);
11074 dwarf2out_decl (decl);
11075 if (! was_abstract)
11076 set_decl_abstract_flags (decl, 0);
11077
11078 current_function_decl = save_fn;
11079 }
11080
11081 /* Generate a DIE to represent a declared function (either file-scope or
11082 block-local). */
11083
11084 static void
11085 gen_subprogram_die (tree decl, dw_die_ref context_die)
11086 {
11087 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
11088 tree origin = decl_ultimate_origin (decl);
11089 dw_die_ref subr_die;
11090 rtx fp_reg;
11091 tree fn_arg_types;
11092 tree outer_scope;
11093 dw_die_ref old_die = lookup_decl_die (decl);
11094 int declaration = (current_function_decl != decl
11095 || class_or_namespace_scope_p (context_die));
11096
11097 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
11098 started to generate the abstract instance of an inline, decided to output
11099 its containing class, and proceeded to emit the declaration of the inline
11100 from the member list for the class. If so, DECLARATION takes priority;
11101 we'll get back to the abstract instance when done with the class. */
11102
11103 /* The class-scope declaration DIE must be the primary DIE. */
11104 if (origin && declaration && class_or_namespace_scope_p (context_die))
11105 {
11106 origin = NULL;
11107 if (old_die)
11108 abort ();
11109 }
11110
11111 if (origin != NULL)
11112 {
11113 if (declaration && ! local_scope_p (context_die))
11114 abort ();
11115
11116 /* Fixup die_parent for the abstract instance of a nested
11117 inline function. */
11118 if (old_die && old_die->die_parent == NULL)
11119 add_child_die (context_die, old_die);
11120
11121 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11122 add_abstract_origin_attribute (subr_die, origin);
11123 }
11124 else if (old_die)
11125 {
11126 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
11127
11128 if (!get_AT_flag (old_die, DW_AT_declaration)
11129 /* We can have a normal definition following an inline one in the
11130 case of redefinition of GNU C extern inlines.
11131 It seems reasonable to use AT_specification in this case. */
11132 && !get_AT (old_die, DW_AT_inline))
11133 {
11134 /* ??? This can happen if there is a bug in the program, for
11135 instance, if it has duplicate function definitions. Ideally,
11136 we should detect this case and ignore it. For now, if we have
11137 already reported an error, any error at all, then assume that
11138 we got here because of an input error, not a dwarf2 bug. */
11139 if (errorcount)
11140 return;
11141 abort ();
11142 }
11143
11144 /* If the definition comes from the same place as the declaration,
11145 maybe use the old DIE. We always want the DIE for this function
11146 that has the *_pc attributes to be under comp_unit_die so the
11147 debugger can find it. We also need to do this for abstract
11148 instances of inlines, since the spec requires the out-of-line copy
11149 to have the same parent. For local class methods, this doesn't
11150 apply; we just use the old DIE. */
11151 if ((old_die->die_parent == comp_unit_die || context_die == NULL)
11152 && (DECL_ARTIFICIAL (decl)
11153 || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
11154 && (get_AT_unsigned (old_die, DW_AT_decl_line)
11155 == (unsigned) DECL_SOURCE_LINE (decl)))))
11156 {
11157 subr_die = old_die;
11158
11159 /* Clear out the declaration attribute and the formal parameters.
11160 Do not remove all children, because it is possible that this
11161 declaration die was forced using force_decl_die(). In such
11162 cases die that forced declaration die (e.g. TAG_imported_module)
11163 is one of the children that we do not want to remove. */
11164 remove_AT (subr_die, DW_AT_declaration);
11165 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
11166 }
11167 else
11168 {
11169 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11170 add_AT_specification (subr_die, old_die);
11171 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11172 add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
11173 if (get_AT_unsigned (old_die, DW_AT_decl_line)
11174 != (unsigned) DECL_SOURCE_LINE (decl))
11175 add_AT_unsigned
11176 (subr_die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
11177 }
11178 }
11179 else
11180 {
11181 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11182
11183 if (TREE_PUBLIC (decl))
11184 add_AT_flag (subr_die, DW_AT_external, 1);
11185
11186 add_name_and_src_coords_attributes (subr_die, decl);
11187 if (debug_info_level > DINFO_LEVEL_TERSE)
11188 {
11189 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
11190 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
11191 0, 0, context_die);
11192 }
11193
11194 add_pure_or_virtual_attribute (subr_die, decl);
11195 if (DECL_ARTIFICIAL (decl))
11196 add_AT_flag (subr_die, DW_AT_artificial, 1);
11197
11198 if (TREE_PROTECTED (decl))
11199 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
11200 else if (TREE_PRIVATE (decl))
11201 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
11202 }
11203
11204 if (declaration)
11205 {
11206 if (!old_die || !get_AT (old_die, DW_AT_inline))
11207 {
11208 add_AT_flag (subr_die, DW_AT_declaration, 1);
11209
11210 /* The first time we see a member function, it is in the context of
11211 the class to which it belongs. We make sure of this by emitting
11212 the class first. The next time is the definition, which is
11213 handled above. The two may come from the same source text.
11214
11215 Note that force_decl_die() forces function declaration die. It is
11216 later reused to represent definition. */
11217 equate_decl_number_to_die (decl, subr_die);
11218 }
11219 }
11220 else if (DECL_ABSTRACT (decl))
11221 {
11222 if (DECL_DECLARED_INLINE_P (decl))
11223 {
11224 if (cgraph_function_possibly_inlined_p (decl))
11225 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
11226 else
11227 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
11228 }
11229 else
11230 {
11231 if (cgraph_function_possibly_inlined_p (decl))
11232 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
11233 else
11234 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
11235 }
11236
11237 equate_decl_number_to_die (decl, subr_die);
11238 }
11239 else if (!DECL_EXTERNAL (decl))
11240 {
11241 if (!old_die || !get_AT (old_die, DW_AT_inline))
11242 equate_decl_number_to_die (decl, subr_die);
11243
11244 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
11245 current_function_funcdef_no);
11246 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
11247 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
11248 current_function_funcdef_no);
11249 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
11250
11251 add_pubname (decl, subr_die);
11252 add_arange (decl, subr_die);
11253
11254 #ifdef MIPS_DEBUGGING_INFO
11255 /* Add a reference to the FDE for this routine. */
11256 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
11257 #endif
11258
11259 /* Define the "frame base" location for this routine. We use the
11260 frame pointer or stack pointer registers, since the RTL for local
11261 variables is relative to one of them. */
11262 if (frame_base_decl && lookup_decl_loc (frame_base_decl) != NULL)
11263 {
11264 add_location_or_const_value_attribute (subr_die, frame_base_decl,
11265 DW_AT_frame_base);
11266 }
11267 else
11268 {
11269 fp_reg
11270 = frame_pointer_needed ? hard_frame_pointer_rtx : stack_pointer_rtx;
11271 add_AT_loc (subr_die, DW_AT_frame_base, reg_loc_descriptor (fp_reg));
11272 }
11273
11274 #if 0
11275 /* ??? This fails for nested inline functions, because context_display
11276 is not part of the state saved/restored for inline functions. */
11277 if (current_function_needs_context)
11278 add_AT_location_description (subr_die, DW_AT_static_link,
11279 loc_descriptor (lookup_static_chain (decl)));
11280 #endif
11281 }
11282
11283 /* Now output descriptions of the arguments for this function. This gets
11284 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
11285 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
11286 `...' at the end of the formal parameter list. In order to find out if
11287 there was a trailing ellipsis or not, we must instead look at the type
11288 associated with the FUNCTION_DECL. This will be a node of type
11289 FUNCTION_TYPE. If the chain of type nodes hanging off of this
11290 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
11291 an ellipsis at the end. */
11292
11293 /* In the case where we are describing a mere function declaration, all we
11294 need to do here (and all we *can* do here) is to describe the *types* of
11295 its formal parameters. */
11296 if (debug_info_level <= DINFO_LEVEL_TERSE)
11297 ;
11298 else if (declaration)
11299 gen_formal_types_die (decl, subr_die);
11300 else
11301 {
11302 /* Generate DIEs to represent all known formal parameters. */
11303 tree arg_decls = DECL_ARGUMENTS (decl);
11304 tree parm;
11305
11306 /* When generating DIEs, generate the unspecified_parameters DIE
11307 instead if we come across the arg "__builtin_va_alist" */
11308 for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
11309 if (TREE_CODE (parm) == PARM_DECL)
11310 {
11311 if (DECL_NAME (parm)
11312 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
11313 "__builtin_va_alist"))
11314 gen_unspecified_parameters_die (parm, subr_die);
11315 else
11316 gen_decl_die (parm, subr_die);
11317 }
11318
11319 /* Decide whether we need an unspecified_parameters DIE at the end.
11320 There are 2 more cases to do this for: 1) the ansi ... declaration -
11321 this is detectable when the end of the arg list is not a
11322 void_type_node 2) an unprototyped function declaration (not a
11323 definition). This just means that we have no info about the
11324 parameters at all. */
11325 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
11326 if (fn_arg_types != NULL)
11327 {
11328 /* This is the prototyped case, check for.... */
11329 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
11330 gen_unspecified_parameters_die (decl, subr_die);
11331 }
11332 else if (DECL_INITIAL (decl) == NULL_TREE)
11333 gen_unspecified_parameters_die (decl, subr_die);
11334 }
11335
11336 /* Output Dwarf info for all of the stuff within the body of the function
11337 (if it has one - it may be just a declaration). */
11338 outer_scope = DECL_INITIAL (decl);
11339
11340 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
11341 a function. This BLOCK actually represents the outermost binding contour
11342 for the function, i.e. the contour in which the function's formal
11343 parameters and labels get declared. Curiously, it appears that the front
11344 end doesn't actually put the PARM_DECL nodes for the current function onto
11345 the BLOCK_VARS list for this outer scope, but are strung off of the
11346 DECL_ARGUMENTS list for the function instead.
11347
11348 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
11349 the LABEL_DECL nodes for the function however, and we output DWARF info
11350 for those in decls_for_scope. Just within the `outer_scope' there will be
11351 a BLOCK node representing the function's outermost pair of curly braces,
11352 and any blocks used for the base and member initializers of a C++
11353 constructor function. */
11354 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
11355 {
11356 current_function_has_inlines = 0;
11357 decls_for_scope (outer_scope, subr_die, 0);
11358
11359 #if 0 && defined (MIPS_DEBUGGING_INFO)
11360 if (current_function_has_inlines)
11361 {
11362 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
11363 if (! comp_unit_has_inlines)
11364 {
11365 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
11366 comp_unit_has_inlines = 1;
11367 }
11368 }
11369 #endif
11370 }
11371 }
11372
11373 /* Generate a DIE to represent a declared data object. */
11374
11375 static void
11376 gen_variable_die (tree decl, dw_die_ref context_die)
11377 {
11378 tree origin = decl_ultimate_origin (decl);
11379 dw_die_ref var_die = new_die (DW_TAG_variable, context_die, decl);
11380
11381 dw_die_ref old_die = lookup_decl_die (decl);
11382 int declaration = (DECL_EXTERNAL (decl)
11383 || class_or_namespace_scope_p (context_die));
11384
11385 if (origin != NULL)
11386 add_abstract_origin_attribute (var_die, origin);
11387
11388 /* Loop unrolling can create multiple blocks that refer to the same
11389 static variable, so we must test for the DW_AT_declaration flag.
11390
11391 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
11392 copy decls and set the DECL_ABSTRACT flag on them instead of
11393 sharing them.
11394
11395 ??? Duplicated blocks have been rewritten to use .debug_ranges. */
11396 else if (old_die && TREE_STATIC (decl)
11397 && get_AT_flag (old_die, DW_AT_declaration) == 1)
11398 {
11399 /* This is a definition of a C++ class level static. */
11400 add_AT_specification (var_die, old_die);
11401 if (DECL_NAME (decl))
11402 {
11403 unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
11404
11405 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11406 add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
11407
11408 if (get_AT_unsigned (old_die, DW_AT_decl_line)
11409 != (unsigned) DECL_SOURCE_LINE (decl))
11410
11411 add_AT_unsigned (var_die, DW_AT_decl_line,
11412 DECL_SOURCE_LINE (decl));
11413 }
11414 }
11415 else
11416 {
11417 add_name_and_src_coords_attributes (var_die, decl);
11418 add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
11419 TREE_THIS_VOLATILE (decl), context_die);
11420
11421 if (TREE_PUBLIC (decl))
11422 add_AT_flag (var_die, DW_AT_external, 1);
11423
11424 if (DECL_ARTIFICIAL (decl))
11425 add_AT_flag (var_die, DW_AT_artificial, 1);
11426
11427 if (TREE_PROTECTED (decl))
11428 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
11429 else if (TREE_PRIVATE (decl))
11430 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
11431 }
11432
11433 if (declaration)
11434 add_AT_flag (var_die, DW_AT_declaration, 1);
11435
11436 if (DECL_ABSTRACT (decl) || declaration)
11437 equate_decl_number_to_die (decl, var_die);
11438
11439 if (! declaration && ! DECL_ABSTRACT (decl))
11440 {
11441 add_location_or_const_value_attribute (var_die, decl, DW_AT_location);
11442 add_pubname (decl, var_die);
11443 }
11444 else
11445 tree_add_const_value_attribute (var_die, decl);
11446 }
11447
11448 /* Generate a DIE to represent a label identifier. */
11449
11450 static void
11451 gen_label_die (tree decl, dw_die_ref context_die)
11452 {
11453 tree origin = decl_ultimate_origin (decl);
11454 dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
11455 rtx insn;
11456 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11457
11458 if (origin != NULL)
11459 add_abstract_origin_attribute (lbl_die, origin);
11460 else
11461 add_name_and_src_coords_attributes (lbl_die, decl);
11462
11463 if (DECL_ABSTRACT (decl))
11464 equate_decl_number_to_die (decl, lbl_die);
11465 else
11466 {
11467 insn = DECL_RTL_IF_SET (decl);
11468
11469 /* Deleted labels are programmer specified labels which have been
11470 eliminated because of various optimizations. We still emit them
11471 here so that it is possible to put breakpoints on them. */
11472 if (insn
11473 && (GET_CODE (insn) == CODE_LABEL
11474 || ((GET_CODE (insn) == NOTE
11475 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))))
11476 {
11477 /* When optimization is enabled (via -O) some parts of the compiler
11478 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11479 represent source-level labels which were explicitly declared by
11480 the user. This really shouldn't be happening though, so catch
11481 it if it ever does happen. */
11482 if (INSN_DELETED_P (insn))
11483 abort ();
11484
11485 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
11486 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
11487 }
11488 }
11489 }
11490
11491 /* Generate a DIE for a lexical block. */
11492
11493 static void
11494 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
11495 {
11496 dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
11497 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11498
11499 if (! BLOCK_ABSTRACT (stmt))
11500 {
11501 if (BLOCK_FRAGMENT_CHAIN (stmt))
11502 {
11503 tree chain;
11504
11505 add_AT_range_list (stmt_die, DW_AT_ranges, add_ranges (stmt));
11506
11507 chain = BLOCK_FRAGMENT_CHAIN (stmt);
11508 do
11509 {
11510 add_ranges (chain);
11511 chain = BLOCK_FRAGMENT_CHAIN (chain);
11512 }
11513 while (chain);
11514 add_ranges (NULL);
11515 }
11516 else
11517 {
11518 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
11519 BLOCK_NUMBER (stmt));
11520 add_AT_lbl_id (stmt_die, DW_AT_low_pc, label);
11521 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
11522 BLOCK_NUMBER (stmt));
11523 add_AT_lbl_id (stmt_die, DW_AT_high_pc, label);
11524 }
11525 }
11526
11527 decls_for_scope (stmt, stmt_die, depth);
11528 }
11529
11530 /* Generate a DIE for an inlined subprogram. */
11531
11532 static void
11533 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
11534 {
11535 tree decl = block_ultimate_origin (stmt);
11536
11537 /* Emit info for the abstract instance first, if we haven't yet. We
11538 must emit this even if the block is abstract, otherwise when we
11539 emit the block below (or elsewhere), we may end up trying to emit
11540 a die whose origin die hasn't been emitted, and crashing. */
11541 dwarf2out_abstract_function (decl);
11542
11543 if (! BLOCK_ABSTRACT (stmt))
11544 {
11545 dw_die_ref subr_die
11546 = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
11547 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11548
11549 add_abstract_origin_attribute (subr_die, decl);
11550 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
11551 BLOCK_NUMBER (stmt));
11552 add_AT_lbl_id (subr_die, DW_AT_low_pc, label);
11553 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
11554 BLOCK_NUMBER (stmt));
11555 add_AT_lbl_id (subr_die, DW_AT_high_pc, label);
11556 decls_for_scope (stmt, subr_die, depth);
11557 current_function_has_inlines = 1;
11558 }
11559 else
11560 /* We may get here if we're the outer block of function A that was
11561 inlined into function B that was inlined into function C. When
11562 generating debugging info for C, dwarf2out_abstract_function(B)
11563 would mark all inlined blocks as abstract, including this one.
11564 So, we wouldn't (and shouldn't) expect labels to be generated
11565 for this one. Instead, just emit debugging info for
11566 declarations within the block. This is particularly important
11567 in the case of initializers of arguments passed from B to us:
11568 if they're statement expressions containing declarations, we
11569 wouldn't generate dies for their abstract variables, and then,
11570 when generating dies for the real variables, we'd die (pun
11571 intended :-) */
11572 gen_lexical_block_die (stmt, context_die, depth);
11573 }
11574
11575 /* Generate a DIE for a field in a record, or structure. */
11576
11577 static void
11578 gen_field_die (tree decl, dw_die_ref context_die)
11579 {
11580 dw_die_ref decl_die;
11581
11582 if (TREE_TYPE (decl) == error_mark_node)
11583 return;
11584
11585 decl_die = new_die (DW_TAG_member, context_die, decl);
11586 add_name_and_src_coords_attributes (decl_die, decl);
11587 add_type_attribute (decl_die, member_declared_type (decl),
11588 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
11589 context_die);
11590
11591 if (DECL_BIT_FIELD_TYPE (decl))
11592 {
11593 add_byte_size_attribute (decl_die, decl);
11594 add_bit_size_attribute (decl_die, decl);
11595 add_bit_offset_attribute (decl_die, decl);
11596 }
11597
11598 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
11599 add_data_member_location_attribute (decl_die, decl);
11600
11601 if (DECL_ARTIFICIAL (decl))
11602 add_AT_flag (decl_die, DW_AT_artificial, 1);
11603
11604 if (TREE_PROTECTED (decl))
11605 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
11606 else if (TREE_PRIVATE (decl))
11607 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
11608 }
11609
11610 #if 0
11611 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
11612 Use modified_type_die instead.
11613 We keep this code here just in case these types of DIEs may be needed to
11614 represent certain things in other languages (e.g. Pascal) someday. */
11615
11616 static void
11617 gen_pointer_type_die (tree type, dw_die_ref context_die)
11618 {
11619 dw_die_ref ptr_die
11620 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
11621
11622 equate_type_number_to_die (type, ptr_die);
11623 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
11624 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
11625 }
11626
11627 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
11628 Use modified_type_die instead.
11629 We keep this code here just in case these types of DIEs may be needed to
11630 represent certain things in other languages (e.g. Pascal) someday. */
11631
11632 static void
11633 gen_reference_type_die (tree type, dw_die_ref context_die)
11634 {
11635 dw_die_ref ref_die
11636 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
11637
11638 equate_type_number_to_die (type, ref_die);
11639 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
11640 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
11641 }
11642 #endif
11643
11644 /* Generate a DIE for a pointer to a member type. */
11645
11646 static void
11647 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
11648 {
11649 dw_die_ref ptr_die
11650 = new_die (DW_TAG_ptr_to_member_type,
11651 scope_die_for (type, context_die), type);
11652
11653 equate_type_number_to_die (type, ptr_die);
11654 add_AT_die_ref (ptr_die, DW_AT_containing_type,
11655 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
11656 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
11657 }
11658
11659 /* Generate the DIE for the compilation unit. */
11660
11661 static dw_die_ref
11662 gen_compile_unit_die (const char *filename)
11663 {
11664 dw_die_ref die;
11665 char producer[250];
11666 const char *language_string = lang_hooks.name;
11667 int language;
11668
11669 die = new_die (DW_TAG_compile_unit, NULL, NULL);
11670
11671 if (filename)
11672 {
11673 add_name_attribute (die, filename);
11674 /* Don't add cwd for <built-in>. */
11675 if (filename[0] != DIR_SEPARATOR && filename[0] != '<')
11676 add_comp_dir_attribute (die);
11677 }
11678
11679 sprintf (producer, "%s %s", language_string, version_string);
11680
11681 #ifdef MIPS_DEBUGGING_INFO
11682 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
11683 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
11684 not appear in the producer string, the debugger reaches the conclusion
11685 that the object file is stripped and has no debugging information.
11686 To get the MIPS/SGI debugger to believe that there is debugging
11687 information in the object file, we add a -g to the producer string. */
11688 if (debug_info_level > DINFO_LEVEL_TERSE)
11689 strcat (producer, " -g");
11690 #endif
11691
11692 add_AT_string (die, DW_AT_producer, producer);
11693
11694 if (strcmp (language_string, "GNU C++") == 0)
11695 language = DW_LANG_C_plus_plus;
11696 else if (strcmp (language_string, "GNU Ada") == 0)
11697 language = DW_LANG_Ada95;
11698 else if (strcmp (language_string, "GNU F77") == 0)
11699 language = DW_LANG_Fortran77;
11700 else if (strcmp (language_string, "GNU Pascal") == 0)
11701 language = DW_LANG_Pascal83;
11702 else if (strcmp (language_string, "GNU Java") == 0)
11703 language = DW_LANG_Java;
11704 else
11705 language = DW_LANG_C89;
11706
11707 add_AT_unsigned (die, DW_AT_language, language);
11708 return die;
11709 }
11710
11711 /* Generate a DIE for a string type. */
11712
11713 static void
11714 gen_string_type_die (tree type, dw_die_ref context_die)
11715 {
11716 dw_die_ref type_die
11717 = new_die (DW_TAG_string_type, scope_die_for (type, context_die), type);
11718
11719 equate_type_number_to_die (type, type_die);
11720
11721 /* ??? Fudge the string length attribute for now.
11722 TODO: add string length info. */
11723 #if 0
11724 string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
11725 bound_representation (upper_bound, 0, 'u');
11726 #endif
11727 }
11728
11729 /* Generate the DIE for a base class. */
11730
11731 static void
11732 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
11733 {
11734 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
11735
11736 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
11737 add_data_member_location_attribute (die, binfo);
11738
11739 if (TREE_VIA_VIRTUAL (binfo))
11740 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
11741
11742 if (access == access_public_node)
11743 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
11744 else if (access == access_protected_node)
11745 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
11746 }
11747
11748 /* Generate a DIE for a class member. */
11749
11750 static void
11751 gen_member_die (tree type, dw_die_ref context_die)
11752 {
11753 tree member;
11754 tree binfo = TYPE_BINFO (type);
11755 dw_die_ref child;
11756
11757 /* If this is not an incomplete type, output descriptions of each of its
11758 members. Note that as we output the DIEs necessary to represent the
11759 members of this record or union type, we will also be trying to output
11760 DIEs to represent the *types* of those members. However the `type'
11761 function (above) will specifically avoid generating type DIEs for member
11762 types *within* the list of member DIEs for this (containing) type except
11763 for those types (of members) which are explicitly marked as also being
11764 members of this (containing) type themselves. The g++ front- end can
11765 force any given type to be treated as a member of some other (containing)
11766 type by setting the TYPE_CONTEXT of the given (member) type to point to
11767 the TREE node representing the appropriate (containing) type. */
11768
11769 /* First output info about the base classes. */
11770 if (binfo && BINFO_BASETYPES (binfo))
11771 {
11772 tree bases = BINFO_BASETYPES (binfo);
11773 tree accesses = BINFO_BASEACCESSES (binfo);
11774 int n_bases = TREE_VEC_LENGTH (bases);
11775 int i;
11776
11777 for (i = 0; i < n_bases; i++)
11778 gen_inheritance_die (TREE_VEC_ELT (bases, i),
11779 (accesses ? TREE_VEC_ELT (accesses, i)
11780 : access_public_node), context_die);
11781 }
11782
11783 /* Now output info about the data members and type members. */
11784 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
11785 {
11786 /* If we thought we were generating minimal debug info for TYPE
11787 and then changed our minds, some of the member declarations
11788 may have already been defined. Don't define them again, but
11789 do put them in the right order. */
11790
11791 child = lookup_decl_die (member);
11792 if (child)
11793 splice_child_die (context_die, child);
11794 else
11795 gen_decl_die (member, context_die);
11796 }
11797
11798 /* Now output info about the function members (if any). */
11799 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
11800 {
11801 /* Don't include clones in the member list. */
11802 if (DECL_ABSTRACT_ORIGIN (member))
11803 continue;
11804
11805 child = lookup_decl_die (member);
11806 if (child)
11807 splice_child_die (context_die, child);
11808 else
11809 gen_decl_die (member, context_die);
11810 }
11811 }
11812
11813 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
11814 is set, we pretend that the type was never defined, so we only get the
11815 member DIEs needed by later specification DIEs. */
11816
11817 static void
11818 gen_struct_or_union_type_die (tree type, dw_die_ref context_die)
11819 {
11820 dw_die_ref type_die = lookup_type_die (type);
11821 dw_die_ref scope_die = 0;
11822 int nested = 0;
11823 int complete = (TYPE_SIZE (type)
11824 && (! TYPE_STUB_DECL (type)
11825 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
11826 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
11827
11828 if (type_die && ! complete)
11829 return;
11830
11831 if (TYPE_CONTEXT (type) != NULL_TREE
11832 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
11833 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
11834 nested = 1;
11835
11836 scope_die = scope_die_for (type, context_die);
11837
11838 if (! type_die || (nested && scope_die == comp_unit_die))
11839 /* First occurrence of type or toplevel definition of nested class. */
11840 {
11841 dw_die_ref old_die = type_die;
11842
11843 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
11844 ? DW_TAG_structure_type : DW_TAG_union_type,
11845 scope_die, type);
11846 equate_type_number_to_die (type, type_die);
11847 if (old_die)
11848 add_AT_specification (type_die, old_die);
11849 else
11850 add_name_attribute (type_die, type_tag (type));
11851 }
11852 else
11853 remove_AT (type_die, DW_AT_declaration);
11854
11855 /* If this type has been completed, then give it a byte_size attribute and
11856 then give a list of members. */
11857 if (complete && !ns_decl)
11858 {
11859 /* Prevent infinite recursion in cases where the type of some member of
11860 this type is expressed in terms of this type itself. */
11861 TREE_ASM_WRITTEN (type) = 1;
11862 add_byte_size_attribute (type_die, type);
11863 if (TYPE_STUB_DECL (type) != NULL_TREE)
11864 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
11865
11866 /* If the first reference to this type was as the return type of an
11867 inline function, then it may not have a parent. Fix this now. */
11868 if (type_die->die_parent == NULL)
11869 add_child_die (scope_die, type_die);
11870
11871 push_decl_scope (type);
11872 gen_member_die (type, type_die);
11873 pop_decl_scope ();
11874
11875 /* GNU extension: Record what type our vtable lives in. */
11876 if (TYPE_VFIELD (type))
11877 {
11878 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
11879
11880 gen_type_die (vtype, context_die);
11881 add_AT_die_ref (type_die, DW_AT_containing_type,
11882 lookup_type_die (vtype));
11883 }
11884 }
11885 else
11886 {
11887 add_AT_flag (type_die, DW_AT_declaration, 1);
11888
11889 /* We don't need to do this for function-local types. */
11890 if (TYPE_STUB_DECL (type)
11891 && ! decl_function_context (TYPE_STUB_DECL (type)))
11892 VARRAY_PUSH_TREE (incomplete_types, type);
11893 }
11894 }
11895
11896 /* Generate a DIE for a subroutine _type_. */
11897
11898 static void
11899 gen_subroutine_type_die (tree type, dw_die_ref context_die)
11900 {
11901 tree return_type = TREE_TYPE (type);
11902 dw_die_ref subr_die
11903 = new_die (DW_TAG_subroutine_type,
11904 scope_die_for (type, context_die), type);
11905
11906 equate_type_number_to_die (type, subr_die);
11907 add_prototyped_attribute (subr_die, type);
11908 add_type_attribute (subr_die, return_type, 0, 0, context_die);
11909 gen_formal_types_die (type, subr_die);
11910 }
11911
11912 /* Generate a DIE for a type definition. */
11913
11914 static void
11915 gen_typedef_die (tree decl, dw_die_ref context_die)
11916 {
11917 dw_die_ref type_die;
11918 tree origin;
11919
11920 if (TREE_ASM_WRITTEN (decl))
11921 return;
11922
11923 TREE_ASM_WRITTEN (decl) = 1;
11924 type_die = new_die (DW_TAG_typedef, context_die, decl);
11925 origin = decl_ultimate_origin (decl);
11926 if (origin != NULL)
11927 add_abstract_origin_attribute (type_die, origin);
11928 else
11929 {
11930 tree type;
11931
11932 add_name_and_src_coords_attributes (type_die, decl);
11933 if (DECL_ORIGINAL_TYPE (decl))
11934 {
11935 type = DECL_ORIGINAL_TYPE (decl);
11936
11937 if (type == TREE_TYPE (decl))
11938 abort ();
11939 else
11940 equate_type_number_to_die (TREE_TYPE (decl), type_die);
11941 }
11942 else
11943 type = TREE_TYPE (decl);
11944
11945 add_type_attribute (type_die, type, TREE_READONLY (decl),
11946 TREE_THIS_VOLATILE (decl), context_die);
11947 }
11948
11949 if (DECL_ABSTRACT (decl))
11950 equate_decl_number_to_die (decl, type_die);
11951 }
11952
11953 /* Generate a type description DIE. */
11954
11955 static void
11956 gen_type_die (tree type, dw_die_ref context_die)
11957 {
11958 int need_pop;
11959
11960 if (type == NULL_TREE || type == error_mark_node)
11961 return;
11962
11963 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11964 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
11965 {
11966 if (TREE_ASM_WRITTEN (type))
11967 return;
11968
11969 /* Prevent broken recursion; we can't hand off to the same type. */
11970 if (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) == type)
11971 abort ();
11972
11973 TREE_ASM_WRITTEN (type) = 1;
11974 gen_decl_die (TYPE_NAME (type), context_die);
11975 return;
11976 }
11977
11978 /* We are going to output a DIE to represent the unqualified version
11979 of this type (i.e. without any const or volatile qualifiers) so
11980 get the main variant (i.e. the unqualified version) of this type
11981 now. (Vectors are special because the debugging info is in the
11982 cloned type itself). */
11983 if (TREE_CODE (type) != VECTOR_TYPE)
11984 type = type_main_variant (type);
11985
11986 if (TREE_ASM_WRITTEN (type))
11987 return;
11988
11989 switch (TREE_CODE (type))
11990 {
11991 case ERROR_MARK:
11992 break;
11993
11994 case POINTER_TYPE:
11995 case REFERENCE_TYPE:
11996 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
11997 ensures that the gen_type_die recursion will terminate even if the
11998 type is recursive. Recursive types are possible in Ada. */
11999 /* ??? We could perhaps do this for all types before the switch
12000 statement. */
12001 TREE_ASM_WRITTEN (type) = 1;
12002
12003 /* For these types, all that is required is that we output a DIE (or a
12004 set of DIEs) to represent the "basis" type. */
12005 gen_type_die (TREE_TYPE (type), context_die);
12006 break;
12007
12008 case OFFSET_TYPE:
12009 /* This code is used for C++ pointer-to-data-member types.
12010 Output a description of the relevant class type. */
12011 gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
12012
12013 /* Output a description of the type of the object pointed to. */
12014 gen_type_die (TREE_TYPE (type), context_die);
12015
12016 /* Now output a DIE to represent this pointer-to-data-member type
12017 itself. */
12018 gen_ptr_to_mbr_type_die (type, context_die);
12019 break;
12020
12021 case SET_TYPE:
12022 gen_type_die (TYPE_DOMAIN (type), context_die);
12023 gen_set_type_die (type, context_die);
12024 break;
12025
12026 case FILE_TYPE:
12027 gen_type_die (TREE_TYPE (type), context_die);
12028 abort (); /* No way to represent these in Dwarf yet! */
12029 break;
12030
12031 case FUNCTION_TYPE:
12032 /* Force out return type (in case it wasn't forced out already). */
12033 gen_type_die (TREE_TYPE (type), context_die);
12034 gen_subroutine_type_die (type, context_die);
12035 break;
12036
12037 case METHOD_TYPE:
12038 /* Force out return type (in case it wasn't forced out already). */
12039 gen_type_die (TREE_TYPE (type), context_die);
12040 gen_subroutine_type_die (type, context_die);
12041 break;
12042
12043 case ARRAY_TYPE:
12044 if (TYPE_STRING_FLAG (type) && TREE_CODE (TREE_TYPE (type)) == CHAR_TYPE)
12045 {
12046 gen_type_die (TREE_TYPE (type), context_die);
12047 gen_string_type_die (type, context_die);
12048 }
12049 else
12050 gen_array_type_die (type, context_die);
12051 break;
12052
12053 case VECTOR_TYPE:
12054 gen_array_type_die (type, context_die);
12055 break;
12056
12057 case ENUMERAL_TYPE:
12058 case RECORD_TYPE:
12059 case UNION_TYPE:
12060 case QUAL_UNION_TYPE:
12061 /* If this is a nested type whose containing class hasn't been written
12062 out yet, writing it out will cover this one, too. This does not apply
12063 to instantiations of member class templates; they need to be added to
12064 the containing class as they are generated. FIXME: This hurts the
12065 idea of combining type decls from multiple TUs, since we can't predict
12066 what set of template instantiations we'll get. */
12067 if (TYPE_CONTEXT (type)
12068 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12069 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
12070 {
12071 gen_type_die (TYPE_CONTEXT (type), context_die);
12072
12073 if (TREE_ASM_WRITTEN (type))
12074 return;
12075
12076 /* If that failed, attach ourselves to the stub. */
12077 push_decl_scope (TYPE_CONTEXT (type));
12078 context_die = lookup_type_die (TYPE_CONTEXT (type));
12079 need_pop = 1;
12080 }
12081 else
12082 {
12083 declare_in_namespace (type, context_die);
12084 need_pop = 0;
12085 }
12086
12087 if (TREE_CODE (type) == ENUMERAL_TYPE)
12088 gen_enumeration_type_die (type, context_die);
12089 else
12090 gen_struct_or_union_type_die (type, context_die);
12091
12092 if (need_pop)
12093 pop_decl_scope ();
12094
12095 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
12096 it up if it is ever completed. gen_*_type_die will set it for us
12097 when appropriate. */
12098 return;
12099
12100 case VOID_TYPE:
12101 case INTEGER_TYPE:
12102 case REAL_TYPE:
12103 case COMPLEX_TYPE:
12104 case BOOLEAN_TYPE:
12105 case CHAR_TYPE:
12106 /* No DIEs needed for fundamental types. */
12107 break;
12108
12109 case LANG_TYPE:
12110 /* No Dwarf representation currently defined. */
12111 break;
12112
12113 default:
12114 abort ();
12115 }
12116
12117 TREE_ASM_WRITTEN (type) = 1;
12118 }
12119
12120 /* Generate a DIE for a tagged type instantiation. */
12121
12122 static void
12123 gen_tagged_type_instantiation_die (tree type, dw_die_ref context_die)
12124 {
12125 if (type == NULL_TREE || type == error_mark_node)
12126 return;
12127
12128 /* We are going to output a DIE to represent the unqualified version of
12129 this type (i.e. without any const or volatile qualifiers) so make sure
12130 that we have the main variant (i.e. the unqualified version) of this
12131 type now. */
12132 if (type != type_main_variant (type))
12133 abort ();
12134
12135 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
12136 an instance of an unresolved type. */
12137
12138 switch (TREE_CODE (type))
12139 {
12140 case ERROR_MARK:
12141 break;
12142
12143 case ENUMERAL_TYPE:
12144 gen_inlined_enumeration_type_die (type, context_die);
12145 break;
12146
12147 case RECORD_TYPE:
12148 gen_inlined_structure_type_die (type, context_die);
12149 break;
12150
12151 case UNION_TYPE:
12152 case QUAL_UNION_TYPE:
12153 gen_inlined_union_type_die (type, context_die);
12154 break;
12155
12156 default:
12157 abort ();
12158 }
12159 }
12160
12161 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
12162 things which are local to the given block. */
12163
12164 static void
12165 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
12166 {
12167 int must_output_die = 0;
12168 tree origin;
12169 tree decl;
12170 enum tree_code origin_code;
12171
12172 /* Ignore blocks never really used to make RTL. */
12173 if (stmt == NULL_TREE || !TREE_USED (stmt)
12174 || (!TREE_ASM_WRITTEN (stmt) && !BLOCK_ABSTRACT (stmt)))
12175 return;
12176
12177 /* If the block is one fragment of a non-contiguous block, do not
12178 process the variables, since they will have been done by the
12179 origin block. Do process subblocks. */
12180 if (BLOCK_FRAGMENT_ORIGIN (stmt))
12181 {
12182 tree sub;
12183
12184 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
12185 gen_block_die (sub, context_die, depth + 1);
12186
12187 return;
12188 }
12189
12190 /* Determine the "ultimate origin" of this block. This block may be an
12191 inlined instance of an inlined instance of inline function, so we have
12192 to trace all of the way back through the origin chain to find out what
12193 sort of node actually served as the original seed for the creation of
12194 the current block. */
12195 origin = block_ultimate_origin (stmt);
12196 origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
12197
12198 /* Determine if we need to output any Dwarf DIEs at all to represent this
12199 block. */
12200 if (origin_code == FUNCTION_DECL)
12201 /* The outer scopes for inlinings *must* always be represented. We
12202 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
12203 must_output_die = 1;
12204 else
12205 {
12206 /* In the case where the current block represents an inlining of the
12207 "body block" of an inline function, we must *NOT* output any DIE for
12208 this block because we have already output a DIE to represent the whole
12209 inlined function scope and the "body block" of any function doesn't
12210 really represent a different scope according to ANSI C rules. So we
12211 check here to make sure that this block does not represent a "body
12212 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
12213 if (! is_body_block (origin ? origin : stmt))
12214 {
12215 /* Determine if this block directly contains any "significant"
12216 local declarations which we will need to output DIEs for. */
12217 if (debug_info_level > DINFO_LEVEL_TERSE)
12218 /* We are not in terse mode so *any* local declaration counts
12219 as being a "significant" one. */
12220 must_output_die = (BLOCK_VARS (stmt) != NULL);
12221 else
12222 /* We are in terse mode, so only local (nested) function
12223 definitions count as "significant" local declarations. */
12224 for (decl = BLOCK_VARS (stmt);
12225 decl != NULL; decl = TREE_CHAIN (decl))
12226 if (TREE_CODE (decl) == FUNCTION_DECL
12227 && DECL_INITIAL (decl))
12228 {
12229 must_output_die = 1;
12230 break;
12231 }
12232 }
12233 }
12234
12235 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
12236 DIE for any block which contains no significant local declarations at
12237 all. Rather, in such cases we just call `decls_for_scope' so that any
12238 needed Dwarf info for any sub-blocks will get properly generated. Note
12239 that in terse mode, our definition of what constitutes a "significant"
12240 local declaration gets restricted to include only inlined function
12241 instances and local (nested) function definitions. */
12242 if (must_output_die)
12243 {
12244 if (origin_code == FUNCTION_DECL)
12245 gen_inlined_subroutine_die (stmt, context_die, depth);
12246 else
12247 gen_lexical_block_die (stmt, context_die, depth);
12248 }
12249 else
12250 decls_for_scope (stmt, context_die, depth);
12251 }
12252
12253 /* Generate all of the decls declared within a given scope and (recursively)
12254 all of its sub-blocks. */
12255
12256 static void
12257 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
12258 {
12259 tree decl;
12260 tree subblocks;
12261
12262 /* Ignore blocks never really used to make RTL. */
12263 if (stmt == NULL_TREE || ! TREE_USED (stmt))
12264 return;
12265
12266 /* Output the DIEs to represent all of the data objects and typedefs
12267 declared directly within this block but not within any nested
12268 sub-blocks. Also, nested function and tag DIEs have been
12269 generated with a parent of NULL; fix that up now. */
12270 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
12271 {
12272 dw_die_ref die;
12273
12274 if (TREE_CODE (decl) == FUNCTION_DECL)
12275 die = lookup_decl_die (decl);
12276 else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
12277 die = lookup_type_die (TREE_TYPE (decl));
12278 else
12279 die = NULL;
12280
12281 if (die != NULL && die->die_parent == NULL)
12282 add_child_die (context_die, die);
12283 else
12284 gen_decl_die (decl, context_die);
12285 }
12286
12287 /* If we're at -g1, we're not interested in subblocks. */
12288 if (debug_info_level <= DINFO_LEVEL_TERSE)
12289 return;
12290
12291 /* Output the DIEs to represent all sub-blocks (and the items declared
12292 therein) of this block. */
12293 for (subblocks = BLOCK_SUBBLOCKS (stmt);
12294 subblocks != NULL;
12295 subblocks = BLOCK_CHAIN (subblocks))
12296 gen_block_die (subblocks, context_die, depth + 1);
12297 }
12298
12299 /* Is this a typedef we can avoid emitting? */
12300
12301 static inline int
12302 is_redundant_typedef (tree decl)
12303 {
12304 if (TYPE_DECL_IS_STUB (decl))
12305 return 1;
12306
12307 if (DECL_ARTIFICIAL (decl)
12308 && DECL_CONTEXT (decl)
12309 && is_tagged_type (DECL_CONTEXT (decl))
12310 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
12311 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
12312 /* Also ignore the artificial member typedef for the class name. */
12313 return 1;
12314
12315 return 0;
12316 }
12317
12318 /* Returns the DIE for decl or aborts. */
12319
12320 static dw_die_ref
12321 force_decl_die (tree decl)
12322 {
12323 dw_die_ref decl_die;
12324 unsigned saved_external_flag;
12325 tree save_fn = NULL_TREE;
12326 decl_die = lookup_decl_die (decl);
12327 if (!decl_die)
12328 {
12329 dw_die_ref context_die;
12330 tree decl_context = DECL_CONTEXT (decl);
12331 if (decl_context)
12332 {
12333 /* Find die that represents this context. */
12334 if (TYPE_P (decl_context))
12335 context_die = force_type_die (decl_context);
12336 else
12337 context_die = force_decl_die (decl_context);
12338 }
12339 else
12340 context_die = comp_unit_die;
12341
12342 switch (TREE_CODE (decl))
12343 {
12344 case FUNCTION_DECL:
12345 /* Clear current_function_decl, so that gen_subprogram_die thinks
12346 that this is a declaration. At this point, we just want to force
12347 declaration die. */
12348 save_fn = current_function_decl;
12349 current_function_decl = NULL_TREE;
12350 gen_subprogram_die (decl, context_die);
12351 current_function_decl = save_fn;
12352 break;
12353
12354 case VAR_DECL:
12355 /* Set external flag to force declaration die. Restore it after
12356 gen_decl_die() call. */
12357 saved_external_flag = DECL_EXTERNAL (decl);
12358 DECL_EXTERNAL (decl) = 1;
12359 gen_decl_die (decl, context_die);
12360 DECL_EXTERNAL (decl) = saved_external_flag;
12361 break;
12362
12363 case NAMESPACE_DECL:
12364 dwarf2out_decl (decl);
12365 break;
12366
12367 default:
12368 abort ();
12369 }
12370
12371 /* See if we can find the die for this deci now.
12372 If not then abort. */
12373 if (!decl_die)
12374 decl_die = lookup_decl_die (decl);
12375 if (!decl_die)
12376 abort ();
12377 }
12378
12379 return decl_die;
12380 }
12381
12382 /* Returns the DIE for decl or aborts. */
12383
12384 static dw_die_ref
12385 force_type_die (tree type)
12386 {
12387 dw_die_ref type_die;
12388
12389 type_die = lookup_type_die (type);
12390 if (!type_die)
12391 {
12392 dw_die_ref context_die;
12393 if (TYPE_CONTEXT (type))
12394 if (TYPE_P (TYPE_CONTEXT (type)))
12395 context_die = force_type_die (TYPE_CONTEXT (type));
12396 else
12397 context_die = force_decl_die (TYPE_CONTEXT (type));
12398 else
12399 context_die = comp_unit_die;
12400
12401 gen_type_die (type, context_die);
12402 type_die = lookup_type_die (type);
12403 if (!type_die)
12404 abort();
12405 }
12406 return type_die;
12407 }
12408
12409 /* Force out any required namespaces to be able to output DECL,
12410 and return the new context_die for it, if it's changed. */
12411
12412 static dw_die_ref
12413 setup_namespace_context (tree thing, dw_die_ref context_die)
12414 {
12415 tree context = DECL_P (thing) ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing);
12416 if (context && TREE_CODE (context) == NAMESPACE_DECL)
12417 /* Force out the namespace. */
12418 context_die = force_decl_die (context);
12419
12420 return context_die;
12421 }
12422
12423 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
12424 type) within its namespace, if appropriate.
12425
12426 For compatibility with older debuggers, namespace DIEs only contain
12427 declarations; all definitions are emitted at CU scope. */
12428
12429 static void
12430 declare_in_namespace (tree thing, dw_die_ref context_die)
12431 {
12432 dw_die_ref ns_context;
12433
12434 if (debug_info_level <= DINFO_LEVEL_TERSE)
12435 return;
12436
12437 ns_context = setup_namespace_context (thing, context_die);
12438
12439 if (ns_context != context_die)
12440 {
12441 if (DECL_P (thing))
12442 gen_decl_die (thing, ns_context);
12443 else
12444 gen_type_die (thing, ns_context);
12445 }
12446 }
12447
12448 /* Generate a DIE for a namespace or namespace alias. */
12449
12450 static void
12451 gen_namespace_die (tree decl)
12452 {
12453 dw_die_ref context_die = setup_namespace_context (decl, comp_unit_die);
12454
12455 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12456 they are an alias of. */
12457 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
12458 {
12459 /* Output a real namespace. */
12460 dw_die_ref namespace_die
12461 = new_die (DW_TAG_namespace, context_die, decl);
12462 add_name_and_src_coords_attributes (namespace_die, decl);
12463 equate_decl_number_to_die (decl, namespace_die);
12464 }
12465 else
12466 {
12467 /* Output a namespace alias. */
12468
12469 /* Force out the namespace we are an alias of, if necessary. */
12470 dw_die_ref origin_die
12471 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
12472
12473 /* Now create the namespace alias DIE. */
12474 dw_die_ref namespace_die
12475 = new_die (DW_TAG_imported_declaration, context_die, decl);
12476 add_name_and_src_coords_attributes (namespace_die, decl);
12477 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
12478 equate_decl_number_to_die (decl, namespace_die);
12479 }
12480 }
12481
12482 /* Generate Dwarf debug information for a decl described by DECL. */
12483
12484 static void
12485 gen_decl_die (tree decl, dw_die_ref context_die)
12486 {
12487 tree origin;
12488
12489 if (DECL_P (decl) && DECL_IGNORED_P (decl))
12490 return;
12491
12492 switch (TREE_CODE (decl))
12493 {
12494 case ERROR_MARK:
12495 break;
12496
12497 case CONST_DECL:
12498 /* The individual enumerators of an enum type get output when we output
12499 the Dwarf representation of the relevant enum type itself. */
12500 break;
12501
12502 case FUNCTION_DECL:
12503 /* Don't output any DIEs to represent mere function declarations,
12504 unless they are class members or explicit block externs. */
12505 if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
12506 && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
12507 break;
12508
12509 /* If we're emitting a clone, emit info for the abstract instance. */
12510 if (DECL_ORIGIN (decl) != decl)
12511 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
12512
12513 /* If we're emitting an out-of-line copy of an inline function,
12514 emit info for the abstract instance and set up to refer to it. */
12515 else if (cgraph_function_possibly_inlined_p (decl)
12516 && ! DECL_ABSTRACT (decl)
12517 && ! class_or_namespace_scope_p (context_die)
12518 /* dwarf2out_abstract_function won't emit a die if this is just
12519 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
12520 that case, because that works only if we have a die. */
12521 && DECL_INITIAL (decl) != NULL_TREE)
12522 {
12523 dwarf2out_abstract_function (decl);
12524 set_decl_origin_self (decl);
12525 }
12526
12527 /* Otherwise we're emitting the primary DIE for this decl. */
12528 else if (debug_info_level > DINFO_LEVEL_TERSE)
12529 {
12530 /* Before we describe the FUNCTION_DECL itself, make sure that we
12531 have described its return type. */
12532 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
12533
12534 /* And its virtual context. */
12535 if (DECL_VINDEX (decl) != NULL_TREE)
12536 gen_type_die (DECL_CONTEXT (decl), context_die);
12537
12538 /* And its containing type. */
12539 origin = decl_class_context (decl);
12540 if (origin != NULL_TREE)
12541 gen_type_die_for_member (origin, decl, context_die);
12542
12543 /* And its containing namespace. */
12544 declare_in_namespace (decl, context_die);
12545 }
12546
12547 /* Now output a DIE to represent the function itself. */
12548 gen_subprogram_die (decl, context_die);
12549 break;
12550
12551 case TYPE_DECL:
12552 /* If we are in terse mode, don't generate any DIEs to represent any
12553 actual typedefs. */
12554 if (debug_info_level <= DINFO_LEVEL_TERSE)
12555 break;
12556
12557 /* In the special case of a TYPE_DECL node representing the declaration
12558 of some type tag, if the given TYPE_DECL is marked as having been
12559 instantiated from some other (original) TYPE_DECL node (e.g. one which
12560 was generated within the original definition of an inline function) we
12561 have to generate a special (abbreviated) DW_TAG_structure_type,
12562 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
12563 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
12564 {
12565 gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
12566 break;
12567 }
12568
12569 if (is_redundant_typedef (decl))
12570 gen_type_die (TREE_TYPE (decl), context_die);
12571 else
12572 /* Output a DIE to represent the typedef itself. */
12573 gen_typedef_die (decl, context_die);
12574 break;
12575
12576 case LABEL_DECL:
12577 if (debug_info_level >= DINFO_LEVEL_NORMAL)
12578 gen_label_die (decl, context_die);
12579 break;
12580
12581 case VAR_DECL:
12582 /* If we are in terse mode, don't generate any DIEs to represent any
12583 variable declarations or definitions. */
12584 if (debug_info_level <= DINFO_LEVEL_TERSE)
12585 break;
12586
12587 /* Output any DIEs that are needed to specify the type of this data
12588 object. */
12589 gen_type_die (TREE_TYPE (decl), context_die);
12590
12591 /* And its containing type. */
12592 origin = decl_class_context (decl);
12593 if (origin != NULL_TREE)
12594 gen_type_die_for_member (origin, decl, context_die);
12595
12596 /* And its containing namespace. */
12597 declare_in_namespace (decl, context_die);
12598
12599 /* Now output the DIE to represent the data object itself. This gets
12600 complicated because of the possibility that the VAR_DECL really
12601 represents an inlined instance of a formal parameter for an inline
12602 function. */
12603 origin = decl_ultimate_origin (decl);
12604 if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
12605 gen_formal_parameter_die (decl, context_die);
12606 else
12607 gen_variable_die (decl, context_die);
12608 break;
12609
12610 case FIELD_DECL:
12611 /* Ignore the nameless fields that are used to skip bits but handle C++
12612 anonymous unions and structs. */
12613 if (DECL_NAME (decl) != NULL_TREE
12614 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
12615 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
12616 {
12617 gen_type_die (member_declared_type (decl), context_die);
12618 gen_field_die (decl, context_die);
12619 }
12620 break;
12621
12622 case PARM_DECL:
12623 gen_type_die (TREE_TYPE (decl), context_die);
12624 gen_formal_parameter_die (decl, context_die);
12625 break;
12626
12627 case NAMESPACE_DECL:
12628 gen_namespace_die (decl);
12629 break;
12630
12631 default:
12632 if ((int)TREE_CODE (decl) > NUM_TREE_CODES)
12633 /* Probably some frontend-internal decl. Assume we don't care. */
12634 break;
12635 abort ();
12636 }
12637 }
12638 \f
12639 /* Add Ada "use" clause information for SGI Workshop debugger. */
12640
12641 void
12642 dwarf2out_add_library_unit_info (const char *filename, const char *context_list)
12643 {
12644 unsigned int file_index;
12645
12646 if (filename != NULL)
12647 {
12648 dw_die_ref unit_die = new_die (DW_TAG_module, comp_unit_die, NULL);
12649 tree context_list_decl
12650 = build_decl (LABEL_DECL, get_identifier (context_list),
12651 void_type_node);
12652
12653 TREE_PUBLIC (context_list_decl) = TRUE;
12654 add_name_attribute (unit_die, context_list);
12655 file_index = lookup_filename (filename);
12656 add_AT_unsigned (unit_die, DW_AT_decl_file, file_index);
12657 add_pubname (context_list_decl, unit_die);
12658 }
12659 }
12660
12661 /* Output debug information for global decl DECL. Called from toplev.c after
12662 compilation proper has finished. */
12663
12664 static void
12665 dwarf2out_global_decl (tree decl)
12666 {
12667 /* Output DWARF2 information for file-scope tentative data object
12668 declarations, file-scope (extern) function declarations (which had no
12669 corresponding body) and file-scope tagged type declarations and
12670 definitions which have not yet been forced out. */
12671 if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
12672 dwarf2out_decl (decl);
12673 }
12674
12675 /* Output debug information for type decl DECL. Called from toplev.c
12676 and from language front ends (to record built-in types). */
12677 static void
12678 dwarf2out_type_decl (tree decl, int local)
12679 {
12680 if (!local)
12681 dwarf2out_decl (decl);
12682 }
12683
12684 /* Output debug information for imported module or decl. */
12685
12686 static void
12687 dwarf2out_imported_module_or_decl (tree decl, tree context)
12688 {
12689 dw_die_ref imported_die, at_import_die;
12690 dw_die_ref scope_die;
12691 unsigned file_index;
12692
12693 if (debug_info_level <= DINFO_LEVEL_TERSE)
12694 return;
12695
12696 if (!decl)
12697 abort ();
12698
12699 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
12700 We need decl DIE for reference and scope die. First, get DIE for the decl
12701 itself. */
12702
12703 /* Get the scope die for decl context. Use comp_unit_die for global module
12704 or decl. If die is not found for non globals, force new die. */
12705 if (!context)
12706 scope_die = comp_unit_die;
12707 else if (TYPE_P (context))
12708 scope_die = force_type_die (context);
12709 else
12710 scope_die = force_decl_die (context);
12711
12712 /* For TYPE_DECL, lookup TREE_TYPE. */
12713 if (TREE_CODE (decl) == TYPE_DECL)
12714 at_import_die = force_type_die (TREE_TYPE (decl));
12715 else
12716 at_import_die = force_decl_die (decl);
12717
12718 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
12719 if (TREE_CODE (decl) == NAMESPACE_DECL)
12720 imported_die = new_die (DW_TAG_imported_module, scope_die, context);
12721 else
12722 imported_die = new_die (DW_TAG_imported_declaration, scope_die, context);
12723
12724 file_index = lookup_filename (input_filename);
12725 add_AT_unsigned (imported_die, DW_AT_decl_file, file_index);
12726 add_AT_unsigned (imported_die, DW_AT_decl_line, input_line);
12727 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
12728 }
12729
12730 /* Write the debugging output for DECL. */
12731
12732 void
12733 dwarf2out_decl (tree decl)
12734 {
12735 dw_die_ref context_die = comp_unit_die;
12736
12737 switch (TREE_CODE (decl))
12738 {
12739 case ERROR_MARK:
12740 return;
12741
12742 case FUNCTION_DECL:
12743 /* What we would really like to do here is to filter out all mere
12744 file-scope declarations of file-scope functions which are never
12745 referenced later within this translation unit (and keep all of ones
12746 that *are* referenced later on) but we aren't clairvoyant, so we have
12747 no idea which functions will be referenced in the future (i.e. later
12748 on within the current translation unit). So here we just ignore all
12749 file-scope function declarations which are not also definitions. If
12750 and when the debugger needs to know something about these functions,
12751 it will have to hunt around and find the DWARF information associated
12752 with the definition of the function.
12753
12754 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
12755 nodes represent definitions and which ones represent mere
12756 declarations. We have to check DECL_INITIAL instead. That's because
12757 the C front-end supports some weird semantics for "extern inline"
12758 function definitions. These can get inlined within the current
12759 translation unit (an thus, we need to generate Dwarf info for their
12760 abstract instances so that the Dwarf info for the concrete inlined
12761 instances can have something to refer to) but the compiler never
12762 generates any out-of-lines instances of such things (despite the fact
12763 that they *are* definitions).
12764
12765 The important point is that the C front-end marks these "extern
12766 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
12767 them anyway. Note that the C++ front-end also plays some similar games
12768 for inline function definitions appearing within include files which
12769 also contain `#pragma interface' pragmas. */
12770 if (DECL_INITIAL (decl) == NULL_TREE)
12771 return;
12772
12773 /* If we're a nested function, initially use a parent of NULL; if we're
12774 a plain function, this will be fixed up in decls_for_scope. If
12775 we're a method, it will be ignored, since we already have a DIE. */
12776 if (decl_function_context (decl)
12777 /* But if we're in terse mode, we don't care about scope. */
12778 && debug_info_level > DINFO_LEVEL_TERSE)
12779 context_die = NULL;
12780 break;
12781
12782 case VAR_DECL:
12783 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
12784 declaration and if the declaration was never even referenced from
12785 within this entire compilation unit. We suppress these DIEs in
12786 order to save space in the .debug section (by eliminating entries
12787 which are probably useless). Note that we must not suppress
12788 block-local extern declarations (whether used or not) because that
12789 would screw-up the debugger's name lookup mechanism and cause it to
12790 miss things which really ought to be in scope at a given point. */
12791 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
12792 return;
12793
12794 /* If we are in terse mode, don't generate any DIEs to represent any
12795 variable declarations or definitions. */
12796 if (debug_info_level <= DINFO_LEVEL_TERSE)
12797 return;
12798 break;
12799
12800 case NAMESPACE_DECL:
12801 if (debug_info_level <= DINFO_LEVEL_TERSE)
12802 return;
12803 if (lookup_decl_die (decl) != NULL)
12804 return;
12805 break;
12806
12807 case TYPE_DECL:
12808 /* Don't emit stubs for types unless they are needed by other DIEs. */
12809 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
12810 return;
12811
12812 /* Don't bother trying to generate any DIEs to represent any of the
12813 normal built-in types for the language we are compiling. */
12814 if (DECL_SOURCE_LINE (decl) == 0)
12815 {
12816 /* OK, we need to generate one for `bool' so GDB knows what type
12817 comparisons have. */
12818 if ((get_AT_unsigned (comp_unit_die, DW_AT_language)
12819 == DW_LANG_C_plus_plus)
12820 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
12821 && ! DECL_IGNORED_P (decl))
12822 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
12823
12824 return;
12825 }
12826
12827 /* If we are in terse mode, don't generate any DIEs for types. */
12828 if (debug_info_level <= DINFO_LEVEL_TERSE)
12829 return;
12830
12831 /* If we're a function-scope tag, initially use a parent of NULL;
12832 this will be fixed up in decls_for_scope. */
12833 if (decl_function_context (decl))
12834 context_die = NULL;
12835
12836 break;
12837
12838 default:
12839 return;
12840 }
12841
12842 gen_decl_die (decl, context_die);
12843 }
12844
12845 /* Output a marker (i.e. a label) for the beginning of the generated code for
12846 a lexical block. */
12847
12848 static void
12849 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
12850 unsigned int blocknum)
12851 {
12852 function_section (current_function_decl);
12853 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
12854 }
12855
12856 /* Output a marker (i.e. a label) for the end of the generated code for a
12857 lexical block. */
12858
12859 static void
12860 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
12861 {
12862 function_section (current_function_decl);
12863 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
12864 }
12865
12866 /* Returns nonzero if it is appropriate not to emit any debugging
12867 information for BLOCK, because it doesn't contain any instructions.
12868
12869 Don't allow this for blocks with nested functions or local classes
12870 as we would end up with orphans, and in the presence of scheduling
12871 we may end up calling them anyway. */
12872
12873 static bool
12874 dwarf2out_ignore_block (tree block)
12875 {
12876 tree decl;
12877
12878 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
12879 if (TREE_CODE (decl) == FUNCTION_DECL
12880 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
12881 return 0;
12882
12883 return 1;
12884 }
12885
12886 /* Lookup FILE_NAME (in the list of filenames that we know about here in
12887 dwarf2out.c) and return its "index". The index of each (known) filename is
12888 just a unique number which is associated with only that one filename. We
12889 need such numbers for the sake of generating labels (in the .debug_sfnames
12890 section) and references to those files numbers (in the .debug_srcinfo
12891 and.debug_macinfo sections). If the filename given as an argument is not
12892 found in our current list, add it to the list and assign it the next
12893 available unique index number. In order to speed up searches, we remember
12894 the index of the filename was looked up last. This handles the majority of
12895 all searches. */
12896
12897 static unsigned
12898 lookup_filename (const char *file_name)
12899 {
12900 size_t i, n;
12901 char *save_file_name;
12902
12903 /* Check to see if the file name that was searched on the previous
12904 call matches this file name. If so, return the index. */
12905 if (file_table_last_lookup_index != 0)
12906 {
12907 const char *last
12908 = VARRAY_CHAR_PTR (file_table, file_table_last_lookup_index);
12909 if (strcmp (file_name, last) == 0)
12910 return file_table_last_lookup_index;
12911 }
12912
12913 /* Didn't match the previous lookup, search the table */
12914 n = VARRAY_ACTIVE_SIZE (file_table);
12915 for (i = 1; i < n; i++)
12916 if (strcmp (file_name, VARRAY_CHAR_PTR (file_table, i)) == 0)
12917 {
12918 file_table_last_lookup_index = i;
12919 return i;
12920 }
12921
12922 /* Add the new entry to the end of the filename table. */
12923 file_table_last_lookup_index = n;
12924 save_file_name = (char *) ggc_strdup (file_name);
12925 VARRAY_PUSH_CHAR_PTR (file_table, save_file_name);
12926 VARRAY_PUSH_UINT (file_table_emitted, 0);
12927
12928 return i;
12929 }
12930
12931 static int
12932 maybe_emit_file (int fileno)
12933 {
12934 if (DWARF2_ASM_LINE_DEBUG_INFO && fileno > 0)
12935 {
12936 if (!VARRAY_UINT (file_table_emitted, fileno))
12937 {
12938 VARRAY_UINT (file_table_emitted, fileno) = ++emitcount;
12939 fprintf (asm_out_file, "\t.file %u ",
12940 VARRAY_UINT (file_table_emitted, fileno));
12941 output_quoted_string (asm_out_file,
12942 VARRAY_CHAR_PTR (file_table, fileno));
12943 fputc ('\n', asm_out_file);
12944 }
12945 return VARRAY_UINT (file_table_emitted, fileno);
12946 }
12947 else
12948 return fileno;
12949 }
12950
12951 static void
12952 init_file_table (void)
12953 {
12954 /* Allocate the initial hunk of the file_table. */
12955 VARRAY_CHAR_PTR_INIT (file_table, 64, "file_table");
12956 VARRAY_UINT_INIT (file_table_emitted, 64, "file_table_emitted");
12957
12958 /* Skip the first entry - file numbers begin at 1. */
12959 VARRAY_PUSH_CHAR_PTR (file_table, NULL);
12960 VARRAY_PUSH_UINT (file_table_emitted, 0);
12961 file_table_last_lookup_index = 0;
12962 }
12963
12964 /* Called by the final INSN scan whenever we see a var location. We
12965 use it to drop labels in the right places, and throw the location in
12966 our lookup table. */
12967
12968 static void
12969 dwarf2out_var_location (rtx loc_note)
12970 {
12971 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
12972 struct var_loc_node *newloc;
12973 rtx prev_insn;
12974 static rtx last_insn;
12975 static const char *last_label;
12976
12977 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
12978 return;
12979 prev_insn = PREV_INSN (loc_note);
12980
12981 newloc = ggc_alloc_cleared (sizeof (struct var_loc_node));
12982 /* If the insn we processed last time is the previous insn
12983 and it is also a var location note, use the label we emitted
12984 last time. */
12985 if (last_insn != NULL_RTX
12986 && last_insn == prev_insn
12987 && GET_CODE (prev_insn) == NOTE
12988 && NOTE_LINE_NUMBER (prev_insn) == NOTE_INSN_VAR_LOCATION)
12989 {
12990 newloc->label = last_label;
12991 }
12992 else
12993 {
12994 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
12995 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
12996 loclabel_num++;
12997 newloc->label = ggc_strdup (loclabel);
12998 }
12999 newloc->var_loc_note = loc_note;
13000 newloc->next = NULL;
13001
13002 last_insn = loc_note;
13003 last_label = newloc->label;
13004
13005 add_var_loc_to_decl (NOTE_VAR_LOCATION_DECL (loc_note), newloc);
13006 }
13007
13008 /* We need to reset the locations at the beginning of each
13009 function. We can't do this in the end_function hook, because the
13010 declarations that use the locations won't have been outputted when
13011 that hook is called. */
13012
13013 static void
13014 dwarf2out_begin_function (tree unused ATTRIBUTE_UNUSED)
13015 {
13016 htab_empty (decl_loc_table);
13017 }
13018
13019 /* Output a label to mark the beginning of a source code line entry
13020 and record information relating to this source line, in
13021 'line_info_table' for later output of the .debug_line section. */
13022
13023 static void
13024 dwarf2out_source_line (unsigned int line, const char *filename)
13025 {
13026 if (debug_info_level >= DINFO_LEVEL_NORMAL
13027 && line != 0)
13028 {
13029 function_section (current_function_decl);
13030
13031 /* If requested, emit something human-readable. */
13032 if (flag_debug_asm)
13033 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
13034 filename, line);
13035
13036 if (DWARF2_ASM_LINE_DEBUG_INFO)
13037 {
13038 unsigned file_num = lookup_filename (filename);
13039
13040 file_num = maybe_emit_file (file_num);
13041
13042 /* Emit the .loc directive understood by GNU as. */
13043 fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
13044
13045 /* Indicate that line number info exists. */
13046 line_info_table_in_use++;
13047
13048 /* Indicate that multiple line number tables exist. */
13049 if (DECL_SECTION_NAME (current_function_decl))
13050 separate_line_info_table_in_use++;
13051 }
13052 else if (DECL_SECTION_NAME (current_function_decl))
13053 {
13054 dw_separate_line_info_ref line_info;
13055 (*targetm.asm_out.internal_label) (asm_out_file, SEPARATE_LINE_CODE_LABEL,
13056 separate_line_info_table_in_use);
13057
13058 /* Expand the line info table if necessary. */
13059 if (separate_line_info_table_in_use
13060 == separate_line_info_table_allocated)
13061 {
13062 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13063 separate_line_info_table
13064 = ggc_realloc (separate_line_info_table,
13065 separate_line_info_table_allocated
13066 * sizeof (dw_separate_line_info_entry));
13067 memset (separate_line_info_table
13068 + separate_line_info_table_in_use,
13069 0,
13070 (LINE_INFO_TABLE_INCREMENT
13071 * sizeof (dw_separate_line_info_entry)));
13072 }
13073
13074 /* Add the new entry at the end of the line_info_table. */
13075 line_info
13076 = &separate_line_info_table[separate_line_info_table_in_use++];
13077 line_info->dw_file_num = lookup_filename (filename);
13078 line_info->dw_line_num = line;
13079 line_info->function = current_function_funcdef_no;
13080 }
13081 else
13082 {
13083 dw_line_info_ref line_info;
13084
13085 (*targetm.asm_out.internal_label) (asm_out_file, LINE_CODE_LABEL,
13086 line_info_table_in_use);
13087
13088 /* Expand the line info table if necessary. */
13089 if (line_info_table_in_use == line_info_table_allocated)
13090 {
13091 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13092 line_info_table
13093 = ggc_realloc (line_info_table,
13094 (line_info_table_allocated
13095 * sizeof (dw_line_info_entry)));
13096 memset (line_info_table + line_info_table_in_use, 0,
13097 LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
13098 }
13099
13100 /* Add the new entry at the end of the line_info_table. */
13101 line_info = &line_info_table[line_info_table_in_use++];
13102 line_info->dw_file_num = lookup_filename (filename);
13103 line_info->dw_line_num = line;
13104 }
13105 }
13106 }
13107
13108 /* Record the beginning of a new source file. */
13109
13110 static void
13111 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
13112 {
13113 if (flag_eliminate_dwarf2_dups)
13114 {
13115 /* Record the beginning of the file for break_out_includes. */
13116 dw_die_ref bincl_die;
13117
13118 bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
13119 add_AT_string (bincl_die, DW_AT_name, filename);
13120 }
13121
13122 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13123 {
13124 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13125 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
13126 dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
13127 lineno);
13128 maybe_emit_file (lookup_filename (filename));
13129 dw2_asm_output_data_uleb128 (lookup_filename (filename),
13130 "Filename we just started");
13131 }
13132 }
13133
13134 /* Record the end of a source file. */
13135
13136 static void
13137 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
13138 {
13139 if (flag_eliminate_dwarf2_dups)
13140 /* Record the end of the file for break_out_includes. */
13141 new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
13142
13143 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13144 {
13145 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13146 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
13147 }
13148 }
13149
13150 /* Called from debug_define in toplev.c. The `buffer' parameter contains
13151 the tail part of the directive line, i.e. the part which is past the
13152 initial whitespace, #, whitespace, directive-name, whitespace part. */
13153
13154 static void
13155 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
13156 const char *buffer ATTRIBUTE_UNUSED)
13157 {
13158 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13159 {
13160 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13161 dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
13162 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13163 dw2_asm_output_nstring (buffer, -1, "The macro");
13164 }
13165 }
13166
13167 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
13168 the tail part of the directive line, i.e. the part which is past the
13169 initial whitespace, #, whitespace, directive-name, whitespace part. */
13170
13171 static void
13172 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
13173 const char *buffer ATTRIBUTE_UNUSED)
13174 {
13175 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13176 {
13177 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13178 dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
13179 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13180 dw2_asm_output_nstring (buffer, -1, "The macro");
13181 }
13182 }
13183
13184 /* Set up for Dwarf output at the start of compilation. */
13185
13186 static void
13187 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
13188 {
13189 init_file_table ();
13190
13191 /* Allocate the decl_die_table. */
13192 decl_die_table = htab_create_ggc (10, decl_die_table_hash,
13193 decl_die_table_eq, NULL);
13194
13195 /* Allocate the decl_loc_table. */
13196 decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
13197 decl_loc_table_eq, NULL);
13198
13199 /* Allocate the initial hunk of the decl_scope_table. */
13200 VARRAY_TREE_INIT (decl_scope_table, 256, "decl_scope_table");
13201
13202 /* Allocate the initial hunk of the abbrev_die_table. */
13203 abbrev_die_table = ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
13204 * sizeof (dw_die_ref));
13205 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
13206 /* Zero-th entry is allocated, but unused */
13207 abbrev_die_table_in_use = 1;
13208
13209 /* Allocate the initial hunk of the line_info_table. */
13210 line_info_table = ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
13211 * sizeof (dw_line_info_entry));
13212 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
13213
13214 /* Zero-th entry is allocated, but unused */
13215 line_info_table_in_use = 1;
13216
13217 /* Generate the initial DIE for the .debug section. Note that the (string)
13218 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
13219 will (typically) be a relative pathname and that this pathname should be
13220 taken as being relative to the directory from which the compiler was
13221 invoked when the given (base) source file was compiled. We will fill
13222 in this value in dwarf2out_finish. */
13223 comp_unit_die = gen_compile_unit_die (NULL);
13224
13225 VARRAY_TREE_INIT (incomplete_types, 64, "incomplete_types");
13226
13227 VARRAY_RTX_INIT (used_rtx_varray, 32, "used_rtx_varray");
13228
13229 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
13230 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
13231 DEBUG_ABBREV_SECTION_LABEL, 0);
13232 if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
13233 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
13234 else
13235 strcpy (text_section_label, stripattributes (TEXT_SECTION_NAME));
13236
13237 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
13238 DEBUG_INFO_SECTION_LABEL, 0);
13239 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
13240 DEBUG_LINE_SECTION_LABEL, 0);
13241 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
13242 DEBUG_RANGES_SECTION_LABEL, 0);
13243 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
13244 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
13245 named_section_flags (DEBUG_INFO_SECTION, SECTION_DEBUG);
13246 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
13247 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
13248 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
13249
13250 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13251 {
13252 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13253 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
13254 DEBUG_MACINFO_SECTION_LABEL, 0);
13255 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
13256 }
13257
13258 if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
13259 {
13260 text_section ();
13261 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
13262 }
13263 }
13264
13265 /* A helper function for dwarf2out_finish called through
13266 ht_forall. Emit one queued .debug_str string. */
13267
13268 static int
13269 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
13270 {
13271 struct indirect_string_node *node = (struct indirect_string_node *) *h;
13272
13273 if (node->form == DW_FORM_strp)
13274 {
13275 named_section_flags (DEBUG_STR_SECTION, DEBUG_STR_SECTION_FLAGS);
13276 ASM_OUTPUT_LABEL (asm_out_file, node->label);
13277 assemble_string (node->str, strlen (node->str) + 1);
13278 }
13279
13280 return 1;
13281 }
13282
13283
13284
13285 /* Clear the marks for a die and its children.
13286 Be cool if the mark isn't set. */
13287
13288 static void
13289 prune_unmark_dies (dw_die_ref die)
13290 {
13291 dw_die_ref c;
13292 die->die_mark = 0;
13293 for (c = die->die_child; c; c = c->die_sib)
13294 prune_unmark_dies (c);
13295 }
13296
13297
13298 /* Given DIE that we're marking as used, find any other dies
13299 it references as attributes and mark them as used. */
13300
13301 static void
13302 prune_unused_types_walk_attribs (dw_die_ref die)
13303 {
13304 dw_attr_ref a;
13305
13306 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
13307 {
13308 if (a->dw_attr_val.val_class == dw_val_class_die_ref)
13309 {
13310 /* A reference to another DIE.
13311 Make sure that it will get emitted. */
13312 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
13313 }
13314 else if (a->dw_attr == DW_AT_decl_file)
13315 {
13316 /* A reference to a file. Make sure the file name is emitted. */
13317 a->dw_attr_val.v.val_unsigned =
13318 maybe_emit_file (a->dw_attr_val.v.val_unsigned);
13319 }
13320 }
13321 }
13322
13323
13324 /* Mark DIE as being used. If DOKIDS is true, then walk down
13325 to DIE's children. */
13326
13327 static void
13328 prune_unused_types_mark (dw_die_ref die, int dokids)
13329 {
13330 dw_die_ref c;
13331
13332 if (die->die_mark == 0)
13333 {
13334 /* We haven't done this node yet. Mark it as used. */
13335 die->die_mark = 1;
13336
13337 /* We also have to mark its parents as used.
13338 (But we don't want to mark our parents' kids due to this.) */
13339 if (die->die_parent)
13340 prune_unused_types_mark (die->die_parent, 0);
13341
13342 /* Mark any referenced nodes. */
13343 prune_unused_types_walk_attribs (die);
13344
13345 /* If this node is a specification,
13346 also mark the definition, if it exists. */
13347 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
13348 prune_unused_types_mark (die->die_definition, 1);
13349 }
13350
13351 if (dokids && die->die_mark != 2)
13352 {
13353 /* We need to walk the children, but haven't done so yet.
13354 Remember that we've walked the kids. */
13355 die->die_mark = 2;
13356
13357 /* Walk them. */
13358 for (c = die->die_child; c; c = c->die_sib)
13359 {
13360 /* If this is an array type, we need to make sure our
13361 kids get marked, even if they're types. */
13362 if (die->die_tag == DW_TAG_array_type)
13363 prune_unused_types_mark (c, 1);
13364 else
13365 prune_unused_types_walk (c);
13366 }
13367 }
13368 }
13369
13370
13371 /* Walk the tree DIE and mark types that we actually use. */
13372
13373 static void
13374 prune_unused_types_walk (dw_die_ref die)
13375 {
13376 dw_die_ref c;
13377
13378 /* Don't do anything if this node is already marked. */
13379 if (die->die_mark)
13380 return;
13381
13382 switch (die->die_tag) {
13383 case DW_TAG_const_type:
13384 case DW_TAG_packed_type:
13385 case DW_TAG_pointer_type:
13386 case DW_TAG_reference_type:
13387 case DW_TAG_volatile_type:
13388 case DW_TAG_typedef:
13389 case DW_TAG_array_type:
13390 case DW_TAG_structure_type:
13391 case DW_TAG_union_type:
13392 case DW_TAG_class_type:
13393 case DW_TAG_friend:
13394 case DW_TAG_variant_part:
13395 case DW_TAG_enumeration_type:
13396 case DW_TAG_subroutine_type:
13397 case DW_TAG_string_type:
13398 case DW_TAG_set_type:
13399 case DW_TAG_subrange_type:
13400 case DW_TAG_ptr_to_member_type:
13401 case DW_TAG_file_type:
13402 /* It's a type node --- don't mark it. */
13403 return;
13404
13405 default:
13406 /* Mark everything else. */
13407 break;
13408 }
13409
13410 die->die_mark = 1;
13411
13412 /* Now, mark any dies referenced from here. */
13413 prune_unused_types_walk_attribs (die);
13414
13415 /* Mark children. */
13416 for (c = die->die_child; c; c = c->die_sib)
13417 prune_unused_types_walk (c);
13418 }
13419
13420
13421 /* Remove from the tree DIE any dies that aren't marked. */
13422
13423 static void
13424 prune_unused_types_prune (dw_die_ref die)
13425 {
13426 dw_die_ref c, p, n;
13427 if (!die->die_mark)
13428 abort();
13429
13430 p = NULL;
13431 for (c = die->die_child; c; c = n)
13432 {
13433 n = c->die_sib;
13434 if (c->die_mark)
13435 {
13436 prune_unused_types_prune (c);
13437 p = c;
13438 }
13439 else
13440 {
13441 if (p)
13442 p->die_sib = n;
13443 else
13444 die->die_child = n;
13445 free_die (c);
13446 }
13447 }
13448 }
13449
13450
13451 /* Remove dies representing declarations that we never use. */
13452
13453 static void
13454 prune_unused_types (void)
13455 {
13456 unsigned int i;
13457 limbo_die_node *node;
13458
13459 /* Clear all the marks. */
13460 prune_unmark_dies (comp_unit_die);
13461 for (node = limbo_die_list; node; node = node->next)
13462 prune_unmark_dies (node->die);
13463
13464 /* Set the mark on nodes that are actually used. */
13465 prune_unused_types_walk (comp_unit_die);
13466 for (node = limbo_die_list; node; node = node->next)
13467 prune_unused_types_walk (node->die);
13468
13469 /* Also set the mark on nodes referenced from the
13470 pubname_table or arange_table. */
13471 for (i = 0; i < pubname_table_in_use; i++)
13472 prune_unused_types_mark (pubname_table[i].die, 1);
13473 for (i = 0; i < arange_table_in_use; i++)
13474 prune_unused_types_mark (arange_table[i], 1);
13475
13476 /* Get rid of nodes that aren't marked. */
13477 prune_unused_types_prune (comp_unit_die);
13478 for (node = limbo_die_list; node; node = node->next)
13479 prune_unused_types_prune (node->die);
13480
13481 /* Leave the marks clear. */
13482 prune_unmark_dies (comp_unit_die);
13483 for (node = limbo_die_list; node; node = node->next)
13484 prune_unmark_dies (node->die);
13485 }
13486
13487 /* Output stuff that dwarf requires at the end of every file,
13488 and generate the DWARF-2 debugging info. */
13489
13490 static void
13491 dwarf2out_finish (const char *filename)
13492 {
13493 limbo_die_node *node, *next_node;
13494 dw_die_ref die = 0;
13495
13496 /* Add the name for the main input file now. We delayed this from
13497 dwarf2out_init to avoid complications with PCH. */
13498 add_name_attribute (comp_unit_die, filename);
13499 if (filename[0] != DIR_SEPARATOR)
13500 add_comp_dir_attribute (comp_unit_die);
13501 else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
13502 {
13503 size_t i;
13504 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
13505 if (VARRAY_CHAR_PTR (file_table, i)[0] != DIR_SEPARATOR
13506 /* Don't add cwd for <built-in>. */
13507 && VARRAY_CHAR_PTR (file_table, i)[0] != '<')
13508 {
13509 add_comp_dir_attribute (comp_unit_die);
13510 break;
13511 }
13512 }
13513
13514 /* Traverse the limbo die list, and add parent/child links. The only
13515 dies without parents that should be here are concrete instances of
13516 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
13517 For concrete instances, we can get the parent die from the abstract
13518 instance. */
13519 for (node = limbo_die_list; node; node = next_node)
13520 {
13521 next_node = node->next;
13522 die = node->die;
13523
13524 if (die->die_parent == NULL)
13525 {
13526 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
13527 tree context;
13528
13529 if (origin)
13530 add_child_die (origin->die_parent, die);
13531 else if (die == comp_unit_die)
13532 ;
13533 /* If this was an expression for a bound involved in a function
13534 return type, it may be a SAVE_EXPR for which we weren't able
13535 to find a DIE previously. So try now. */
13536 else if (node->created_for
13537 && TREE_CODE (node->created_for) == SAVE_EXPR
13538 && 0 != (origin = (lookup_decl_die
13539 (SAVE_EXPR_CONTEXT
13540 (node->created_for)))))
13541 add_child_die (origin, die);
13542 else if (errorcount > 0 || sorrycount > 0)
13543 /* It's OK to be confused by errors in the input. */
13544 add_child_die (comp_unit_die, die);
13545 else if (node->created_for
13546 && ((DECL_P (node->created_for)
13547 && (context = DECL_CONTEXT (node->created_for)))
13548 || (TYPE_P (node->created_for)
13549 && (context = TYPE_CONTEXT (node->created_for))))
13550 && TREE_CODE (context) == FUNCTION_DECL)
13551 {
13552 /* In certain situations, the lexical block containing a
13553 nested function can be optimized away, which results
13554 in the nested function die being orphaned. Likewise
13555 with the return type of that nested function. Force
13556 this to be a child of the containing function. */
13557 origin = lookup_decl_die (context);
13558 if (! origin)
13559 abort ();
13560 add_child_die (origin, die);
13561 }
13562 else
13563 abort ();
13564 }
13565 }
13566
13567 limbo_die_list = NULL;
13568
13569 /* Walk through the list of incomplete types again, trying once more to
13570 emit full debugging info for them. */
13571 retry_incomplete_types ();
13572
13573 /* We need to reverse all the dies before break_out_includes, or
13574 we'll see the end of an include file before the beginning. */
13575 reverse_all_dies (comp_unit_die);
13576
13577 if (flag_eliminate_unused_debug_types)
13578 prune_unused_types ();
13579
13580 /* Generate separate CUs for each of the include files we've seen.
13581 They will go into limbo_die_list. */
13582 if (flag_eliminate_dwarf2_dups)
13583 break_out_includes (comp_unit_die);
13584
13585 /* Traverse the DIE's and add add sibling attributes to those DIE's
13586 that have children. */
13587 add_sibling_attributes (comp_unit_die);
13588 for (node = limbo_die_list; node; node = node->next)
13589 add_sibling_attributes (node->die);
13590
13591 /* Output a terminator label for the .text section. */
13592 text_section ();
13593 (*targetm.asm_out.internal_label) (asm_out_file, TEXT_END_LABEL, 0);
13594
13595 /* Output the source line correspondence table. We must do this
13596 even if there is no line information. Otherwise, on an empty
13597 translation unit, we will generate a present, but empty,
13598 .debug_info section. IRIX 6.5 `nm' will then complain when
13599 examining the file. */
13600 if (! DWARF2_ASM_LINE_DEBUG_INFO)
13601 {
13602 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
13603 output_line_info ();
13604 }
13605
13606 /* Output location list section if necessary. */
13607 if (have_location_lists)
13608 {
13609 /* Output the location lists info. */
13610 named_section_flags (DEBUG_LOC_SECTION, SECTION_DEBUG);
13611 ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
13612 DEBUG_LOC_SECTION_LABEL, 0);
13613 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
13614 output_location_lists (die);
13615 have_location_lists = 0;
13616 }
13617
13618 /* We can only use the low/high_pc attributes if all of the code was
13619 in .text. */
13620 if (separate_line_info_table_in_use == 0)
13621 {
13622 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
13623 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
13624 }
13625
13626 /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
13627 "base address". Use zero so that these addresses become absolute. */
13628 else if (have_location_lists || ranges_table_in_use)
13629 add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
13630
13631 if (debug_info_level >= DINFO_LEVEL_NORMAL)
13632 add_AT_lbl_offset (comp_unit_die, DW_AT_stmt_list,
13633 debug_line_section_label);
13634
13635 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13636 add_AT_lbl_offset (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
13637
13638 /* Output all of the compilation units. We put the main one last so that
13639 the offsets are available to output_pubnames. */
13640 for (node = limbo_die_list; node; node = node->next)
13641 output_comp_unit (node->die, 0);
13642
13643 output_comp_unit (comp_unit_die, 0);
13644
13645 /* Output the abbreviation table. */
13646 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
13647 output_abbrev_section ();
13648
13649 /* Output public names table if necessary. */
13650 if (pubname_table_in_use)
13651 {
13652 named_section_flags (DEBUG_PUBNAMES_SECTION, SECTION_DEBUG);
13653 output_pubnames ();
13654 }
13655
13656 /* Output the address range information. We only put functions in the arange
13657 table, so don't write it out if we don't have any. */
13658 if (fde_table_in_use)
13659 {
13660 named_section_flags (DEBUG_ARANGES_SECTION, SECTION_DEBUG);
13661 output_aranges ();
13662 }
13663
13664 /* Output ranges section if necessary. */
13665 if (ranges_table_in_use)
13666 {
13667 named_section_flags (DEBUG_RANGES_SECTION, SECTION_DEBUG);
13668 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
13669 output_ranges ();
13670 }
13671
13672 /* Have to end the primary source file. */
13673 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13674 {
13675 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13676 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
13677 dw2_asm_output_data (1, 0, "End compilation unit");
13678 }
13679
13680 /* If we emitted any DW_FORM_strp form attribute, output the string
13681 table too. */
13682 if (debug_str_hash)
13683 htab_traverse (debug_str_hash, output_indirect_string, NULL);
13684 }
13685 #else
13686
13687 /* This should never be used, but its address is needed for comparisons. */
13688 const struct gcc_debug_hooks dwarf2_debug_hooks;
13689
13690 #endif /* DWARF2_DEBUGGING_INFO */
13691
13692 #include "gt-dwarf2out.h"