Searched refs:codeAddr (Results 1 – 13 of 13) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/jit/ |
| D | jit_task.cpp | 302 uintptr_t codeAddr = machineCodeObj->GetFuncAddr(); in InstallCode() local 303 uintptr_t codeAddrEnd = codeAddr + machineCodeObj->GetInstructionsSize(); in InstallCode() 304 … __builtin___clear_cache(reinterpret_cast<char *>(codeAddr), reinterpret_cast<char*>(codeAddrEnd)); in InstallCode() 317 uintptr_t codeAddr = machineCodeObj->GetFuncAddr(); in InstallCodeByCompilerTier() local 320 jsFunction_->SetCompiledFuncEntry(codeAddr, funcEntryDes->isFastCall_); in InstallCodeByCompilerTier() 324 uintptr_t codeAddrEnd = codeAddr + machineCodeObj->GetInstructionsSize(); in InstallCodeByCompilerTier() 326 reinterpret_cast<void*>(codeAddr) <<"--" << reinterpret_cast<void*>(codeAddrEnd); in InstallCodeByCompilerTier()
|
| D | jit.cpp | 372 uintptr_t codeAddr = machineCodeHandle->GetFuncAddr(); in ReuseCompiledFunc() local 374 jsFunction->SetCompiledFuncEntry(codeAddr, funcEntryDes->isFastCall_); in ReuseCompiledFunc()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
| D | aot_file_info.cpp | 70 AOTFileInfo::FuncEntryDes AOTFileInfo::GetFuncEntryDesWithCallsite(uintptr_t codeAddr, uint32_t sta… in GetFuncEntryDesWithCallsite() argument 81 target.codeAddr_ = codeAddr; in GetFuncEntryDesWithCallsite()
|
| D | aot_file_info.h | 154 AOTFileInfo::FuncEntryDes GetFuncEntryDesWithCallsite(uintptr_t codeAddr, uint32_t startIndex,
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | jit_compiler.cpp | 188 …if (memcpy_s(pText, desc.codeSizeAlign, reinterpret_cast<uint8_t*>(desc.codeAddr), desc.codeSize) … in CopyCodeToFort() 195 << std::hex << (uintptr_t)desc.codeAddr << " size: " << desc.codeSize; in CopyCodeToFort() 200 signer, pText, reinterpret_cast<void *>(desc.codeAddr), desc.codeSize); in CopyCodeToFort() 210 …if (memcpy_s(pText, desc.codeSizeAlign, reinterpret_cast<uint8_t*>(desc.codeAddr), desc.codeSize) … in CopyCodeToFort()
|
| D | file_generators.cpp | 754 machineCodeDesc.codeAddr = textAddr; in GetMemoryCodeInfos()
|
| D | interpreter_stub.cpp | 313 …GateRef codeAddr = Load(VariableType::NATIVE_POINTER(), *varMachineCode, … 315 …varRetVal = FastCallOptimized(glue, codeAddr, { glue, sp }); …
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | aot_data.h | 57 AotData(const File *pfile, Graph *graph, AddressType codeAddr, uint64_t *intfInlineCacheIndex, in AotData() argument 67 codeAddress_(codeAddr), in AotData()
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | machine_code.h | 41 uintptr_t codeAddr {0};
|
| D | machine_code.cpp | 37 …if (memcpy_s(pText, desc.codeSizeAlign, reinterpret_cast<uint8_t*>(desc.codeAddr), desc.codeSize) … in MachineCodeCopyToCache()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/ |
| D | optimized_call.cpp | 212 Register codeAddr(X3); in OptimizedCallAndPushArgv() local 218 __ Ldr(codeAddr, MemoryOperand(jsfunc, JSFunction::CODE_ENTRY_OFFSET)); in OptimizedCallAndPushArgv() 264 __ Blr(codeAddr); in OptimizedCallAndPushArgv() 1352 Register codeAddr(X5); in CallOptimized() local 1356 __ Ldr(codeAddr, MemoryOperand(jsfunc, JSFunction::CODE_ENTRY_OFFSET)); in CallOptimized() 1357 __ Br(codeAddr); in CallOptimized()
|
| D | optimized_fast_call.cpp | 102 Register codeAddr(X4); in OptimizedFastCallAndPushArgv() local
|
| /arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
| D | baseline_compiler.cpp | 182 codeDesc.codeAddr = reinterpret_cast<uint64_t>(GetBaselineAssembler().GetBuffer()); in CollectMemoryCodeInfos()
|