Home
last modified time | relevance | path

Searched refs:total (Results 1 – 25 of 603) sorted by relevance

12345678910>>...25

/llvm-project/bolt/test/Inputs/
H A Djump_table_icp.cpp3 int total = 0; variable
7 case 0: total += 1 + 0; return 1; in inc()
8 case 1: total += 1 + 1; return 2; in inc()
9 case 2: total += 1 + 2; return 3; in inc()
10 case 3: total += 1 + 3; return 4; in inc()
11 case 4: total += 1 + 4; return 5; in inc()
12 case 5: total += 1 + 5; return 6; in inc()
19 case 0: total += 2 + 0; return 1; in inc_dup()
20 case 1: total += 2 + 1; return 2; in inc_dup()
21 case 2: total += 2 + 2; return 3; in inc_dup()
[all …]
/llvm-project/llvm/test/tools/llvm-profdata/
H A Dsample-summary.test9 ; CHECK-NEXT: 1 blocks (9.09%) with count >= 2080 account for 1% of the total counts.
10 ; CHECK-NEXT: 1 blocks (9.09%) with count >= 2080 account for 10% of the total counts.
11 ; CHECK-NEXT: 2 blocks (18.18%) with count >= 2064 account for 20% of the total counts.
12 ; CHECK-NEXT: 2 blocks (18.18%) with count >= 2064 account for 30% of the total counts.
13 ; CHECK-NEXT: 3 blocks (27.27%) with count >= 2000 account for 40% of the total counts.
14 ; CHECK-NEXT: 4 blocks (36.36%) with count >= 1437 account for 50% of the total counts.
15 ; CHECK-NEXT: 6 blocks (54.55%) with count >= 1075 account for 60% of the total counts.
16 ; CHECK-NEXT: 6 blocks (54.55%) with count >= 1075 account for 70% of the total counts.
17 ; CHECK-NEXT: 7 blocks (63.64%) with count >= 1000 account for 80% of the total counts.
18 ; CHECK-NEXT: 11 blocks (100.00%) with count >= 534 account for 90% of the total count
[all...]
H A Dcs-sample-nested-profile.test160 ; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 1% of the total counts.
161 ; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 10% of the total counts.
162 ; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 20% of the total counts.
163 ; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 30% of the total counts.
164 ; SUMMARY-NEXT: 1 blocks (6.25%) with count >= 362830 account for 40% of the total counts.
165 ; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 50% of the total counts.
166 ; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 60% of the total counts.
167 ; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 70% of the total counts.
168 ; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 80% of the total counts.
169 ; SUMMARY-NEXT: 2 blocks (12.50%) with count >= 362805 account for 90% of the total count
[all...]
H A Dsuppl-instr-with-sample.test101 MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 1% of the total counts.
102 MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 10% of the total counts.
103 MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 20% of the total counts.
104 MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 30% of the total counts.
105 MIX5-NEXT: 1 blocks (11.11%) with count >= 3000 account for 40% of the total counts.
106 MIX5-NEXT: 2 blocks (22.22%) with count >= 2000 account for 50% of the total counts.
107 MIX5-NEXT: 2 blocks (22.22%) with count >= 2000 account for 60% of the total counts.
108 MIX5-NEXT: 2 blocks (22.22%) with count >= 2000 account for 70% of the total counts.
109 MIX5-NEXT: 3 blocks (33.33%) with count >= 1000 account for 80% of the total counts.
110 MIX5-NEXT: 3 blocks (33.33%) with count >= 1000 account for 90% of the total count
[all...]
H A Dgeneral.proftext74 # DETAILED-SUMMARY: 3 blocks (30.00%) with count >= 576460752303423488 account for 80% of the total counts.
75 # DETAILED-SUMMARY: 4 blocks (40.00%) with count >= 288230376151711744 account for 90% of the total counts.
76 # DETAILED-SUMMARY: 4 blocks (40.00%) with count >= 288230376151711744 account for 95% of the total counts.
77 # DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99% of the total counts.
78 # DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99.9% of the total counts.
79 # DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99.99% of the total counts.
80 # DETAILED-SUMMARY: 6 blocks (60.00%) with count >= 72057594037927936 account for 99.999% of the total counts.
83 # DETAILED-SUMMARY-2: 2 blocks (28.57%) with count >= 1152921504606846976 account for 60% of the total counts.
86 # DETAILED-SUMMARY-3: 2 blocks (28.57%) with count >= 1152921504606846976 account for 60% of the total counts.
87 # DETAILED-SUMMARY-3: 4 blocks (57.14%) with count >= 288230376151711744 account for 90% of the total count
[all...]
/llvm-project/mlir/lib/Support/
H A DTiming.cpp117 void printHeader(const TimeRecord &total) override { in printHeader() argument
125 os << llvm::format(" Total Execution Time: %.4f seconds\n\n", total.wall); in printHeader()
126 if (total.user != total.wall) in printHeader()
133 void printTime(const TimeRecord &time, const TimeRecord &total) override { in printTime() argument
134 if (total.user != total.wall) { in printTime()
136 100.0 * time.user / total.user); in printTime()
139 100.0 * time.wall / total.wall); in printTime()
143 const TimeRecord &total, bool lastEntry) override { in printListEntry() argument
144 printTime(time, total); in printListEntry()
149 const TimeRecord &total) override { in printTreeEntry() argument
[all …]
/llvm-project/bolt/test/X86/Inputs/
H A Djump_table_icp.s126 movl total(%rip), %eax
128 movl %eax, total(%rip)
135 movl total(%rip), %eax
137 movl %eax, total(%rip)
144 movl total(%rip), %eax
146 movl %eax, total(%rip)
153 movl total(%rip), %eax
155 movl %eax, total(%rip)
162 movl total(%rip), %eax
164 movl %eax, total(%rip)
[all …]
/llvm-project/llvm/test/CodeGen/AArch64/
H A Darm64-spill-remarks.ll20 …EMARK: remark: /tmp/kk.c:3:20: 1 spills 1.000000e+02 total spills cost 1 reloads 1.000000e+02 tota…
22 …EMARK: remark: /tmp/kk.c:2:20: 1 spills 1.000000e+04 total spills cost 1 reloads 1.000000e+04 tota…
24 …: 2 spills 1.010000e+04 total spills cost 2 reloads 1.010000e+04 total reloads cost 1 virtual regi…
26 …: 3 spills 1.020000e+04 total spills cost 3 reloads 1.020000e+04 total reloads cost 3 virtual regi…
29 …TNESS: remark: /tmp/kk.c:3:20: 1 spills 1.000000e+02 total spills cost 1 reloads 1.000000e+02 tota…
31 …TNESS: remark: /tmp/kk.c:2:20: 1 spills 1.000000e+04 total spills cost 1 reloads 1.000000e+04 tota…
33 …: 2 spills 1.010000e+04 total spills cost 2 reloads 1.010000e+04 total reloads cost 1 virtual regi…
38 …SHOLD: remark: /tmp/kk.c:2:20: 1 spills 1.000000e+04 total spills cost 1 reloads 1.000000e+04 tota…
50 ; YAML: - String: ' total spills cost '
54 ; YAML: - String: ' total reloads cost '
[all …]
/llvm-project/polly/lib/External/isl/
H A Disl_map_simplify.c52 isl_size total = isl_basic_map_dim(bmap, isl_dim_all); in isl_basic_map_normalize_constraints() local
54 if (total < 0) in isl_basic_map_normalize_constraints()
59 isl_seq_gcd(bmap->eq[i]+1, total, &gcd); in isl_basic_map_normalize_constraints()
77 isl_seq_scale_down(bmap->eq[i], bmap->eq[i], gcd, 1+total); in isl_basic_map_normalize_constraints()
81 isl_seq_gcd(bmap->ineq[i]+1, total, &gcd); in isl_basic_map_normalize_constraints()
96 isl_seq_scale_down(bmap->ineq[i]+1, bmap->ineq[i]+1, gcd, total); in isl_basic_map_normalize_constraints()
186 isl_size total; in reduce_div_coefficients_of_div() local
188 total = isl_basic_map_dim(bmap, isl_dim_all); in reduce_div_coefficients_of_div()
189 if (total < 0) in reduce_div_coefficients_of_div()
191 for (i = 0; i < 1 + total; ++i) { in reduce_div_coefficients_of_div()
[all …]
H A Disl_farkas.c244 isl_size total; in farkas() local
246 total = isl_basic_set_dim(bset, isl_dim_all); in farkas()
247 if (total < 0) in farkas()
251 space = isl_space_set_alloc(ctx, 0, total + shift); in farkas()
258 total, bset->n_ineq + (shift > 0)); in farkas()
268 for (i = 0; i < total; ++i) { in farkas()
272 isl_seq_clr(dual->eq[k], 1 + shift + total); in farkas()
275 isl_int_set(dual->eq[k][1 + shift + total + j], in farkas()
278 isl_int_set(dual->eq[k][1 + shift + total + bset->n_eq + j], in farkas()
287 1 + shift + total + bset->n_eq + bset->n_ineq); in farkas()
[all …]
H A Disl_coalesce.c517 isl_size total = isl_basic_map_dim(info[i].bmap, isl_dim_all); in fuse() local
522 if (total < 0) in fuse()
531 fused = add_valid_constraints(fused, &info[i], 1 + total); in fuse()
532 fused = add_valid_constraints(fused, &info[j], 1 + total); in fuse()
544 1 + 1 + total)) { in fuse()
546 1 + 1 + total); in fuse()
557 isl_seq_cpy(fused->ineq[l], extra->row[k], 1 + total); in fuse()
765 isl_size total = isl_basic_map_dim(info[i].bmap, isl_dim_all); in is_adj_ineq_extension_with_wraps() local
769 if (total < 0) in is_adj_ineq_extension_with_wraps()
786 isl_seq_neg(info[i].bmap->ineq[k], info[i].bmap->ineq[k], 1 + total); in is_adj_ineq_extension_with_wraps()
[all …]
H A Disl_affine_hull.c124 isl_size total; in construct_column() local
126 total = isl_basic_set_dim(bset1, isl_dim_set); in construct_column()
127 if (total < 0) in construct_column()
139 b, bset1->eq[row], 1 + total); in construct_column()
140 isl_seq_scale(bset2->eq[r], bset2->eq[r], a, 1 + total); in construct_column()
164 isl_size total; in transform_column() local
172 total = isl_basic_set_dim(bset1, isl_dim_set); in transform_column()
173 if (total < 0) in transform_column()
185 1 + total); in transform_column()
187 1 + total); in transform_column()
[all …]
/llvm-project/llvm/test/tools/llvm-mca/X86/
H A Dsqrt-rsqrt-rcp-memop.s94 # BARCELONA-NEXT: 1 1.5 0.5 0.0 <total>
97 # BDVER2-NEXT: 1 2.0 0.5 0.0 <total>
100 # BROADWELL-NEXT: 1 1.5 0.5 0.0 <total>
103 # BTVER2-NEXT: 1 2.0 0.5 0.0 <total>
106 # HASWELL-NEXT: 1 1.5 0.5 0.0 <total>
109 # SKYLAKE-NEXT: 1 1.5 0.5 0.0 <total>
112 # ZNVER1-NEXT: 1 1.5 0.5 0.0 <total>
115 # ZNVER2-NEXT: 1 1.5 0.5 0.0 <total>
179 # BARCELONA-NEXT: 1 1.5 0.5 0.0 <total>
182 # BDVER2-NEXT: 1 2.0 0.5 0.0 <total>
[all …]
/llvm-project/lldb/tools/lldb-dap/
H A DProgressEvent.cpp28 uint64_t completed, uint64_t total, in ProgressEvent() argument
34 const bool calculate_percentage = total != UINT64_MAX; in ProgressEvent()
44 } else if (completed == total) { in ProgressEvent()
55 (uint32_t)((double)completed / (double)total * 100.0), (uint32_t)99); in ProgressEvent()
70 uint64_t completed, uint64_t total, in Create() argument
73 if (completed > 0 && completed < total && !prev_event) in Create()
75 ProgressEvent event(progress_id, message, completed, total, prev_event); in Create()
171 uint64_t completed, uint64_t total) { in Update()
173 progress_id, message, completed, total, &GetMostRecentEvent())) { in Update()
220 uint64_t completed, uint64_t total) { in Push()
169 Update(uint64_t progress_id,uint64_t completed,uint64_t total) Update() argument
218 Push(uint64_t progress_id,const char * message,uint64_t completed,uint64_t total) Push() argument
[all...]
/llvm-project/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst116 The total number of blocks of any kind in the bitcode file.
120 The total number of function definitions in the bitcode file.
124 The total number of types defined in the Global Types Pool.
128 The total number of constants (of any type) defined in the Constant Pool.
132 The total number of basic blocks defined in all functions in the bitcode file.
136 The total number of instructions defined in all functions in the bitcode file.
140 The total number of long instructions defined in all functions in the bitcode
147 The total number of operands used in all instructions in the bitcode file.
151 The total number of compaction tables in all functions in the bitcode file.
155 The total number of symbol tables in all functions in the bitcode file.
[all …]
/llvm-project/llvm/test/Transforms/SLPVectorizer/X86/
H A Dpr23510.ll8 @total = global i64 0, align 8
18 ; CHECK-NEXT: [[TMP3:%.*]] = load i64, ptr @total, align 8
20 ; CHECK-NEXT: store i64 [[ADD]], ptr @total, align 8
25 ; CHECK-NEXT: [[TMP7:%.*]] = load i64, ptr @total, align 8
27 ; CHECK-NEXT: store i64 [[ADD9]], ptr @total, align 8
40 %tmp3 = load i64, ptr @total, align 8
42 store i64 %add, ptr @total, align 8
50 %tmp7 = load i64, ptr @total, align 8
52 store i64 %add9, ptr @total, align 8
/llvm-project/llvm/test/CodeGen/X86/
H A Dtwoaddr-coalesce-3.ll6 @total = common global i32 0, align 4
17 %total.promoted = load i32, ptr @total, align 4
30 %add5 = phi i32 [ %total.promoted, %for.body.lr.ph ], [ %add, %for.body ]
39 store i32 %add, ptr @total, align 4
54 %total.promoted = load i32, ptr @total, align 4
68 %add5 = phi i32 [ %total.promoted, %for.body.lr.ph ], [ %add, %for.body ]
78 store i32 %add, ptr @total, align 4
/llvm-project/cross-project-tests/debuginfo-tests/dexter/
H A DREADME.md57 8. void Fibonacci(int terms, int& total)
64 15. total += first;
72 23. int total = 0;
73 24. Fibonacci(5, total);
74 25. return total;
84 35. DexExpectWatchValue('total', '0', '1', '2', '4', '7',
88 39. DexExpectWatchValue('total', '7', on_line=25)
125 … available.", "second": "Variable is optimized away and not available.", "total": "0", "first": "V…
127 … available.", "second": "Variable is optimized away and not available.", "total": "0", "first": "V…
128 … available.", "second": "Variable is optimized away and not available.", "total": "0", "first": "V…
[all …]
/llvm-project/llvm/test/Object/
H A Dsize-trivial-macho.test39 m: total 116
40 m: total 116
51 mAR: total 102
52 mAR: total 104
57 mAR: total 4
58 mAR: total 4
69 mxl: total 0xc8
73 mxl: total 0x18
75 mxl: total 0x100003000
/llvm-project/libc/test/src/__support/
H A Dstr_to_float_comparison_test.cpp58 int *detailedBitDiffs, int *total) { in checkFile()
75 *total = *total + 1; in checkFile()
152 int total = 0; in main() local
156 checkFile(argv[i], &fails, &bitdiffs, detailedBitDiffs, &total); in main()
171 << "Total lines: " << total << "\n"; in main()
57 checkFile(char * inputFileName,int * totalFails,int * totalBitDiffs,int * detailedBitDiffs,int * total) checkFile() argument
/llvm-project/lld/Common/
H A DTimer.cpp31 Timer::Timer(llvm::StringRef name) : total(0), name(std::string(name)) {} in Timer()
33 : total(0), name(std::string(name)) { in Timer()
43 if (child->total > 0) in print()
53 std::chrono::nanoseconds(total)) in millis()
69 if (child->total > 0) in print()
/llvm-project/flang/test/Semantics/
H A Dcritical05.f905 integer :: total = 0 variable
28 total = total + 1
30 print *, "Total is: ", total
/llvm-project/clang-tools-extra/clangd/unittests/support/
H A DMemoryTreeTests.cpp27 arg.getSecond().total() == static_cast<size_t>(Size);
32 EXPECT_EQ(MT.total(), 0U); in TEST()
36 EXPECT_EQ(MT.total(), 42U); in TEST()
40 EXPECT_EQ(MT.total(), 43U); in TEST()
45 EXPECT_EQ(MT.total(), 44U); in TEST()
53 EXPECT_EQ(MT.total(), 2U); in TEST()
/llvm-project/llvm/utils/
H A Ddemangle_tree.py199 total = context.rcumulative
200 nfailed = len(total.errors)
201 nsuccess = total.nsymbols - nfailed
202 ncrashed = len(total.crashed)
206 for m in sorted(total.errors):
210 for f in sorted(total.crashed):
213 spct = float(nsuccess) / float(total.nsymbols)
214 fpct = float(nfailed) / float(total.nsymbols)
219 nsuccess, total.nsymbols, spct
/llvm-project/clang/test/SemaCXX/
H A Dfor-range-examples.cpp121 int total = 0; in main() local
124 total += n; in main()
126 assert(total == 10); in main()
129 total += n; in main()
131 assert(total == 460); in main()
138 ++total; in main()
140 assert(total == 463); in main()
148 total += a; in main()
150 assert(total == 500); in main()

12345678910>>...25