Home
last modified time | relevance | path

Searched refs:codeAddr (Results 1 - 14 of 14) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jit/
H A Djit_task.cpp299 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 Djit_compiler.cpp187 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 Dfile_generators.cpp754 machineCodeDesc.codeAddr = textAddr; in GetMemoryCodeInfos()
H A Dstub_builder.h810 GateRef GetFuncEntryDes(GateRef glue, GateRef machineCode, GateRef codeAddr);
H A Dstub_builder.cpp10301 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 Dinterpreter_stub.cpp313 GateRef codeAddr = Load(VariableType::NATIVE_POINTER(), *varMachineCode, \
315 varRetVal = FastCallOptimized(glue, codeAddr, { glue, sp }); \
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
H A Daot_file_info.cpp70 AOTFileInfo::FuncEntryDes AOTFileInfo::GetFuncEntryDesWithCallsite(uintptr_t codeAddr, uint32_t startIndex, in GetFuncEntryDesWithCallsite() argument
81 target.codeAddr_ = codeAddr; in GetFuncEntryDesWithCallsite()
H A Daot_file_info.h154 AOTFileInfo::FuncEntryDes GetFuncEntryDesWithCallsite(uintptr_t codeAddr, uint32_t startIndex,
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Daot_data.h61 AddressType codeAddr; member
71 codeAddress_(args.codeAddr), in AotData()
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dmachine_code.cpp40 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 Dmachine_code.h42 uintptr_t codeAddr {0};
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
H A Doptimized_call.cpp212 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 Doptimized_fast_call.cpp68 // uintptr_t codeAddr, uintptr_t argv)
102 Register codeAddr(X4); in OptimizedFastCallAndPushArgv()
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
H A Dbaseline_compiler.cpp182 codeDesc.codeAddr = reinterpret_cast<uint64_t>(GetBaselineAssembler().GetBuffer()); in CollectMemoryCodeInfos()

Completed in 45 milliseconds