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