/ark/js_runtime/ecmascript/compiler/ |
D | pass.h | 60 return pass.Run(data_, std::forward<Args>(args)...); in RunPass() 69 bool Run(PassData* data, BytecodeCircuitBuilder *builder) in Run() function 79 bool Run(PassData* data) in Run() function 81 Verifier::Run(data->GetCircuit()); in Run() 88 bool Run(PassData* data) in Run() function 90 data->SetScheduleResult(Scheduler::Run(data->GetCircuit())); in Run() 97 bool Run(PassData* data) in Run() function
|
D | stub_aot_compiler.cpp | 68 bool Run(StubPassData *data) in Run() function in panda::ecmascript::kungfu::StubBuildCircuitPass 83 bool Run(StubPassData *data, int index) in Run() function in panda::ecmascript::kungfu::StubLLVMIRGenPass 88 … codegen.Run(data->GetCircuit(), data->GetScheduleResult(), index, data->GetCompilationConfig()); in Run()
|
D | code_generator.h | 36 … void Run(Circuit *circuit, const ControlFlowGraph &graph, int index, const CompilationConfig *cfg) in Run() function
|
D | scheduler.h | 33 static ControlFlowGraph Run(const Circuit *circuit);
|
D | verifier.h | 52 static bool Run(const Circuit *circuit);
|
/ark/js_runtime/ecmascript/compiler/tests/ |
D | stub_tests.cpp | 91 auto cfg = Scheduler::Run(&netOfGates); in HWTEST_F_L0() 96 assembler.Run(); in HWTEST_F_L0() 113 auto cfg = Scheduler::Run(&netOfGates); in HWTEST_F_L0() 118 assembler.Run(); in HWTEST_F_L0() 137 auto cfg = Scheduler::Run(&netOfGates); in HWTEST_F_L0() 142 assembler.Run(); in HWTEST_F_L0() 162 auto cfg = Scheduler::Run(&netOfGates); in HWTEST_F_L0() 167 assembler.Run(); in HWTEST_F_L0() 194 auto cfg = Scheduler::Run(&netOfGates); in HWTEST_F_L0() 199 assembler.Run(); in HWTEST_F_L0() [all …]
|
/ark/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;
|
/ark/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 with enabled gc?" 38 FULL_DOCS "Run with enabled gc?") 41 BRIEF_DOCS "Run in default mode?" 42 FULL_DOCS "Run in default mode?") 69 # * 4. Run with interpreter (without compiler at all)? 71 # * 6. Run in default mode?
|
/ark/js_runtime/ecmascript/platform/ |
D | runner.cpp | 25 … std::unique_ptr<std::thread> thread = std::make_unique<std::thread>(&Runner::Run, this, i + 1); in Runner() 56 void Runner::Run(uint32_t threadId) in Run() function in panda::ecmascript::Runner 60 task->Run(threadId); in Run()
|
D | task.h | 26 virtual bool Run(uint32_t threadIndex) = 0;
|
D | runner.h | 62 void Run(uint32_t threadId);
|
/ark/ts2abc/test262/ |
D | README.md | 13 ## 2 Run test cases 32 --es51 Run test262 ES5.1 version 34 Run test262 - ES2015. all: Contains all use cases for 37 --esnext Run test262 - ES.next. 42 --threads THREADS Run this many tests in parallel. Note that the browser 53 ### 2.2 Run all the test cases 59 ### 2.3 Run `es51` related test cases 67 ### 2.4 Run `es2015` related test cases 77 ### 2.5 Run single test case 83 ### 2.6 Run all the test cases under specified directory [all …]
|
/ark/js_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: 24 **NOTE**: Run the compilation commands in the project root directory. 34 Run the **hello-world.js** file. 42 2. Run the **hello-world.abc** file. 49 2. Run **ark\_js\_vm**. 65 Run the following command to export the result to the **output** file: 112 1. Run the following command to compile ARK runtime: 118 2. Run the following command to compile the ARK frontend: 124 **NOTE**: Run the compilation commands in the project root directory. [all …]
|
/ark/js_runtime/ecmascript/hprof/ |
D | heap_tracker.h | 43 thread_ = std::thread(&HeapTrackerSample::Run, this); in Start() 54 void Run();
|
D | heap_tracker.cpp | 23 void HeapTrackerSample::Run() in Run() function in panda::ecmascript::HeapTrackerSample
|
/ark/runtime_core/tests/cts-generator/ |
D | README.md | 47 …-a, --run-all Run all tests, ignore "runner-option: ignore" tag in test definit… 48 …--run-ignored Run ignored tests, which have "runner-option: ignore" tag in test def… 54 --prlimit='OPTS' Run panda via prlimit with options 89 Run all tests marked with bugid 1316. 152 1. Run all tests using regular build or using `tests` or `cts-geerator` targets. 153 2. Run tests related to bug.
|
/ark/js_runtime/ecmascript/mem/ |
D | parallel_evacuation.h | 52 bool Run(uint32_t threadIndex) override; 67 bool Run(uint32_t threadIndex) override;
|
D | concurrent_marker.h | 62 bool Run(uint32_t threadId) override;
|
D | concurrent_sweeper.h | 49 bool Run(uint32_t threadIndex) override;
|
/ark/js_runtime/ecmascript/cpu_profiler/ |
D | profile_processor.h | 35 bool Run(uint32_t threadIndex) override;
|
/ark/js_runtime/ecmascript/tooling/test/utils/ |
D | test_entry.cpp | 33 g_hooks->Run(); in StartDebuggerImpl()
|
/ark/runtime_core/runtime/ |
D | gc_task.cpp | 22 void GCTask::Run(mem::GC &gc) in Run() function in panda::GCTask
|
/ark/runtime_core/cmake/ |
D | README.md | 22 ## Run tests 61 Run `make help | grep clang` to see all possible clang-[format|style] targets.
|
/ark/runtime_core/runtime/include/ |
D | gc_task.h | 63 virtual void Run(mem::GC &gc);
|
/ark/ts2abc/ts2panda/ |
D | README.md | 13 ### Run a case
|