| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | ipa-free-lang-data.cc | 302 TYPE_VALUES (copy) = NULL; in fld_incomplete_type_of() 497 if (!TYPE_VALUES (type)) in free_lang_data_in_type() 502 TYPE_VALUES (type) = NULL; in free_lang_data_in_type()
|
| D | tree-dump.cc | 450 dump_child ("csts", TYPE_VALUES (t)); in dequeue_and_dump()
|
| D | tree.cc | 6073 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type) in equal() 6074 && !(TYPE_VALUES (a->type) in equal() 6075 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST in equal() 6076 && TYPE_VALUES (b->type) in equal() 6077 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST in equal() 6078 && type_list_equal (TYPE_VALUES (a->type), in equal() 6079 TYPE_VALUES (b->type)))) in equal() 13312 && TYPE_VALUES (t)) in verify_type_variant() 13313 verify_variant_match (TYPE_VALUES); in verify_type_variant() 13862 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l)) in verify_type()
|
| D | godump.cc | 1109 for (element = TYPE_VALUES (TREE_TYPE (decl)); in go_output_typedef()
|
| D | ipa-devirt.cc | 4070 for (tree e = TYPE_VALUES (t); e; e = TREE_CHAIN (e)) in ipa_odr_summary_write() 4073 for (tree e = TYPE_VALUES (t); e; e = TREE_CHAIN (e)) in ipa_odr_summary_write() 4085 for (tree e = TYPE_VALUES (t); e; e = TREE_CHAIN (e)) in ipa_odr_summary_write()
|
| D | print-tree.cc | 694 print_node (file, "values", TYPE_VALUES (node), indent + 4); in print_node()
|
| D | dbxout.cc | 2313 for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem)) in dbxout_type()
|
| D | tree.def | 127 however, the TYPE_VALUES is a list in which each element's TREE_PURPOSE
|
| D | tree.h | 2367 #define TYPE_VALUES(NODE) (ENUMERAL_TYPE_CHECK (NODE)->type_non_common.values) macro
|
| D | fold-const.cc | 13737 fold_checksum_tree (TYPE_VALUES (expr), ctx, ht); in fold_checksum_tree()
|
| D | ChangeLog-2020 | 20659 (odr_types_equivalent_p): Drop code testing TYPE_VALUES. 20661 (free_odr_warning_data): Do not free TYPE_VALUES. 20673 TYPE_VALUES. 21360 * tree.c (free_lang_data_in_type): Simpify types of TYPE_VALUES in
|
| D | ChangeLog-2004 | 29187 Use TYPE_FIELDS instead of TYPE_VALUES. 35901 * sdbout.c (sdbout_one_type): Use TYPE_VALUES for enums, not 37937 (TYPE_VALUES, TYPE_DOMAIN, TYPE_FIELDS, TYPE_METHODS, TYPE_VFIELD): 37943 * c-typeck.c (build_array_ref): Use TYPE_DOMAIN, not TYPE_VALUES. 37944 * dwarf2out.c (gen_enumeration_type_die): Use TYPE_VALUES,
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | decl.cc | 16391 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype)); in finish_enum_value_list() 16399 for (values = TYPE_VALUES (enumtype); in finish_enum_value_list() 16407 if (TYPE_VALUES (enumtype)) in finish_enum_value_list() 16411 for (values = TYPE_VALUES (enumtype); in finish_enum_value_list() 16560 for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values)) in finish_enum_value_list() 16586 TYPE_VALUES (t) = TYPE_VALUES (enumtype); in finish_enum_value_list() 16623 && (TYPE_VALUES (enumtype) in finish_enum() 16702 if (TYPE_VALUES (enumtype)) in build_enumerator() 16713 prev_value = DECL_INITIAL (TREE_VALUE (TYPE_VALUES (enumtype))); in build_enumerator() 16833 TYPE_VALUES (enumtype) = tree_cons (name, decl, TYPE_VALUES (enumtype)); in build_enumerator() [all …]
|
| D | name-lookup.cc | 222 && decl == TREE_VALUE (TYPE_VALUES (type))) in init_global_partition() 2178 for (tree values = TYPE_VALUES (enumtype); in member_vec_append_enum_values() 2331 n_fields = list_length (TYPE_VALUES (enumtype)); in insert_late_enum_def_bindings() 6607 for (tree iter = TYPE_VALUES (scoped_enum); iter; iter = TREE_CHAIN (iter)) in maybe_add_candidate_for_scoped_enum() 7069 for (tree iter = TYPE_VALUES (scoped_enum); iter; iter = TREE_CHAIN (iter)) in suggest_alternative_in_scoped_enum()
|
| D | module.cc | 4655 for (tree values = TYPE_VALUES (ctx); in find_enum_member() 9041 for (tree values = TYPE_VALUES (TREE_TYPE (t)); in tree_node() 10219 && TYPE_VALUES (TREE_TYPE (decl))) in get_merge_kind() 10493 if (tree values = TYPE_VALUES (type)) in key_mergeable() 11268 ? TYPE_VALUES (type) : TYPE_FIELDS (type))) in has_definition() 12080 tree_node (TYPE_VALUES (type)); in write_enum_def() 12090 for (tree values = TYPE_VALUES (type); values; values = TREE_CHAIN (values)) in mark_enum_def() 12112 tree maybe_dup = odr_duplicate (maybe_template, TYPE_VALUES (type)); in read_enum_def() 12113 bool installing = maybe_dup && !TYPE_VALUES (type); in read_enum_def() 12117 TYPE_VALUES (type) = values; in read_enum_def() [all …]
|
| D | cxx-pretty-print.cc | 325 for (value = TYPE_VALUES (type); value != NULL_TREE; in pp_cxx_enumeration_constant()
|
| D | class.cc | 3417 if (TYPE_VALUES (type)) in enum_min_precision() 3420 for (tree values = TYPE_VALUES (type); in enum_min_precision()
|
| D | ChangeLog-1997 | 1880 * pt.c (instantiate_class_template): TYPE_VALUES for an enum
|
| D | ChangeLog-1999 | 850 (start_enum): Clear TYPE_VALUES for a redefined enum. 853 we don't need to. Maintain the TYPE_VALUES list and look there
|
| D | pt.cc | 4119 for (tree l = TYPE_VALUES (t); l; l = TREE_CHAIN (l)) in find_parameter_packs_r() 17037 for (v = TYPE_VALUES (enum_type); in tsubst_copy() 27181 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e)) in tsubst_enum()
|
| D | ChangeLog-2004 | 5672 (build_array_ref): Use TYPE_DOMAIN, not TYPE_VALUES.
|
| D | ChangeLog-1994 | 2285 * decl.c (finish_enum): Put the constants in TYPE_VALUES again,
|
| D | ChangeLog-1998 | 2376 * decl.c (finish_enum): Use TYPE_VALUES, rather than taking a
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/doc/ |
| D | generic.texi | 483 at the @code{TYPE_VALUES}. This macro will return a @code{TREE_LIST},
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/lto/ |
| D | ChangeLog | 207 * lto-common.c (compare_tree_sccs_1): Do not compare TYPE_VALUES.
|