Home
last modified time | relevance | path

Searched refs:declv (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-omp.c697 c_finish_omp_for (location_t locus, enum tree_code code, tree declv, in c_finish_omp_for() argument
705 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv)); in c_finish_omp_for()
706 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv)); in c_finish_omp_for()
707 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv)); in c_finish_omp_for()
708 for (i = 0; i < TREE_VEC_LENGTH (declv); i++) in c_finish_omp_for()
710 tree decl = TREE_VEC_ELT (declv, i); in c_finish_omp_for()
1042 tree declv; member
1063 for (i = 0; i < TREE_VEC_LENGTH (d->declv); i++) in c_omp_check_loop_iv_r()
1064 if (*tp == TREE_VEC_ELT (d->declv, i) in c_omp_check_loop_iv_r()
1065 || (TREE_CODE (TREE_VEC_ELT (d->declv, i)) == TREE_LIST in c_omp_check_loop_iv_r()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-omp.cc938 c_finish_omp_for (location_t locus, enum tree_code code, tree declv, in c_finish_omp_for() argument
946 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv)); in c_finish_omp_for()
947 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv)); in c_finish_omp_for()
948 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv)); in c_finish_omp_for()
949 for (i = 0; i < TREE_VEC_LENGTH (declv); i++) in c_finish_omp_for()
951 tree decl = TREE_VEC_ELT (declv, i); in c_finish_omp_for()
1283 tree declv; member
1301 for (int i = 0; i < TREE_VEC_LENGTH (d->declv); i++) in c_omp_is_loop_iterator()
1302 if (decl == TREE_VEC_ELT (d->declv, i) in c_omp_is_loop_iterator()
1303 || (TREE_CODE (TREE_VEC_ELT (d->declv, i)) == TREE_LIST in c_omp_is_loop_iterator()
[all …]
H A DChangeLog4189 * c-omp.c (c_omp_check_loop_iv_r, c_omp_check_loop_iv): Allow declv
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dsemantics.c8527 tree declv, tree orig_declv, tree initv, in handle_omp_for_class_iterator() argument
8534 tree decl = TREE_VEC_ELT (declv, i); in handle_omp_for_class_iterator()
8589 TREE_VEC_ELT (declv, i), NULL_TREE, in handle_omp_for_class_iterator()
8858 TREE_PURPOSE (t) = TREE_VEC_ELT (declv, i); in handle_omp_for_class_iterator()
8863 = tree_cons (TREE_VEC_ELT (declv, i), last, NULL_TREE); in handle_omp_for_class_iterator()
8864 TREE_VEC_ELT (declv, i) = decl; in handle_omp_for_class_iterator()
8880 finish_omp_for (location_t locus, enum tree_code code, tree declv, in finish_omp_for() argument
8891 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv)); in finish_omp_for()
8892 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv)); in finish_omp_for()
8893 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv)); in finish_omp_for()
[all …]
H A Dpt.c17541 tsubst_omp_for_iterator (tree t, int i, tree declv, tree &orig_declv, in tsubst_omp_for_iterator() argument
17667 orig_declv = copy_node (declv); in tsubst_omp_for_iterator()
17709 TREE_VEC_ELT (declv, i) = decl; in tsubst_omp_for_iterator()
17846 TREE_VEC_ELT (declv, i) = decl; in tsubst_omp_for_iterator()
18582 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE; in tsubst_expr() local
18597 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t))); in tsubst_expr()
18615 |= tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, in tsubst_expr()
18626 if (TREE_VEC_ELT (orig_declv, i) != TREE_VEC_ELT (declv, i) in tsubst_expr()
18630 TREE_VEC_ELT (declv, i)); in tsubst_expr()
18641 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, in tsubst_expr()
[all …]
H A Dparser.c38985 tree real_decl, initv, condv, incrv, declv, orig_declv; in cp_parser_omp_for_loop() local
39039 declv = make_tree_vec (count); in cp_parser_omp_for_loop()
39266 TREE_VEC_ELT (declv, i) = decl; in cp_parser_omp_for_loop()
39278 orig_declv = copy_node (declv); in cp_parser_omp_for_loop()
39310 declv = NULL_TREE; in cp_parser_omp_for_loop()
39315 if (declv) in cp_parser_omp_for_loop()
39335 if (TREE_VEC_ELT (orig_declv, i) != TREE_VEC_ELT (declv, i)) in cp_parser_omp_for_loop()
39337 TREE_VEC_ELT (declv, i)); in cp_parser_omp_for_loop()
39350 if (declv == NULL_TREE) in cp_parser_omp_for_loop()
39353 ret = finish_omp_for (loc_first, code, declv, orig_declv, initv, condv, in cp_parser_omp_for_loop()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dsemantics.cc9985 tree declv, tree orig_declv, tree initv, in handle_omp_for_class_iterator() argument
9992 tree decl = TREE_VEC_ELT (declv, i); in handle_omp_for_class_iterator()
10048 TREE_VEC_ELT (declv, i), NULL_TREE, in handle_omp_for_class_iterator()
10319 TREE_PURPOSE (t) = TREE_VEC_ELT (declv, i); in handle_omp_for_class_iterator()
10324 = tree_cons (TREE_VEC_ELT (declv, i), last, NULL_TREE); in handle_omp_for_class_iterator()
10325 TREE_VEC_ELT (declv, i) = decl; in handle_omp_for_class_iterator()
10341 finish_omp_for (location_t locus, enum tree_code code, tree declv, in finish_omp_for() argument
10352 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv)); in finish_omp_for()
10353 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (condv)); in finish_omp_for()
10354 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (incrv)); in finish_omp_for()
[all …]
H A Dpt.cc18105 tsubst_omp_for_iterator (tree t, int i, tree declv, tree &orig_declv, in tsubst_omp_for_iterator() argument
18240 orig_declv = copy_node (declv); in tsubst_omp_for_iterator()
18296 TREE_VEC_ELT (declv, i) = decl; in tsubst_omp_for_iterator()
18433 TREE_VEC_ELT (declv, i) = decl; in tsubst_omp_for_iterator()
19203 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE; in tsubst_expr() local
19218 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t))); in tsubst_expr()
19236 |= tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, in tsubst_expr()
19247 if (TREE_VEC_ELT (orig_declv, i) != TREE_VEC_ELT (declv, i) in tsubst_expr()
19251 TREE_VEC_ELT (declv, i)); in tsubst_expr()
19262 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, in tsubst_expr()
[all …]
H A Dparser.cc42429 tree real_decl, initv, condv, incrv, declv, orig_declv; in cp_parser_omp_for_loop() local
42483 declv = make_tree_vec (count); in cp_parser_omp_for_loop()
42710 TREE_VEC_ELT (declv, i) = decl; in cp_parser_omp_for_loop()
42722 orig_declv = copy_node (declv); in cp_parser_omp_for_loop()
42754 declv = NULL_TREE; in cp_parser_omp_for_loop()
42759 if (declv) in cp_parser_omp_for_loop()
42779 if (TREE_VEC_ELT (orig_declv, i) != TREE_VEC_ELT (declv, i)) in cp_parser_omp_for_loop()
42781 TREE_VEC_ELT (declv, i)); in cp_parser_omp_for_loop()
42794 if (declv == NULL_TREE) in cp_parser_omp_for_loop()
42797 ret = finish_omp_for (loc_first, code, declv, orig_declv, initv, condv, in cp_parser_omp_for_loop()
H A DChangeLog-2018985 Handle range for loops. Move orig_declv handling after declv/initv
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-parser.c18061 tree declv, condv, incrv, initv, ret = NULL_TREE; in c_parser_omp_for_loop() local
18115 declv = make_tree_vec (count); in c_parser_omp_for_loop()
18253 TREE_VEC_ELT (declv, i) = decl; in c_parser_omp_for_loop()
18360 stmt = c_finish_omp_for (loc, code, declv, NULL, initv, condv, in c_parser_omp_for_loop()
18364 if (stmt && !c_omp_check_loop_iv (stmt, declv, NULL)) in c_parser_omp_for_loop()
18382 if (TREE_VEC_ELT (declv, i) == OMP_CLAUSE_DECL (*c)) in c_parser_omp_for_loop()
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-parser.cc19229 tree declv, condv, incrv, initv, ret = NULL_TREE; in c_parser_omp_for_loop() local
19283 declv = make_tree_vec (count); in c_parser_omp_for_loop()
19423 TREE_VEC_ELT (declv, i) = decl; in c_parser_omp_for_loop()
19521 stmt = c_finish_omp_for (loc, code, declv, NULL, initv, condv, in c_parser_omp_for_loop()
19526 if (stmt && !c_omp_check_loop_iv (stmt, declv, NULL)) in c_parser_omp_for_loop()
19578 if (TREE_VEC_ELT (declv, i) == OMP_CLAUSE_DECL (*c)) in c_parser_omp_for_loop()