Home
last modified time | relevance | path

Searched refs:constructor_elt (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12.1/contrib/gcc/cp/
H A Dtypeck2.c503 VEC_ordered_remove (constructor_elt, CONSTRUCTOR_ELTS (init), in split_nonconstant_init_1()
784 constructor_elt *ce; in process_init_constructor_array()
785 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (init); in process_init_constructor_array()
807 gcc_assert (VEC_length (constructor_elt, v) <= len); in process_init_constructor_array()
809 for (i = 0; VEC_iterate (constructor_elt, v, i, ce); ++i) in process_init_constructor_array()
875 VEC(constructor_elt,gc) *v = NULL; in process_init_constructor_record()
903 if (idx < VEC_length (constructor_elt, CONSTRUCTOR_ELTS (init))) in process_init_constructor_record()
905 constructor_elt *ce = VEC_index (constructor_elt, in process_init_constructor_record()
981 constructor_elt *ce; in process_init_constructor_union()
984 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init))) in process_init_constructor_union()
[all …]
H A Dinit.c186 VEC(constructor_elt,gc) *v = NULL; in build_zero_init()
217 VEC(constructor_elt,gc) *v = NULL; in build_zero_init()
236 constructor_elt *ce; in build_zero_init()
238 v = VEC_alloc (constructor_elt, gc, 1); in build_zero_init()
239 ce = VEC_quick_push (constructor_elt, v, NULL); in build_zero_init()
2434 && (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)) in build_vec_init()
H A Ddecl.c4268 constructor_elt *ce; in maybe_deduce_size_from_array_init()
4271 VEC_iterate (constructor_elt, v, i, ce); in maybe_deduce_size_from_array_init()
4455 constructor_elt *cur;
4456 constructor_elt *end;
4710 str_init = VEC_index (constructor_elt, in reshape_init_r()
4785 VEC(constructor_elt, gc) *v; in reshape_init()
4795 if (VEC_empty (constructor_elt, v)) in reshape_init()
4799 d.cur = VEC_index (constructor_elt, v, 0); in reshape_init()
5170 VEC(constructor_elt, gc) *elts; in value_dependent_init_p()
5175 nelts = VEC_length (constructor_elt, elts); in value_dependent_init_p()
[all …]
H A Derror.c1294 dump_expr_init_vec (VEC(constructor_elt,gc) *v, int flags) in dump_expr_init_vec() argument
1302 if (idx != VEC_length (constructor_elt, v) - 1) in dump_expr_init_vec()
H A Dparser.c1677 static VEC(constructor_elt,gc) *cp_parser_initializer_list
4445 VEC(constructor_elt,gc) *initializer_list = NULL; in cp_parser_postfix_expression()
13358 static VEC(constructor_elt,gc) * in VEC() argument
13361 VEC(constructor_elt,gc) *v = NULL; in VEC()
18960 VEC(constructor_elt,gc) *impl_v = NULL; in build_descriptor_block_decl()
19233 static VEC(constructor_elt,gc) * in VEC() argument
19242 VEC(constructor_elt,gc) *impl_v = NULL; in VEC()
H A Dcp-tree.h2498 && VEC_empty (constructor_elt, \
4373 extern tree finish_compound_literal (tree, VEC(constructor_elt,gc) *);
H A Dpt.c9399 VEC(constructor_elt,gc) *n; in tsubst_copy_and_build()
9400 constructor_elt *ce; in tsubst_copy_and_build()
9417 n = VEC_copy (constructor_elt, gc, CONSTRUCTOR_ELTS (t)); in tsubst_copy_and_build()
9418 for (idx = 0; VEC_iterate (constructor_elt, n, idx, ce); idx++) in tsubst_copy_and_build()
H A Dsemantics.c2051 finish_compound_literal (tree type, VEC(constructor_elt,gc) *initializer_list) in finish_compound_literal() argument
H A Dtypeck.c6190 VEC(constructor_elt, gc) *v; in build_ptrmemfunc1()
6200 v = VEC_alloc(constructor_elt, gc, 2); in build_ptrmemfunc1()
/freebsd-12.1/contrib/gcc/
H A Dtree-vect-generic.c205 VEC(constructor_elt,gc) *v; in expand_vector_piecewise()
213 v = VEC_alloc(constructor_elt, gc, (nunits + delta - 1) / delta); in expand_vector_piecewise()
218 constructor_elt *ce = VEC_quick_push (constructor_elt, v, NULL); in expand_vector_piecewise()
H A Dvarasm.c2587 VEC(constructor_elt, gc) *v1, *v2; in compare_constant()
2613 if (VEC_length (constructor_elt, v1) in compare_constant()
2614 != VEC_length (constructor_elt, v2)) in compare_constant()
2617 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx) in compare_constant()
2619 constructor_elt *c1 = VEC_index (constructor_elt, v1, idx); in compare_constant()
2620 constructor_elt *c2 = VEC_index (constructor_elt, v2, idx); in compare_constant()
2722 VEC(constructor_elt, gc) *v; in copy_constant()
2726 v = VEC_alloc(constructor_elt, gc, VEC_length(constructor_elt, in copy_constant()
2730 constructor_elt *ce = VEC_quick_push (constructor_elt, v, NULL); in copy_constant()
3703 && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (ctor))); in constructor_static_from_elts_p()
[all …]
H A Dtree.c1025 VEC(constructor_elt,gc) *v; in build_constructor_single()
1026 constructor_elt *elt; in build_constructor_single()
1029 v = VEC_alloc (constructor_elt, gc, 1); in build_constructor_single()
1030 elt = VEC_quick_push (constructor_elt, v, NULL); in build_constructor_single()
1046 VEC(constructor_elt,gc) *v = NULL; in build_constructor_from_list()
1054 constructor_elt *elt = VEC_quick_push (constructor_elt, v, NULL); in build_constructor_from_list()
4670 VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1); in simple_cst_equal()
4671 VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2); in simple_cst_equal()
4673 if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2)) in simple_cst_equal()
4679 VEC_index (constructor_elt, v2, idx)->value)) in simple_cst_equal()
[all …]
H A Dtree.h1399 for (IX = 0; (IX >= VEC_length (constructor_elt, V)) \
1401 : ((VAL = VEC_index (constructor_elt, V, IX)->value), \
1409 for (IX = 0; (IX >= VEC_length (constructor_elt, V)) \
1411 : ((VAL = VEC_index (constructor_elt, V, IX)->value), \
1412 (INDEX = VEC_index (constructor_elt, V, IX)->index), \
1419 constructor_elt *_ce___ = VEC_safe_push (constructor_elt, gc, V, NULL); \
1432 } constructor_elt; typedef
1434 DEF_VEC_O(constructor_elt);
1435 DEF_VEC_ALLOC_O(constructor_elt,gc);
1440 VEC(constructor_elt,gc) *elts;
[all …]
H A Dgimplify.c2684 constructor_elt *ce; in gimplify_init_ctor_preeval()
2685 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (*expr_p); in gimplify_init_ctor_preeval()
2938 VEC(constructor_elt,gc) *elts; in gimplify_init_constructor()
2967 if (VEC_empty (constructor_elt, elts)) in gimplify_init_constructor()
3122 gcc_assert (VEC_length (constructor_elt, elts) == 2); in gimplify_init_constructor()
3123 r = VEC_index (constructor_elt, elts, 0)->value; in gimplify_init_constructor()
3124 i = VEC_index (constructor_elt, elts, 1)->value; in gimplify_init_constructor()
3155 constructor_elt *ce; in gimplify_init_constructor()
3187 for (ix = 0; VEC_iterate (constructor_elt, elts, ix, ce); ix++) in gimplify_init_constructor()
5668 constructor_elt *ce; in gimplify_expr()
[all …]
H A Dc-pretty-print.h200 void pp_c_constructor_elts (c_pretty_printer *, VEC(constructor_elt,gc) *);
H A Dc-typeck.c5201 static VEC(constructor_elt,gc) *constructor_elements;
5272 VEC(constructor_elt,gc) *elements;
5316 VEC(constructor_elt,gc) *elements;
5651 if (!VEC_empty (constructor_elt, constructor_elements) in push_init_level()
5826 if (VEC_empty (constructor_elt,constructor_elements)) in pop_init_level()
6484 if (!VEC_empty (constructor_elt, constructor_elements) in find_init_member()
6485 && (VEC_last (constructor_elt, constructor_elements)->index in find_init_member()
6487 return VEC_last (constructor_elt, constructor_elements)->value; in find_init_member()
6509 constructor_elt *celt; in output_init_element()
6615 && !VEC_empty (constructor_elt, constructor_elements)) in output_init_element()
[all …]
H A Dc-pretty-print.c1434 pp_c_constructor_elts (c_pretty_printer *pp, VEC(constructor_elt,gc) *v) in pp_c_constructor_elts() argument
1442 if (ix != VEC_length (constructor_elt, v) - 1) in pp_c_constructor_elts()
H A Dc-common.c6539 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (initial_value); in complete_array_type()
6541 if (VEC_empty (constructor_elt, v)) in complete_array_type()
6551 constructor_elt *ce; in complete_array_type()
6553 if (VEC_index (constructor_elt, v, 0)->index) in complete_array_type()
6555 VEC_index (constructor_elt, in complete_array_type()
6560 VEC_iterate (constructor_elt, v, cnt, ce); in complete_array_type()
H A Dtree-ssa-operands.c2015 constructor_elt *ce; in get_expr_operands()
2019 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (expr), idx, ce); in get_expr_operands()
H A Dtree-dump.c613 dump_int (di, "lngt", VEC_length (constructor_elt, in dequeue_and_dump()
H A Dexpr.c4643 if (!VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (ctor))) in categorize_ctor_elements_1()
4647 gcc_assert (VEC_length (constructor_elt, CONSTRUCTOR_ELTS (ctor)) in categorize_ctor_elements_1()
4650 init_sub_type = TREE_TYPE (VEC_index (constructor_elt, in categorize_ctor_elements_1()
4933 && (((int)VEC_length (constructor_elt, CONSTRUCTOR_ELTS (exp)) in store_constructor()
5321 constructor_elt *ce; in store_constructor()
5396 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce); in store_constructor()
6186 constructor_elt *ce; in safe_from_p()
6190 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (exp), idx, ce); in safe_from_p()
H A Dtree.def446 struct constructor_elt.
449 The field INDEX of each constructor_elt is the corresponding index.
H A Dtree-inline.c2362 CONSTRUCTOR_ELTS (new) = VEC_copy (constructor_elt, gc, in copy_tree_r()
H A Dtree-pretty-print.c955 if (ix != VEC_length (constructor_elt, CONSTRUCTOR_ELTS (node)) - 1) in dump_generic_node()
H A Dc-decl.c3173 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init))) in add_flexible_array_elts_to_size()
3176 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value; in add_flexible_array_elts_to_size()

12