diff options
author | Tom Tromey <tom@tromey.com> | 2020-03-26 09:28:08 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-03-26 09:28:28 -0600 |
commit | 0826b30a9fa085ccee574465523d0560a4a01198 (patch) | |
tree | db67aeae32f988166c068b8841e96181c97f8861 /gdb/dwarf2/attribute.h | |
parent | 2b2558bfacba3813863da6728c021eb89fa34677 (diff) | |
download | binutils-0826b30a9fa085ccee574465523d0560a4a01198.zip binutils-0826b30a9fa085ccee574465523d0560a4a01198.tar.gz binutils-0826b30a9fa085ccee574465523d0560a4a01198.tar.bz2 |
Change two functions to be methods on struct attribute
This changes dwarf2_get_ref_die_offset and
dwarf2_get_attr_constant_value to be methods on struct attribute.
gdb/ChangeLog
2020-03-26 Tom Tromey <tom@tromey.com>
* dwarf2/read.c (handle_data_member_location, dwarf2_add_field)
(mark_common_block_symbol_computed, read_tag_string_type)
(attr_to_dynamic_prop, read_subrange_type): Update.
(dwarf2_get_ref_die_offset, dwarf2_get_attr_constant_value): Move
to be methods on struct attribute.
(skip_one_die, process_imported_unit_die, read_namespace_alias)
(read_call_site_scope, partial_die_info::read)
(partial_die_info::read, lookup_die_type, follow_die_ref):
Update.
* dwarf2/attribute.c (attribute::get_ref_die_offset): New method,
from dwarf2_get_ref_die_offset.
(attribute::constant_value): New method, from
dwarf2_get_attr_constant_value.
* dwarf2/attribute.h (struct attribute) <get_ref_die_offset>:
Declare method.
<constant_value>: New method.
Diffstat (limited to 'gdb/dwarf2/attribute.h')
-rw-r--r-- | gdb/dwarf2/attribute.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/dwarf2/attribute.h b/gdb/dwarf2/attribute.h index c260231..483b805 100644 --- a/gdb/dwarf2/attribute.h +++ b/gdb/dwarf2/attribute.h @@ -28,6 +28,7 @@ #define GDB_DWARF2_ATTRIBUTE_H #include "dwarf2.h" +#include "gdbtypes.h" /* Blocks are a bunch of untyped bytes. */ struct dwarf_block @@ -84,6 +85,17 @@ struct attribute bool form_is_block () const; + /* Return DIE offset of this attribute. Return 0 with complaint if + the attribute is not of the required kind. */ + + sect_offset get_ref_die_offset () const; + + /* Return the constant value held by this attribute. Return + DEFAULT_VALUE if the value held by the attribute is not + constant. */ + + LONGEST constant_value (int default_value) const; + ENUM_BITFIELD(dwarf_attribute) name : 16; ENUM_BITFIELD(dwarf_form) form : 15; |