Home
last modified time | relevance | path

Searched refs:orig_declv (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dsemantics.cc9985 tree declv, tree orig_declv, tree initv, in handle_omp_for_class_iterator() argument
10047 if (!c_omp_check_loop_iv_exprs (locus, code, orig_declv, i, in handle_omp_for_class_iterator()
10313 if (TREE_CODE (TREE_VEC_ELT (orig_declv, i)) == TREE_LIST) in handle_omp_for_class_iterator()
10315 tree t = TREE_VEC_ELT (orig_declv, i); in handle_omp_for_class_iterator()
10323 TREE_VEC_ELT (orig_declv, i) in handle_omp_for_class_iterator()
10342 tree orig_declv, tree initv, tree condv, tree incrv, in finish_omp_for() argument
10436 orig_declv ? orig_declv : declv, i, in finish_omp_for()
10472 if (!orig_declv) in finish_omp_for()
10473 orig_declv = copy_node (declv); in finish_omp_for()
10515 if (handle_omp_for_class_iterator (i, locus, code, declv, orig_declv, in finish_omp_for()
[all …]
Dpt.cc18105 tsubst_omp_for_iterator (tree t, int i, tree declv, tree &orig_declv, in tsubst_omp_for_iterator() argument
18218 if (orig_declv && OMP_FOR_ORIG_DECLS (t)) in tsubst_omp_for_iterator()
18222 TREE_VEC_ELT (orig_declv, i) in tsubst_omp_for_iterator()
18227 TREE_VEC_ELT (orig_declv, i) = RECUR (o); in tsubst_omp_for_iterator()
18239 if (orig_declv == NULL_TREE) in tsubst_omp_for_iterator()
18240 orig_declv = copy_node (declv); in tsubst_omp_for_iterator()
18241 TREE_VEC_ELT (orig_declv, i) = orig_decl; in tsubst_omp_for_iterator()
18244 else if (orig_declv) in tsubst_omp_for_iterator()
18245 TREE_VEC_ELT (orig_declv, i) = decl; in tsubst_omp_for_iterator()
18293 if (orig_declv && !OMP_FOR_ORIG_DECLS (t)) in tsubst_omp_for_iterator()
[all …]
Dparser.cc42429 tree real_decl, initv, condv, incrv, declv, orig_declv; in cp_parser_omp_for_loop() local
42487 orig_declv = NULL_TREE; in cp_parser_omp_for_loop()
42721 if (!orig_declv) in cp_parser_omp_for_loop()
42722 orig_declv = copy_node (declv); in cp_parser_omp_for_loop()
42723 TREE_VEC_ELT (orig_declv, i) = orig_decl; in cp_parser_omp_for_loop()
42725 else if (orig_declv) in cp_parser_omp_for_loop()
42726 TREE_VEC_ELT (orig_declv, i) = decl; in cp_parser_omp_for_loop()
42775 if (orig_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()
42780 cp_finish_omp_range_for (TREE_VEC_ELT (orig_declv, i), in cp_parser_omp_for_loop()
[all …]
DChangeLog-2018984 (tsubst_omp_for_iterator): Change orig_declv into a reference.
985 Handle range for loops. Move orig_declv handling after declv/initv
1036 Pass to c_omp_check_loop_iv_exprs orig_declv if non-NULL. Don't
2226 instead of setting *lastp turn orig_declv elt into a TREE_LIST.