diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-05 11:40:53 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-05 11:40:53 +0000 |
commit | f7fd47281bfa87d64a095880d752b16cd5ed4510 (patch) | |
tree | a82668c3f3a848ead311b17fa6c800b2c428adf3 /gdb/dwarf2expr.h | |
parent | 714835d5a63b86bb0e82c13d2a4840d8b5e633d3 (diff) | |
download | binutils-f7fd47281bfa87d64a095880d752b16cd5ed4510.zip binutils-f7fd47281bfa87d64a095880d752b16cd5ed4510.tar.gz binutils-f7fd47281bfa87d64a095880d752b16cd5ed4510.tar.bz2 |
* dwarf2expr.h (dwarf2_read_address): Add gdbarch argument.
* dwarf2expr.c (dwarf2_read_address): Add gdbarch argument.
Call gdbarch_integer_to_address directly instead of converting
to value and back. Update comment.
(execute_stack_op): Update call site.
* dwarf2loc.c (find_location_expression): Likewise.
(locexpr_describe_location): Update
* dwarf2expr.h (struct dwarf_expr_context): Add gdbarch member.
* dwarf2-frame.c (execute_stack_op): Initialize ctx->gdbarch.
* dwarf2loc. (dwarf2_evaluate_loc_desc): Likewise.
(dwarf2_loc_desc_needs_frame): Likewise.
Diffstat (limited to 'gdb/dwarf2expr.h')
-rw-r--r-- | gdb/dwarf2expr.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/dwarf2expr.h b/gdb/dwarf2expr.h index 463c452..5d9581c 100644 --- a/gdb/dwarf2expr.h +++ b/gdb/dwarf2expr.h @@ -34,6 +34,9 @@ struct dwarf_expr_context number of elements allocated to the stack. */ int stack_len, stack_allocated; + /* Target architecture to use for address operations. */ + struct gdbarch *gdbarch; + /* Target address size in bytes. */ int addr_size; @@ -138,7 +141,7 @@ CORE_ADDR dwarf_expr_fetch (struct dwarf_expr_context *ctx, int n); gdb_byte *read_uleb128 (gdb_byte *buf, gdb_byte *buf_end, ULONGEST * r); gdb_byte *read_sleb128 (gdb_byte *buf, gdb_byte *buf_end, LONGEST * r); -CORE_ADDR dwarf2_read_address (gdb_byte *buf, gdb_byte *buf_end, - int addr_size); +CORE_ADDR dwarf2_read_address (struct gdbarch *gdbarch, gdb_byte *buf, + gdb_byte *buf_end, int addr_size); #endif /* dwarf2expr.h */ |