Home
last modified time | relevance | path

Searched refs:TYPE_INSTANCE_FLAGS (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/gdb/gdb/
HDgdbtypes.h195 #define TYPE_CONST(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_CONST)
202 #define TYPE_VOLATILE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_VOLATILE)
243 #define TYPE_CODE_SPACE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_CODE_SPACE)
246 #define TYPE_DATA_SPACE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_DATA_SPACE)
266 #define TYPE_ADDRESS_CLASS_1(t) (TYPE_INSTANCE_FLAGS(t) \
269 #define TYPE_ADDRESS_CLASS_2(t) (TYPE_INSTANCE_FLAGS(t) \
273 #define TYPE_ADDRESS_CLASS_ALL(t) (TYPE_INSTANCE_FLAGS(t) \
281 #define TYPE_RESTRICT(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_RESTRICT)
768 #define TYPE_INSTANCE_FLAGS(thistype) (thistype)->instance_flags macro
HDgdbtypes.c441 if (TYPE_INSTANCE_FLAGS (ntype) == new_flags) in make_qualified_type()
466 TYPE_INSTANCE_FLAGS (ntype) = new_flags; in make_qualified_type()
486 int new_flags = ((TYPE_INSTANCE_FLAGS (type) in make_type_with_address_space()
512 int new_flags = (TYPE_INSTANCE_FLAGS (type) in make_cvr_type()
584 gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type)); in replace_type()
3003 printfi_filtered (spaces, "instance_flags 0x%x", TYPE_INSTANCE_FLAGS (type)); in recursive_dump_type()
HDc-typeprint.c329 address_space_id = address_space_int_to_name (TYPE_INSTANCE_FLAGS (type)); in c_type_print_modifier()