| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | ubsan.cc | 226 tree type_decl = build_decl (input_location, TYPE_DECL, in ubsan_get_type_descriptor_type() local 229 DECL_IGNORED_P (type_decl) = 1; in ubsan_get_type_descriptor_type() 230 DECL_ARTIFICIAL (type_decl) = 1; in ubsan_get_type_descriptor_type() 232 TYPE_NAME (ret) = type_decl; in ubsan_get_type_descriptor_type() 233 TYPE_STUB_DECL (ret) = type_decl; in ubsan_get_type_descriptor_type() 275 tree type_decl = build_decl (input_location, TYPE_DECL, in ubsan_get_source_location_type() local 278 DECL_IGNORED_P (type_decl) = 1; in ubsan_get_source_location_type() 279 DECL_ARTIFICIAL (type_decl) = 1; in ubsan_get_source_location_type() 281 TYPE_NAME (ret) = type_decl; in ubsan_get_source_location_type() 282 TYPE_STUB_DECL (ret) = type_decl; in ubsan_get_source_location_type() [all …]
|
| D | debug.h | 152 void (* type_decl) (tree decl, int local); member
|
| D | godump.cc | 517 real_debug_hooks->type_decl (decl, local); in go_type_decl() 1439 go_debug_hooks.type_decl = go_type_decl; in dump_go_spec_init()
|
| D | asan.cc | 3176 tree type_decl = build_decl (input_location, TYPE_DECL, in asan_global_struct() local 3178 DECL_IGNORED_P (type_decl) = 1; in asan_global_struct() 3179 DECL_ARTIFICIAL (type_decl) = 1; in asan_global_struct() 3181 TYPE_NAME (ret) = type_decl; in asan_global_struct() 3182 TYPE_STUB_DECL (ret) = type_decl; in asan_global_struct()
|
| D | tree-core.h | 2066 struct tree_type_decl GTY ((tag ("TS_TYPE_DECL"))) type_decl;
|
| D | passes.cc | 251 debug_hooks->type_decl (decl, !top_level); in rest_of_decl_compilation() 339 debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev); in rest_of_type_compilation()
|
| D | vmsdbgout.cc | 1551 (*dwarf2_debug_hooks.type_decl) (decl, local); in vmsdbgout_type_decl()
|
| D | dwarf2out.cc | 367 tree type_decl = TYPE_STUB_DECL (type); in dump_struct_debug() local 368 tree t = type_decl; in dump_struct_debug() 377 DECL_IN_SYSTEM_HEADER (type_decl) ? "sys" : "usr", in dump_struct_debug() 383 (void*) type_decl, name); in dump_struct_debug() 414 tree type_decl; in should_emit_struct_debug() local 427 type_decl = TYPE_STUB_DECL (TYPE_MAIN_VARIANT (type)); in should_emit_struct_debug() 429 if (type_decl != NULL) in should_emit_struct_debug() 431 if (criterion == DINFO_STRUCT_FILE_SYS && DECL_IN_SYSTEM_HEADER (type_decl)) in should_emit_struct_debug() 434 if (matches_main_base (DECL_SOURCE_FILE (type_decl))) in should_emit_struct_debug()
|
| D | tree.def | 373 DEFTREECODE (TYPE_DECL, "type_decl", tcc_declaration, 0)
|
| D | ChangeLog-2004 | 20560 * c-decl.c (record_builtin_type): Call debug_hooks->type_decl 41894 * sdbout.c (sdb_debug_hooks): Correct the type_decl entry. 42077 * debug.h (struct gcc_debug_hooks): Add type_decl field. 42087 Use debug_hooks->type_decl. 42115 (record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | parser.cc | 6332 tree type_decl; in cp_parser_unqualified_id() local 6461 type_decl = NULL_TREE; in cp_parser_unqualified_id() 6465 type_decl = cp_parser_class_name (parser, in cp_parser_unqualified_id() 6482 type_decl in cp_parser_unqualified_id() 6500 type_decl in cp_parser_unqualified_id() 6519 type_decl in cp_parser_unqualified_id() 6539 type_decl = cp_parser_identifier (parser); in cp_parser_unqualified_id() 6540 if (type_decl != error_mark_node) in cp_parser_unqualified_id() 6541 type_decl = build_min_nt_loc (loc, BIT_NOT_EXPR, type_decl); in cp_parser_unqualified_id() 6542 return type_decl; in cp_parser_unqualified_id() [all …]
|
| D | pt.cc | 9946 tree type_decl; in lookup_template_class_1() local 10179 type_decl = TYPE_NAME (t); in lookup_template_class_1() 10180 if (!type_decl) in lookup_template_class_1() 10184 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t); in lookup_template_class_1() 10185 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t); in lookup_template_class_1() 10186 DECL_SOURCE_LOCATION (type_decl) in lookup_template_class_1() 10190 set_instantiating_module (type_decl); in lookup_template_class_1() 10194 DECL_MODULE_EXPORT_P (type_decl) = DECL_MODULE_EXPORT_P (gen_tmpl); in lookup_template_class_1() 10198 TREE_PRIVATE (type_decl) in lookup_template_class_1() 10200 TREE_PROTECTED (type_decl) in lookup_template_class_1() [all …]
|
| D | ChangeLog-2020 | 3631 (perform_typedefs_access_check): Adjust. If type_decl is a 3633 tsubst_copy instead of tsubst to substitute into type_decl so
|
| D | ChangeLog-2005 | 3102 * parser.c (cp_parser_unqualified_id): Initialize type_decl.
|
| D | ChangeLog-2021 | 3827 separation of template and type_decl.
|
| D | ChangeLog-2004 | 6177 (record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
|
| D | decl.cc | 4392 debug_hooks->type_decl (decl, 0); in record_builtin_type()
|
| D | ChangeLog-1998 | 4040 * decl.c (pushdecl): Don't copy the type_decl.
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| D | rs6000-call.cc | 2413 tree f_gpr, f_fpr, f_res, f_ovf, f_sav, record, type_decl; in rs6000_build_builtin_va_list() local 2421 type_decl = build_decl (BUILTINS_LOCATION, TYPE_DECL, in rs6000_build_builtin_va_list() 2448 TYPE_STUB_DECL (record) = type_decl; in rs6000_build_builtin_va_list() 2449 TYPE_NAME (record) = type_decl; in rs6000_build_builtin_va_list()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/stormy16/ |
| D | stormy16.cc | 1270 tree f_1, f_2, record, type_decl; in xstormy16_build_builtin_va_list() local 1273 type_decl = build_decl (BUILTINS_LOCATION, in xstormy16_build_builtin_va_list() 1286 TYPE_STUB_DECL (record) = type_decl; in xstormy16_build_builtin_va_list() 1287 TYPE_NAME (record) = type_decl; in xstormy16_build_builtin_va_list()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/xtensa/ |
| D | xtensa.cc | 3156 tree f_stk, f_reg, f_ndx, record, type_decl; in xtensa_build_builtin_va_list() local 3159 type_decl = build_decl (BUILTINS_LOCATION, in xtensa_build_builtin_va_list() 3176 TYPE_STUB_DECL (record) = type_decl; in xtensa_build_builtin_va_list() 3177 TYPE_NAME (record) = type_decl; in xtensa_build_builtin_va_list()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/alpha/ |
| D | alpha.cc | 5839 tree base, ofs, space, record, type_decl; in alpha_build_builtin_va_list() local 5845 type_decl = build_decl (BUILTINS_LOCATION, in alpha_build_builtin_va_list() 5847 TYPE_STUB_DECL (record) = type_decl; in alpha_build_builtin_va_list() 5848 TYPE_NAME (record) = type_decl; in alpha_build_builtin_va_list()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/sh/ |
| D | sh.cc | 7511 tree record, type_decl; in sh_build_builtin_va_list() local 7518 type_decl = build_decl (BUILTINS_LOCATION, in sh_build_builtin_va_list() 7545 TYPE_STUB_DECL (record) = type_decl; in sh_build_builtin_va_list() 7546 TYPE_NAME (record) = type_decl; in sh_build_builtin_va_list()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/s390/ |
| D | s390.cc | 12666 tree f_gpr, f_fpr, f_ovf, f_sav, record, type_decl; in s390_build_builtin_va_list() local 12670 type_decl = in s390_build_builtin_va_list() 12695 TYPE_STUB_DECL (record) = type_decl; in s390_build_builtin_va_list() 12696 TYPE_NAME (record) = type_decl; in s390_build_builtin_va_list()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/ |
| D | i386.cc | 4315 tree f_gpr, f_fpr, f_ovf, f_sav, record, type_decl; in ix86_build_builtin_va_list_64() local 4318 type_decl = build_decl (BUILTINS_LOCATION, in ix86_build_builtin_va_list_64() 4342 TYPE_STUB_DECL (record) = type_decl; in ix86_build_builtin_va_list_64() 4343 TYPE_NAME (record) = type_decl; in ix86_build_builtin_va_list_64()
|