Home
last modified time | relevance | path

Searched refs:run (Results 1 – 25 of 4643) sorted by relevance

12345678910>>...186

/llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dbullet_1_2_3.pass.cpp142 static void run() { TestCaseImp().doTest(); } in run() function
305 TestCase<R() const volatile, 0, Q_CV>::run(); in main()
309 TestCase<R(...) const volatile, 0, Q_CV>::run(); in main()
313 TestCase<R(A&) const volatile, 1, Q_CV>::run(); in main()
317 TestCase<R(A&, ...) const volatile, 1, Q_CV>::run(); in main()
321 TestCase<R(A&, A&) const volatile, 2, Q_CV>::run(); in main()
325 TestCase<R(A&, A&, ...) const volatile, 2, Q_CV>::run(); in main()
329 TestCase<R(A&, A&, A&) const volatile, 3, Q_CV>::run(); in main()
333 TestCase<R(A&, A&, A&, ...) const volatile, 3, Q_CV>::run(); in main()
339 TestCase11<R() const volatile &, 0, Q_CV>::run(); in main()
[all …]
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dcsv_reporter.cc101 for (const auto& run : reports) { in ReportRuns() local
102 PrintRunData(run); in ReportRuns()
109 if (run.error_occurred) { in PrintRunData()
117 if (!run.report_big_o && !run.report_rms) { in PrintRunData()
118 Out << run.iterations; in PrintRunData()
126 if (run.report_big_o) { in PrintRunData()
128 } else if (!run.report_rms) { in PrintRunData()
133 if (run.counters.find("bytes_per_second") != run.counters.end()) { in PrintRunData()
137 if (run.counters.find("items_per_second") != run.counters.end()) { in PrintRunData()
141 if (!run.report_label.empty()) { in PrintRunData()
[all …]
H A Djson_reporter.cc228 void JSONReporter::PrintRunData(Run const& run) { in PrintRunData() argument
238 switch (run.run_type) { in PrintRunData()
255 switch (run.aggregate_unit) { in PrintRunData()
264 if (run.error_occurred) { in PrintRunData()
268 if (!run.report_big_o && !run.report_rms) { in PrintRunData()
270 if (run.run_type != Run::RT_Aggregate || in PrintRunData()
283 } else if (run.report_big_o) { in PrintRunData()
290 } else if (run.report_rms) { in PrintRunData()
294 for (auto& c : run.counters) { in PrintRunData()
298 if (run.memory_result) { in PrintRunData()
[all …]
/llvm-project-15.0.7/llvm/utils/reduce_pipeline_test/
H A Dtest.py9 def getFinalPasses(run): argument
10 stdout = run.stdout.decode()
26 run = subprocess.run(run_args,
29 self.assertEqual(run.returncode, 0)
42 run = subprocess.run(run_args,
45 self.assertEqual(run.returncode, 0)
55 run = subprocess.run(run_args,
58 self.assertEqual(run.returncode, 0)
69 run = subprocess.run(run_args,
83 run = subprocess.run(run_args,
[all …]
/llvm-project-15.0.7/llvm/unittests/Transforms/Scalar/
H A DLoopPassManagerTest.cpp190 MOCK_METHOD4(run,
199 MOCK_METHOD4(run,
388 MPM.run(*M, MAM); in TEST_F()
471 MPM.run(*M, MAM); in TEST_F()
558 MPM.run(*M, MAM); in TEST_F()
676 MPM.run(*M, MAM); in TEST_F()
778 MPM.run(*M, MAM); in TEST_F()
860 MPM.run(*M, MAM); in TEST_F()
1062 MPM.run(*M, MAM); in TEST_F()
1315 MPM.run(*M, MAM); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/unittests/IR/
H A DLegacyPassManagerTest.cpp56 run++; in runOnModule()
72 run++; in runOnModule()
85 run++; in runOnModule()
100 run++; in runOnModule()
176 run(); in runOnSCC()
186 run(); in runOnFunction()
214 run(); in runOnLoop()
256 mNDM->run = mNDNM->run = mDNM->run = mNDM2->run = 0; in TEST()
280 mNDM->run = mNDNM->run = mDNM->run = mNDM2->run = 0; in TEST()
377 run++; in runOnModule()
[all …]
H A DPassBuilderCallbacksTest.cpp163 MOCK_METHOD4(run,
179 MOCK_METHOD4(run,
203 MOCK_METHOD4(run,
533 PM.run(*M, AM); in TEST_F()
578 PM.run(*M, AM); in TEST_F()
694 PM.run(*M, AM); in TEST_F()
704 PM.run(*M, AM); in TEST_F()
753 PM.run(*M, AM); in TEST_F()
799 PM.run(*M, AM); in TEST_F()
811 PM.run(*M, AM); in TEST_F()
[all …]
/llvm-project-15.0.7/mlir/test/python/ir/
H A Darray_attributes.py9 def run(f): function
20 @run
35 @run
49 @run
61 @run
92 @run
108 @run
123 @run
133 @run
144 @run
[all …]
H A Dbuiltin_types.py6 def run(f): function
15 @run
31 @run
44 @run
61 @run
79 @run
89 @run
103 @run
117 @run
130 @run
[all …]
H A Dattributes.py6 def run(f): function
15 @run
31 @run
44 @run
61 @run
79 @run
89 @run
101 @run
115 @run
128 @run
[all …]
H A Ddiagnostic_handler.py6 def run(f): function
14 @run
30 @run
40 @run
49 @run
60 @run
75 @run
89 @run
106 @run
118 @run
[all …]
H A Doperation.py9 def run(f): function
27 @run
84 @run
123 @run
145 @run
203 @run
226 @run
284 @run
316 @run
338 @run
[all …]
H A Daffine_expr.py6 def run(f): function
15 @run
31 @run
50 @run
64 @run
83 @run
105 @run
127 @run
154 @run
182 @run
[all …]
/llvm-project-15.0.7/openmp/libomptarget/test/
H A Dlit.cfg155 config.substitutions.append(("%libomptarget-run-generic",
156 "%libomptarget-run-" + libomptarget_target))
158 "%libomptarget-run-fail-" + libomptarget_target))
178 "%libomptarget-run-" + libomptarget_target))
182 "%libomptarget-run-" + libomptarget_target))
200 "%libomptarget-run-" + libomptarget_target))
204 "%libomptarget-run-" + libomptarget_target))
211 config.substitutions.append(("%libomptarget-run-" + \
214 config.substitutions.append(("%libomptarget-run-fail-" + \
262 config.substitutions.append(("%libomptarget-run-" + \
[all …]
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-query/
H A DQueryEngineTest.cpp56 EXPECT_TRUE(NoOpQuery().run(OS, S)); in TEST_F()
62 EXPECT_FALSE(InvalidQuery("Parse error").run(OS, S)); in TEST_F()
68 EXPECT_TRUE(HelpQuery().run(OS, S)); in TEST_F()
74 EXPECT_TRUE(MatchQuery("functionDecl()", FnMatcher).run(OS, S)); in TEST_F()
88 EXPECT_TRUE(MatchQuery(FooMatcherString, FooMatcher).run(OS, S)); in TEST_F()
98 EXPECT_TRUE(MatchQuery(FooMatcherString, FooMatcher).run(OS, S)); in TEST_F()
107 EXPECT_TRUE(MatchQuery(FooMatcherString, FooMatcher).run(OS, S)); in TEST_F()
115 EXPECT_TRUE(MatchQuery(FooMatcherString, FooMatcher).run(OS, S)); in TEST_F()
127 EXPECT_TRUE(MatchQuery(FooMatcherString, FooMatcher).run(OS, S)); in TEST_F()
133 EXPECT_FALSE(MatchQuery("isMain()", isMain()).run(OS, S)); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/utils/
H A Dllvm-native-gxx85 sub run { subroutine
103 run "llvm-link -o $LinkedBCFile $BCFiles";
117 run "llc -march=c -f -o $GeneratedCode $BCFile";
124 run "llc -f -o $GeneratedCode $BCFile";
129 run "rm $BCFile $GeneratedCode"
135 run $LLVMGCCCommand;
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
148 run "llc -march=c -f -o $GeneratedCode $BCFile";
151 run "llc -f -o $GeneratedCode $BCFile";
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-suggest-override5 void run();
10 void run();
14 virtual void run(); // expected-note 2{{overridden virtual function is here}}
19 void run();
20 // expected-warning@-1 {{'run()' overrides a member function but is not marked 'override'}}
25 virtual void run();
26 // expected-warning@-1 {{'run()' overrides a member function but is not marked 'override'}}
31 void run() override;
36 void run() final;
/llvm-project-15.0.7/llvm/docs/
H A DGitBisecting.rst30 that revision, and run ``git bisect good`` or ``git bisect bad``.
32 If you can't repro at the current commit (maybe the build is broken), run
39 ``git bisect run``
44 good if it can happen completely automatically. ``git bisect run`` can do
45 this for you if you write a run script that reproduces the problem
64 To make sure your run script works, it's a good idea to run ``./run.sh`` by
67 (check ``echo $?`` after your script ran), and only then run ``git bisect run
68 ./run.sh``. Don't forget to mark your run script as executable -- ``git bisect
69 run`` doesn't check for that, it just assumes the run script failed each time.
71 Once your run script works, run ``git bisect run ./run.sh`` and a few hours
[all …]
/llvm-project-15.0.7/mlir/test/python/dialects/
H A Dtransform_structured_ext.py9 def run(f): function
19 @run
30 @run
41 @run
57 @run
71 @run
91 @run
101 @run
114 @run
126 @run
[all …]
/llvm-project-15.0.7/llvm/test/ThinLTO/X86/
H A Dcache-config.ll4 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx
5 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -mcpu=core2
6 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -relax-elf-relocatio…
7 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -function-sections
8 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -data-sections
9 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -debugger-tune=sce
10 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -mattr=+sse2
12 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -code-model=large
13 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -cg-opt-level=0
14 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -O1
[all …]
/llvm-project-15.0.7/libcxx/utils/ci/
H A Dbuildkite-pipeline.yml26 command: "libcxx/utils/ci/run-buildbot check-format"
55 command: "libcxx/utils/ci/run-buildbot documentation"
75 command: "libcxx/utils/ci/run-buildbot generic-cxx2b"
89 command: "libcxx/utils/ci/run-buildbot generic-cxx11"
103 command: "libcxx/utils/ci/run-buildbot generic-cxx03"
131 command: "libcxx/utils/ci/run-buildbot generic-gcc"
745 command: "libcxx/utils/ci/run-buildbot aarch64"
773 command: "libcxx/utils/ci/run-buildbot armv8"
801 command: "libcxx/utils/ci/run-buildbot armv7"
831 command: "libcxx/utils/ci/run-buildbot aix"
[all …]
/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A Dfuzzer-leak.test8 RUN: not %run %t-LeakTest -runs=100000 -detect_leaks=1 %t-corpus 2>&1 | FileCheck %s --check-prefix…
17 RUN: %run %t-LeakTest -runs=0 %t-corpus
19 RUN: not %run %t-LeakTest -runs=0 -detect_leaks=1 %S 2>&1 | FileCheck %s --check-prefix=LEAK_IN_COR…
23 RUN: not %run %t-LeakTest -runs=100000000 %S/hi.txt 2>&1 | FileCheck %s --check-prefix=MULTI_RUN_LE…
27 RUN: not %run %t-LeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=LEAK_AFTER
28 RUN: not %run %t-LeakTest -runs=100000 2>&1 | FileCheck %s --check-prefix=LEAK_DURI…
29 RUN: not %run %t-ThreadedLeakTest -runs=100000 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=L…
30 RUN: not %run %t-ThreadedLeakTest -runs=100000 2>&1 | FileCheck %s --check-prefix=L…
34 RUN: not %run %t-LeakTest -runs=100000 -max_len=1 2>&1 | FileCheck %s --check-prefix=MAX_LEN_1
37 RUN: not %run %t-LeakTimeoutTest -timeout=1 2>&1 | FileCheck %s --check-prefix=LEAK_TIMEOUT
[all …]
H A Dseed_inputs.test1 # Uses echo in a way that is not supported by the iOS "run-on-device" script.
9 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE…
10 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest 2>&1 | FileCheck %s --check-prefix=USE-1
14 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE…
15 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest 2>&1 | FileCheck %s --chec…
19 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix=USE…
20 RUN: %run %t-SimpleTest -runs=1 -seed_inputs=%t-SimpleTest,%t-SimpleTest,nonexistent-file, 2>&1 | F…
24 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@nonexistent-file 2>&1 | FileCheck %s --check-pref…
26 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs=@%t.seed-inputs 2>&1 | FileCheck %s --check-prefix…
27 RUN: not %run %t-SimpleTest -runs=1 -seed_inputs= 2>&1 | FileCheck %s --check-prefix=EMPTY
/llvm-project-15.0.7/bolt/lib/Passes/
H A DDataflowInfoManager.cpp23 RD->run(); in getReachingDefs()
34 RU->run(); in getReachingUses()
45 LA->run(); in getLivenessAnalysis()
56 SRU->run(); in getStackReachingUses()
66 DA->run(); in getDominatorAnalysis()
76 PDA->run(); in getPostDominatorAnalysis()
88 SPT->run(); in getStackPointerTracking()
101 RI->run(); in getReachingInsns()
111 RIB->run(); in getReachingInsnsBackwards()
124 SAA->run(); in getStackAllocationAnalysis()
/llvm-project-15.0.7/mlir/test/python/
H A Dpass_manager.py13 def run(f): function
29 run(testCapsule)
51 run(testParseSuccess)
64 run(testParseFail)
79 run(testInvalidNesting)
88 pm.run(module)
93 run(testRunPipeline)

12345678910>>...186