OSDN Git Service

dwarf2: Reduce some redundant definitions.
[pf3gnuchains/gcc-fork.git] / gcc / dwarf2out.h
1 /* dwarf2out.h - Various declarations for functions found in dwarf2out.c
2    Copyright (C) 1998, 1999, 2000, 2003, 2007, 2010, 2011
3    Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
20
21 #ifndef GCC_DWARF2OUT_H
22 #define GCC_DWARF2OUT_H 1
23
24 #include "dwarf2.h"     /* ??? Remove this once only used by dwarf2foo.c.  */
25
26 typedef struct die_struct *dw_die_ref;
27 typedef const struct die_struct *const_dw_die_ref;
28
29 typedef struct dw_val_struct *dw_val_ref;
30 typedef struct dw_cfi_struct *dw_cfi_ref;
31 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
32 typedef struct dw_loc_list_struct *dw_loc_list_ref;
33
34
35 /* Call frames are described using a sequence of Call Frame
36    Information instructions.  The register number, offset
37    and address fields are provided as possible operands;
38    their use is selected by the opcode field.  */
39
40 enum dw_cfi_oprnd_type {
41   dw_cfi_oprnd_unused,
42   dw_cfi_oprnd_reg_num,
43   dw_cfi_oprnd_offset,
44   dw_cfi_oprnd_addr,
45   dw_cfi_oprnd_loc
46 };
47
48 typedef union GTY(()) dw_cfi_oprnd_struct {
49   unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
50   HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
51   const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
52   struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
53 }
54 dw_cfi_oprnd;
55
56 typedef struct GTY(()) dw_cfi_struct {
57   enum dwarf_call_frame_info dw_cfi_opc;
58   dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
59     dw_cfi_oprnd1;
60   dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
61     dw_cfi_oprnd2;
62 }
63 dw_cfi_node;
64
65 DEF_VEC_P (dw_cfi_ref);
66 DEF_VEC_ALLOC_P (dw_cfi_ref, heap);
67 DEF_VEC_ALLOC_P (dw_cfi_ref, gc);
68
69 typedef VEC(dw_cfi_ref, gc) *cfi_vec;
70
71 typedef struct dw_fde_struct *dw_fde_ref;
72
73 /* All call frame descriptions (FDE's) in the GCC generated DWARF
74    refer to a single Common Information Entry (CIE), defined at
75    the beginning of the .debug_frame section.  This use of a single
76    CIE obviates the need to keep track of multiple CIE's
77    in the DWARF generation routines below.  */
78
79 typedef struct GTY(()) dw_fde_struct {
80   tree decl;
81   const char *dw_fde_begin;
82   const char *dw_fde_current_label;
83   const char *dw_fde_end;
84   const char *dw_fde_vms_end_prologue;
85   const char *dw_fde_vms_begin_epilogue;
86   const char *dw_fde_second_begin;
87   const char *dw_fde_second_end;
88   cfi_vec dw_fde_cfi;
89   int dw_fde_switch_cfi_index; /* Last CFI before switching sections.  */
90   HOST_WIDE_INT stack_realignment;
91
92   unsigned funcdef_number;
93   unsigned fde_index;
94
95   /* Dynamic realign argument pointer register.  */
96   unsigned int drap_reg;
97   /* Virtual dynamic realign argument pointer register.  */
98   unsigned int vdrap_reg;
99   /* These 3 flags are copied from rtl_data in function.h.  */
100   unsigned all_throwers_are_sibcalls : 1;
101   unsigned uses_eh_lsda : 1;
102   unsigned nothrow : 1;
103   /* Whether we did stack realign in this call frame.  */
104   unsigned stack_realign : 1;
105   /* Whether dynamic realign argument pointer register has been saved.  */
106   unsigned drap_reg_saved: 1;
107   /* True iff dw_fde_begin label is in text_section or cold_text_section.  */
108   unsigned in_std_section : 1;
109   /* True iff dw_fde_second_begin label is in text_section or
110      cold_text_section.  */
111   unsigned second_in_std_section : 1;
112 }
113 dw_fde_node;
114
115
116 /* This is how we define the location of the CFA. We use to handle it
117    as REG + OFFSET all the time,  but now it can be more complex.
118    It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
119    Instead of passing around REG and OFFSET, we pass a copy
120    of this structure.  */
121 typedef struct cfa_loc {
122   HOST_WIDE_INT offset;
123   HOST_WIDE_INT base_offset;
124   unsigned int reg;
125   BOOL_BITFIELD indirect : 1;  /* 1 if CFA is accessed via a dereference.  */
126   BOOL_BITFIELD in_use : 1;    /* 1 if a saved cfa is stored here.  */
127 } dw_cfa_location;
128
129
130 /* Each DIE may have a series of attribute/value pairs.  Values
131    can take on several forms.  The forms that are used in this
132    implementation are listed below.  */
133
134 enum dw_val_class
135 {
136   dw_val_class_addr,
137   dw_val_class_offset,
138   dw_val_class_loc,
139   dw_val_class_loc_list,
140   dw_val_class_range_list,
141   dw_val_class_const,
142   dw_val_class_unsigned_const,
143   dw_val_class_const_double,
144   dw_val_class_vec,
145   dw_val_class_flag,
146   dw_val_class_die_ref,
147   dw_val_class_fde_ref,
148   dw_val_class_lbl_id,
149   dw_val_class_lineptr,
150   dw_val_class_str,
151   dw_val_class_macptr,
152   dw_val_class_file,
153   dw_val_class_data8,
154   dw_val_class_decl_ref,
155   dw_val_class_vms_delta
156 };
157
158 /* Describe a floating point constant value, or a vector constant value.  */
159
160 typedef struct GTY(()) dw_vec_struct {
161   unsigned char * GTY((length ("%h.length"))) array;
162   unsigned length;
163   unsigned elt_size;
164 }
165 dw_vec_const;
166
167 /* The dw_val_node describes an attribute's value, as it is
168    represented internally.  */
169
170 typedef struct GTY(()) dw_val_struct {
171   enum dw_val_class val_class;
172   union dw_val_struct_union
173     {
174       rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
175       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
176       dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
177       dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
178       HOST_WIDE_INT GTY ((default)) val_int;
179       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
180       double_int GTY ((tag ("dw_val_class_const_double"))) val_double;
181       dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
182       struct dw_val_die_union
183         {
184           dw_die_ref die;
185           int external;
186         } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
187       unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
188       struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
189       char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
190       unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
191       struct dwarf_file_data * GTY ((tag ("dw_val_class_file"))) val_file;
192       unsigned char GTY ((tag ("dw_val_class_data8"))) val_data8[8];
193       tree GTY ((tag ("dw_val_class_decl_ref"))) val_decl_ref;
194       struct dw_val_vms_delta_union
195         {
196           char * lbl1;
197           char * lbl2;
198         } GTY ((tag ("dw_val_class_vms_delta"))) val_vms_delta;
199     }
200   GTY ((desc ("%1.val_class"))) v;
201 }
202 dw_val_node;
203
204 /* Locations in memory are described using a sequence of stack machine
205    operations.  */
206
207 typedef struct GTY(()) dw_loc_descr_struct {
208   dw_loc_descr_ref dw_loc_next;
209   ENUM_BITFIELD (dwarf_location_atom) dw_loc_opc : 8;
210   /* Used to distinguish DW_OP_addr with a direct symbol relocation
211      from DW_OP_addr with a dtp-relative symbol relocation.  */
212   unsigned int dtprel : 1;
213   int dw_loc_addr;
214   dw_val_node dw_loc_oprnd1;
215   dw_val_node dw_loc_oprnd2;
216 }
217 dw_loc_descr_node;
218
219
220 /* Interface from dwarf2out.c to dwarf2cfi.c.  */
221 extern struct dw_loc_descr_struct *build_cfa_loc
222   (dw_cfa_location *, HOST_WIDE_INT);
223 extern struct dw_loc_descr_struct *build_cfa_aligned_loc
224   (dw_cfa_location *, HOST_WIDE_INT offset, HOST_WIDE_INT alignment);
225 extern struct dw_loc_descr_struct *mem_loc_descriptor
226   (rtx, enum machine_mode mode, enum machine_mode mem_mode,
227    enum var_init_status);
228 extern enum machine_mode get_address_mode (rtx mem);
229 extern dw_fde_ref dwarf2out_alloc_current_fde (void);
230
231 /* Interface from dwarf2cfi.c to dwarf2out.c.  */
232 extern void lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc,
233                           dw_cfa_location *remember);
234 extern bool cfa_equal_p (const dw_cfa_location *, const dw_cfa_location *);
235
236 extern GTY(()) cfi_vec cie_cfi_vec;
237
238 /* Interface from dwarf2*.c to the rest of the compiler.  */
239 extern enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
240   (enum dwarf_call_frame_info cfi);
241 extern enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
242   (enum dwarf_call_frame_info cfi);
243
244 extern void output_cfi_directive (FILE *f, struct dw_cfi_struct *cfi);
245
246 extern void dwarf2out_decl (tree);
247 extern void dwarf2out_emit_cfi (dw_cfi_ref cfi);
248
249 extern void debug_dwarf (void);
250 struct die_struct;
251 extern void debug_dwarf_die (struct die_struct *);
252 extern void dwarf2out_set_demangle_name_func (const char *(*) (const char *));
253 #ifdef VMS_DEBUGGING_INFO
254 extern void dwarf2out_vms_debug_main_pointer (void);
255 #endif
256
257 struct array_descr_info
258 {
259   int ndimensions;
260   tree element_type;
261   tree base_decl;
262   tree data_location;
263   tree allocated;
264   tree associated;
265   struct array_descr_dimen
266     {
267       tree lower_bound;
268       tree upper_bound;
269       tree stride;
270     } dimen[10];
271 };
272
273 #endif /* GCC_DWARF2OUT_H */