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