gdb: remove TYPE_FIELD_STATIC_PHYSNAME
Remove TYPE_FIELD_STATIC_PHYSNAME, replace with type::field + field::loc_physname. Change-Id: Ie35d446b67dd1d02f39998b406001bdb7e6d5abb
This commit is contained in:
parent
970db51860
commit
fcbbbd90f0
5 changed files with 4 additions and 5 deletions
|
@ -1447,7 +1447,7 @@ gen_static_field (struct agent_expr *ax, struct axs_value *value,
|
|||
}
|
||||
else
|
||||
{
|
||||
const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
|
||||
const char *phys_name = type->field (fieldno).loc_physname ();
|
||||
struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0).symbol;
|
||||
|
||||
if (sym)
|
||||
|
|
|
@ -614,7 +614,7 @@ compile_cplus_convert_struct_or_union_members
|
|||
|
||||
case FIELD_LOC_KIND_PHYSNAME:
|
||||
{
|
||||
const char *physname = TYPE_FIELD_STATIC_PHYSNAME (type, i);
|
||||
const char *physname = type->field (i).loc_physname ();
|
||||
struct block_symbol sym
|
||||
= lookup_symbol (physname, instance->block (),
|
||||
VAR_DOMAIN, nullptr);
|
||||
|
|
|
@ -5573,7 +5573,7 @@ copy_type_recursive (struct objfile *objfile,
|
|||
break;
|
||||
case FIELD_LOC_KIND_PHYSNAME:
|
||||
new_type->field (i).set_loc_physname
|
||||
(xstrdup (TYPE_FIELD_STATIC_PHYSNAME (type, i)));
|
||||
(xstrdup (type->field (i).loc_physname ()));
|
||||
break;
|
||||
case FIELD_LOC_KIND_DWARF_BLOCK:
|
||||
new_type->field (i).set_loc_dwarf_block
|
||||
|
|
|
@ -2128,7 +2128,6 @@ extern void set_type_vptr_basetype (struct type *, struct type *);
|
|||
#define FIELD_ARTIFICIAL(thisfld) ((thisfld).artificial)
|
||||
#define FIELD_BITSIZE(thisfld) ((thisfld).bitsize)
|
||||
|
||||
#define TYPE_FIELD_STATIC_PHYSNAME(thistype, n) ((thistype)->field (n).loc_physname ())
|
||||
#define TYPE_FIELD_STATIC_PHYSADDR(thistype, n) ((thistype)->field (n).loc_physaddr ())
|
||||
#define TYPE_FIELD_DWARF_BLOCK(thistype, n) ((thistype)->field (n).loc_dwarf_block ())
|
||||
#define TYPE_FIELD_ARTIFICIAL(thistype, n) FIELD_ARTIFICIAL((thistype)->field (n))
|
||||
|
|
|
@ -2960,7 +2960,7 @@ value_static_field (struct type *type, int fieldno)
|
|||
break;
|
||||
case FIELD_LOC_KIND_PHYSNAME:
|
||||
{
|
||||
const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
|
||||
const char *phys_name = type->field (fieldno).loc_physname ();
|
||||
/* type->field (fieldno).name (); */
|
||||
struct block_symbol sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue