]>
Commit | Line | Data |
---|---|---|
4c2df51b DJ |
1 | /* DWARF 2 location expression support for GDB. |
2 | Copyright 2003 Free Software Foundation, Inc. | |
3 | Contributed by Daniel Jacobowitz, MontaVista Software, Inc. | |
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 | |
9 | the Free Software Foundation; either version 2 of the License, or (at | |
10 | your option) any later version. | |
11 | ||
12 | This program is distributed in the hope that it will be useful, but | |
13 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with this program; if not, write to the Free Software | |
19 | Foundation, Inc., 59 Temple Place - Suite 330, | |
20 | Boston, MA 02111-1307, USA. */ | |
21 | ||
22 | #include "defs.h" | |
23 | #include "ui-out.h" | |
24 | #include "value.h" | |
25 | #include "frame.h" | |
26 | #include "gdbcore.h" | |
27 | #include "target.h" | |
28 | #include "inferior.h" | |
a55cc764 DJ |
29 | #include "ax.h" |
30 | #include "ax-gdb.h" | |
e4adbba9 | 31 | #include "regcache.h" |
4c2df51b DJ |
32 | |
33 | #include "elf/dwarf2.h" | |
34 | #include "dwarf2expr.h" | |
35 | #include "dwarf2loc.h" | |
36 | ||
37 | #include "gdb_string.h" | |
38 | ||
39 | #ifndef DWARF2_REG_TO_REGNUM | |
40 | #define DWARF2_REG_TO_REGNUM(REG) (REG) | |
41 | #endif | |
42 | ||
0d53c4c4 DJ |
43 | /* A helper function for dealing with location lists. Given a |
44 | symbol baton (BATON) and a pc value (PC), find the appropriate | |
45 | location expression, set *LOCEXPR_LENGTH, and return a pointer | |
46 | to the beginning of the expression. Returns NULL on failure. | |
47 | ||
48 | For now, only return the first matching location expression; there | |
49 | can be more than one in the list. */ | |
50 | ||
51 | static char * | |
52 | find_location_expression (struct dwarf2_loclist_baton *baton, | |
53 | int *locexpr_length, CORE_ADDR pc) | |
54 | { | |
55 | CORE_ADDR base_address = baton->base_address; | |
56 | CORE_ADDR low, high; | |
57 | char *loc_ptr, *buf_end; | |
58 | unsigned int addr_size = TARGET_ADDR_BIT / TARGET_CHAR_BIT, length; | |
59 | CORE_ADDR base_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1)); | |
60 | ||
61 | loc_ptr = baton->data; | |
62 | buf_end = baton->data + baton->size; | |
63 | ||
64 | while (1) | |
65 | { | |
66 | low = dwarf2_read_address (loc_ptr, buf_end, &length); | |
67 | loc_ptr += length; | |
68 | high = dwarf2_read_address (loc_ptr, buf_end, &length); | |
69 | loc_ptr += length; | |
70 | ||
71 | /* An end-of-list entry. */ | |
72 | if (low == 0 && high == 0) | |
73 | return NULL; | |
74 | ||
75 | /* A base-address-selection entry. */ | |
76 | if ((low & base_mask) == base_mask) | |
77 | { | |
78 | base_address = high; | |
79 | continue; | |
80 | } | |
81 | ||
82 | /* Otherwise, a location expression entry. */ | |
83 | low += base_address; | |
84 | high += base_address; | |
85 | ||
86 | length = extract_unsigned_integer (loc_ptr, 2); | |
87 | loc_ptr += 2; | |
88 | ||
89 | if (pc >= low && pc < high) | |
90 | { | |
91 | *locexpr_length = length; | |
92 | return loc_ptr; | |
93 | } | |
94 | ||
95 | loc_ptr += length; | |
96 | } | |
97 | } | |
98 | ||
4c2df51b DJ |
99 | /* This is the baton used when performing dwarf2 expression |
100 | evaluation. */ | |
101 | struct dwarf_expr_baton | |
102 | { | |
103 | struct frame_info *frame; | |
104 | struct objfile *objfile; | |
105 | }; | |
106 | ||
107 | /* Helper functions for dwarf2_evaluate_loc_desc. */ | |
108 | ||
109 | /* Using the frame specified in BATON, read register REGNUM. The lval | |
110 | type will be returned in LVALP, and for lval_memory the register | |
111 | save address will be returned in ADDRP. */ | |
112 | static CORE_ADDR | |
e4adbba9 | 113 | dwarf_expr_read_reg (void *baton, int dwarf_regnum, enum lval_type *lvalp, |
4c2df51b DJ |
114 | CORE_ADDR *addrp) |
115 | { | |
4c2df51b | 116 | struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton; |
e4adbba9 DJ |
117 | CORE_ADDR result; |
118 | char *buf; | |
119 | int optimized, regnum, realnum, regsize; | |
120 | ||
121 | regnum = DWARF2_REG_TO_REGNUM (dwarf_regnum); | |
122 | regsize = register_size (current_gdbarch, regnum); | |
123 | buf = (char *) alloca (regsize); | |
4c2df51b | 124 | |
e4adbba9 DJ |
125 | frame_register (debaton->frame, regnum, &optimized, lvalp, addrp, &realnum, |
126 | buf); | |
127 | result = extract_address (buf, regsize); | |
4c2df51b DJ |
128 | |
129 | return result; | |
130 | } | |
131 | ||
132 | /* Read memory at ADDR (length LEN) into BUF. */ | |
133 | ||
134 | static void | |
135 | dwarf_expr_read_mem (void *baton, char *buf, CORE_ADDR addr, size_t len) | |
136 | { | |
137 | read_memory (addr, buf, len); | |
138 | } | |
139 | ||
140 | /* Using the frame specified in BATON, find the location expression | |
141 | describing the frame base. Return a pointer to it in START and | |
142 | its length in LENGTH. */ | |
143 | static void | |
144 | dwarf_expr_frame_base (void *baton, unsigned char **start, size_t * length) | |
145 | { | |
da62e633 AC |
146 | /* FIXME: cagney/2003-03-26: This code should be using |
147 | get_frame_base_address(), and then implement a dwarf2 specific | |
148 | this_base method. */ | |
4c2df51b | 149 | struct symbol *framefunc; |
4c2df51b | 150 | struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton; |
0d53c4c4 | 151 | |
4c2df51b | 152 | framefunc = get_frame_function (debaton->frame); |
0d53c4c4 DJ |
153 | |
154 | if (SYMBOL_LOCATION_FUNCS (framefunc) == &dwarf2_loclist_funcs) | |
155 | { | |
156 | struct dwarf2_loclist_baton *symbaton; | |
157 | symbaton = SYMBOL_LOCATION_BATON (framefunc); | |
158 | *start = find_location_expression (symbaton, length, | |
159 | get_frame_pc (debaton->frame)); | |
160 | } | |
161 | else | |
162 | { | |
163 | struct dwarf2_locexpr_baton *symbaton; | |
164 | symbaton = SYMBOL_LOCATION_BATON (framefunc); | |
165 | *length = symbaton->size; | |
166 | *start = symbaton->data; | |
167 | } | |
168 | ||
169 | if (*start == NULL) | |
170 | error ("Could not find the frame base for \"%s\".", | |
171 | SYMBOL_NATURAL_NAME (framefunc)); | |
4c2df51b DJ |
172 | } |
173 | ||
174 | /* Using the objfile specified in BATON, find the address for the | |
175 | current thread's thread-local storage with offset OFFSET. */ | |
176 | static CORE_ADDR | |
177 | dwarf_expr_tls_address (void *baton, CORE_ADDR offset) | |
178 | { | |
179 | struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton; | |
180 | CORE_ADDR addr; | |
181 | ||
182 | if (target_get_thread_local_address_p ()) | |
183 | addr = target_get_thread_local_address (inferior_ptid, | |
184 | debaton->objfile, | |
185 | offset); | |
186 | else | |
187 | error ("Cannot find thread-local variables on this target"); | |
188 | ||
189 | return addr; | |
190 | } | |
191 | ||
192 | /* Evaluate a location description, starting at DATA and with length | |
193 | SIZE, to find the current location of variable VAR in the context | |
194 | of FRAME. */ | |
195 | static struct value * | |
196 | dwarf2_evaluate_loc_desc (struct symbol *var, struct frame_info *frame, | |
197 | unsigned char *data, unsigned short size, | |
198 | struct objfile *objfile) | |
199 | { | |
200 | CORE_ADDR result; | |
201 | struct value *retval; | |
202 | struct dwarf_expr_baton baton; | |
203 | struct dwarf_expr_context *ctx; | |
204 | ||
0d53c4c4 DJ |
205 | if (size == 0) |
206 | { | |
207 | retval = allocate_value (SYMBOL_TYPE (var)); | |
208 | VALUE_LVAL (retval) = not_lval; | |
209 | VALUE_OPTIMIZED_OUT (retval) = 1; | |
210 | } | |
211 | ||
4c2df51b DJ |
212 | baton.frame = frame; |
213 | baton.objfile = objfile; | |
214 | ||
215 | ctx = new_dwarf_expr_context (); | |
216 | ctx->baton = &baton; | |
217 | ctx->read_reg = dwarf_expr_read_reg; | |
218 | ctx->read_mem = dwarf_expr_read_mem; | |
219 | ctx->get_frame_base = dwarf_expr_frame_base; | |
220 | ctx->get_tls_address = dwarf_expr_tls_address; | |
221 | ||
222 | dwarf_expr_eval (ctx, data, size); | |
223 | ||
224 | retval = allocate_value (SYMBOL_TYPE (var)); | |
225 | VALUE_BFD_SECTION (retval) = SYMBOL_BFD_SECTION (var); | |
226 | ||
227 | if (ctx->in_reg) | |
228 | { | |
229 | store_unsigned_integer (VALUE_CONTENTS_RAW (retval), | |
230 | TYPE_LENGTH (SYMBOL_TYPE (var)), | |
231 | dwarf_expr_fetch (ctx, 0)); | |
232 | VALUE_LVAL (retval) = lval_register; | |
233 | VALUE_REGNO (retval) = ctx->regnum; | |
234 | } | |
235 | else | |
236 | { | |
237 | result = dwarf_expr_fetch (ctx, 0); | |
238 | VALUE_LVAL (retval) = lval_memory; | |
239 | VALUE_LAZY (retval) = 1; | |
240 | VALUE_ADDRESS (retval) = result; | |
241 | } | |
242 | ||
243 | free_dwarf_expr_context (ctx); | |
244 | ||
245 | return retval; | |
246 | } | |
247 | ||
248 | ||
249 | ||
250 | ||
251 | \f | |
252 | /* Helper functions and baton for dwarf2_loc_desc_needs_frame. */ | |
253 | ||
254 | struct needs_frame_baton | |
255 | { | |
256 | int needs_frame; | |
257 | }; | |
258 | ||
259 | /* Reads from registers do require a frame. */ | |
260 | static CORE_ADDR | |
261 | needs_frame_read_reg (void *baton, int regnum, enum lval_type *lvalp, | |
262 | CORE_ADDR *addrp) | |
263 | { | |
264 | struct needs_frame_baton *nf_baton = baton; | |
265 | nf_baton->needs_frame = 1; | |
266 | return 1; | |
267 | } | |
268 | ||
269 | /* Reads from memory do not require a frame. */ | |
270 | static void | |
271 | needs_frame_read_mem (void *baton, char *buf, CORE_ADDR addr, size_t len) | |
272 | { | |
273 | memset (buf, 0, len); | |
274 | } | |
275 | ||
276 | /* Frame-relative accesses do require a frame. */ | |
277 | static void | |
278 | needs_frame_frame_base (void *baton, unsigned char **start, size_t * length) | |
279 | { | |
280 | static char lit0 = DW_OP_lit0; | |
281 | struct needs_frame_baton *nf_baton = baton; | |
282 | ||
283 | *start = &lit0; | |
284 | *length = 1; | |
285 | ||
286 | nf_baton->needs_frame = 1; | |
287 | } | |
288 | ||
289 | /* Thread-local accesses do require a frame. */ | |
290 | static CORE_ADDR | |
291 | needs_frame_tls_address (void *baton, CORE_ADDR offset) | |
292 | { | |
293 | struct needs_frame_baton *nf_baton = baton; | |
294 | nf_baton->needs_frame = 1; | |
295 | return 1; | |
296 | } | |
297 | ||
298 | /* Return non-zero iff the location expression at DATA (length SIZE) | |
299 | requires a frame to evaluate. */ | |
300 | ||
301 | static int | |
302 | dwarf2_loc_desc_needs_frame (unsigned char *data, unsigned short size) | |
303 | { | |
304 | struct needs_frame_baton baton; | |
305 | struct dwarf_expr_context *ctx; | |
306 | ||
307 | baton.needs_frame = 0; | |
308 | ||
309 | ctx = new_dwarf_expr_context (); | |
310 | ctx->baton = &baton; | |
311 | ctx->read_reg = needs_frame_read_reg; | |
312 | ctx->read_mem = needs_frame_read_mem; | |
313 | ctx->get_frame_base = needs_frame_frame_base; | |
314 | ctx->get_tls_address = needs_frame_tls_address; | |
315 | ||
316 | dwarf_expr_eval (ctx, data, size); | |
317 | ||
318 | free_dwarf_expr_context (ctx); | |
319 | ||
320 | return baton.needs_frame; | |
321 | } | |
322 | ||
0d53c4c4 DJ |
323 | static void |
324 | dwarf2_tracepoint_var_ref (struct symbol * symbol, struct agent_expr * ax, | |
325 | struct axs_value * value, unsigned char *data, | |
326 | int size) | |
327 | { | |
328 | if (size == 0) | |
329 | error ("Symbol \"%s\" has been optimized out.", | |
330 | SYMBOL_PRINT_NAME (symbol)); | |
331 | ||
332 | if (size == 1 | |
333 | && data[0] >= DW_OP_reg0 | |
334 | && data[0] <= DW_OP_reg31) | |
335 | { | |
336 | value->kind = axs_lvalue_register; | |
337 | value->u.reg = data[0] - DW_OP_reg0; | |
338 | } | |
339 | else if (data[0] == DW_OP_regx) | |
340 | { | |
341 | ULONGEST reg; | |
342 | read_uleb128 (data + 1, data + size, ®); | |
343 | value->kind = axs_lvalue_register; | |
344 | value->u.reg = reg; | |
345 | } | |
346 | else if (data[0] == DW_OP_fbreg) | |
347 | { | |
348 | /* And this is worse than just minimal; we should honor the frame base | |
349 | as above. */ | |
350 | int frame_reg; | |
351 | LONGEST frame_offset; | |
352 | unsigned char *buf_end; | |
353 | ||
354 | buf_end = read_sleb128 (data + 1, data + size, &frame_offset); | |
355 | if (buf_end != data + size) | |
356 | error ("Unexpected opcode after DW_OP_fbreg for symbol \"%s\".", | |
357 | SYMBOL_PRINT_NAME (symbol)); | |
4c2df51b | 358 | |
0d53c4c4 DJ |
359 | TARGET_VIRTUAL_FRAME_POINTER (ax->scope, &frame_reg, &frame_offset); |
360 | ax_reg (ax, frame_reg); | |
361 | ax_const_l (ax, frame_offset); | |
362 | ax_simple (ax, aop_add); | |
4c2df51b | 363 | |
0d53c4c4 DJ |
364 | ax_const_l (ax, frame_offset); |
365 | ax_simple (ax, aop_add); | |
366 | value->kind = axs_lvalue_memory; | |
367 | } | |
368 | else | |
369 | error ("Unsupported DWARF opcode in the location of \"%s\".", | |
370 | SYMBOL_PRINT_NAME (symbol)); | |
371 | } | |
4c2df51b DJ |
372 | \f |
373 | /* Return the value of SYMBOL in FRAME using the DWARF-2 expression | |
374 | evaluator to calculate the location. */ | |
375 | static struct value * | |
376 | locexpr_read_variable (struct symbol *symbol, struct frame_info *frame) | |
377 | { | |
378 | struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol); | |
379 | struct value *val; | |
380 | val = dwarf2_evaluate_loc_desc (symbol, frame, dlbaton->data, dlbaton->size, | |
381 | dlbaton->objfile); | |
382 | ||
383 | return val; | |
384 | } | |
385 | ||
386 | /* Return non-zero iff we need a frame to evaluate SYMBOL. */ | |
387 | static int | |
388 | locexpr_read_needs_frame (struct symbol *symbol) | |
389 | { | |
390 | struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol); | |
391 | return dwarf2_loc_desc_needs_frame (dlbaton->data, dlbaton->size); | |
392 | } | |
393 | ||
394 | /* Print a natural-language description of SYMBOL to STREAM. */ | |
395 | static int | |
396 | locexpr_describe_location (struct symbol *symbol, struct ui_file *stream) | |
397 | { | |
398 | /* FIXME: be more extensive. */ | |
399 | struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol); | |
400 | ||
401 | if (dlbaton->size == 1 | |
402 | && dlbaton->data[0] >= DW_OP_reg0 | |
403 | && dlbaton->data[0] <= DW_OP_reg31) | |
404 | { | |
405 | int regno = DWARF2_REG_TO_REGNUM (dlbaton->data[0] - DW_OP_reg0); | |
406 | fprintf_filtered (stream, | |
407 | "a variable in register %s", REGISTER_NAME (regno)); | |
408 | return 1; | |
409 | } | |
410 | ||
411 | fprintf_filtered (stream, | |
412 | "a variable with complex or multiple locations (DWARF2)"); | |
413 | return 1; | |
414 | } | |
415 | ||
a55cc764 DJ |
416 | |
417 | /* Describe the location of SYMBOL as an agent value in VALUE, generating | |
418 | any necessary bytecode in AX. | |
419 | ||
420 | NOTE drow/2003-02-26: This function is extremely minimal, because | |
421 | doing it correctly is extremely complicated and there is no | |
422 | publicly available stub with tracepoint support for me to test | |
423 | against. When there is one this function should be revisited. */ | |
424 | ||
0d53c4c4 | 425 | static void |
a55cc764 DJ |
426 | locexpr_tracepoint_var_ref (struct symbol * symbol, struct agent_expr * ax, |
427 | struct axs_value * value) | |
428 | { | |
429 | struct dwarf2_locexpr_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol); | |
430 | ||
0d53c4c4 | 431 | dwarf2_tracepoint_var_ref (symbol, ax, value, dlbaton->data, dlbaton->size); |
a55cc764 DJ |
432 | } |
433 | ||
4c2df51b DJ |
434 | /* The set of location functions used with the DWARF-2 expression |
435 | evaluator. */ | |
436 | struct location_funcs dwarf2_locexpr_funcs = { | |
437 | locexpr_read_variable, | |
438 | locexpr_read_needs_frame, | |
439 | locexpr_describe_location, | |
a55cc764 | 440 | locexpr_tracepoint_var_ref |
4c2df51b | 441 | }; |
0d53c4c4 DJ |
442 | |
443 | ||
444 | /* Wrapper functions for location lists. These generally find | |
445 | the appropriate location expression and call something above. */ | |
446 | ||
447 | /* Return the value of SYMBOL in FRAME using the DWARF-2 expression | |
448 | evaluator to calculate the location. */ | |
449 | static struct value * | |
450 | loclist_read_variable (struct symbol *symbol, struct frame_info *frame) | |
451 | { | |
452 | struct dwarf2_loclist_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol); | |
453 | struct value *val; | |
454 | unsigned char *data; | |
455 | int size; | |
456 | ||
457 | data = find_location_expression (dlbaton, &size, | |
458 | frame ? get_frame_pc (frame) : 0); | |
459 | if (data == NULL) | |
460 | error ("Variable \"%s\" is not available.", SYMBOL_NATURAL_NAME (symbol)); | |
461 | ||
462 | val = dwarf2_evaluate_loc_desc (symbol, frame, data, size, dlbaton->objfile); | |
463 | ||
464 | return val; | |
465 | } | |
466 | ||
467 | /* Return non-zero iff we need a frame to evaluate SYMBOL. */ | |
468 | static int | |
469 | loclist_read_needs_frame (struct symbol *symbol) | |
470 | { | |
471 | /* If there's a location list, then assume we need to have a frame | |
472 | to choose the appropriate location expression. With tracking of | |
473 | global variables this is not necessarily true, but such tracking | |
474 | is disabled in GCC at the moment until we figure out how to | |
475 | represent it. */ | |
476 | ||
477 | return 1; | |
478 | } | |
479 | ||
480 | /* Print a natural-language description of SYMBOL to STREAM. */ | |
481 | static int | |
482 | loclist_describe_location (struct symbol *symbol, struct ui_file *stream) | |
483 | { | |
484 | /* FIXME: Could print the entire list of locations. */ | |
485 | fprintf_filtered (stream, "a variable with multiple locations"); | |
486 | return 1; | |
487 | } | |
488 | ||
489 | /* Describe the location of SYMBOL as an agent value in VALUE, generating | |
490 | any necessary bytecode in AX. */ | |
491 | static void | |
492 | loclist_tracepoint_var_ref (struct symbol * symbol, struct agent_expr * ax, | |
493 | struct axs_value * value) | |
494 | { | |
495 | struct dwarf2_loclist_baton *dlbaton = SYMBOL_LOCATION_BATON (symbol); | |
496 | unsigned char *data; | |
497 | int size; | |
498 | ||
499 | data = find_location_expression (dlbaton, &size, ax->scope); | |
500 | if (data == NULL) | |
501 | error ("Variable \"%s\" is not available.", SYMBOL_NATURAL_NAME (symbol)); | |
502 | ||
503 | dwarf2_tracepoint_var_ref (symbol, ax, value, data, size); | |
504 | } | |
505 | ||
506 | /* The set of location functions used with the DWARF-2 expression | |
507 | evaluator and location lists. */ | |
508 | struct location_funcs dwarf2_loclist_funcs = { | |
509 | loclist_read_variable, | |
510 | loclist_read_needs_frame, | |
511 | loclist_describe_location, | |
512 | loclist_tracepoint_var_ref | |
513 | }; |