Home
last modified time | relevance | path

Searched refs:LoadAddr (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp207 ULONGLONG LoadAddr = 0; in findSymbolByAddress() local
208 if (S_OK != Session->get_loadAddress(&LoadAddr)) in findSymbolByAddress()
210 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findSymbolByAddress()
262 ULONGLONG LoadAddr = 0; in findLineNumbersByAddress() local
263 if (S_OK != Session->get_loadAddress(&LoadAddr)) in findLineNumbersByAddress()
265 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findLineNumbersByAddress()
/freebsd-12.1/contrib/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp177 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
580 auto LoadAddr = Checker.getSectionLoadAddress(Tmp->first); in remapSectionsAndSymbols() local
582 if (LoadAddr && in remapSectionsAndSymbols()
583 *LoadAddr != static_cast<uint64_t>( in remapSectionsAndSymbols()
588 if (*LoadAddr != 0) in remapSectionsAndSymbols()
589 AlreadyAllocated[*LoadAddr] = Tmp->second; in remapSectionsAndSymbols()
/freebsd-12.1/contrib/llvm/tools/lli/
H A DRemoteJITUtils.h116 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
118 MemMgr->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp96 uint64_t LoadAddr = S.getLoadAddress(); in dumpSectionMemory() local
98 unsigned StartPadding = LoadAddr & (ColsPerRow - 1); in dumpSectionMemory()
103 LoadAddr & ~(uint64_t)(ColsPerRow - 1)) << ":"; in dumpSectionMemory()
109 if ((LoadAddr & (ColsPerRow - 1)) == 0) in dumpSectionMemory()
110 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":"; in dumpSectionMemory()
115 ++LoadAddr; in dumpSectionMemory()
H A DRTDyldMemoryManager.cpp137 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
H A DRuntimeDyldChecker.cpp535 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr() local
538 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h75 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
H A DRuntimeDyld.h138 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1358 Value *LoadAddr; in removeBitcastsFromLoadStoreOnMinMax() local
1359 if (!match(SI.getValueOperand(), m_Load(m_BitCast(m_Value(LoadAddr))))) in removeBitcastsFromLoadStoreOnMinMax()
1364 if (!isMinMaxWithLoads(LoadAddr)) in removeBitcastsFromLoadStoreOnMinMax()
1367 if (!all_of(LI->users(), [LI, LoadAddr](User *U) { in removeBitcastsFromLoadStoreOnMinMax()
1370 peekThroughBitcast(SI->getPointerOperand()) != LoadAddr && in removeBitcastsFromLoadStoreOnMinMax()
1377 IC, *LI, LoadAddr->getType()->getPointerElementType()); in removeBitcastsFromLoadStoreOnMinMax()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h100 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
102 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h331 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetClient.h153 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
155 UnfinalizedEHFrames.push_back({LoadAddr, Size}); in registerEHFrames()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp5995 Value *LoadAddr = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local
6001 LoadAddr = Builder.CreateBitCast(LoadAddr, PtrTy); in EmitARMBuiltinExpr()
6007 Value *Val = Builder.CreateCall(F, LoadAddr, "ldrex"); in EmitARMBuiltinExpr()
6875 Value *LoadAddr = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local
6881 LoadAddr = Builder.CreateBitCast(LoadAddr, PtrTy); in EmitAArch64BuiltinExpr()
6887 Value *Val = Builder.CreateCall(F, LoadAddr, "ldxr"); in EmitAArch64BuiltinExpr()
H A DTargetInfo.cpp5425 Address LoadAddr = in EmitAAPCSVAArg() local
5427 LoadAddr = CGF.Builder.CreateElementBitCast(LoadAddr, BaseTy); in EmitAAPCSVAArg()
5432 llvm::Value *Elem = CGF.Builder.CreateLoad(LoadAddr); in EmitAAPCSVAArg()