| /llvm-project/polly/test/CodeGen/OpenMP/ |
| H A D | single_loop.ll | 37 ; IR-NEXT: %polly.par.userContext = alloca 40 …allel_loop_runtime_start(ptr @single_parallel_loop_polly_subfn, ptr %polly.par.userContext, i32 0,… 41 ; IR-NEXT: call void @single_parallel_loop_polly_subfn(ptr %polly.par.userContext) 45 ; IR: define internal void @single_parallel_loop_polly_subfn(ptr %polly.par.userContext) #1 46 ; IR-LABEL: polly.par.setup: 47 ; IR-NEXT: %polly.par.LBPtr = alloca i64 48 ; IR-NEXT: %polly.par.UBPtr = alloca i64 49 ; IR: br label %polly.par.checkNext 51 ; IR-LABEL: polly.par.exit: 55 ; IR-LABEL: polly.par.checkNext: [all …]
|
| H A D | loop-bounds-reference-outer-ids.ll | 25 ; IR: %polly.par.userContext = alloca { i64, i64 } 26 ; IR: %[[R1:[0-9a-z.]+]] = getelementptr inbounds nuw { i64, i64 }, ptr %polly.par.userContext, i32 0, i32 0 28 ; IR-NEXT: %[[R2:[0-9a-z.]+]] = getelementptr inbounds nuw { i64, i64 }, ptr %polly.par.userContext, i32 0, i32 1 31 ; IR-LABEL: @loop_references_outer_ids_polly_subfn(ptr %polly.par.userContext) 32 ; IR: %[[R3:[0-9a-z.]+]] = getelementptr inbounds nuw { i64, i64 }, ptr %polly.par.userContext, i32 0, i32 0 34 ; IR-NEXT: %[[R5:[0-9a-z.]+]] = getelementptr inbounds nuw { i64, i64 }, ptr %polly.par.userContext, i32 0, i32 1
|
| /llvm-project/polly/docs/experiments/matmul/ |
| H A D | matmul.polly.interchanged+tiled+vector+openmp.ll | 18 %polly.par.userContext = alloca {}, align 8 19 %polly.par.userContext1 = bitcast {}* %polly.par.userContext to i8* 20 …time_start(void (i8*)* nonnull @init_array_polly_subfn, i8* nonnull %polly.par.userContext1, i32 0… 21 call void @init_array_polly_subfn(i8* nonnull %polly.par.userContext1) #3 75 %polly.par.userContext3 = alloca {}, align 8 77 %polly.par.userContext1 = bitcast {}* %polly.par.userContext3 to i8* 78 …op_runtime_start(void (i8*)* nonnull @main_polly_subfn, i8* nonnull %polly.par.userContext1, i32 0… 79 call void @main_polly_subfn(i8* nonnull %polly.par.userContext1) #3 81 …_runtime_start(void (i8*)* nonnull @main_polly_subfn_1, i8* nonnull %polly.par.userContext1, i32 0… 82 call void @main_polly_subfn_1(i8* nonnull %polly.par.userContext1) #3 [all …]
|
| H A D | matmul.polly.interchanged+tiled+vector+openmp.s | 177 # %bb.0: # %polly.par.setup 207 .LBB3_4: # %polly.par.loadIVBounds 250 # %bb.3: # %polly.par.checkNext.loopexit 258 .LBB3_2: # %polly.par.exit 281 # %bb.0: # %polly.par.setup 303 .LBB4_2: # %polly.par.loadIVBounds 324 .LBB4_3: # %polly.par.exit 343 # %bb.0: # %polly.par.setup 366 .LBB5_2: # %polly.par.loadIVBounds 817 .LBB5_1: # %polly.par.setup [all …]
|
| /llvm-project/llvm/test/Analysis/CallGraph/ |
| H A D | ignore-callback-uses.ll | 19 br label %omp.par.exit.split 21 omp.par.exit.split: ; preds = %omp_parallel 27 omp.par.entry: 32 br label %omp.par.region 34 omp.par.exit.split.exitStub: ; preds = %omp.par.outlined.exit 37 omp.par.region: ; preds = %omp.par.entry 38 br label %omp.par.pre_finalize 40 omp.par.pre_finalize: ; preds = %omp.par.region 41 br label %omp.par.outlined.exit 43 omp.par.outlined.exit: ; preds = %omp.par.pre_finalize [all …]
|
| /llvm-project/clang/test/SemaCXX/ |
| H A D | pragma-optimize.cpp | 79 float container (float par) { in CREATE_FUNC() 80 return twice(par); in CREATE_FUNC() 88 float container2 (float par) { in container2() argument 89 return thrice(par); in container2() 98 template<> int thrice(int par) { in thrice() argument 99 return (par << 1) + par; in thrice() 101 int container3 (int par) { in container3() argument 102 return thrice(par); in container3()
|
| /llvm-project/llvm/test/Transforms/OpenMP/ |
| H A D | parallel_region_merging.ll | 798 ; CHECK: omp.par.outlined.exit: 800 ; CHECK: omp.par.exit.split: 806 ; CHECK-NEXT: omp.par.entry: 812 ; CHECK: omp.par.outlined.exit.exitStub: 814 ; CHECK: omp.par.region: 816 ; CHECK: omp.par.merged: 824 ; CHECK: omp.par.region.split: 826 ; CHECK: omp.par.pre_finalize: 915 ; CHECK: omp.par.outlined.exit: 917 ; CHECK: omp.par [all...] |
| /llvm-project/clang/test/SemaOpenCLCXX/ |
| H A D | addrspace_cast.clcpp | 22 void test_temp(__global int *par) { 23 …T *var1 = addrspace_cast<T *>(par); //expected-error{{addrspace_cast from '__global int *__private… 24 …__private T *var2 = addrspace_cast<__private T *>(par); //expected-error{{addrspace_cast from '__g… 25 …T var3 = addrspace_cast<T>(par); //expected-error{{addrspace_cast from '__global int *__private' t… 34 void test_temp1(__global int *par) { 35 T *var1 = addrspace_cast<T *>(par); 36 __private T *var2 = addrspace_cast<__private T *>(par); 37 T var3 = addrspace_cast<T>(par);
|
| /llvm-project/libcxx/test/libcxx/diagnostics/ |
| H A D | pstl.nodiscard.verify.cpp | 24 …std::all_of(std::execution::par, std::begin(a), std::end(a), pred); // expected-warning {{… in test() 25 …std::any_of(std::execution::par, std::begin(a), std::end(a), pred); // expected-warning {{… in test() 26 …std::none_of(std::execution::par, std::begin(a), std::end(a), pred); // expected-warning {{… in test() 27 …std::is_partitioned(std::execution::par, std::begin(a), std::end(a), pred); // expected-warning {{… in test()
|
| /llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | fold-init-type.cpp | 20 constexpr parallel_execution_policy par{}; variable 143 return std::reduce(std::par, a, a + 1, 0); in reducePositive2() 150 return std::inner_product(std::par, a, a + 1, b, 0); in innerProductPositive1() 157 return std::inner_product(std::par, a, a + 1, b, 0); in innerProductPositive2() 190 return std::inner_product(std::par, a, a + 1, b, 0.0f); in negative5()
|
| /llvm-project/flang/test/Integration/ |
| H A D | debug-ptr-type.f90 | 6 real(4), pointer :: par(:, :) local 27 par => ar 34 print *, par 42 ! CHECK-DAG: !DILocalVariable(name: "par"{{.*}}type: ![[ARR_TY1:[0-9]+]])
|
| /llvm-project/clang/test/Index/ |
| H A D | comment-misc-tags.m | 76 * \par User defined paragraph: 79 * \par 86 * \par 94 // CHECK: (CXComment_BlockCommand CommandName=[par] Arg[0]=User defined paragraph: 97 // CHECK: (CXComment_BlockCommand CommandName=[par] 104 // CHECK: (CXComment_BlockCommand CommandName=[par]
|
| /llvm-project/mlir/test/Target/LLVMIR/ |
| H A D | openmp-parallel-reduction-multiblock.mlir | 43 // CHECK: omp.par.outlined.exit: ; preds = %[[VAL_4]] 45 // CHECK: omp.par.exit.split: ; preds = %[[VAL_9]] 47 // CHECK: [[PAR_ENTRY:omp.par.entry]]: 61 // CHECK: br label %[[VAL_23:omp.par.region]] 90 // CHECK: omp.par.region10: ; preds = %[[VAL_39]] 112 // CHECK: omp.par.pre_finalize: ; preds = %[[VAL_48]] 120 // CHECK: omp.par.outlined.exit.exitStub: ; preds = %[[VAL_53]]
|
| H A D | openmp-reduction-init-arg.mlir | 49 // CHECK: omp.par.outlined.exit: ; preds = %[[VAL_6]] 51 // CHECK: omp.par.exit.split: ; preds = %[[VAL_9]] 53 // CHECK: [[PAR_ENTRY:omp.par.entry]]: 68 // CHECK: br label %[[PAR_REG:omp.par.region]] 78 // CHECK: omp.par.region1: ; preds = %[[INIT_LABEL]] 100 // CHECK: omp.par.pre_finalize: ; preds = %[[VAL_33]] 102 // CHECK: omp.par.outlined.exit.exitStub: ; preds = %[[VAL_38]]
|
| /llvm-project/polly/lib/External/isl/ |
| H A D | isl_tab_lexopt_templ.c | 153 isl_bool par = isl_bool_false; in SF() local 160 par = parallel_constraints(bmap, &first, &second); in SF() 161 if (par < 0) in SF() 163 if (!par) in SF()
|
| /llvm-project/libcxx/test/std/utilities/expol/ |
| H A D | policies.compile.pass.cpp | 35 static_assert(std::is_same_v<remove_cvref_t<decltype(std::execution::par)>, std::execution::paralle… 45 use(std::execution::par); in main()
|
| /llvm-project/libcxx/modules/std/ |
| H A D | execution.inc | 21 // [execpol.par], parallel execution policy 31 using std::execution::par;
|
| /llvm-project/polly/test/CodeGen/ |
| H A D | openmp_limit_threads.ll | 17 ; AUTO: call void @GOMP_parallel_loop_runtime_start(ptr @storePosition_polly_subfn, ptr %polly.par.… 18 ; ONE: call void @GOMP_parallel_loop_runtime_start(ptr @storePosition_polly_subfn, ptr %polly.par.u… 19 ; FOUR: call void @GOMP_parallel_loop_runtime_start(ptr @storePosition_polly_subfn, ptr %polly.par.…
|
| /llvm-project/clang/test/CodeGenOpenCLCXX/ |
| H A D | address-space-deduction.clcpp | 24 //COMMON: define{{.*}} spir_func noundef i32 @_Z3fooi{{P|R}}U3AS4i(i32 noundef %par, ptr addrspace(… 25 int foo(int par, int PTR par_p){
|
| /llvm-project/clang/test/CodeGenCXX/ |
| H A D | member-data-pointers.cpp | 8 param_t par; member
|
| /llvm-project/libcxx/include/ |
| H A D | execution | 21 inline constexpr parallel_policy par = implementation-defined; 67 inline constexpr parallel_policy par{__disable_user_instantiations_tag{}};
|
| /llvm-project/libcxx/benchmarks/algorithms/ |
| H A D | pstl.stable_sort.bench.cpp | |
| /llvm-project/pstl/include/pstl/internal/ |
| H A D | glue_execution_defs.h | 39 using __pstl::execution::par;
|
| /llvm-project/llvm/test/CodeGen/X86/ |
| H A D | code_placement_ignore_succ_in_inner_loop.ll | 74 define void @par() { 79 ; CHECK-LABEL: par:
|
| /llvm-project/libcxx/test/support/ |
| H A D | test_execution_policies.h | 37 func(std::execution::par); in test_execution_policies()
|