Home
last modified time | relevance | path

Searched refs:sum0 (Results 1 – 25 of 30) sorted by relevance

12

/llvm-project-15.0.7/openmp/runtime/test/worksharing/sections/
H A Domp_section_private.c8 int sum0; in test_omp_section_private() local
13 sum0 = 0; in test_omp_section_private()
21 sum0 = 0; in test_omp_section_private()
23 sum0 = sum0 + i; in test_omp_section_private()
26 sum = sum + sum0; in test_omp_section_private()
31 sum0 = 0; in test_omp_section_private()
33 sum0 = sum0 + i; in test_omp_section_private()
36 sum = sum + sum0; in test_omp_section_private()
41 sum0 = 0; in test_omp_section_private()
43 sum0 = sum0 + i; in test_omp_section_private()
[all …]
H A Domp_parallel_sections_private.c8 int sum0; in test_omp_parallel_sections_private() local
13 sum0=0; in test_omp_parallel_sections_private()
19 sum0=0; in test_omp_parallel_sections_private()
21 sum0=sum0+i; in test_omp_parallel_sections_private()
24 sum= sum+sum0; in test_omp_parallel_sections_private()
29 sum0=0; in test_omp_parallel_sections_private()
31 sum0=sum0+i; in test_omp_parallel_sections_private()
34 sum= sum+sum0; in test_omp_parallel_sections_private()
39 sum0=0; in test_omp_parallel_sections_private()
41 sum0=sum0+i; in test_omp_parallel_sections_private()
[all …]
H A Domp_parallel_sections_lastprivate.c8 int sum0; in test_omp_parallel_sections_lastprivate() local
13 sum0 = 0; in test_omp_parallel_sections_lastprivate()
20 sum0=0; in test_omp_parallel_sections_lastprivate()
22 sum0=sum0+i; in test_omp_parallel_sections_lastprivate()
27 sum= sum+sum0; in test_omp_parallel_sections_lastprivate()
32 sum0=0; in test_omp_parallel_sections_lastprivate()
34 sum0=sum0+i; in test_omp_parallel_sections_lastprivate()
39 sum= sum+sum0; in test_omp_parallel_sections_lastprivate()
44 sum0=0; in test_omp_parallel_sections_lastprivate()
46 sum0=sum0+i; in test_omp_parallel_sections_lastprivate()
[all …]
H A Domp_section_lastprivate.c10 int sum0 = 0; in test_omp_section_lastprivate() local
18 #pragma omp sections lastprivate(i0) private(i,sum0) in test_omp_section_lastprivate()
22 sum0 = 0; in test_omp_section_lastprivate()
25 sum0 = sum0 + i; in test_omp_section_lastprivate()
30 sum = sum + sum0; in test_omp_section_lastprivate()
35 sum0 = 0; in test_omp_section_lastprivate()
38 sum0 = sum0 + i; in test_omp_section_lastprivate()
43 sum = sum + sum0; in test_omp_section_lastprivate()
48 sum0 = 0; in test_omp_section_lastprivate()
51 sum0 = sum0 + i; in test_omp_section_lastprivate()
[all …]
H A Domp_parallel_sections_firstprivate.c8 int sum0; in test_omp_parallel_sections_firstprivate() local
12 sum0=11; in test_omp_parallel_sections_firstprivate()
14 #pragma omp parallel sections firstprivate(sum0) in test_omp_parallel_sections_firstprivate()
20 sum= sum+sum0; in test_omp_parallel_sections_firstprivate()
27 sum= sum+sum0; in test_omp_parallel_sections_firstprivate()
34 sum= sum+sum0; in test_omp_parallel_sections_firstprivate()
H A Domp_section_firstprivate.c8 int sum0; in test_omp_section_firstprivate() local
11 sum0 = 11; in test_omp_section_firstprivate()
15 #pragma omp sections firstprivate(sum0) in test_omp_section_firstprivate()
21 sum = sum + sum0; in test_omp_section_firstprivate()
28 sum = sum + sum0; in test_omp_section_firstprivate()
35 sum = sum + sum0; in test_omp_section_firstprivate()
/llvm-project-15.0.7/openmp/runtime/test/worksharing/for/
H A Domp_for_private.c22 int sum0; in test_omp_for_private() local
25 sum0 = 0; /* setting (global) sum0 = 0 */ in test_omp_for_private()
32 #pragma omp for private(sum0) schedule(static,1) in test_omp_for_private()
34 sum0 = sum1; in test_omp_for_private()
36 sum0 = sum0 + i; in test_omp_for_private()
39 sum1 = sum0; in test_omp_for_private()
H A Domp_for_firstprivate.c12 int sum0; in test_omp_for_firstprivate() local
17 sum0 = 12345; in test_omp_for_firstprivate()
29 #pragma omp for firstprivate(sum0) in test_omp_for_firstprivate()
31 sum0 = sum0 + i; in test_omp_for_firstprivate()
32 sum1 = sum0; in test_omp_for_firstprivate()
H A Domp_for_lastprivate.c6 int sum0; variable
7 #pragma omp threadprivate(sum0)
19 sum0 = 0; in test_omp_for_lastprivate()
24 sum0 = sum0 + i; in test_omp_for_lastprivate()
31 sum = sum + sum0; in test_omp_for_lastprivate()
H A Domp_for_schedule_auto.c14 int sum0; in test_omp_for_auto() local
19 sum0 = 12345; in test_omp_for_auto()
33 #pragma omp for firstprivate(sum0) schedule(auto) in test_omp_for_auto()
36 sum0 = sum0 + i; in test_omp_for_auto()
37 sum1 = sum0; in test_omp_for_auto()
/llvm-project-15.0.7/openmp/runtime/test/threadprivate/
H A Domp_threadprivate.c14 static int sum0=0; variable
17 #pragma omp threadprivate(sum0)
34 sum0 = 0; in test_omp_threadprivate()
37 sum0 = sum0 + i; in test_omp_threadprivate()
41 sum = sum + sum0; in test_omp_threadprivate()
H A Domp_threadprivate_for.c19 int sum0 = 0, i0; in test_omp_threadprivate_for() local
23 sum0 = sum0 + i; in test_omp_threadprivate_for()
27 sum = sum + sum0; in test_omp_threadprivate_for()
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/
H A Dlsr-postinc-nested-loop.ll22 %sum0.029.us = phi i16 [ %add8.us, %for.cond1.for.cond.cleanup3_crit_edge.us ], [ 0, %entry ]
30 %sum0.122.us = phi i16 [ %sum0.029.us, %for.cond1.preheader.us ], [ %add8.us, %for.body4.us ]
35 %add.us = add i16 %0, %sum0.122.us
48 %sum0.0.lcssa = phi i16 [ 0, %entry ], [ %add8.us, %for.cond1.for.cond.cleanup3_crit_edge.us ]
49 ret i16 %sum0.0.lcssa
/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/
H A Dchr.ll373 ; sum1 = (t0 & 1) ? sum0 : (sum0 + 42) // Likely false
381 ; sum1 = (t0 & 1) ? sum0 : (sum0 + 42)
427 ; sum = (t0 & 1) ? sum0 : (sum0 + 42) // Likely false
440 ; sum = (t0 & 1) ? sum0 : (sum0 + 42)
525 ; sum = (t0 & 1) ? sum0 : (sum0 + 42) // Likely false
538 ; sum = (t0 & 1) ? sum0 : (sum0 + 42)
627 ; sum = (i0 & 2) ? sum0 : (sum0 + 43) // Likely false
640 ; sum = (i0 & 2) ? sum0 : (sum0 + 43)
1277 ; sum3 = (i0 == j0) ? sum0 : (sum0 + 43)
1737 ; sum2_nc = ((t0 & 1) == 0) ? sum0 : (sum0 + 85)
[all …]
/llvm-project-15.0.7/llvm/test/Analysis/BasicAA/
H A Dpure-const-dce.ll14 ; CHECK-NEXT: %sum0 = add i32 %tmp0, %tmp1
15 ; CHECK-NEXT: %sum1 = add i32 %sum0, %tmp2
36 %sum0 = add i32 %tmp0, %tmp1 ; <i32> [#uses=1]
37 %sum1 = add i32 %sum0, %tmp2 ; <i32> [#uses=1]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dhorizontal-reduce-fadd.ll60 %sum0 = fadd fast <2 x float> %lo0, %hi0
61 %hi1 = shufflevector <2 x float> %sum0, <2 x float> undef, <2 x i32> <i32 1, i32 undef>
62 %sum1 = fadd fast <2 x float> %sum0, %hi1
117 %sum0 = fadd fast <2 x double> %lo0, %hi0
119 %sum1 = fadd fast <2 x double> %sum0, %hi1
185 %sum0 = fadd fast <4 x float> %lo0, %hi0
186 %hi1 = shufflevector <4 x float> %sum0, <4 x float> undef, <2 x i32> <i32 2, i32 3>
187 %lo1 = shufflevector <4 x float> %sum0, <4 x float> undef, <2 x i32> <i32 0, i32 1>
254 %sum0 = fadd fast <4 x double> %lo0, %hi0
255 %hi1 = shufflevector <4 x double> %sum0, <4 x double> undef, <2 x i32> <i32 2, i32 3>
[all …]
H A Dhorizontal-reduce-add.ll63 %sum0 = add <2 x i32> %lo0, %hi0
64 %hi1 = shufflevector <2 x i32> %sum0, <2 x i32> undef, <2 x i32> <i32 1, i32 undef>
65 %sum1 = add <2 x i32> %sum0, %hi1
140 %sum0 = add <4 x i16> %lo0, %hi0
141 %hi1 = shufflevector <4 x i16> %sum0, <4 x i16> undef, <2 x i32> <i32 2, i32 3>
142 %lo1 = shufflevector <4 x i16> %sum0, <4 x i16> undef, <2 x i32> <i32 0, i32 1>
214 %sum0 = add <4 x i32> %lo0, %hi0
215 %hi1 = shufflevector <4 x i32> %sum0, <4 x i32> undef, <2 x i32> <i32 2, i32 3>
216 %lo1 = shufflevector <4 x i32> %sum0, <4 x i32> undef, <2 x i32> <i32 0, i32 1>
306 %sum0 = add <8 x i16> %lo0, %hi0
[all …]
H A Dfma-do-not-commute.ll20 %sum0 = phi float [ %fma, %loop ], [ %arg, %entry ]
24 %fma = fadd float %sum0, %fmul
/llvm-project-15.0.7/llvm/test/CodeGen/NVPTX/
H A Dvectorize-misaligned.ll19 %sum0 = fadd float %v0, %v1
26 store float %sum0, float addrspace(1)* %out, align 8
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/X86/
H A Dmul_slm_16bit.ll42 %sum0 = add i32 %mul, %mul2
48 %sum1 = add i32 %sum0, %mul3
111 %sum0 = add i32 %mul, %mul2
117 %sum1 = add i32 %sum0, %mul3
/llvm-project-15.0.7/mlir/test/Transforms/
H A Dscf-loop-unroll.mlir30 %sum0 = arith.addf %i0, %arg0 : f32
32 scf.yield %sum0, %sum1 : f32, f32
/llvm-project-15.0.7/compiler-rt/lib/builtins/
H A Dfp_lib.h177 const __uint128_t sum0 = (__uint128_t)product44; in wideMultiply() local
188 const __uint128_t r0 = (sum0 & Word_FullMask) + ((sum1 & Word_LoMask) << 32); in wideMultiply()
189 const __uint128_t r1 = (sum0 >> 64) + ((sum1 >> 32) & Word_FullMask) + in wideMultiply()
/llvm-project-15.0.7/llvm/test/Transforms/Coroutines/
H A Dcoro-retcon-resume-values2.ll9 %sum0 = call i32 @add(i32 %n, i32 %value0)
11 %sum1 = call i32 @add(i32 %sum0, i32 %value0)
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/X86Vector/
H A Dtest-sparse-dot-product.mlir148 iter_args(%sum0 = %data_zero) -> (f64) {
155 iter_args(%sum1 = %sum0) -> (f64) {
196 iter_args(%sum0 = %data_zero, %b_start0 = %c0) -> (f64, index) {
202 iter_args(%sum1 = %sum0, %b_start1 = %b_start0) -> (f64, index) {
/llvm-project-15.0.7/polly/test/ScopInfo/
H A Dmultiple-types-non-power-of-two.ll141 %sum0 = add i8 %sum, %load.i24.val.trunc
142 %sum1 = add i8 %sum0, %load.i32.val.trunc

12