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