Searched refs:codeAddr (Results 1 - 14 of 14) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit_task.cpp | 299 uintptr_t codeAddr = machineCodeObj->GetFuncAddr(); in InstallCode() local 300 uintptr_t codeAddrEnd = codeAddr + machineCodeObj->GetInstructionsSize(); in InstallCode() 301 __builtin___clear_cache(reinterpret_cast<char *>(codeAddr), reinterpret_cast<char*>(codeAddrEnd)); in InstallCode() 314 uintptr_t codeAddr = machineCodeObj->GetFuncAddr(); in InstallCodeByCompilerTier() local 316 jsFunction_->SetCompiledFuncEntry(codeAddr, machineCodeObj->GetIsFastCall()); in InstallCodeByCompilerTier() 320 uintptr_t codeAddrEnd = codeAddr + machineCodeObj->GetInstructionsSize(); in InstallCodeByCompilerTier() 322 reinterpret_cast<void*>(codeAddr) <<"--" << reinterpret_cast<void*>(codeAddrEnd); in InstallCodeByCompilerTier()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | jit_compiler.cpp | 187 if (memcpy_s(pText, desc.codeSizeAlign, reinterpret_cast<uint8_t*>(desc.codeAddr), desc.codeSize) != EOK) { in CopyCodeToFort() 194 << std::hex << (uintptr_t)desc.codeAddr << " size: " << desc.codeSize; in CopyCodeToFort() 199 signer, pText, reinterpret_cast<void *>(desc.codeAddr), desc.codeSize); in CopyCodeToFort() 209 if (memcpy_s(pText, desc.codeSizeAlign, reinterpret_cast<uint8_t*>(desc.codeAddr), desc.codeSize) != EOK) { in CopyCodeToFort()
|
H A D | file_generators.cpp | 754 machineCodeDesc.codeAddr = textAddr; in GetMemoryCodeInfos()
|
H A D | stub_builder.h | 810 GateRef GetFuncEntryDes(GateRef glue, GateRef machineCode, GateRef codeAddr);
|
H A D | stub_builder.cpp | 10301 GateRef codeAddr = Load(VariableType::NATIVE_POINTER(), machineCode, in TryToJitReuseCompiledFunc() local 10303 ASSERT(IntPtrNotEqual(codeAddr, IntPtr(0))); in TryToJitReuseCompiledFunc() 10305 SetCompiledFuncEntry(glue, jsFunc, codeAddr, ZExtInt1ToInt32(isFastCall)); in TryToJitReuseCompiledFunc()
|
H A D | interpreter_stub.cpp | 313 GateRef codeAddr = Load(VariableType::NATIVE_POINTER(), *varMachineCode, \
315 varRetVal = FastCallOptimized(glue, codeAddr, { glue, sp }); \
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
H A D | aot_file_info.cpp | 70 AOTFileInfo::FuncEntryDes AOTFileInfo::GetFuncEntryDesWithCallsite(uintptr_t codeAddr, uint32_t startIndex, in GetFuncEntryDesWithCallsite() argument 81 target.codeAddr_ = codeAddr; in GetFuncEntryDesWithCallsite()
|
H A D | aot_file_info.h | 154 AOTFileInfo::FuncEntryDes GetFuncEntryDesWithCallsite(uintptr_t codeAddr, uint32_t startIndex,
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | aot_data.h | 61 AddressType codeAddr; member 71 codeAddress_(args.codeAddr), in AotData()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | machine_code.cpp | 40 if (memcpy_s(pText, desc.codeSizeAlign, reinterpret_cast<uint8_t*>(desc.codeAddr), desc.codeSize) != EOK) { in MachineCodeCopyToCache() 99 uint64_t codeAddr = funcEntry->codeAddr_ + in SetNonText() local 101 SetFuncAddr(codeAddr); in SetNonText()
|
H A D | machine_code.h | 42 uintptr_t codeAddr {0};
|
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/ |
H A D | optimized_call.cpp | 212 Register codeAddr(X3); in OptimizedCallAndPushArgv() 218 __ Ldr(codeAddr, MemoryOperand(jsfunc, JSFunction::CODE_ENTRY_OFFSET)); in OptimizedCallAndPushArgv() 264 __ Blr(codeAddr); in OptimizedCallAndPushArgv() 1329 Register codeAddr(X5); in CallOptimized() 1333 __ Ldr(codeAddr, MemoryOperand(jsfunc, JSFunction::CODE_ENTRY_OFFSET)); in CallOptimized() 1334 __ Br(codeAddr); in CallOptimized()
|
H A D | optimized_fast_call.cpp | 68 // uintptr_t codeAddr, uintptr_t argv)
102 Register codeAddr(X4);
in OptimizedFastCallAndPushArgv()
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_compiler.cpp | 182 codeDesc.codeAddr = reinterpret_cast<uint64_t>(GetBaselineAssembler().GetBuffer()); in CollectMemoryCodeInfos()
|
Completed in 45 milliseconds