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