2012-12-10 Paul Koning <paul_koning@dell.com>
[deliverable/binutils-gdb.git] / gdb / dwarf2loc.h
CommitLineData
852483bc
MK
1/* DWARF 2 location expression support for GDB.
2
0b302171 3 Copyright (C) 2003, 2005, 2007-2012 Free Software Foundation, Inc.
4c2df51b
DJ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
4c2df51b
DJ
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4c2df51b
DJ
19
20#if !defined (DWARF2LOC_H)
21#define DWARF2LOC_H
22
b64f50a1
JK
23#include "dwarf2expr.h"
24
768a979c 25struct symbol_computed_ops;
ae0d2f24
UW
26struct objfile;
27struct dwarf2_per_cu_data;
8cf6f0b1 28struct dwarf2_loclist_baton;
9f6f94ff
TT
29struct agent_expr;
30struct axs_value;
a67af2b9 31
4c2df51b
DJ
32/* This header is private to the DWARF-2 reader. It is shared between
33 dwarf2read.c and dwarf2loc.c. */
34
8e3b41a9 35/* `set debug entry-values' setting. */
ccce17b0 36extern unsigned int entry_values_debug;
8e3b41a9 37
9aa1f1e3
TT
38/* Return the OBJFILE associated with the compilation unit CU. If CU
39 came from a separate debuginfo file, then the master objfile is
40 returned. */
ae0d2f24
UW
41struct objfile *dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *cu);
42
43/* Return the address size given in the compilation unit header for CU. */
98714339 44int dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *cu);
ae0d2f24 45
181cebd4
JK
46/* Return the DW_FORM_ref_addr size given in the compilation unit header for
47 CU. */
48int dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *cu);
49
9eae7c52
TT
50/* Return the offset size given in the compilation unit header for CU. */
51int dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *cu);
52
9aa1f1e3
TT
53/* Return the text offset of the CU. The returned offset comes from
54 this CU's objfile. If this objfile came from a separate debuginfo
55 file, then the offset may be different from the corresponding
56 offset in the parent objfile. */
57CORE_ADDR dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *cu);
58
8cf6f0b1
TT
59/* Find a particular location expression from a location list. */
60const gdb_byte *dwarf2_find_location_expression
61 (struct dwarf2_loclist_baton *baton,
62 size_t *locexpr_length,
63 CORE_ADDR pc);
64
8b9737bf
TT
65struct dwarf2_locexpr_baton dwarf2_fetch_die_loc_sect_off
66 (sect_offset offset_in_cu, struct dwarf2_per_cu_data *per_cu,
67 CORE_ADDR (*get_frame_pc) (void *baton),
68 void *baton);
69
70struct dwarf2_locexpr_baton dwarf2_fetch_die_loc_cu_off
b64f50a1 71 (cu_offset offset_in_cu, struct dwarf2_per_cu_data *per_cu,
8cf6f0b1
TT
72 CORE_ADDR (*get_frame_pc) (void *baton),
73 void *baton);
5c631832 74
b64f50a1 75struct type *dwarf2_get_die_type (cu_offset die_offset,
8a9b8146
TT
76 struct dwarf2_per_cu_data *per_cu);
77
98bfdba5
PA
78/* Evaluate a location description, starting at DATA and with length
79 SIZE, to find the current location of variable of TYPE in the context
80 of FRAME. */
81
82struct value *dwarf2_evaluate_loc_desc (struct type *type,
83 struct frame_info *frame,
84 const gdb_byte *data,
56eb65bd 85 size_t size,
98bfdba5
PA
86 struct dwarf2_per_cu_data *per_cu);
87
3019eac3
DE
88CORE_ADDR dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
89 unsigned int addr_index);
90
0d53c4c4
DJ
91/* The symbol location baton types used by the DWARF-2 reader (i.e.
92 SYMBOL_LOCATION_BATON for a LOC_COMPUTED symbol). "struct
93 dwarf2_locexpr_baton" is for a symbol with a single location
94 expression; "struct dwarf2_loclist_baton" is for a symbol with a
95 location list. */
4c2df51b
DJ
96
97struct dwarf2_locexpr_baton
98{
1d6edc3c
JK
99 /* Pointer to the start of the location expression. Valid only if SIZE is
100 not zero. */
947bb88f 101 const gdb_byte *data;
0d53c4c4 102
1d6edc3c
JK
103 /* Length of the location expression. For optimized out expressions it is
104 zero. */
56eb65bd 105 size_t size;
0d53c4c4 106
ae0d2f24
UW
107 /* The compilation unit containing the symbol whose location
108 we're computing. */
109 struct dwarf2_per_cu_data *per_cu;
0d53c4c4
DJ
110};
111
112struct dwarf2_loclist_baton
113{
114 /* The initial base address for the location list, based on the compilation
115 unit. */
116 CORE_ADDR base_address;
117
118 /* Pointer to the start of the location list. */
947bb88f 119 const gdb_byte *data;
0d53c4c4
DJ
120
121 /* Length of the location list. */
56eb65bd 122 size_t size;
0d53c4c4 123
ae0d2f24
UW
124 /* The compilation unit containing the symbol whose location
125 we're computing. */
126 struct dwarf2_per_cu_data *per_cu;
f664829e
DE
127
128 /* Non-zero if the location list lives in .debug_loc.dwo.
129 The format of entries in this section are different. */
130 unsigned char from_dwo;
4c2df51b
DJ
131};
132
768a979c
UW
133extern const struct symbol_computed_ops dwarf2_locexpr_funcs;
134extern const struct symbol_computed_ops dwarf2_loclist_funcs;
4c2df51b 135
9f6f94ff
TT
136/* Compile a DWARF location expression to an agent expression.
137
138 EXPR is the agent expression we are building.
139 LOC is the agent value we modify.
140 ARCH is the architecture.
141 ADDR_SIZE is the size of addresses, in bytes.
142 OP_PTR is the start of the location expression.
143 OP_END is one past the last byte of the location expression.
144
145 This will throw an exception for various kinds of errors -- for
146 example, if the expression cannot be compiled, or if the expression
147 is invalid. */
148
149extern void dwarf2_compile_expr_to_ax (struct agent_expr *expr,
150 struct axs_value *loc,
151 struct gdbarch *arch,
152 unsigned int addr_size,
153 const gdb_byte *op_ptr,
154 const gdb_byte *op_end,
155 struct dwarf2_per_cu_data *per_cu);
156
111c6489
JK
157/* Determined tail calls for constructing virtual tail call frames. */
158
159struct call_site_chain
160 {
161 /* Initially CALLERS == CALLEES == LENGTH. For partially ambiguous result
162 CALLERS + CALLEES < LENGTH. */
163 int callers, callees, length;
164
165 /* Variably sized array with LENGTH elements. Later [0..CALLERS-1] contain
166 top (GDB "prev") sites and [LENGTH-CALLEES..LENGTH-1] contain bottom
167 (GDB "next") sites. One is interested primarily in the PC field. */
168 struct call_site *call_site[1];
169 };
170
171struct call_site_stuff;
172extern struct call_site_chain *call_site_find_chain (struct gdbarch *gdbarch,
173 CORE_ADDR caller_pc,
174 CORE_ADDR callee_pc);
175
852483bc 176#endif /* dwarf2loc.h */
This page took 0.642789 seconds and 4 git commands to generate.