Home
last modified time | relevance | path

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

/openbsd/src/gnu/usr.bin/binutils/gdb/
Dgdbtypes.h215 #define TYPE_CONST(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_CONST)
222 #define TYPE_VOLATILE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_VOLATILE)
263 #define TYPE_CODE_SPACE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_CODE_SPACE)
266 #define TYPE_DATA_SPACE(t) (TYPE_INSTANCE_FLAGS (t) & TYPE_FLAG_DATA_SPACE)
286 #define TYPE_ADDRESS_CLASS_1(t) (TYPE_INSTANCE_FLAGS(t) \
289 #define TYPE_ADDRESS_CLASS_2(t) (TYPE_INSTANCE_FLAGS(t) \
293 #define TYPE_ADDRESS_CLASS_ALL(t) (TYPE_INSTANCE_FLAGS(t) \
792 #define TYPE_INSTANCE_FLAGS(thistype) (thistype)->instance_flags macro
Dgdbtypes.c446 if (TYPE_INSTANCE_FLAGS (ntype) == new_flags) in make_qualified_type()
471 TYPE_INSTANCE_FLAGS (ntype) = new_flags; in make_qualified_type()
491 int new_flags = ((TYPE_INSTANCE_FLAGS (type) in make_type_with_address_space()
516 int new_flags = (TYPE_INSTANCE_FLAGS (type) in make_cv_type()
585 gdb_assert (TYPE_INSTANCE_FLAGS (ntype) == TYPE_INSTANCE_FLAGS (type)); in replace_type()
2990 printfi_filtered (spaces, "instance_flags 0x%x", TYPE_INSTANCE_FLAGS (type)); in recursive_dump_type()
Dc-typeprint.c326 address_space_id = address_space_int_to_name (TYPE_INSTANCE_FLAGS (type)); in c_type_print_modifier()
DChangeLog-20029390 TYPE_INSTANCE_FLAGS.
9394 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
9408 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
9410 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.