Home
last modified time | relevance | path

Searched defs:CodeInfo (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dcode_generator.h28 struct CodeInfo { struct
30 typedef uint8_t *(CodeInfo::*AllocaSectionCallback)(uintptr_t size, size_t alignSize); argument
42 static constexpr size_t REQUIRED_SECS_LIMIT = (1 << 29); // 512M
43 static constexpr size_t UNREQUIRED_SECS_LIMIT = (1 << 28); // 256M
74 CodeInfo(CodeSpaceOnDemand &codeSpaceOnDemand); argument
144 … explicit Assembler(CodeInfo::CodeSpaceOnDemand &codeSpaceOnDemand) : codeInfo_(codeSpaceOnDemand) in Assembler() argument
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackinfo.h84 struct CodeInfo { struct
88 CodeInfo(uintptr_t offset, uintptr_t methodId, uint32_t codeSize) in CodeInfo() argument
/arkcompiler/runtime_core/static_core/runtime/include/
Dcframe.h27 class CodeInfo; variable
83 using CodeInfo = compiler::CodeInfo; variable
Dstack_walker.h86 using CodeInfo = compiler::CodeInfo; variable
/arkcompiler/runtime_core/static_core/compiler/code_info/
Dcode_info.h158 CodeInfo(const void *data, size_t size) in CodeInfo() function
163 explicit CodeInfo(Span<const uint8_t> code) : CodeInfo(code.data()) in CodeInfo() function
168 explicit CodeInfo(Span<uint8_t> code) : CodeInfo(code.data()) in CodeInfo() function
173 explicit CodeInfo(const void *codeEntry) in CodeInfo() function
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
Dllvm_codegen.cpp57 CodeInfo::CodeInfo(CodeSpaceOnDemand &codeSpaceOnDemand) : codeSpaceOnDemand_(codeSpaceOnDemand) in CodeInfo() function in panda::ecmascript::kungfu::CodeInfo