Home
last modified time | relevance | path

Searched refs:union_type (Results 1 – 23 of 23) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-common.c280 build_field (segment_info *h, tree union_type, record_layout_info rli) in build_field() argument
298 DECL_FIELD_CONTEXT (field) = union_type; in build_field()
345 build_equiv_decl (tree union_type, bool is_init, bool is_saved, bool is_auto) in build_equiv_decl() argument
353 decl = gfc_create_var (union_type, "equiv"); in build_equiv_decl()
361 VAR_DECL, get_identifier (name), union_type); in build_equiv_decl()
386 build_common_decl (gfc_common_head *com, tree union_type, bool is_init) in build_common_decl() argument
397 tree size = TYPE_SIZE_UNIT (union_type); in build_common_decl()
412 DECL_SIZE (decl) = TYPE_SIZE (union_type); in build_common_decl()
414 SET_DECL_MODE (decl, TYPE_MODE (union_type)); in build_common_decl()
415 TREE_TYPE (decl) = union_type; in build_common_decl()
[all …]
H A Dtrans-types.c3474 tree triplet_struct_type, vect_struct_type, union_type, tmp, *chain; in gfc_get_caf_vector_type() local
3509 union_type = make_node (UNION_TYPE); in gfc_get_caf_vector_type()
3510 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("v"), in gfc_get_caf_vector_type()
3513 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("triplet"), in gfc_get_caf_vector_type()
3516 gfc_finish_type (union_type); in gfc_get_caf_vector_type()
3524 union_type, &chain); in gfc_get_caf_vector_type()
3541 tree c_struct_type, s_struct_type, v_struct_type, union_type, dim_union_type, in gfc_get_caf_reference_type() local
3592 union_type = make_node (UNION_TYPE); in gfc_get_caf_reference_type()
3593 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("s"), in gfc_get_caf_reference_type()
3596 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("v"), in gfc_get_caf_reference_type()
[all …]
H A Dexpr.c4951 get_union_initializer (gfc_symbol *union_type, gfc_component **map_p) in get_union_initializer() argument
4956 if (!union_type || union_type->attr.flavor != FL_UNION) in get_union_initializer()
4959 for (map = union_type->components; map; map = map->next) in get_union_initializer()
H A Dtrans-expr.c8710 tree union_type = TREE_TYPE (un->backend_decl); in gfc_conv_union_initializer() local
8711 tree val = build_constructor (union_type, NULL); in gfc_conv_union_initializer()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-common.cc280 build_field (segment_info *h, tree union_type, record_layout_info rli) in build_field() argument
298 DECL_FIELD_CONTEXT (field) = union_type; in build_field()
352 build_equiv_decl (tree union_type, bool is_init, bool is_saved, bool is_auto) in build_equiv_decl() argument
360 decl = gfc_create_var (union_type, "equiv"); in build_equiv_decl()
368 VAR_DECL, get_identifier (name), union_type); in build_equiv_decl()
393 build_common_decl (gfc_common_head *com, tree union_type, bool is_init) in build_common_decl() argument
404 tree size = TYPE_SIZE_UNIT (union_type); in build_common_decl()
419 DECL_SIZE (decl) = TYPE_SIZE (union_type); in build_common_decl()
421 SET_DECL_MODE (decl, TYPE_MODE (union_type)); in build_common_decl()
422 TREE_TYPE (decl) = union_type; in build_common_decl()
[all …]
H A Dtrans-types.cc3582 tree triplet_struct_type, vect_struct_type, union_type, tmp, *chain; in gfc_get_caf_vector_type() local
3617 union_type = make_node (UNION_TYPE); in gfc_get_caf_vector_type()
3618 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("v"), in gfc_get_caf_vector_type()
3621 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("triplet"), in gfc_get_caf_vector_type()
3624 gfc_finish_type (union_type); in gfc_get_caf_vector_type()
3632 union_type, &chain); in gfc_get_caf_vector_type()
3649 tree c_struct_type, s_struct_type, v_struct_type, union_type, dim_union_type, in gfc_get_caf_reference_type() local
3700 union_type = make_node (UNION_TYPE); in gfc_get_caf_reference_type()
3701 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("s"), in gfc_get_caf_reference_type()
3704 tmp = gfc_add_field_to_struct_1 (union_type, get_identifier ("v"), in gfc_get_caf_reference_type()
[all …]
H A Dexpr.cc4991 get_union_initializer (gfc_symbol *union_type, gfc_component **map_p) in get_union_initializer() argument
4996 if (!union_type || union_type->attr.flavor != FL_UNION) in get_union_initializer()
4999 for (map = union_type->components; map; map = map->next) in get_union_initializer()
H A Dtrans-expr.cc9253 tree union_type = TREE_TYPE (un->backend_decl); in gfc_conv_union_initializer() local
9254 tree val = build_constructor (union_type, NULL); in gfc_conv_union_initializer()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DQLParser.tab.hh414 union union_type
432 enum { size = sizeof (union_type) };
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgengtype.c1005 type_p union_type; in create_optional_field_() local
1015 union_type = in create_optional_field_()
1021 return create_field_all (next, union_type, name, in create_optional_field_()
H A Dtree.def216 DEFTREECODE (UNION_TYPE, "union_type", tcc_type, 0) /* C union type */
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgengtype.cc1020 type_p union_type; in create_optional_field_() local
1030 union_type = in create_optional_field_()
1036 return create_field_all (next, union_type, name, in create_optional_field_()
H A Dtree.def216 DEFTREECODE (UNION_TYPE, "union_type", tcc_type, 0) /* C union type */
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DDwarf.def156 HANDLE_DW_TAG(0x0017, union_type, 2, DWARF, DW_KIND_TYPE)
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Ddecl.c3865 || tag_type == union_type); in build_typename_type()
14757 case union_type: in tag_name()
14990 case union_type: in xref_tag_1()
15140 tag_kind = union_type; in xref_tag_from_type()
H A Dparser.c30958 return union_type; in cp_parser_token_is_class_key()
31176 if (seen_as_union != (class_key == union_type)) in cp_parser_check_class_key()
31179 class_key == union_type ? "union" in cp_parser_check_class_key()
31194 && class_key != union_type) in cp_parser_check_class_key()
31304 class_key == union_type ? "union" in add()
H A Dcp-tree.h5203 union_type, /* "union" types. */ enumerator
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A DChangeLog-2011217 union_type, have array_type in delegateVal
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Ddecl.cc4064 || tag_type == union_type); in build_typename_type()
15569 case union_type: in tag_name()
15813 case union_type: in xref_tag()
H A Dparser.cc33242 return union_type; in cp_parser_token_is_class_key()
33460 if (seen_as_union != (class_key == union_type)) in cp_parser_check_class_key()
33463 class_key == union_type ? "union" in cp_parser_check_class_key()
33478 && class_key != union_type) in cp_parser_check_class_key()
33589 class_key == union_type ? "union" in add()
H A Dcp-tree.h5436 union_type, /* "union" types. */ enumerator
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/docs/_build/texinfo/
H A Dlibgccjit.texi6328 gcc_jit_type *union_type =
6345 union_type, "u");
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/_build/texinfo/
H A Dlibgccjit.texi5934 gcc_jit_type *union_type =
5951 union_type, "u");