Home
last modified time | relevance | path

Searched full:compiled (Results 1 – 24 of 24) sorted by relevance

/ark/runtime_core/docs/
Druntime-compiled_code-interaction.md1 # Interaction of compiled code and the runtime
5 Compiled code and Panda runtime interact with each other during execution. This document describes …
8 * Structure of compiled code stack frames and stack traversing
9 * Transition from the interpreter to compiled code and vice versa
22 `panda::CompilerInterface::CompileMethodSync` for compilation. When a function is compiled, the com…
27 Compiled code of a managed function must accept one extra argument: the pointer to `panda::Method` …
41 `panda::ManagedThread` has the following fields that compiled code may use:
48 | stack_frame_kind_ | StackFrameKind | A kind of the current stack frame (compiled code o…
50 ## Access to `panda::ManagedThread` from compiled code
52 must contain a valid pointer to `panda::ManagedThread` on entry to each compiled function.
[all …]
Dglossary.md12 compilation" are used to indicate that the source code or bytecode is compiled before actual
25 compilation" are used to indicate that the source code or bytecode is compiled during program
Dmemory-management-SW-requirements.md13 GC used to recycle memory allocated as result of application work (objects, compiled code etc).
Dmemory-management.md511 | compiled/jitted code | ------>
516 | compiled/jitted code | ------>
/ark/js_runtime/ecmascript/compiler/
Dstub_aot_options.yaml33 - name: compiled-stubs
39 # specify single stub: xxx/ark_stub_opt --compiled-stubs=FastAdd
40 # specify multiple stubs: xxx/ark_stub_opt --compiled-stubs=FastAddFastSubFastMulFastDiv
/ark/runtime_core/libpandabase/events/
Devents.yaml98 enum: [compiled, failed, dropped, failed_single_impl]
136 enum: [interp, compiled, inlined]
147 enum: [interp, compiled, inlined]
/ark/ts2abc/test262/
Dharness.patch131 - process.stdout.write(`\nSaved compiled passed test as ${test.savedTestPath}\n`);
132 + // process.stdout.write(`\nSaved compiled passed test as ${test.savedTestPath}\n`);
154 - process.stdout.write(`Saved compiled failed test as ${test.savedTestPath}\n`);
155 + // process.stdout.write(`Saved compiled failed test as ${test.savedTestPath}\n`);
206 fs.writeFileSync(savedTestPath, test.compiled);
/ark/ts2abc/ts2panda/src/base/
Dproperties.ts34 private compiled: boolean = false; property in Property
46 this.compiled = true;
54 return this.compiled;
/ark/runtime_core/libpandabase/mem/
Dmem_config.h85 static size_t code_pool_size; // Pool size used for compiled code storage
Dspace.h32 SPACE_TYPE_CODE, // Space for compiled code
/ark/runtime_core/tests/cts-generator/runner/reporters/
Dtest_reporter.rb82 @logger.log 1, "Test is compiled, but should be rejected #{@pa_file}"
Djtr_reporter.rb108 @status = "Failed. Test is compiled, but should be rejected."
/ark/runtime_core/runtime/
Doptions.yaml84 description: Threshold for "hotness" counter of the method after that it will be compiled
334 description: The limit for compiled code size.
Dstack_walker.cpp343 // Compiled code -> C2I -> InitializeClass -> call clinit -> I2C -> compiled code for clinit in IsCompilerBoundFrame()
481 os << " (compiled" << (GetCFrame().IsOsr() ? "/osr" : "") << ": npc=" << GetNativePc() in DumpFrame()
/ark/runtime_core/runtime/include/
Dmethod-inl.h143 …// 2. If caller is compiled method, then we got here from entrypoint. But currently compiler creat… in InvokeInterpretedCode()
220 // we support same frame layout for interpreter and compiled methods. in InvokeImpl()
Dmethod.h65 COMPILED, enumerator
/ark/runtime_core/tests/cts-generator/cts-template/
Dldobj.v.64.yaml259 Incorrect usage cannot be compiled.
314 Incorrect usage cannot be compiled.
Dldobj.64.yaml200 Incorrect usage cannot be compiled.
/ark/js_runtime/
DLICENSE33 not limited to compiled object code, generated documentation,
/ark/runtime_core/cmake/
DClangTidy.cmake80 # This function makes target_name to be co-compiled with clang-tidy.
/ark/runtime_core/
DLICENSE33 not limited to compiled object code, generated documentation,
/ark/ts2abc/
DLICENSE33 not limited to compiled object code, generated documentation,
/ark/runtime_core/runtime/tests/
Dmethod_test.cpp187 // Invoke f called compiled code in TEST_F()
Di2c_bridge_test.cpp90 // Test interpreter -> compiled code bridge