/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | pass.h | 225 return pass.Run(data_, std::forward<Args>(args)...); in RunPass() 234 bool Run(PassData* data) in Run() function 250 initAnalysis.Run(); in Run() 259 bool Run(PassData* data) in Run() function 266 pgoTypeInfer.Run(); in Run() 273 bool Run(PassData *data) in Run() function 277 analyzer.Run(); in Run() 284 bool Run(PassData* data) in Run() function 305 bool Run(PassData* data) in Run() function 322 bool Run(PassData* data) in Run() function [all …]
|
D | number_speculative_runner.cpp | 22 void NumberSpeculativeRunner::Run() in Run() function in panda::ecmascript::kungfu::NumberSpeculativeRunner 25 rangeGuard.Run(); in Run() 42 retype.Run(); in Run() 59 rangeAnalysis.Run(); in Run() 73 lowering.Run(); in Run()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | panda_runner.h | 59 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
|
D | osr_test.cpp | 101 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 …]
|
D | split_resolver_test.cpp | 105 resolver.Run(); in TEST_F() 137 resolver.Run(); in TEST_F() 219 resolver.Run(); in TEST_F() 261 resolver.Run(); in TEST_F() 392 resolver.Run(); in TEST_F() 433 resolver.Run(); in TEST_F() 494 resolver.Run(); in TEST_F() 534 resolver.Run(); in TEST_F() 596 resolver.Run(); in TEST_F() 695 resolver.Run(); in TEST_F() [all …]
|
/arkcompiler/runtime_core/docs/diagrams/ |
D | gc-thread-activity.puactivity | 26 :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_frontend/es2panda/compiler/core/ |
D | regAllocator.h | 66 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);
|
D | compileQueue.h | 53 void Run() override; 67 void Run() override; 83 void Run() override;
|
D | regAllocator.cpp | 65 void RegAllocator::Run(IRNode *ins, int64_t typeIndex) in Run() function in panda::es2panda::compiler::RegAllocator 67 Run(ins); in Run() 71 void RegAllocator::Run(IRNode *ins) in Run() function in panda::es2panda::compiler::RegAllocator 90 void RegAllocator::Run(IRNode *ins, size_t argCount) in Run() function in panda::es2panda::compiler::RegAllocator
|
D | compileQueue.cpp | 35 void CompileFunctionJob::Run() in Run() function in panda::es2panda::compiler::CompileFunctionJob 55 void CompileModuleRecordJob::Run() in Run() function in panda::es2panda::compiler::CompileModuleRecordJob 70 void CompileFileJob::Run() in Run() function in panda::es2panda::compiler::CompileFileJob
|
/arkcompiler/ets_frontend/test/scripts/ |
D | readme.md | 5 2. Run xts test which in auto_xts_test 6 3. Run sdk_test which in sdk_test 7 4. Run performance test which in performance_test
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
D | readme.md | 21 #### Daily Run 23 Run the command: `python entry.py` 25 #### Manual Run 26 Run the command: `python run.py`
|
/arkcompiler/ets_frontend/test262/ |
D | README.md | 16 ## 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. 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 85 ### 2.5 Run single test case [all …]
|
/arkcompiler/ets_runtime/ecmascript/taskpool/ |
D | runner.cpp | 26 … std::unique_ptr<std::thread> thread = std::make_unique<std::thread>(&Runner::Run, this, i + 1); in Runner() 71 void Runner::Run(uint32_t threadId) in Run() function in panda::ecmascript::Runner 77 task->Run(threadId); in Run()
|
/arkcompiler/ets_frontend/es2panda/aot/ |
D | emitFiles.cpp | 67 void EmitSingleAbcJob::Run() in Run() function in panda::es2panda::aot::EmitSingleAbcJob 79 void EmitMergedAbcJob::Run() in Run() function in panda::es2panda::aot::EmitMergedAbcJob 96 void EmitCacheJob::Run() in Run() function in panda::es2panda::aot::EmitCacheJob
|
D | emitFiles.h | 34 void Run() override; 50 void Run() override; 64 void Run() override;
|
/arkcompiler/runtime_core/tests/benchmarks/ |
D | CMakeLists.txt | 33 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/ets_runtime/docs/ |
D | development-example.md | 12 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/tests/cts-generator/ |
D | README.md | 50 --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 95 Run all tests marked with bugid 1316. 158 1. Run all tests using regular build or using `tests` or `cts-geerator` targets. 159 2. Run tests related to bug.
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | heap_tracker.h | 46 thread_ = std::thread(&HeapTrackerSample::Run, this); in Start() 57 void Run();
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/statements/try/ |
D | try-finally-with-return-in-switch-expected.txt | 1 Run finally before return
|
/arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
D | lowering_relate_gate_test.cpp | 69 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0() 85 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0() 89 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0() 129 EXPECT_TRUE(Verifier::Run(&circuit)); in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/ |
D | README.md | 35 - `--regression`: Run regression tests 36 - `--test262`: Run test262
|
/arkcompiler/runtime_core/compiler/optimizer/ |
D | pass.cpp | 20 bool Pass::Run() in Run() function in panda::compiler::Pass
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | main.cpp | 47 int Run(int argc, const char **argv) in Run() function 95 return panda::proto::Run(argc, argv); in main()
|