/llvm-project/bolt/test/Inputs/ |
H A D | jump_table_icp.cpp | 3 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 D | sample-summary.test | 9 ; 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 D | cs-sample-nested-profile.test | 160 ; 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 D | suppl-instr-with-sample.test | 101 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 D | general.proftext | 74 # 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 D | Timing.cpp | 117 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 D | jump_table_icp.s | 126 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 D | arm64-spill-remarks.ll | 20 …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 D | isl_map_simplify.c | 52 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 D | isl_farkas.c | 244 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 D | isl_coalesce.c | 517 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 D | isl_affine_hull.c | 124 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 D | sqrt-rsqrt-rcp-memop.s | 94 # 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 D | ProgressEvent.cpp | 28 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 D | llvm-bcanalyzer.rst | 116 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 D | pr23510.ll | 8 @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 D | twoaddr-coalesce-3.ll | 6 @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 D | README.md | 57 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 D | size-trivial-macho.test | 39 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 D | str_to_float_comparison_test.cpp | 58 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 D | Timer.cpp | 31 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 D | critical05.f90 | 5 integer :: total = 0 variable 28 total = total + 1 30 print *, "Total is: ", total
|
/llvm-project/clang-tools-extra/clangd/unittests/support/ |
H A D | MemoryTreeTests.cpp | 27 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 D | demangle_tree.py | 199 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 D | for-range-examples.cpp | 121 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()
|