Home
last modified time | relevance | path

Searched full:run (Results 1 – 25 of 815) sorted by relevance

12345678910>>...33

/arkcompiler/runtime_core/tests/cts-generator/
DREADME.md50 --verify-tests Run verifier against positive tests (option for test checking)
51 --with-quickener Run quickener tool after assembly
53 …-a, --run-all Run all tests, ignore "runner-option: ignore" tag in test definit…
54 …--run-ignored Run ignored tests, which have "runner-option: ignore" tag in test def…
63 --prlimit OPTS Run panda via prlimit with options
81 To run all tests, add `-a` options.
83 To run only tests with `ignore` runner option, add `--run-ignored` options.
95 Run all tests marked with bugid 1316.
107 ### How to run all tests
110 If you want to run all tests, you can do the following:
[all …]
Dtest-runner.rb80 opts.on('--verify-tests', 'Run verifier against positive tests (option for test checking)')
81 opts.on('--with-quickener', 'Run quickener tool after assembly')
83 opts.on('-a', '--run-all', 'Run all tests, ignore "runner-option: ignore" tag in test definition')
84 …opts.on('--run-ignored', 'Run ignored tests, which have "runner-option: ignore" tag in test defini…
101 opts.on('--prlimit OPTS', "Run panda via prlimit with options")
165 $run_all = options['run-all']
166 $run_ignore = options['run-ignored']
/arkcompiler/ets_frontend/test262/
DREADME.md16 ## 2 Run test cases
37 --es51 Run test262 ES5.1 version
39 Run test262 - ES2015. all: Contains all use cases for
42 --esnext Run test262 - ES.next.
43 --engine FILE Other engine binarys to run tests with
47 --threads THREADS Run this many tests in parallel. Note that the browser
50 --ark-aot Run test262 with aot
61 ### 2.2 Run all the test cases
67 ### 2.3 Run `es51` related test cases
75 ### 2.4 Run `es2015` related test cases
[all …]
/arkcompiler/ets_runtime/script/
Drun_ark_executable.py18 Description: run script
19 expect_output will get run result,
44 """run testcase and judge is success or not."""
60 raise RuntimeError('Run [', cmd, '] timeout, timeout_limit = ', timeout_limit, 's')
71 raise RuntimeError("Run [" + cmd + "] failed!")
79 raise RuntimeError("Run [" + cmd + "] failed!")
91 raise RuntimeError("Run [" + cmd + "] failed!")
93 raise RuntimeError("Run [" + cmd + "] with no expect !")
95 print("Run [" + cmd + "] success!")
/arkcompiler/ets_runtime/ecmascript/compiler/
Dpass.h159 return pass.Run(data_, std::forward<Args>(args)...); in RunPass()
168 bool Run(PassData* data) in Run() function
183 bool Run(PassData *data) in Run() function
196 bool Run(PassData *data) in Run() function
209 bool Run(PassData *data, PassInfo *info) in Run() function
221 bool Run(PassData* data) in Run() function
234 bool Run(PassData* data) in Run() function
238 bool isQualified = Verifier::Run(data->GetCircuit(), data->GetMethodName(), enableLog); in Run()
249 bool Run(PassData* data) in Run() function
253 …nation(data->GetCircuit(), enableLog, data->GetMethodName(), data->GetNativeAreaAllocator()).Run(); in Run()
[all …]
/arkcompiler/runtime_core/tests/checked/
DREADME.md3 Checked tests is the tests that have additional functionality to check result of the test being run.
17 * **RUN** run panda application, following named arguments are allowed:
18 - *force_jit: bool* - run jit compilation for every executed method
23 * **RUN_PAOC** run paoc application on the compiled panda file. Output panda file will be passed to…
24 run. Thus, `RUN_PAOC` command must be placed before `RUN` command.
Dcross_peephole.pa18 #! RUN force_jit: true, options: "--compiler-cross-arch=arm", entry: "_GLOBAL::main"
20 #! RUN force_jit: true, options: "--compiler-cross-arch=arm64", entry: "_GLOBAL::main"
26 #! RUN options: "", entry: "_GLOBAL::main"
29 #! RUN options: "", entry: "_GLOBAL::main"
36 #! RUN force_jit: true, options: "", entry: "_GLOBAL::main"
56 #! RUN options: "", entry: "_GLOBAL::main"
Daot_cha.pa30 #! RUN options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::mai…
38 #! RUN options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::mai…
46 #! RUN options: "--panda-files=../../basics_aot.checked/test.abc", entry: "AotChaTest::mai…
54 #! RUN options: "", entry: "AotChaTest::main", abort: 6
Dconst_array_test.pa19 #! RUN force_jit: true, options: "--compiler-regex=_GLOBAL::main --compiler-unfold-const-…
29 #! RUN force_jit: true, options: "--compiler-regex=_GLOBAL::main --compiler-unfold-const-…
40 #! RUN entry: "_GLOBAL::main"
44 #! RUN entry: "_GLOBAL::main"
/arkcompiler/runtime_core/docs/diagrams/
Dgc-thread-activity.puactivity26 :Run Full GC;
28 :Run GC with obtained task in separated thread;
31 :Run minor GC in this thread;
36 :Run minor GC in this thread;
/arkcompiler/ets_runtime/docs/
Ddevelopment-example.md12 1. Run the following command to compile ARK runtime:
18 2. Run the following command to compile the ARK frontend:
35 **NOTE**: Run the compilation commands in the project root directory.
46 Run the **hello-world.js** file.
54 2. Run the **hello-world.abc** file.
61 2. Run **ark\_js\_vm**.
77 Run the following command to export the result to the **output** file:
124 1. Run the following command to compile ARK runtime:
130 2. Run the following command to compile the ARK frontend:
136 **NOTE**: Run the compilation commands in the project root directory.
[all …]
/arkcompiler/runtime_core/compiler/tests/
Dpanda_runner.h59 void Run(std::string_view source) in Run() function
61 return Run(source, std::vector<std::string> {}); in Run()
64 void Run(std::string_view source, Callback hook) in Run() function
67 return Run(source, ssize_t(0)); in Run()
70 void Run(std::string_view source, ssize_t expected_result) in Run() function
73 return Run(source, std::vector<std::string> {}); in Run()
76 void Run(std::string_view source, const std::vector<std::string> &args) in Run() function
86 Run(CreateRuntime(), source, args); in Run()
89 void Run(Runtime *runtime, std::string_view source, const std::vector<std::string> &args) in Run() function
Dosr_test.cpp101 runner.Run(OSR_IN_TOP_FRAME_SOURCE, 435); in TEST_F()
116 runner.Run(OSR_IN_TOP_FRAME_SOURCE, 435); in TEST_F()
153 runner.Run(OSR_AFTER_IFRAME_SOURCE, 435); in TEST_F()
167 runner.Run(OSR_AFTER_IFRAME_SOURCE, 435); in TEST_F()
204 runner.Run(OSR_AFTER_IFRAME_RESTORE_ACC_AFTER_VOID, static_cast<ssize_t>0); in TEST_F()
260 runner.Run(OSR_AFTER_CFRAME_SOURCE, 435); in TEST_F()
277 runner.Run(OSR_AFTER_CFRAME_SOURCE, 435); in TEST_F()
295 runner.Run(OSR_AFTER_CFRAME_SOURCE, 435); in TEST_F()
343 runner.Run(source, 123); in TEST_F()
398 runner.Run(MAIN_OSR_CATCH_F1_THROW_SOURCE, 123); in TEST_F()
[all …]
/arkcompiler/runtime_core/runtime/tests/
Dstack_walker_test.cpp112 void Run(std::string_view source, Callback hook) in Run() function in panda::test::PandaRunner
282 runner.Run(source, [](uintptr_t lr, [[maybe_unused]] uintptr_t fp) -> int { in TEST_F()
447 runner.Run(source, [](uintptr_t lr, [[maybe_unused]] uintptr_t fp) -> int { in TestModifyManyVregs()
568 runner.Run(source, nullptr); in TEST_F()
571 runner.Run(source, nullptr); in TEST_F()
574 runner.Run(source, nullptr); in TEST_F()
577 runner.Run(source, nullptr); in TEST_F()
580 runner.Run(source, nullptr); in TEST_F()
583 runner.Run(source, nullptr); in TEST_F()
586 runner.Run(source, nullptr); in TEST_F()
[all …]
Dg1gc_test.cpp219 task.Run(*gc); in TEST_F()
250 task.Run(*gc); in TEST_F()
288 task.Run(*gc); in TEST_F()
298 GCTask task1(GCTaskCause::EXPLICIT_CAUSE); // run full GC to collect all regions in TEST_F()
299 task1.Run(*gc); in TEST_F()
358 task.Run(*gc); in TEST_F()
378 task.Run(*gc); in TEST_F()
379 task.Run(*gc); // humongous object should be reclaimed in TEST_F()
461 task.Run(*runtime->GetPandaVM()->GetGC()); in TEST_F()
547 task.Run(*gc); in TEST_F()
[all …]
/arkcompiler/runtime_core/tests/benchmarks/
DCMakeLists.txt33 BRIEF_DOCS "Run this benchmark with interpreter?"
34 FULL_DOCS "Run this benchmark with interpreter?")
37 BRIEF_DOCS "Run this benchmark with enforced JIT compiler?"
38 FULL_DOCS "Run this benchmark with enforced JIT compiler?")
45 BRIEF_DOCS "Run with enabled AOT?"
46 FULL_DOCS "Run with enabled AOT?")
49 BRIEF_DOCS "Run in default mode?"
50 FULL_DOCS "Run in default mode?")
79 # * 4. Run with interpreter (without compiler at all)?
80 # * 5. Run with enforced JIT compiler?
[all …]
/arkcompiler/runtime_core/tests/checked/verify_aot_tests/
Dverify_aot_test.pa26 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver…
32 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver…
38 #! RUN options: "--panda-files=../../verify_aot_tests_file2.checked/test.abc", entry: "Ver…
44 #! RUN options: "--panda-files=../../verify_aot_tests_file2.checked/test.abc", entry: "Ver…
50 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver…
56 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver…
62 #! RUN options: "--panda-files=../../verify_aot_tests_file1.checked/test.abc", entry: "Ver…
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/
Djtr_reporter.rb58 if !(@status =~ /Passed\.|Not run\./) and !@output.empty?
72 @status = 'Not run. Excluded by tag'
76 @status = 'Not run. Not included by tag'
80 @status = 'Not run. Not mtched bugid'
84 @status = 'Not run. runner_option is ignore'
88 @status = 'Not run. Running only ignored'
147 @status = 'Not run.'
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dsignal.h129 …catcher_thread_ = thread::ThreadStart(&SignalCatcherThread::Run<SigAction, Args...>, this, sig_act… in StartThread()
157 static void Run(SignalCatcherThread *self, SigAction *sig_action, Args... args) in Run() function
159 LOG(DEBUG, COMMON) << "SignalCatcherThread::Run: Starting the signal catcher thread"; in Run()
175 LOG(DEBUG, COMMON) << "SignalCatcherThread::Run: waiting"; in Run()
179 …LOG(DEBUG, COMMON) << "SignalCatcherThread::Run: exit loop, cause signal catcher thread was stoppe… in Run()
183 LOG(DEBUG, COMMON) << "SignalCatcherThread::Run: signal[" << sig << "] handling begins"; in Run()
185 LOG(DEBUG, COMMON) << "SignalCatcherThread::Run: signal[" << sig << "] handling ends"; in Run()
196 LOG(DEBUG, COMMON) << "SignalCatcherThread::Run: Finishing the signal catcher thread"; in Run()
/arkcompiler/runtime_core/runtime/tooling/inspector/
Devent_loop.h28 // Run the event loop until paused.
29 void Run();
31 // Run at most one event loop handler, may block.
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dlowering_relate_gate_test.cpp65 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
83 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
87 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
105 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
109 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
125 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
129 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
156 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
195 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
Dstub_tests.cpp124 Scheduler::Run(&netOfGates, cfg); in HWTEST_F_L0()
130 assembler.Run(*log); in HWTEST_F_L0()
131 // Testcase build and run in HWTEST_F_L0()
167 Scheduler::Run(&netOfGates, cfg); in HWTEST_F_L0()
173 assembler.Run(*log); in HWTEST_F_L0()
174 // Testcase build and run in HWTEST_F_L0()
206 Scheduler::Run(&netOfGates, cfg); in HWTEST_F_L0()
212 assembler.Run(*log); in HWTEST_F_L0()
213 // Testcase build and run in HWTEST_F_L0()
264 Scheduler::Run(&netOfGates, cfg); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_frontend/es2panda/compiler/core/
DregAllocator.h66 Run(ins); in Emit()
73 Run(ins, typeIndex); in EmitWithType()
80 Run(ins, argCount); in EmitRange()
121 void Run(IRNode *ins);
122 void Run(IRNode *ins, size_t argCount);
123 void Run(IRNode *ins, int64_t typeIndex);
/arkcompiler/ets_frontend/es2panda/test/
Drunner.py59 help='run test262 tests')
65 default=False, help='run regression tests')
68 default=False, help='run compiler tests')
71 default=False, help='run tsc tests')
82 '--no-run-gc-in-place', action='store_true', dest='no_gip', default=False,
83 help='enable --run-gc-in-place mode')
118 help='run tests listed in file')
134 help='run hotfix tests')
136 help='run hotreload tests')
138 help='run base64 tests')
[all …]
/arkcompiler/runtime_core/runtime/mem/
Drunslots.cpp160 size_t RunSlots<LockTypeT>::RunVerifier::operator()(RunSlots *run) in operator ()() argument
162 …// 1. should verify whether run's bracket size is the same as recorded in RunSlotsAllocator, but R… in operator ()()
164 // 2. should verify thread local run's ownership, but thread local run not implemented yet in operator ()()
167 auto size_check_func = [this, &run](const ObjectHeader *obj) { in operator ()()
169 if ((1U << size_power_of_two) != run->GetSlotsSize()) { in operator ()()
173 run->IterateOverOccupiedSlots(size_check_func); in operator ()()

12345678910>>...33