GDB (API)
Loading...
Searching...
No Matches
Classes | Macros | Typedefs | Enumerations | Functions | Variables
gdbtypes.h File Reference
#include "hashtab.h"
#include "gdbsupport/array-view.h"
#include "gdbsupport/gdb-hashtab.h"
#include "gdbsupport/gdb_optional.h"
#include "gdbsupport/offset-type.h"
#include "gdbsupport/enum-flags.h"
#include "gdbsupport/underlying.h"
#include "gdbsupport/print-utils.h"
#include "gdbsupport/function-view.h"
#include "dwarf2.h"
#include "gdbsupport/gdb_obstack.h"
#include "gmp-utils.h"
#include "type-codes.def"

Go to the source code of this file.

Classes

struct  discriminant_range
 
struct  variant
 
struct  variant_part
 
union  dynamic_prop_data
 
struct  dynamic_prop
 
struct  dynamic_prop_list
 
union  type_owner
 
union  field_location
 
struct  field
 
struct  range_bounds
 
union  type_specific
 
struct  main_type
 
struct  type
 
struct  fn_fieldlist
 
struct  fn_field
 
struct  decl_field
 
struct  cplus_struct_type
 
struct  rank
 
struct  gnat_aux_type
 
struct  func_type
 
struct  fixed_point_type_info
 
struct  builtin_type
 
class  type_allocator
 
struct  struct_elt
 

Macros

#define B_SET(a, x)   ((a)[(x)>>3] |= (1 << ((x)&7)))
 
#define B_CLR(a, x)   ((a)[(x)>>3] &= ~(1 << ((x)&7)))
 
#define B_TST(a, x)   ((a)[(x)>>3] & (1 << ((x)&7)))
 
#define B_TYPE   unsigned char
 
#define B_BYTES(x)   ( 1 + ((x)>>3) )
 
#define B_CLRALL(a, x)   memset ((a), 0, B_BYTES(x))
 
#define OP(X)   X,
 
#define TYPE_NOTTEXT(t)   (((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_NOTTEXT)
 
#define TYPE_CONST(t)   ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_CONST) != 0)
 
#define TYPE_VOLATILE(t)    ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_VOLATILE) != 0)
 
#define TYPE_RESTRICT(t)    ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_RESTRICT) != 0)
 
#define TYPE_ATOMIC(t)    ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_ATOMIC) != 0)
 
#define TYPE_IS_REFERENCE(t)    ((t)->code () == TYPE_CODE_REF || (t)->code () == TYPE_CODE_RVALUE_REF)
 
#define TYPE_IS_ALLOCATABLE(t)    ((t)->dyn_prop (DYN_PROP_ALLOCATED) != NULL)
 
#define TYPE_HAS_VARIANT_PARTS(t)    ((t)->dyn_prop (DYN_PROP_VARIANT_PARTS) != nullptr)
 
#define TYPE_HAS_DYNAMIC_LENGTH(t)    ((t)->dyn_prop (DYN_PROP_BYTE_SIZE) != nullptr)
 
#define TYPE_CODE_SPACE(t)    ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_CODE_SPACE) != 0)
 
#define TYPE_DATA_SPACE(t)    ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_DATA_SPACE) != 0)
 
#define TYPE_ADDRESS_CLASS_1(t)
 
#define TYPE_ADDRESS_CLASS_2(t)
 
#define TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL    (TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2)
 
#define TYPE_ADDRESS_CLASS_ALL(t)
 
#define TYPE_ALIGN_BITS   8
 
#define VOFFSET_STATIC   1
 
#define INIT_CPLUS_SPECIFIC(type)
 
#define ALLOCATE_CPLUS_STRUCT_TYPE(type)   allocate_cplus_struct_type (type)
 
#define HAVE_CPLUS_STRUCT(type)
 
#define INIT_NONE_SPECIFIC(type)
 
#define INIT_GNAT_SPECIFIC(type)
 
#define ALLOCATE_GNAT_AUX_TYPE(type)   allocate_gnat_aux_type (type)
 
#define HAVE_GNAT_AUX_INFO(type)    (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_GNAT_STUFF)
 
#define ADA_TYPE_P(type)
 
#define INIT_FUNC_SPECIFIC(type)
 
#define INIT_FIXED_POINT_SPECIFIC(type)
 
#define TYPE_MAIN_TYPE(thistype)   (thistype)->main_type
 
#define TYPE_POINTER_TYPE(thistype)   (thistype)->pointer_type
 
#define TYPE_REFERENCE_TYPE(thistype)   (thistype)->reference_type
 
#define TYPE_RVALUE_REFERENCE_TYPE(thistype)   (thistype)->rvalue_reference_type
 
#define TYPE_CHAIN(thistype)   (thistype)->chain
 
#define TYPE_RAW_ALIGN(thistype)   type_raw_align (thistype)
 
#define TYPE_DATA_LOCATION(thistype)    ((thistype)->dyn_prop (DYN_PROP_DATA_LOCATION))
 
#define TYPE_DATA_LOCATION_BATON(thistype)    TYPE_DATA_LOCATION (thistype)->data.baton
 
#define TYPE_DATA_LOCATION_ADDR(thistype)    (TYPE_DATA_LOCATION (thistype)->const_val ())
 
#define TYPE_DATA_LOCATION_KIND(thistype)    (TYPE_DATA_LOCATION (thistype)->kind ())
 
#define TYPE_DYNAMIC_LENGTH(thistype)    ((thistype)->dyn_prop (DYN_PROP_BYTE_SIZE))
 
#define TYPE_ALLOCATED_PROP(thistype)    ((thistype)->dyn_prop (DYN_PROP_ALLOCATED))
 
#define TYPE_ASSOCIATED_PROP(thistype)    ((thistype)->dyn_prop (DYN_PROP_ASSOCIATED))
 
#define TYPE_RANK_PROP(thistype)    ((thistype)->dyn_prop (DYN_PROP_RANK))
 
#define TYPE_SELF_TYPE(thistype)   internal_type_self_type (thistype)
 
#define TYPE_VPTR_FIELDNO(thistype)   internal_type_vptr_fieldno (thistype)
 
#define TYPE_VPTR_BASETYPE(thistype)   internal_type_vptr_basetype (thistype)
 
#define TYPE_NFN_FIELDS(thistype)   TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields
 
#define TYPE_SPECIFIC_FIELD(thistype)    TYPE_MAIN_TYPE(thistype)->type_specific_field
 
#define TYPE_CPLUS_SPECIFIC(thistype)
 
#define TYPE_RAW_CPLUS_SPECIFIC(thistype)   TYPE_MAIN_TYPE(thistype)->type_specific.cplus_stuff
 
#define TYPE_CPLUS_CALLING_CONVENTION(thistype)    TYPE_MAIN_TYPE(thistype)->type_specific.cplus_stuff->calling_convention
 
#define TYPE_FLOATFORMAT(thistype)   TYPE_MAIN_TYPE(thistype)->type_specific.floatformat
 
#define TYPE_GNAT_SPECIFIC(thistype)   TYPE_MAIN_TYPE(thistype)->type_specific.gnat_stuff
 
#define TYPE_DESCRIPTIVE_TYPE(thistype)   TYPE_GNAT_SPECIFIC(thistype)->descriptive_type
 
#define TYPE_CALLING_CONVENTION(thistype)   TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->calling_convention
 
#define TYPE_NO_RETURN(thistype)   TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->is_noreturn
 
#define TYPE_TAIL_CALL_LIST(thistype)   TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->tail_call_list
 
#define TYPE_BASECLASS(thistype, index)   ((thistype)->field (index).type ())
 
#define TYPE_N_BASECLASSES(thistype)   TYPE_CPLUS_SPECIFIC(thistype)->n_baseclasses
 
#define TYPE_BASECLASS_NAME(thistype, index)   (thistype->field (index).name ())
 
#define TYPE_BASECLASS_BITPOS(thistype, index)   (thistype->field (index).loc_bitpos ())
 
#define BASETYPE_VIA_PUBLIC(thistype, index)    ((!TYPE_FIELD_PRIVATE(thistype, index)) && (!TYPE_FIELD_PROTECTED(thistype, index)))
 
#define TYPE_CPLUS_DYNAMIC(thistype)   TYPE_CPLUS_SPECIFIC (thistype)->is_dynamic
 
#define BASETYPE_VIA_VIRTUAL(thistype, index)
 
#define TYPE_FIELD_PRIVATE_BITS(thistype)    TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits
 
#define TYPE_FIELD_PROTECTED_BITS(thistype)    TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits
 
#define TYPE_FIELD_IGNORE_BITS(thistype)    TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits
 
#define TYPE_FIELD_VIRTUAL_BITS(thistype)    TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits
 
#define SET_TYPE_FIELD_PRIVATE(thistype, n)    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n))
 
#define SET_TYPE_FIELD_PROTECTED(thistype, n)    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n))
 
#define SET_TYPE_FIELD_IGNORE(thistype, n)    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n))
 
#define SET_TYPE_FIELD_VIRTUAL(thistype, n)    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n))
 
#define TYPE_FIELD_PRIVATE(thistype, n)
 
#define TYPE_FIELD_PROTECTED(thistype, n)
 
#define TYPE_FIELD_IGNORE(thistype, n)
 
#define TYPE_FIELD_VIRTUAL(thistype, n)
 
#define TYPE_FN_FIELDLISTS(thistype)   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists
 
#define TYPE_FN_FIELDLIST(thistype, n)   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n]
 
#define TYPE_FN_FIELDLIST1(thistype, n)   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].fn_fields
 
#define TYPE_FN_FIELDLIST_NAME(thistype, n)   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].name
 
#define TYPE_FN_FIELDLIST_LENGTH(thistype, n)   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].length
 
#define TYPE_N_TEMPLATE_ARGUMENTS(thistype)    TYPE_CPLUS_SPECIFIC (thistype)->n_template_arguments
 
#define TYPE_TEMPLATE_ARGUMENTS(thistype)    TYPE_CPLUS_SPECIFIC (thistype)->template_arguments
 
#define TYPE_TEMPLATE_ARGUMENT(thistype, n)    TYPE_CPLUS_SPECIFIC (thistype)->template_arguments[n]
 
#define TYPE_FN_FIELD(thisfn, n)   (thisfn)[n]
 
#define TYPE_FN_FIELD_PHYSNAME(thisfn, n)   (thisfn)[n].physname
 
#define TYPE_FN_FIELD_TYPE(thisfn, n)   (thisfn)[n].type
 
#define TYPE_FN_FIELD_ARGS(thisfn, n)   (((thisfn)[n].type)->fields ())
 
#define TYPE_FN_FIELD_CONST(thisfn, n)   ((thisfn)[n].is_const)
 
#define TYPE_FN_FIELD_VOLATILE(thisfn, n)   ((thisfn)[n].is_volatile)
 
#define TYPE_FN_FIELD_PRIVATE(thisfn, n)   ((thisfn)[n].is_private)
 
#define TYPE_FN_FIELD_PROTECTED(thisfn, n)   ((thisfn)[n].is_protected)
 
#define TYPE_FN_FIELD_ARTIFICIAL(thisfn, n)   ((thisfn)[n].is_artificial)
 
#define TYPE_FN_FIELD_STUB(thisfn, n)   ((thisfn)[n].is_stub)
 
#define TYPE_FN_FIELD_CONSTRUCTOR(thisfn, n)   ((thisfn)[n].is_constructor)
 
#define TYPE_FN_FIELD_FCONTEXT(thisfn, n)   ((thisfn)[n].fcontext)
 
#define TYPE_FN_FIELD_VOFFSET(thisfn, n)   ((thisfn)[n].voffset-2)
 
#define TYPE_FN_FIELD_VIRTUAL_P(thisfn, n)   ((thisfn)[n].voffset > 1)
 
#define TYPE_FN_FIELD_STATIC_P(thisfn, n)   ((thisfn)[n].voffset == VOFFSET_STATIC)
 
#define TYPE_FN_FIELD_DEFAULTED(thisfn, n)   ((thisfn)[n].defaulted)
 
#define TYPE_FN_FIELD_DELETED(thisfn, n)   ((thisfn)[n].is_deleted)
 
#define TYPE_TYPEDEF_FIELD_ARRAY(thistype)    TYPE_CPLUS_SPECIFIC (thistype)->typedef_field
 
#define TYPE_TYPEDEF_FIELD(thistype, n)    TYPE_CPLUS_SPECIFIC (thistype)->typedef_field[n]
 
#define TYPE_TYPEDEF_FIELD_NAME(thistype, n)    TYPE_TYPEDEF_FIELD (thistype, n).name
 
#define TYPE_TYPEDEF_FIELD_TYPE(thistype, n)    TYPE_TYPEDEF_FIELD (thistype, n).type
 
#define TYPE_TYPEDEF_FIELD_COUNT(thistype)    TYPE_CPLUS_SPECIFIC (thistype)->typedef_field_count
 
#define TYPE_TYPEDEF_FIELD_PROTECTED(thistype, n)    TYPE_TYPEDEF_FIELD (thistype, n).is_protected
 
#define TYPE_TYPEDEF_FIELD_PRIVATE(thistype, n)    TYPE_TYPEDEF_FIELD (thistype, n).is_private
 
#define TYPE_NESTED_TYPES_ARRAY(thistype)    TYPE_CPLUS_SPECIFIC (thistype)->nested_types
 
#define TYPE_NESTED_TYPES_FIELD(thistype, n)    TYPE_CPLUS_SPECIFIC (thistype)->nested_types[n]
 
#define TYPE_NESTED_TYPES_FIELD_NAME(thistype, n)    TYPE_NESTED_TYPES_FIELD (thistype, n).name
 
#define TYPE_NESTED_TYPES_FIELD_TYPE(thistype, n)    TYPE_NESTED_TYPES_FIELD (thistype, n).type
 
#define TYPE_NESTED_TYPES_COUNT(thistype)    TYPE_CPLUS_SPECIFIC (thistype)->nested_types_count
 
#define TYPE_NESTED_TYPES_FIELD_PROTECTED(thistype, n)    TYPE_NESTED_TYPES_FIELD (thistype, n).is_protected
 
#define TYPE_NESTED_TYPES_FIELD_PRIVATE(thistype, n)    TYPE_NESTED_TYPES_FIELD (thistype, n).is_private
 
#define TYPE_IS_OPAQUE(thistype)
 
#define TYPE_SAFE_NAME(type)    (type->name () != nullptr ? type->name () : _("<unnamed type>"))
 
#define TYPE_ERROR_NAME(type)    (type->name () ? type->name () : _("<error type>"))
 
#define TYPE_ALLOC(t, size)
 
#define TYPE_ZALLOC(t, size)   (memset (TYPE_ALLOC (t, size), 0, size))
 
#define REFERENCE_CONVERSION_RVALUE   1
 
#define REFERENCE_CONVERSION_CONST_LVALUE   2
 
#define CV_CONVERSION_CONST   1
 
#define CV_CONVERSION_VOLATILE   2
 

Typedefs

typedef std::vector< rankbadness_vector
 

Enumerations

enum  type_code { TYPE_CODE_UNDEF = 0 }
 
enum  type_instance_flag_value : unsigned {
  TYPE_INSTANCE_FLAG_CONST = (1 << 0) , TYPE_INSTANCE_FLAG_VOLATILE = (1 << 1) , TYPE_INSTANCE_FLAG_CODE_SPACE = (1 << 2) , TYPE_INSTANCE_FLAG_DATA_SPACE = (1 << 3) ,
  TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 = (1 << 4) , TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2 = (1 << 5) , TYPE_INSTANCE_FLAG_NOTTEXT = (1 << 6) , TYPE_INSTANCE_FLAG_RESTRICT = (1 << 7) ,
  TYPE_INSTANCE_FLAG_ATOMIC = (1 << 8)
}
 
enum  dynamic_prop_kind {
  PROP_UNDEFINED , PROP_CONST , PROP_ADDR_OFFSET , PROP_LOCEXPR ,
  PROP_LOCLIST , PROP_VARIANT_PARTS , PROP_TYPE , PROP_VARIABLE_NAME
}
 
enum  dynamic_prop_node_kind {
  DYN_PROP_DATA_LOCATION , DYN_PROP_ALLOCATED , DYN_PROP_ASSOCIATED , DYN_PROP_BYTE_STRIDE ,
  DYN_PROP_VARIANT_PARTS , DYN_PROP_RANK , DYN_PROP_BYTE_SIZE
}
 
enum  field_loc_kind {
  FIELD_LOC_KIND_BITPOS , FIELD_LOC_KIND_ENUMVAL , FIELD_LOC_KIND_PHYSADDR , FIELD_LOC_KIND_PHYSNAME ,
  FIELD_LOC_KIND_DWARF_BLOCK
}
 
enum  type_specific_kind {
  TYPE_SPECIFIC_NONE , TYPE_SPECIFIC_CPLUS_STUFF , TYPE_SPECIFIC_GNAT_STUFF , TYPE_SPECIFIC_FLOATFORMAT ,
  TYPE_SPECIFIC_FUNC , TYPE_SPECIFIC_SELF_TYPE , TYPE_SPECIFIC_INT , TYPE_SPECIFIC_FIXED_POINT
}
 

Functions

 DEF_ENUM_FLAGS_TYPE (enum type_instance_flag_value, type_instance_flags)
 
bool operator== (const dynamic_prop &l, const dynamic_prop &r)
 
bool operator== (const range_bounds &l, const range_bounds &r)
 
void allocate_cplus_struct_type (struct type *)
 
void allocate_gnat_aux_type (struct type *)
 
unsigned type_raw_align (struct type *)
 
unsigned type_align (struct type *)
 
bool set_type_align (struct type *, ULONGEST)
 
struct typeinternal_type_self_type (struct type *)
 
void set_type_self_type (struct type *, struct type *)
 
int internal_type_vptr_fieldno (struct type *)
 
void set_type_vptr_fieldno (struct type *, int)
 
struct typeinternal_type_vptr_basetype (struct type *)
 
void set_type_vptr_basetype (struct type *, struct type *)
 
const struct floatformat * floatformat_from_type (const struct type *type)
 
const struct builtin_type * builtin_type (struct gdbarch *gdbarch)
 
const struct builtin_type * builtin_type (struct objfile *objfile)
 
struct typeget_target_type (struct type *type)
 
unsigned int type_length_units (struct type *type)
 
struct typeinit_integer_type (type_allocator &alloc, int bit, int unsigned_p, const char *name)
 
struct typeinit_character_type (type_allocator &alloc, int bit, int unsigned_p, const char *name)
 
struct typeinit_boolean_type (type_allocator &alloc, int bit, int unsigned_p, const char *name)
 
struct typeinit_float_type (type_allocator &alloc, int bit, const char *name, const struct floatformat **floatformats, enum bfd_endian byte_order=BFD_ENDIAN_UNKNOWN)
 
struct typeinit_decfloat_type (type_allocator &alloc, int bit, const char *name)
 
bool can_create_complex_type (struct type *)
 
struct typeinit_complex_type (const char *, struct type *)
 
struct typeinit_pointer_type (type_allocator &alloc, int bit, const char *name, struct type *target_type)
 
struct typeinit_fixed_point_type (type_allocator &, int, int, const char *)
 
struct typearch_composite_type (struct gdbarch *gdbarch, const char *name, enum type_code code)
 
void append_composite_type_field (struct type *t, const char *name, struct type *field)
 
void append_composite_type_field_aligned (struct type *t, const char *name, struct type *field, int alignment)
 
struct fieldappend_composite_type_field_raw (struct type *t, const char *name, struct type *field)
 
struct typearch_flags_type (struct gdbarch *gdbarch, const char *name, int bit)
 
void append_flags_type_field (struct type *type, int start_bitpos, int nr_bits, struct type *field_type, const char *name)
 
void append_flags_type_flag (struct type *type, int bitpos, const char *name)
 
void make_vector_type (struct type *array_type)
 
struct typeinit_vector_type (struct type *elt_type, int n)
 
struct typelookup_reference_type (struct type *, enum type_code)
 
struct typelookup_lvalue_reference_type (struct type *)
 
struct typelookup_rvalue_reference_type (struct type *)
 
struct typemake_reference_type (struct type *, struct type **, enum type_code)
 
struct typemake_cv_type (int, int, struct type *, struct type **)
 
struct typemake_restrict_type (struct type *)
 
struct typemake_unqualified_type (struct type *)
 
struct typemake_atomic_type (struct type *)
 
void replace_type (struct type *, struct type *)
 
type_instance_flags address_space_name_to_type_instance_flags (struct gdbarch *, const char *)
 
const charaddress_space_type_instance_flags_to_name (struct gdbarch *, type_instance_flags)
 
struct typemake_type_with_address_space (struct type *type, type_instance_flags space_identifier)
 
struct typelookup_memberptr_type (struct type *, struct type *)
 
struct typelookup_methodptr_type (struct type *)
 
void smash_to_method_type (struct type *type, struct type *self_type, struct type *to_type, struct field *args, int nargs, int varargs)
 
void smash_to_memberptr_type (struct type *, struct type *, struct type *)
 
void smash_to_methodptr_type (struct type *, struct type *)
 
const chartype_name_or_error (struct type *type)
 
struct_elt lookup_struct_elt (struct type *, const char *, int)
 
struct typelookup_struct_elt_type (struct type *, const char *, int)
 
struct typemake_pointer_type (struct type *, struct type **)
 
struct typelookup_pointer_type (struct type *)
 
struct typemake_function_type (struct type *, struct type **)
 
struct typelookup_function_type (struct type *)
 
struct typelookup_function_type_with_arguments (struct type *, int, struct type **)
 
struct typecreate_static_range_type (type_allocator &alloc, struct type *index_type, LONGEST low_bound, LONGEST high_bound)
 
struct typecreate_array_type_with_stride (type_allocator &alloc, struct type *element_type, struct type *range_type, struct dynamic_prop *byte_stride_prop, unsigned int bit_stride)
 
struct typecreate_range_type (type_allocator &alloc, struct type *index_type, const struct dynamic_prop *low_bound, const struct dynamic_prop *high_bound, LONGEST bias)
 
struct typecreate_range_type_with_stride (type_allocator &alloc, struct type *index_type, const struct dynamic_prop *low_bound, const struct dynamic_prop *high_bound, LONGEST bias, const struct dynamic_prop *stride, bool byte_stride_p)
 
struct typecreate_array_type (type_allocator &alloc, struct type *element_type, struct type *range_type)
 
struct typelookup_array_range_type (struct type *, LONGEST, LONGEST)
 
struct typecreate_string_type (type_allocator &alloc, struct type *string_char_type, struct type *range_type)
 
struct typelookup_string_range_type (struct type *, LONGEST, LONGEST)
 
struct typecreate_set_type (type_allocator &alloc, struct type *domain_type)
 
struct typelookup_unsigned_typename (const struct language_defn *, const char *)
 
struct typelookup_signed_typename (const struct language_defn *, const char *)
 
ULONGEST get_unsigned_type_max (struct type *)
 
void get_signed_type_minmax (struct type *, LONGEST *, LONGEST *)
 
CORE_ADDR get_pointer_type_max (struct type *)
 
struct typeresolve_dynamic_type (struct type *type, gdb::array_view< const gdb_byte > valaddr, CORE_ADDR addr, const frame_info_ptr *frame=nullptr)
 
int is_dynamic_type (struct type *type)
 
struct typecheck_typedef (struct type *)
 
void check_stub_method_group (struct type *, int)
 
chargdb_mangle_name (struct type *, int, int)
 
struct typelookup_typename (const struct language_defn *language, const char *name, const struct block *block, int noerr)
 
struct typelookup_template_type (const char *, struct type *, const struct block *)
 
int get_vptr_fieldno (struct type *, struct type **)
 
bool get_discrete_bounds (struct type *type, LONGEST *lowp, LONGEST *highp)
 
gdb::optional< LONGESTget_discrete_low_bound (struct type *type)
 
gdb::optional< LONGESTget_discrete_high_bound (struct type *type)
 
bool get_array_bounds (struct type *type, LONGEST *low_bound, LONGEST *high_bound)
 
gdb::optional< LONGESTdiscrete_position (struct type *type, LONGEST val)
 
int class_types_same_p (const struct type *, const struct type *)
 
int is_ancestor (struct type *, struct type *)
 
int is_public_ancestor (struct type *, struct type *)
 
int is_unique_ancestor (struct type *, struct value *)
 
struct rank sum_ranks (struct rank a, struct rank b)
 
int compare_ranks (struct rank a, struct rank b)
 
int compare_badness (const badness_vector &, const badness_vector &)
 
badness_vector rank_function (gdb::array_view< type * > parms, gdb::array_view< value * > args)
 
struct rank rank_one_type (struct type *, struct type *, struct value *)
 
void recursive_dump_type (struct type *, int)
 
void print_scalar_formatted (const gdb_byte *, struct type *, const struct value_print_options *, int, struct ui_file *)
 
int can_dereference (struct type *)
 
int is_integral_type (struct type *)
 
int is_floating_type (struct type *)
 
int is_scalar_type (struct type *type)
 
int is_scalar_type_recursive (struct type *)
 
int class_or_union_p (const struct type *)
 
void maintenance_print_type (const char *, int)
 
htab_up create_copied_types_hash ()
 
struct typecopy_type_recursive (struct type *type, htab_t copied_types)
 
struct typecopy_type (const struct type *type)
 
bool types_equal (struct type *, struct type *)
 
bool types_deeply_equal (struct type *, struct type *)
 
int type_not_allocated (const struct type *type)
 
int type_not_associated (const struct type *type)
 
bool is_fixed_point_type (struct type *type)
 
void allocate_fixed_point_type_info (struct type *type)
 
enum bfd_endian type_byte_order (const struct type *type)
 
bool is_nocall_function (const struct type *type)
 

Variables

const struct cplus_struct_type cplus_struct_default
 
const struct gnat_aux_type gnat_aux_default
 
const struct floatformat * floatformats_ieee_half [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_ieee_single [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_ieee_double [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_ieee_quad [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_ieee_double_littlebyte_bigword [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_i387_ext [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_m68881_ext [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_arm_ext [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_ia64_spill [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_vax_f [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_vax_d [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_ibm_long_double [BFD_ENDIAN_UNKNOWN]
 
const struct floatformat * floatformats_bfloat16 [BFD_ENDIAN_UNKNOWN]
 
const struct rank LENGTH_MISMATCH_BADNESS
 
const struct rank TOO_FEW_PARAMS_BADNESS
 
const struct rank INCOMPATIBLE_TYPE_BADNESS
 
const struct rank EXACT_MATCH_BADNESS
 
const struct rank INTEGER_PROMOTION_BADNESS
 
const struct rank FLOAT_PROMOTION_BADNESS
 
const struct rank BASE_PTR_CONVERSION_BADNESS
 
const struct rank INTEGER_CONVERSION_BADNESS
 
const struct rank FLOAT_CONVERSION_BADNESS
 
const struct rank INT_FLOAT_CONVERSION_BADNESS
 
const struct rank VOID_PTR_CONVERSION_BADNESS
 
const struct rank BOOL_CONVERSION_BADNESS
 
const struct rank BASE_CONVERSION_BADNESS
 
const struct rank REFERENCE_CONVERSION_BADNESS
 
const struct rank REFERENCE_SEE_THROUGH_BADNESS
 
const struct rank NULL_POINTER_CONVERSION
 
const struct rank CV_CONVERSION_BADNESS
 
const struct rank NS_POINTER_CONVERSION_BADNESS
 
const struct rank NS_INTEGER_POINTER_CONVERSION_BADNESS
 
unsigned int overload_debug
 

Macro Definition Documentation

◆ ADA_TYPE_P

#define ADA_TYPE_P ( type)
Value:
&& (type)->is_fixed_instance ()))
@ TYPE_SPECIFIC_GNAT_STUFF
Definition gdbtypes.h:503
@ TYPE_SPECIFIC_NONE
Definition gdbtypes.h:501
#define TYPE_SPECIFIC_FIELD(thistype)
Definition gdbtypes.h:1926

True if TYPE is known to be an Ada type of some kind.

Definition at line 1848 of file gdbtypes.h.

◆ ALLOCATE_CPLUS_STRUCT_TYPE

#define ALLOCATE_CPLUS_STRUCT_TYPE ( type)    allocate_cplus_struct_type (type)

Definition at line 1824 of file gdbtypes.h.

◆ ALLOCATE_GNAT_AUX_TYPE

#define ALLOCATE_GNAT_AUX_TYPE ( type)    allocate_gnat_aux_type (type)

Definition at line 1841 of file gdbtypes.h.

◆ B_BYTES

#define B_BYTES ( x)    ( 1 + ((x)>>3) )

Definition at line 75 of file gdbtypes.h.

◆ B_CLR

#define B_CLR ( a,
x )   ((a)[(x)>>3] &= ~(1 << ((x)&7)))

Definition at line 72 of file gdbtypes.h.

◆ B_CLRALL

#define B_CLRALL ( a,
x )   memset ((a), 0, B_BYTES(x))

Definition at line 76 of file gdbtypes.h.

◆ B_SET

#define B_SET ( a,
x )   ((a)[(x)>>3] |= (1 << ((x)&7)))

Definition at line 71 of file gdbtypes.h.

◆ B_TST

#define B_TST ( a,
x )   ((a)[(x)>>3] & (1 << ((x)&7)))

Definition at line 73 of file gdbtypes.h.

◆ B_TYPE

#define B_TYPE   unsigned char

Definition at line 74 of file gdbtypes.h.

◆ BASETYPE_VIA_PUBLIC

#define BASETYPE_VIA_PUBLIC ( thistype,
index )    ((!TYPE_FIELD_PRIVATE(thistype, index)) && (!TYPE_FIELD_PROTECTED(thistype, index)))

Definition at line 1950 of file gdbtypes.h.

◆ BASETYPE_VIA_VIRTUAL

#define BASETYPE_VIA_VIRTUAL ( thistype,
index )
Value:
(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits == NULL ? 0 \
: B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (index)))
T extract_integer(gdb::array_view< const gdb_byte >, enum bfd_endian byte_order)
#define TYPE_CPLUS_SPECIFIC(thistype)
Definition gdbtypes.h:1933
#define B_TST(a, x)
Definition gdbtypes.h:73

Definition at line 1954 of file gdbtypes.h.

◆ CV_CONVERSION_CONST

#define CV_CONVERSION_CONST   1

Definition at line 2739 of file gdbtypes.h.

◆ CV_CONVERSION_VOLATILE

#define CV_CONVERSION_VOLATILE   2

Definition at line 2740 of file gdbtypes.h.

◆ HAVE_CPLUS_STRUCT

#define HAVE_CPLUS_STRUCT ( type)
Value:
@ TYPE_SPECIFIC_CPLUS_STUFF
Definition gdbtypes.h:502
#define TYPE_RAW_CPLUS_SPECIFIC(thistype)
Definition gdbtypes.h:1937
const struct cplus_struct_type cplus_struct_default

Definition at line 1826 of file gdbtypes.h.

◆ HAVE_GNAT_AUX_INFO

#define HAVE_GNAT_AUX_INFO ( type)     (TYPE_SPECIFIC_FIELD (type) == TYPE_SPECIFIC_GNAT_STUFF)

A macro that returns non-zero if the type-specific data should be read as "gnat-stuff".

Definition at line 1844 of file gdbtypes.h.

◆ INIT_CPLUS_SPECIFIC

#define INIT_CPLUS_SPECIFIC ( type)

◆ INIT_FIXED_POINT_SPECIFIC

#define INIT_FIXED_POINT_SPECIFIC ( type)

◆ INIT_FUNC_SPECIFIC

#define INIT_FUNC_SPECIFIC ( type)
Value:
TYPE_MAIN_TYPE (type)->type_specific.func_stuff = (struct func_type *) \
@ TYPE_SPECIFIC_FUNC
Definition gdbtypes.h:506
#define TYPE_ZALLOC(t, size)
Definition gdbtypes.h:2224
#define TYPE_MAIN_TYPE(thistype)
Definition gdbtypes.h:1866
struct func_type * func_stuff
Definition gdbtypes.h:781

Definition at line 1853 of file gdbtypes.h.

◆ INIT_GNAT_SPECIFIC

#define INIT_GNAT_SPECIFIC ( type)
Value:

Definition at line 1838 of file gdbtypes.h.

◆ INIT_NONE_SPECIFIC

#define INIT_NONE_SPECIFIC ( type)
Value:

Definition at line 1830 of file gdbtypes.h.

◆ OP

#define OP ( X)    X,

Definition at line 85 of file gdbtypes.h.

◆ REFERENCE_CONVERSION_CONST_LVALUE

#define REFERENCE_CONVERSION_CONST_LVALUE   2

Conversion to const lvalue reference.

Definition at line 2732 of file gdbtypes.h.

◆ REFERENCE_CONVERSION_RVALUE

#define REFERENCE_CONVERSION_RVALUE   1

Conversion to rvalue reference.

Definition at line 2730 of file gdbtypes.h.

◆ SET_TYPE_FIELD_IGNORE

#define SET_TYPE_FIELD_IGNORE ( thistype,
n )    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n))

Definition at line 1970 of file gdbtypes.h.

◆ SET_TYPE_FIELD_PRIVATE

#define SET_TYPE_FIELD_PRIVATE ( thistype,
n )    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n))

Definition at line 1966 of file gdbtypes.h.

◆ SET_TYPE_FIELD_PROTECTED

#define SET_TYPE_FIELD_PROTECTED ( thistype,
n )    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n))

Definition at line 1968 of file gdbtypes.h.

◆ SET_TYPE_FIELD_VIRTUAL

#define SET_TYPE_FIELD_VIRTUAL ( thistype,
n )    B_SET (TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n))

Definition at line 1972 of file gdbtypes.h.

◆ TYPE_ADDRESS_CLASS_1

#define TYPE_ADDRESS_CLASS_1 ( t)
Value:
(((t)->instance_flags ()) \
@ TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1
Definition gdbtypes.h:100

Address class flags. Some environments provide for pointers whose size is different from that of a normal pointer or address types where the bits are interpreted differently than normal addresses. The TYPE_INSTANCE_FLAG_ADDRESS_CLASS_n flags may be used in target specific ways to represent these different types of address classes.

Definition at line 186 of file gdbtypes.h.

◆ TYPE_ADDRESS_CLASS_2

#define TYPE_ADDRESS_CLASS_2 ( t)
Value:
(((t)->instance_flags ()) \
@ TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2
Definition gdbtypes.h:101

Definition at line 188 of file gdbtypes.h.

◆ TYPE_ADDRESS_CLASS_ALL

#define TYPE_ADDRESS_CLASS_ALL ( t)
Value:
(((t)->instance_flags ()) \
#define TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL
Definition gdbtypes.h:190

Definition at line 192 of file gdbtypes.h.

◆ TYPE_ALIGN_BITS

#define TYPE_ALIGN_BITS   8

Number of bits allocated for alignment.

Definition at line 945 of file gdbtypes.h.

◆ TYPE_ALLOC

#define TYPE_ALLOC ( t,
size )
Value:
(obstack_alloc (((t)->is_objfile_owned () \
? &((t)->objfile_owner ()->objfile_obstack) \
: gdbarch_obstack ((t)->arch_owner ())), \
size))

Definition at line 2215 of file gdbtypes.h.

◆ TYPE_ALLOCATED_PROP

#define TYPE_ALLOCATED_PROP ( thistype)     ((thistype)->dyn_prop (DYN_PROP_ALLOCATED))

Definition at line 1904 of file gdbtypes.h.

◆ TYPE_ASSOCIATED_PROP

#define TYPE_ASSOCIATED_PROP ( thistype)     ((thistype)->dyn_prop (DYN_PROP_ASSOCIATED))

Definition at line 1906 of file gdbtypes.h.

◆ TYPE_ATOMIC

#define TYPE_ATOMIC ( t)     ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_ATOMIC) != 0)

Atomic type. If this is set, the corresponding type has an _Atomic modifier.

Definition at line 134 of file gdbtypes.h.

◆ TYPE_BASECLASS

#define TYPE_BASECLASS ( thistype,
index )   ((thistype)->field (index).type ())

Definition at line 1946 of file gdbtypes.h.

◆ TYPE_BASECLASS_BITPOS

#define TYPE_BASECLASS_BITPOS ( thistype,
index )   (thistype->field (index).loc_bitpos ())

Definition at line 1949 of file gdbtypes.h.

◆ TYPE_BASECLASS_NAME

#define TYPE_BASECLASS_NAME ( thistype,
index )   (thistype->field (index).name ())

Definition at line 1948 of file gdbtypes.h.

◆ TYPE_CALLING_CONVENTION

#define TYPE_CALLING_CONVENTION ( thistype)    TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->calling_convention

Definition at line 1943 of file gdbtypes.h.

◆ TYPE_CHAIN

#define TYPE_CHAIN ( thistype)    (thistype)->chain

Definition at line 1870 of file gdbtypes.h.

◆ TYPE_CODE_SPACE

#define TYPE_CODE_SPACE ( t)     ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_CODE_SPACE) != 0)

Instruction-space delimited type. This is for Harvard architectures which have separate instruction and data address spaces (and perhaps others).

GDB usually defines a flat address space that is a superset of the architecture's two (or more) address spaces, but this is an extension of the architecture's model.

If TYPE_INSTANCE_FLAG_CODE_SPACE is set, an object of the corresponding type resides in instruction memory, even if its address (in the extended flat address space) does not reflect this.

Similarly, if TYPE_INSTANCE_FLAG_DATA_SPACE is set, then an object of the corresponding type resides in the data memory space, even if this is not indicated by its (flat address space) address.

If neither flag is set, the default space for functions / methods is instruction space, and for data objects is data memory.

Definition at line 173 of file gdbtypes.h.

◆ TYPE_CONST

#define TYPE_CONST ( t)    ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_CONST) != 0)

Constant type. If this is set, the corresponding type has a const modifier.

Definition at line 117 of file gdbtypes.h.

◆ TYPE_CPLUS_CALLING_CONVENTION

#define TYPE_CPLUS_CALLING_CONVENTION ( thistype)     TYPE_MAIN_TYPE(thistype)->type_specific.cplus_stuff->calling_convention

Definition at line 1938 of file gdbtypes.h.

◆ TYPE_CPLUS_DYNAMIC

#define TYPE_CPLUS_DYNAMIC ( thistype)    TYPE_CPLUS_SPECIFIC (thistype)->is_dynamic

Definition at line 1952 of file gdbtypes.h.

◆ TYPE_CPLUS_SPECIFIC

#define TYPE_CPLUS_SPECIFIC ( thistype)
Value:

Definition at line 1933 of file gdbtypes.h.

◆ TYPE_DATA_LOCATION

#define TYPE_DATA_LOCATION ( thistype)     ((thistype)->dyn_prop (DYN_PROP_DATA_LOCATION))

Definition at line 1892 of file gdbtypes.h.

◆ TYPE_DATA_LOCATION_ADDR

#define TYPE_DATA_LOCATION_ADDR ( thistype)     (TYPE_DATA_LOCATION (thistype)->const_val ())

Definition at line 1896 of file gdbtypes.h.

◆ TYPE_DATA_LOCATION_BATON

#define TYPE_DATA_LOCATION_BATON ( thistype)     TYPE_DATA_LOCATION (thistype)->data.baton

Definition at line 1894 of file gdbtypes.h.

◆ TYPE_DATA_LOCATION_KIND

#define TYPE_DATA_LOCATION_KIND ( thistype)     (TYPE_DATA_LOCATION (thistype)->kind ())

Definition at line 1898 of file gdbtypes.h.

◆ TYPE_DATA_SPACE

#define TYPE_DATA_SPACE ( t)     ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_DATA_SPACE) != 0)

Definition at line 176 of file gdbtypes.h.

◆ TYPE_DESCRIPTIVE_TYPE

#define TYPE_DESCRIPTIVE_TYPE ( thistype)    TYPE_GNAT_SPECIFIC(thistype)->descriptive_type

Definition at line 1942 of file gdbtypes.h.

◆ TYPE_DYNAMIC_LENGTH

#define TYPE_DYNAMIC_LENGTH ( thistype)     ((thistype)->dyn_prop (DYN_PROP_BYTE_SIZE))

Definition at line 1900 of file gdbtypes.h.

◆ TYPE_ERROR_NAME

#define TYPE_ERROR_NAME ( type)     (type->name () ? type->name () : _("<error type>"))

A helper macro that returns the name of an error type. If the type has a name, it is used; otherwise, a default is used.

Definition at line 2066 of file gdbtypes.h.

◆ TYPE_FIELD_IGNORE

#define TYPE_FIELD_IGNORE ( thistype,
n )
Value:
(TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits == NULL ? 0 \
: B_TST(TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits, (n)))

Definition at line 1980 of file gdbtypes.h.

◆ TYPE_FIELD_IGNORE_BITS

#define TYPE_FIELD_IGNORE_BITS ( thistype)     TYPE_CPLUS_SPECIFIC(thistype)->ignore_field_bits

Definition at line 1962 of file gdbtypes.h.

◆ TYPE_FIELD_PRIVATE

#define TYPE_FIELD_PRIVATE ( thistype,
n )
Value:
(TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits == NULL ? 0 \
: B_TST(TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits, (n)))

Definition at line 1974 of file gdbtypes.h.

◆ TYPE_FIELD_PRIVATE_BITS

#define TYPE_FIELD_PRIVATE_BITS ( thistype)     TYPE_CPLUS_SPECIFIC(thistype)->private_field_bits

Definition at line 1958 of file gdbtypes.h.

◆ TYPE_FIELD_PROTECTED

#define TYPE_FIELD_PROTECTED ( thistype,
n )
Value:
(TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits == NULL ? 0 \
: B_TST(TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits, (n)))

Definition at line 1977 of file gdbtypes.h.

◆ TYPE_FIELD_PROTECTED_BITS

#define TYPE_FIELD_PROTECTED_BITS ( thistype)     TYPE_CPLUS_SPECIFIC(thistype)->protected_field_bits

Definition at line 1960 of file gdbtypes.h.

◆ TYPE_FIELD_VIRTUAL

#define TYPE_FIELD_VIRTUAL ( thistype,
n )
Value:
(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits == NULL ? 0 \
: B_TST(TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits, (n)))

Definition at line 1983 of file gdbtypes.h.

◆ TYPE_FIELD_VIRTUAL_BITS

#define TYPE_FIELD_VIRTUAL_BITS ( thistype)     TYPE_CPLUS_SPECIFIC(thistype)->virtual_field_bits

Definition at line 1964 of file gdbtypes.h.

◆ TYPE_FLOATFORMAT

Definition at line 1940 of file gdbtypes.h.

◆ TYPE_FN_FIELD

#define TYPE_FN_FIELD ( thisfn,
n )   (thisfn)[n]

Definition at line 2000 of file gdbtypes.h.

◆ TYPE_FN_FIELD_ARGS

#define TYPE_FN_FIELD_ARGS ( thisfn,
n )   (((thisfn)[n].type)->fields ())

Definition at line 2003 of file gdbtypes.h.

◆ TYPE_FN_FIELD_ARTIFICIAL

#define TYPE_FN_FIELD_ARTIFICIAL ( thisfn,
n )   ((thisfn)[n].is_artificial)

Definition at line 2008 of file gdbtypes.h.

◆ TYPE_FN_FIELD_CONST

#define TYPE_FN_FIELD_CONST ( thisfn,
n )   ((thisfn)[n].is_const)

Definition at line 2004 of file gdbtypes.h.

◆ TYPE_FN_FIELD_CONSTRUCTOR

#define TYPE_FN_FIELD_CONSTRUCTOR ( thisfn,
n )   ((thisfn)[n].is_constructor)

Definition at line 2010 of file gdbtypes.h.

◆ TYPE_FN_FIELD_DEFAULTED

#define TYPE_FN_FIELD_DEFAULTED ( thisfn,
n )   ((thisfn)[n].defaulted)

Definition at line 2015 of file gdbtypes.h.

◆ TYPE_FN_FIELD_DELETED

#define TYPE_FN_FIELD_DELETED ( thisfn,
n )   ((thisfn)[n].is_deleted)

Definition at line 2016 of file gdbtypes.h.

◆ TYPE_FN_FIELD_FCONTEXT

#define TYPE_FN_FIELD_FCONTEXT ( thisfn,
n )   ((thisfn)[n].fcontext)

Definition at line 2011 of file gdbtypes.h.

◆ TYPE_FN_FIELD_PHYSNAME

#define TYPE_FN_FIELD_PHYSNAME ( thisfn,
n )   (thisfn)[n].physname

Definition at line 2001 of file gdbtypes.h.

◆ TYPE_FN_FIELD_PRIVATE

#define TYPE_FN_FIELD_PRIVATE ( thisfn,
n )   ((thisfn)[n].is_private)

Definition at line 2006 of file gdbtypes.h.

◆ TYPE_FN_FIELD_PROTECTED

#define TYPE_FN_FIELD_PROTECTED ( thisfn,
n )   ((thisfn)[n].is_protected)

Definition at line 2007 of file gdbtypes.h.

◆ TYPE_FN_FIELD_STATIC_P

#define TYPE_FN_FIELD_STATIC_P ( thisfn,
n )   ((thisfn)[n].voffset == VOFFSET_STATIC)

Definition at line 2014 of file gdbtypes.h.

◆ TYPE_FN_FIELD_STUB

#define TYPE_FN_FIELD_STUB ( thisfn,
n )   ((thisfn)[n].is_stub)

Definition at line 2009 of file gdbtypes.h.

◆ TYPE_FN_FIELD_TYPE

#define TYPE_FN_FIELD_TYPE ( thisfn,
n )   (thisfn)[n].type

Definition at line 2002 of file gdbtypes.h.

◆ TYPE_FN_FIELD_VIRTUAL_P

#define TYPE_FN_FIELD_VIRTUAL_P ( thisfn,
n )   ((thisfn)[n].voffset > 1)

Definition at line 2013 of file gdbtypes.h.

◆ TYPE_FN_FIELD_VOFFSET

#define TYPE_FN_FIELD_VOFFSET ( thisfn,
n )   ((thisfn)[n].voffset-2)

Definition at line 2012 of file gdbtypes.h.

◆ TYPE_FN_FIELD_VOLATILE

#define TYPE_FN_FIELD_VOLATILE ( thisfn,
n )   ((thisfn)[n].is_volatile)

Definition at line 2005 of file gdbtypes.h.

◆ TYPE_FN_FIELDLIST

#define TYPE_FN_FIELDLIST ( thistype,
n )   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n]

Definition at line 1988 of file gdbtypes.h.

◆ TYPE_FN_FIELDLIST1

#define TYPE_FN_FIELDLIST1 ( thistype,
n )   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].fn_fields

Definition at line 1989 of file gdbtypes.h.

◆ TYPE_FN_FIELDLIST_LENGTH

#define TYPE_FN_FIELDLIST_LENGTH ( thistype,
n )   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].length

Definition at line 1991 of file gdbtypes.h.

◆ TYPE_FN_FIELDLIST_NAME

#define TYPE_FN_FIELDLIST_NAME ( thistype,
n )   TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists[n].name

Definition at line 1990 of file gdbtypes.h.

◆ TYPE_FN_FIELDLISTS

#define TYPE_FN_FIELDLISTS ( thistype)    TYPE_CPLUS_SPECIFIC(thistype)->fn_fieldlists

Definition at line 1987 of file gdbtypes.h.

◆ TYPE_GNAT_SPECIFIC

Definition at line 1941 of file gdbtypes.h.

◆ TYPE_HAS_DYNAMIC_LENGTH

#define TYPE_HAS_DYNAMIC_LENGTH ( t)     ((t)->dyn_prop (DYN_PROP_BYTE_SIZE) != nullptr)

True if this type has a dynamic length.

Definition at line 151 of file gdbtypes.h.

◆ TYPE_HAS_VARIANT_PARTS

#define TYPE_HAS_VARIANT_PARTS ( t)     ((t)->dyn_prop (DYN_PROP_VARIANT_PARTS) != nullptr)

True if this type has variant parts.

Definition at line 147 of file gdbtypes.h.

◆ TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL

#define TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL    (TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 | TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2)

Definition at line 190 of file gdbtypes.h.

◆ TYPE_IS_ALLOCATABLE

#define TYPE_IS_ALLOCATABLE ( t)     ((t)->dyn_prop (DYN_PROP_ALLOCATED) != NULL)

True if this type is allocatable.

Definition at line 143 of file gdbtypes.h.

◆ TYPE_IS_OPAQUE

#define TYPE_IS_OPAQUE ( thistype)
Value:
((((thistype)->code () == TYPE_CODE_STRUCT) \
|| ((thistype)->code () == TYPE_CODE_UNION)) \
&& ((thistype)->num_fields () == 0) \
&& ((thistype)->is_stub () || !(thistype)->stub_is_supported ()))
#define TYPE_NFN_FIELDS(thistype)
Definition gdbtypes.h:1925

Definition at line 2049 of file gdbtypes.h.

◆ TYPE_IS_REFERENCE

#define TYPE_IS_REFERENCE ( t)     ((t)->code () == TYPE_CODE_REF || (t)->code () == TYPE_CODE_RVALUE_REF)

True if this type represents either an lvalue or lvalue reference type.

Definition at line 139 of file gdbtypes.h.

◆ TYPE_MAIN_TYPE

#define TYPE_MAIN_TYPE ( thistype)    (thistype)->main_type

Definition at line 1866 of file gdbtypes.h.

◆ TYPE_N_BASECLASSES

#define TYPE_N_BASECLASSES ( thistype)    TYPE_CPLUS_SPECIFIC(thistype)->n_baseclasses

Definition at line 1947 of file gdbtypes.h.

◆ TYPE_N_TEMPLATE_ARGUMENTS

#define TYPE_N_TEMPLATE_ARGUMENTS ( thistype)     TYPE_CPLUS_SPECIFIC (thistype)->n_template_arguments

Definition at line 1993 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_ARRAY

#define TYPE_NESTED_TYPES_ARRAY ( thistype)     TYPE_CPLUS_SPECIFIC (thistype)->nested_types

Definition at line 2034 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_COUNT

#define TYPE_NESTED_TYPES_COUNT ( thistype)     TYPE_CPLUS_SPECIFIC (thistype)->nested_types_count

Definition at line 2042 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_FIELD

#define TYPE_NESTED_TYPES_FIELD ( thistype,
n )    TYPE_CPLUS_SPECIFIC (thistype)->nested_types[n]

Definition at line 2036 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_FIELD_NAME

#define TYPE_NESTED_TYPES_FIELD_NAME ( thistype,
n )    TYPE_NESTED_TYPES_FIELD (thistype, n).name

Definition at line 2038 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_FIELD_PRIVATE

#define TYPE_NESTED_TYPES_FIELD_PRIVATE ( thistype,
n )    TYPE_NESTED_TYPES_FIELD (thistype, n).is_private

Definition at line 2046 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_FIELD_PROTECTED

#define TYPE_NESTED_TYPES_FIELD_PROTECTED ( thistype,
n )    TYPE_NESTED_TYPES_FIELD (thistype, n).is_protected

Definition at line 2044 of file gdbtypes.h.

◆ TYPE_NESTED_TYPES_FIELD_TYPE

#define TYPE_NESTED_TYPES_FIELD_TYPE ( thistype,
n )    TYPE_NESTED_TYPES_FIELD (thistype, n).type

Definition at line 2040 of file gdbtypes.h.

◆ TYPE_NFN_FIELDS

#define TYPE_NFN_FIELDS ( thistype)    TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields

Definition at line 1925 of file gdbtypes.h.

◆ TYPE_NO_RETURN

#define TYPE_NO_RETURN ( thistype)    TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->is_noreturn

Definition at line 1944 of file gdbtypes.h.

◆ TYPE_NOTTEXT

#define TYPE_NOTTEXT ( t)    (((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_NOTTEXT)

Not textual. By default, GDB treats all single byte integers as characters (or elements of strings) unless this flag is set.

Definition at line 112 of file gdbtypes.h.

◆ TYPE_POINTER_TYPE

#define TYPE_POINTER_TYPE ( thistype)    (thistype)->pointer_type

Definition at line 1867 of file gdbtypes.h.

◆ TYPE_RANK_PROP

#define TYPE_RANK_PROP ( thistype)     ((thistype)->dyn_prop (DYN_PROP_RANK))

Definition at line 1908 of file gdbtypes.h.

◆ TYPE_RAW_ALIGN

#define TYPE_RAW_ALIGN ( thistype)    type_raw_align (thistype)

Return the alignment of the type in target addressable memory units, or 0 if no alignment was specified.

Definition at line 1874 of file gdbtypes.h.

◆ TYPE_RAW_CPLUS_SPECIFIC

#define TYPE_RAW_CPLUS_SPECIFIC ( thistype)    TYPE_MAIN_TYPE(thistype)->type_specific.cplus_stuff

Definition at line 1937 of file gdbtypes.h.

◆ TYPE_REFERENCE_TYPE

#define TYPE_REFERENCE_TYPE ( thistype)    (thistype)->reference_type

Definition at line 1868 of file gdbtypes.h.

◆ TYPE_RESTRICT

#define TYPE_RESTRICT ( t)     ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_RESTRICT) != 0)

Restrict type. If this is set, the corresponding type has a restrict modifier.

Definition at line 128 of file gdbtypes.h.

◆ TYPE_RVALUE_REFERENCE_TYPE

#define TYPE_RVALUE_REFERENCE_TYPE ( thistype)    (thistype)->rvalue_reference_type

Definition at line 1869 of file gdbtypes.h.

◆ TYPE_SAFE_NAME

#define TYPE_SAFE_NAME ( type)     (type->name () != nullptr ? type->name () : _("<unnamed type>"))

A helper macro that returns the name of a type or "unnamed type" if the type has no name.

Definition at line 2060 of file gdbtypes.h.

◆ TYPE_SELF_TYPE

#define TYPE_SELF_TYPE ( thistype)    internal_type_self_type (thistype)

Definition at line 1913 of file gdbtypes.h.

◆ TYPE_SPECIFIC_FIELD

#define TYPE_SPECIFIC_FIELD ( thistype)     TYPE_MAIN_TYPE(thistype)->type_specific_field

Definition at line 1926 of file gdbtypes.h.

◆ TYPE_TAIL_CALL_LIST

#define TYPE_TAIL_CALL_LIST ( thistype)    TYPE_MAIN_TYPE(thistype)->type_specific.func_stuff->tail_call_list

Definition at line 1945 of file gdbtypes.h.

◆ TYPE_TEMPLATE_ARGUMENT

#define TYPE_TEMPLATE_ARGUMENT ( thistype,
n )    TYPE_CPLUS_SPECIFIC (thistype)->template_arguments[n]

Definition at line 1997 of file gdbtypes.h.

◆ TYPE_TEMPLATE_ARGUMENTS

#define TYPE_TEMPLATE_ARGUMENTS ( thistype)     TYPE_CPLUS_SPECIFIC (thistype)->template_arguments

Definition at line 1995 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD

#define TYPE_TYPEDEF_FIELD ( thistype,
n )    TYPE_CPLUS_SPECIFIC (thistype)->typedef_field[n]

Definition at line 2021 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD_ARRAY

#define TYPE_TYPEDEF_FIELD_ARRAY ( thistype)     TYPE_CPLUS_SPECIFIC (thistype)->typedef_field

Definition at line 2019 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD_COUNT

#define TYPE_TYPEDEF_FIELD_COUNT ( thistype)     TYPE_CPLUS_SPECIFIC (thistype)->typedef_field_count

Definition at line 2027 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD_NAME

#define TYPE_TYPEDEF_FIELD_NAME ( thistype,
n )    TYPE_TYPEDEF_FIELD (thistype, n).name

Definition at line 2023 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD_PRIVATE

#define TYPE_TYPEDEF_FIELD_PRIVATE ( thistype,
n )    TYPE_TYPEDEF_FIELD (thistype, n).is_private

Definition at line 2031 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD_PROTECTED

#define TYPE_TYPEDEF_FIELD_PROTECTED ( thistype,
n )    TYPE_TYPEDEF_FIELD (thistype, n).is_protected

Definition at line 2029 of file gdbtypes.h.

◆ TYPE_TYPEDEF_FIELD_TYPE

#define TYPE_TYPEDEF_FIELD_TYPE ( thistype,
n )    TYPE_TYPEDEF_FIELD (thistype, n).type

Definition at line 2025 of file gdbtypes.h.

◆ TYPE_VOLATILE

#define TYPE_VOLATILE ( t)     ((((t)->instance_flags ()) & TYPE_INSTANCE_FLAG_VOLATILE) != 0)

Volatile type. If this is set, the corresponding type has a volatile modifier.

Definition at line 122 of file gdbtypes.h.

◆ TYPE_VPTR_BASETYPE

#define TYPE_VPTR_BASETYPE ( thistype)    internal_type_vptr_basetype (thistype)

Definition at line 1923 of file gdbtypes.h.

◆ TYPE_VPTR_FIELDNO

#define TYPE_VPTR_FIELDNO ( thistype)    internal_type_vptr_fieldno (thistype)

Definition at line 1922 of file gdbtypes.h.

◆ TYPE_ZALLOC

#define TYPE_ZALLOC ( t,
size )   (memset (TYPE_ALLOC (t, size), 0, size))

Definition at line 2224 of file gdbtypes.h.

◆ VOFFSET_STATIC

#define VOFFSET_STATIC   1

Definition at line 1598 of file gdbtypes.h.

Typedef Documentation

◆ badness_vector

Used for ranking a function for overload resolution.

Definition at line 1760 of file gdbtypes.h.

Enumeration Type Documentation

◆ dynamic_prop_kind

Enumerator
PROP_UNDEFINED 
PROP_CONST 
PROP_ADDR_OFFSET 
PROP_LOCEXPR 
PROP_LOCLIST 
PROP_VARIANT_PARTS 
PROP_TYPE 
PROP_VARIABLE_NAME 

Definition at line 273 of file gdbtypes.h.

◆ dynamic_prop_node_kind

Define a type's dynamic property node kind.

Enumerator
DYN_PROP_DATA_LOCATION 
DYN_PROP_ALLOCATED 
DYN_PROP_ASSOCIATED 
DYN_PROP_BYTE_STRIDE 
DYN_PROP_VARIANT_PARTS 
DYN_PROP_RANK 
DYN_PROP_BYTE_SIZE 

Definition at line 435 of file gdbtypes.h.

◆ field_loc_kind

Determine which field of the union main_type.fields[x].loc is used.

Enumerator
FIELD_LOC_KIND_BITPOS 

bitpos

FIELD_LOC_KIND_ENUMVAL 

enumval

FIELD_LOC_KIND_PHYSADDR 

physaddr

FIELD_LOC_KIND_PHYSNAME 

physname

FIELD_LOC_KIND_DWARF_BLOCK 

dwarf_block

Definition at line 479 of file gdbtypes.h.

◆ type_code

Different kinds of data types are distinguished by the ‘code’ field.

Enumerator
TYPE_CODE_UNDEF 

Not used; catches errors

Definition at line 81 of file gdbtypes.h.

◆ type_instance_flag_value

Some bits for the type's instance_flags word. See the macros below for documentation on each bit.

Enumerator
TYPE_INSTANCE_FLAG_CONST 
TYPE_INSTANCE_FLAG_VOLATILE 
TYPE_INSTANCE_FLAG_CODE_SPACE 
TYPE_INSTANCE_FLAG_DATA_SPACE 
TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1 
TYPE_INSTANCE_FLAG_ADDRESS_CLASS_2 
TYPE_INSTANCE_FLAG_NOTTEXT 
TYPE_INSTANCE_FLAG_RESTRICT 
TYPE_INSTANCE_FLAG_ATOMIC 

Definition at line 94 of file gdbtypes.h.

◆ type_specific_kind

A discriminant to determine which field in the main_type.type_specific union is being used, if any.

For types such as TYPE_CODE_FLT, the use of this discriminant is really redundant, as we know from the type code which field is going to be used. As such, it would be possible to reduce the size of this enum in order to save a bit or two for other fields of struct main_type. But, since we still have extra room , and for the sake of clarity and consistency, we treat all fields of the union the same way.

Enumerator
TYPE_SPECIFIC_NONE 
TYPE_SPECIFIC_CPLUS_STUFF 
TYPE_SPECIFIC_GNAT_STUFF 
TYPE_SPECIFIC_FLOATFORMAT 
TYPE_SPECIFIC_FUNC 
TYPE_SPECIFIC_SELF_TYPE 
TYPE_SPECIFIC_INT 
TYPE_SPECIFIC_FIXED_POINT 

Definition at line 499 of file gdbtypes.h.

Function Documentation

◆ address_space_name_to_type_instance_flags()

type_instance_flags address_space_name_to_type_instance_flags ( struct gdbarch * ,
const char *  )
extern

◆ address_space_type_instance_flags_to_name()

const char * address_space_type_instance_flags_to_name ( struct gdbarch * ,
type_instance_flags  )
extern

◆ allocate_cplus_struct_type()

void allocate_cplus_struct_type ( struct type * )
extern

◆ allocate_fixed_point_type_info()

void allocate_fixed_point_type_info ( struct type * type)
extern

◆ allocate_gnat_aux_type()

void allocate_gnat_aux_type ( struct type * )
extern

◆ append_composite_type_field()

void append_composite_type_field ( struct type * t,
const char * name,
struct type * field )
extern

◆ append_composite_type_field_aligned()

void append_composite_type_field_aligned ( struct type * t,
const char * name,
struct type * field,
int alignment )
extern

◆ append_composite_type_field_raw()

struct field * append_composite_type_field_raw ( struct type * t,
const char * name,
struct type * field )

◆ append_flags_type_field()

void append_flags_type_field ( struct type * type,
int start_bitpos,
int nr_bits,
struct type * field_type,
const char * name )
extern

◆ append_flags_type_flag()

void append_flags_type_flag ( struct type * type,
int bitpos,
const char * name )
extern

◆ arch_composite_type()

struct type * arch_composite_type ( struct gdbarch * gdbarch,
const char * name,
enum type_code code )
extern

◆ arch_flags_type()

struct type * arch_flags_type ( struct gdbarch * gdbarch,
const char * name,
int bit )
extern

◆ builtin_type() [1/2]

const struct builtin_type * builtin_type ( struct gdbarch * gdbarch)
extern

Return the type table for the specified architecture.

◆ builtin_type() [2/2]

const struct builtin_type * builtin_type ( struct objfile * objfile)
extern

Return the type table for the specified objfile.

◆ can_create_complex_type()

bool can_create_complex_type ( struct type * )
extern

◆ can_dereference()

int can_dereference ( struct type * )
extern

◆ check_stub_method_group()

void check_stub_method_group ( struct type * ,
int  )
extern

◆ check_typedef()

struct type * check_typedef ( struct type * )
extern

◆ class_or_union_p()

int class_or_union_p ( const struct type * )
extern

◆ class_types_same_p()

int class_types_same_p ( const struct type * ,
const struct type *  )
extern

◆ compare_badness()

int compare_badness ( const badness_vector & ,
const badness_vector &  )
extern

◆ compare_ranks()

int compare_ranks ( struct rank a,
struct rank b )
extern

◆ copy_type()

struct type * copy_type ( const struct type * type)
extern

◆ copy_type_recursive()

struct type * copy_type_recursive ( struct type * type,
htab_t copied_types )
extern

◆ create_array_type()

struct type * create_array_type ( type_allocator & alloc,
struct type * element_type,
struct type * range_type )
extern

◆ create_array_type_with_stride()

struct type * create_array_type_with_stride ( type_allocator & alloc,
struct type * element_type,
struct type * range_type,
struct dynamic_prop * byte_stride_prop,
unsigned int bit_stride )
extern

◆ create_copied_types_hash()

htab_up create_copied_types_hash ( )
extern

◆ create_range_type()

struct type * create_range_type ( type_allocator & alloc,
struct type * index_type,
const struct dynamic_prop * low_bound,
const struct dynamic_prop * high_bound,
LONGEST bias )
extern

◆ create_range_type_with_stride()

struct type * create_range_type_with_stride ( type_allocator & alloc,
struct type * index_type,
const struct dynamic_prop * low_bound,
const struct dynamic_prop * high_bound,
LONGEST bias,
const struct dynamic_prop * stride,
bool byte_stride_p )
extern

◆ create_set_type()

struct type * create_set_type ( type_allocator & alloc,
struct type * domain_type )
extern

◆ create_static_range_type()

struct type * create_static_range_type ( type_allocator & alloc,
struct type * index_type,
LONGEST low_bound,
LONGEST high_bound )
extern

◆ create_string_type()

struct type * create_string_type ( type_allocator & alloc,
struct type * string_char_type,
struct type * range_type )
extern

◆ DEF_ENUM_FLAGS_TYPE()

DEF_ENUM_FLAGS_TYPE ( enum type_instance_flag_value,
type_instance_flags  )

◆ discrete_position()

gdb::optional< LONGEST > discrete_position ( struct type * type,
LONGEST val )
extern

◆ floatformat_from_type()

const struct floatformat * floatformat_from_type ( const struct type * type)

◆ gdb_mangle_name()

char * gdb_mangle_name ( struct type * ,
int ,
int  )
extern

◆ get_array_bounds()

bool get_array_bounds ( struct type * type,
LONGEST * low_bound,
LONGEST * high_bound )
extern

◆ get_discrete_bounds()

bool get_discrete_bounds ( struct type * type,
LONGEST * lowp,
LONGEST * highp )
extern

◆ get_discrete_high_bound()

gdb::optional< LONGEST > get_discrete_high_bound ( struct type * type)
extern

◆ get_discrete_low_bound()

gdb::optional< LONGEST > get_discrete_low_bound ( struct type * type)
extern

◆ get_pointer_type_max()

CORE_ADDR get_pointer_type_max ( struct type * )
extern

◆ get_signed_type_minmax()

void get_signed_type_minmax ( struct type * ,
LONGEST * ,
LONGEST *  )
extern

◆ get_target_type()

struct type * get_target_type ( struct type * type)
extern

This returns the target type (or NULL) of TYPE, also skipping past typedefs.

◆ get_unsigned_type_max()

ULONGEST get_unsigned_type_max ( struct type * )
extern

◆ get_vptr_fieldno()

int get_vptr_fieldno ( struct type * ,
struct type **  )
extern

◆ init_boolean_type()

struct type * init_boolean_type ( type_allocator & alloc,
int bit,
int unsigned_p,
const char * name )
extern

◆ init_character_type()

struct type * init_character_type ( type_allocator & alloc,
int bit,
int unsigned_p,
const char * name )
extern

◆ init_complex_type()

struct type * init_complex_type ( const char * ,
struct type *  )
extern

◆ init_decfloat_type()

struct type * init_decfloat_type ( type_allocator & alloc,
int bit,
const char * name )
extern

◆ init_fixed_point_type()

struct type * init_fixed_point_type ( type_allocator & ,
int ,
int ,
const char *  )
extern

◆ init_float_type()

struct type * init_float_type ( type_allocator & alloc,
int bit,
const char * name,
const struct floatformat ** floatformats,
enum bfd_endian byte_order = BFD_ENDIAN_UNKNOWN )
extern

◆ init_integer_type()

struct type * init_integer_type ( type_allocator & alloc,
int bit,
int unsigned_p,
const char * name )
extern

◆ init_pointer_type()

struct type * init_pointer_type ( type_allocator & alloc,
int bit,
const char * name,
struct type * target_type )
extern

◆ init_vector_type()

struct type * init_vector_type ( struct type * elt_type,
int n )
extern

◆ internal_type_self_type()

struct type * internal_type_self_type ( struct type * )
extern

◆ internal_type_vptr_basetype()

struct type * internal_type_vptr_basetype ( struct type * )
extern

◆ internal_type_vptr_fieldno()

int internal_type_vptr_fieldno ( struct type * )
extern

◆ is_ancestor()

int is_ancestor ( struct type * ,
struct type *  )
extern

◆ is_dynamic_type()

int is_dynamic_type ( struct type * type)
extern

Predicate if the type has dynamic values, which are not resolved yet. See the caveat in 'resolve_dynamic_type' to understand a scenario where an apparently-resolved type may still be considered "dynamic".

◆ is_fixed_point_type()

bool is_fixed_point_type ( struct type * type)
extern

◆ is_floating_type()

int is_floating_type ( struct type * )
extern

◆ is_integral_type()

int is_integral_type ( struct type * )
extern

◆ is_nocall_function()

bool is_nocall_function ( const struct type * type)
extern

◆ is_public_ancestor()

int is_public_ancestor ( struct type * ,
struct type *  )
extern

◆ is_scalar_type()

int is_scalar_type ( struct type * type)
extern

◆ is_scalar_type_recursive()

int is_scalar_type_recursive ( struct type * )
extern

◆ is_unique_ancestor()

int is_unique_ancestor ( struct type * ,
struct value *  )
extern

◆ lookup_array_range_type()

struct type * lookup_array_range_type ( struct type * ,
LONGEST ,
LONGEST  )
extern

◆ lookup_function_type()

struct type * lookup_function_type ( struct type * )
extern

◆ lookup_function_type_with_arguments()

struct type * lookup_function_type_with_arguments ( struct type * ,
int ,
struct type **  )
extern

◆ lookup_lvalue_reference_type()

struct type * lookup_lvalue_reference_type ( struct type * )
extern

◆ lookup_memberptr_type()

struct type * lookup_memberptr_type ( struct type * ,
struct type *  )
extern

◆ lookup_methodptr_type()

struct type * lookup_methodptr_type ( struct type * )
extern

◆ lookup_pointer_type()

struct type * lookup_pointer_type ( struct type * )
extern

◆ lookup_reference_type()

struct type * lookup_reference_type ( struct type * ,
enum type_code )
extern

◆ lookup_rvalue_reference_type()

struct type * lookup_rvalue_reference_type ( struct type * )
extern

◆ lookup_signed_typename()

struct type * lookup_signed_typename ( const struct language_defn * ,
const char *  )
extern

◆ lookup_string_range_type()

struct type * lookup_string_range_type ( struct type * ,
LONGEST ,
LONGEST  )
extern

◆ lookup_struct_elt()

struct_elt lookup_struct_elt ( struct type * ,
const char * ,
int  )
extern

◆ lookup_struct_elt_type()

struct type * lookup_struct_elt_type ( struct type * ,
const char * ,
int  )
extern

◆ lookup_template_type()

struct type * lookup_template_type ( const char * ,
struct type * ,
const struct block *  )
extern

◆ lookup_typename()

struct type * lookup_typename ( const struct language_defn * language,
const char * name,
const struct block * block,
int noerr )
extern

◆ lookup_unsigned_typename()

struct type * lookup_unsigned_typename ( const struct language_defn * ,
const char *  )
extern

◆ maintenance_print_type()

void maintenance_print_type ( const char * ,
int  )
extern

◆ make_atomic_type()

struct type * make_atomic_type ( struct type * )
extern

◆ make_cv_type()

struct type * make_cv_type ( int ,
int ,
struct type * ,
struct type **  )
extern

◆ make_function_type()

struct type * make_function_type ( struct type * ,
struct type **  )
extern

◆ make_pointer_type()

struct type * make_pointer_type ( struct type * ,
struct type **  )
extern

◆ make_reference_type()

struct type * make_reference_type ( struct type * ,
struct type ** ,
enum type_code )
extern

◆ make_restrict_type()

struct type * make_restrict_type ( struct type * )
extern

◆ make_type_with_address_space()

struct type * make_type_with_address_space ( struct type * type,
type_instance_flags space_identifier )
extern

◆ make_unqualified_type()

struct type * make_unqualified_type ( struct type * )
extern

◆ make_vector_type()

void make_vector_type ( struct type * array_type)
extern

◆ operator==() [1/2]

◆ operator==() [2/2]

◆ print_scalar_formatted()

void print_scalar_formatted ( const gdb_byte * ,
struct type * ,
const struct value_print_options * ,
int ,
struct ui_file *  )
extern

◆ rank_function()

badness_vector rank_function ( gdb::array_view< type * > parms,
gdb::array_view< value * > args )
extern

◆ rank_one_type()

struct rank rank_one_type ( struct type * ,
struct type * ,
struct value *  )
extern

◆ recursive_dump_type()

void recursive_dump_type ( struct type * ,
int  )
extern

◆ replace_type()

void replace_type ( struct type * ,
struct type *  )
extern

◆ resolve_dynamic_type()

struct type * resolve_dynamic_type ( struct type * type,
gdb::array_view< const gdb_byte > valaddr,
CORE_ADDR addr,
const frame_info_ptr * frame = nullptr )
extern

Resolve all dynamic values of a type e.g. array bounds to static values. ADDR specifies the location of the variable the type is bound to. If TYPE has no dynamic properties return TYPE; otherwise a new type with static properties is returned.

If FRAME is given, it is used when evaluating dynamic properties. This can be important when a static link is seen. If not given, the selected frame is used.

For an array type, if the element type is dynamic, then that will not be resolved. This is done because each individual element may have a different type when resolved (depending on the contents of memory). In this situation, 'is_dynamic_type' will still return true for the return value of this function.

◆ set_type_align()

bool set_type_align ( struct type * ,
ULONGEST  )
extern

Set the alignment of the type. The alignment must be a power of

  1. Returns false if the given value does not fit in the available space in struct type.

◆ set_type_self_type()

void set_type_self_type ( struct type * ,
struct type *  )
extern

◆ set_type_vptr_basetype()

void set_type_vptr_basetype ( struct type * ,
struct type *  )
extern

◆ set_type_vptr_fieldno()

void set_type_vptr_fieldno ( struct type * ,
int  )
extern

◆ smash_to_memberptr_type()

void smash_to_memberptr_type ( struct type * ,
struct type * ,
struct type *  )
extern

◆ smash_to_method_type()

void smash_to_method_type ( struct type * type,
struct type * self_type,
struct type * to_type,
struct field * args,
int nargs,
int varargs )
extern

◆ smash_to_methodptr_type()

void smash_to_methodptr_type ( struct type * ,
struct type *  )
extern

◆ sum_ranks()

struct rank sum_ranks ( struct rank a,
struct rank b )
extern

◆ type_align()

unsigned type_align ( struct type * )
extern

Return the alignment of the type in target addressable memory units. Return 0 if the alignment cannot be determined; but note that this makes an effort to compute the alignment even it it was not specified in the debug info.

◆ type_byte_order()

enum bfd_endian type_byte_order ( const struct type * type)
extern

When the type includes explicit byte ordering, return that. Otherwise, the byte ordering from gdbarch_byte_order for the type's arch is returned.

◆ type_length_units()

unsigned int type_length_units ( struct type * type)
extern

◆ type_name_or_error()

const char * type_name_or_error ( struct type * type)
extern

◆ type_not_allocated()

int type_not_allocated ( const struct type * type)
extern

◆ type_not_associated()

int type_not_associated ( const struct type * type)
extern

◆ type_raw_align()

unsigned type_raw_align ( struct type * )
extern

Return the alignment of the type in target addressable memory units, or 0 if no alignment was specified.

◆ types_deeply_equal()

bool types_deeply_equal ( struct type * ,
struct type *  )
extern

◆ types_equal()

bool types_equal ( struct type * ,
struct type *  )
extern

Variable Documentation

◆ BASE_CONVERSION_BADNESS

const struct rank BASE_CONVERSION_BADNESS
extern

Badness of converting derived to base class.

◆ BASE_PTR_CONVERSION_BADNESS

const struct rank BASE_PTR_CONVERSION_BADNESS
extern

Badness of converting a derived class pointer to a base class pointer.

◆ BOOL_CONVERSION_BADNESS

const struct rank BOOL_CONVERSION_BADNESS
extern

Badness of conversion to boolean.

◆ cplus_struct_default

const struct cplus_struct_type cplus_struct_default
extern

The default value of TYPE_CPLUS_SPECIFIC(T) points to this shared static structure.

◆ CV_CONVERSION_BADNESS

const struct rank CV_CONVERSION_BADNESS
extern

Badness of cv-conversion. Subrank is a flag describing the conversions being done.

◆ EXACT_MATCH_BADNESS

const struct rank EXACT_MATCH_BADNESS
extern

Badness of an exact match.

◆ FLOAT_CONVERSION_BADNESS

const struct rank FLOAT_CONVERSION_BADNESS
extern

Badness of floating conversion.

◆ FLOAT_PROMOTION_BADNESS

const struct rank FLOAT_PROMOTION_BADNESS
extern

Badness of floating promotion.

◆ floatformats_arm_ext

const struct floatformat* floatformats_arm_ext[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_bfloat16

const struct floatformat* floatformats_bfloat16[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_i387_ext

const struct floatformat* floatformats_i387_ext[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ia64_spill

const struct floatformat* floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ibm_long_double

const struct floatformat* floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ieee_double

const struct floatformat* floatformats_ieee_double[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ieee_double_littlebyte_bigword

const struct floatformat* floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ieee_half

const struct floatformat* floatformats_ieee_half[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ieee_quad

const struct floatformat* floatformats_ieee_quad[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_ieee_single

const struct floatformat* floatformats_ieee_single[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_m68881_ext

const struct floatformat* floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_vax_d

const struct floatformat* floatformats_vax_d[BFD_ENDIAN_UNKNOWN]
extern

◆ floatformats_vax_f

const struct floatformat* floatformats_vax_f[BFD_ENDIAN_UNKNOWN]
extern

◆ gnat_aux_default

const struct gnat_aux_type gnat_aux_default
extern

◆ INCOMPATIBLE_TYPE_BADNESS

const struct rank INCOMPATIBLE_TYPE_BADNESS
extern

Badness if no conversion among types.

◆ INT_FLOAT_CONVERSION_BADNESS

const struct rank INT_FLOAT_CONVERSION_BADNESS
extern

Badness of integer<->floating conversions.

◆ INTEGER_CONVERSION_BADNESS

const struct rank INTEGER_CONVERSION_BADNESS
extern

Badness of integral conversion.

◆ INTEGER_PROMOTION_BADNESS

const struct rank INTEGER_PROMOTION_BADNESS
extern

Badness of integral promotion.

◆ LENGTH_MISMATCH_BADNESS

const struct rank LENGTH_MISMATCH_BADNESS
extern

Badness if parameter list length doesn't match arg list length.

◆ NS_INTEGER_POINTER_CONVERSION_BADNESS

const struct rank NS_INTEGER_POINTER_CONVERSION_BADNESS
extern

Badness of converting a (non-zero) integer constant to a pointer.

◆ NS_POINTER_CONVERSION_BADNESS

const struct rank NS_POINTER_CONVERSION_BADNESS
extern

Converting a pointer to an int is usually OK.

◆ NULL_POINTER_CONVERSION

const struct rank NULL_POINTER_CONVERSION
extern

Badness of converting integer 0 to NULL pointer.

◆ overload_debug

unsigned int overload_debug
extern

◆ REFERENCE_CONVERSION_BADNESS

const struct rank REFERENCE_CONVERSION_BADNESS
extern

Badness of converting from non-reference to reference. Subrank is the type of reference conversion being done.

◆ REFERENCE_SEE_THROUGH_BADNESS

const struct rank REFERENCE_SEE_THROUGH_BADNESS
extern

◆ TOO_FEW_PARAMS_BADNESS

const struct rank TOO_FEW_PARAMS_BADNESS
extern

Dummy badness value for nonexistent parameter positions.

◆ VOID_PTR_CONVERSION_BADNESS

const struct rank VOID_PTR_CONVERSION_BADNESS
extern

Badness of conversion of pointer to void pointer.