Home
last modified time | relevance | path

Searched refs:inner_loop (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-cxx/
H A Dloop_proto_to_cxx.cpp30 static bool inner_loop = false; variable
34 inner_loop = true; in InnerLoop()
37 inner_loop = false; in ~InnerLoop()
50 std::string which_loop = inner_loop ? "j" : "i"; in operator <<()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-llvm/
H A Dloop_proto_to_llvm.cpp37 static bool inner_loop = false; variable
41 inner_loop = true; in InnerLoop()
44 inner_loop = false; in ~InnerLoop()
55 std::string which_loop = inner_loop ? "inner" : "outer"; in VarRefToString()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-scalar-evolution.c456 class loop *inner_loop = get_chrec_loop (evolution_fn); in compute_overall_effect_of_inner_loop() local
458 if (inner_loop == loop in compute_overall_effect_of_inner_loop()
459 || flow_loop_nested_p (loop, inner_loop)) in compute_overall_effect_of_inner_loop()
461 tree nb_iter = number_of_latch_executions (inner_loop); in compute_overall_effect_of_inner_loop()
471 res = chrec_apply (inner_loop->num, evolution_fn, nb_iter); in compute_overall_effect_of_inner_loop()
2255 class loop *evolution_loop, class loop *inner_loop, in instantiate_scev_name() argument
2299 inner_loop, gimple_assign_rhs1 (ass), in instantiate_scev_name()
2310 inner_loop, gimple_assign_rhs1 (ass), in instantiate_scev_name()
2315 inner_loop, gimple_assign_rhs2 (ass), in instantiate_scev_name()
2361 inner_loop, res, in instantiate_scev_name()
[all …]
H A Domp-grid.c1236 gomp_for *inner_loop = as_a <gomp_for *> (stmt); in grid_process_kernel_body_copy() local
1237 gimple_omp_for_set_kind (inner_loop, GF_OMP_FOR_KIND_GRID_LOOP); in grid_process_kernel_body_copy()
1238 prebody = gimple_omp_for_pre_body (inner_loop); in grid_process_kernel_body_copy()
1243 if (gimple_omp_for_combined_p (inner_loop)) in grid_process_kernel_body_copy()
1244 grid_eliminate_combined_simd_part (inner_loop); in grid_process_kernel_body_copy()
1247 walk_gimple_seq_mod (gimple_omp_body_ptr (inner_loop), in grid_process_kernel_body_copy()
1250 return inner_loop; in grid_process_kernel_body_copy()
1286 gomp_for *inner_loop = grid_process_kernel_body_copy (&grid, kernel_seq, gsi, in grid_attempt_target_gridification() local
1307 tree index_var = gimple_omp_for_index (inner_loop, i); in grid_attempt_target_gridification()
1314 enum tree_code cond_code = gimple_omp_for_cond (inner_loop, i); in grid_attempt_target_gridification()
[all …]
H A Dsel-sched-ir.h1046 class loop *inner_loop; in inner_loop_header_p() local
1054 inner_loop = bb->loop_father; in inner_loop_header_p()
1055 if (inner_loop == current_loop_nest) in inner_loop_header_p()
1059 if (bb == inner_loop->header in inner_loop_header_p()
1063 gcc_assert (loop_depth (inner_loop) >= loop_depth (current_loop_nest)); in inner_loop_header_p()
H A Domp-expand.c6520 class loop *inner_loop = alloc_loop (); in expand_oacc_for() local
6521 inner_loop->header = elem_body_bb; in expand_oacc_for()
6522 inner_loop->latch = elem_cont_bb; in expand_oacc_for()
6523 add_loop (inner_loop, body_loop); in expand_oacc_for()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-scalar-evolution.cc456 class loop *inner_loop = get_chrec_loop (evolution_fn); in compute_overall_effect_of_inner_loop() local
458 if (inner_loop == loop in compute_overall_effect_of_inner_loop()
459 || flow_loop_nested_p (loop, inner_loop)) in compute_overall_effect_of_inner_loop()
461 tree nb_iter = number_of_latch_executions (inner_loop); in compute_overall_effect_of_inner_loop()
471 res = chrec_apply (inner_loop->num, evolution_fn, nb_iter); in compute_overall_effect_of_inner_loop()
2255 class loop *evolution_loop, class loop *inner_loop, in instantiate_scev_name() argument
2299 inner_loop, gimple_assign_rhs1 (ass), in instantiate_scev_name()
2310 inner_loop, gimple_assign_rhs1 (ass), in instantiate_scev_name()
2315 inner_loop, gimple_assign_rhs2 (ass), in instantiate_scev_name()
2361 inner_loop, res, in instantiate_scev_name()
[all …]
H A Dsel-sched-ir.h1046 class loop *inner_loop; in inner_loop_header_p() local
1054 inner_loop = bb->loop_father; in inner_loop_header_p()
1055 if (inner_loop == current_loop_nest) in inner_loop_header_p()
1059 if (bb == inner_loop->header in inner_loop_header_p()
1063 gcc_assert (loop_depth (inner_loop) >= loop_depth (current_loop_nest)); in inner_loop_header_p()
H A Dtree-ssa-loop-im.cc3139 class loop *inner_loop = curr_bb->loop_father; in operator ()() local
3140 return get_coldest_out_loop (l, inner_loop, curr_bb); in operator ()()
3451 class loop *inner_loop; in fill_coldest_and_hotter_out_loop() local
3452 for (inner_loop = loop->inner; inner_loop; inner_loop = inner_loop->next) in fill_coldest_and_hotter_out_loop()
3455 inner_loop); in fill_coldest_and_hotter_out_loop()
H A Domp-expand.cc8039 class loop *inner_loop = alloc_loop (); in expand_oacc_for() local
8040 inner_loop->header = elem_body_bb; in expand_oacc_for()
8041 inner_loop->latch = elem_cont_bb; in expand_oacc_for()
8042 add_loop (inner_loop, body_loop); in expand_oacc_for()
H A DChangeLog-200726252 (data_dependence_relation): Add inner_loop.
H A DChangeLog-201929909 * tree-data-ref.h (data_dependence_relation::inner_loop): Delete.
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-decl.cc7072 stmtblock_t inner_loop; in gfc_conv_cfi_to_gfc() local
7073 gfc_init_block (&inner_loop); in gfc_conv_cfi_to_gfc()
7084 gfc_add_modify (&inner_loop, shift, in gfc_conv_cfi_to_gfc()
7089 gfc_add_modify (&inner_loop, tmpidx, in gfc_conv_cfi_to_gfc()
7094 gfc_finish_block (&inner_loop)); in gfc_conv_cfi_to_gfc()
7314 stmtblock_t inner_loop; in gfc_conv_cfi_to_gfc() local
7315 gfc_init_block (&inner_loop); in gfc_conv_cfi_to_gfc()
7326 gfc_add_modify (&inner_loop, shift, in gfc_conv_cfi_to_gfc()
7332 gfc_add_modify (&inner_loop, tmpidx, in gfc_conv_cfi_to_gfc()
7338 gfc_finish_block (&inner_loop)); in gfc_conv_cfi_to_gfc()