| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIASession.cpp | 198 ULONGLONG LoadAddr = 0; in findSymbolByAddress() local 199 if (S_OK != Session->get_loadAddress(&LoadAddr)) in findSymbolByAddress() 201 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findSymbolByAddress() 253 ULONGLONG LoadAddr = 0; in findLineNumbersByAddress() local 254 if (S_OK != Session->get_loadAddress(&LoadAddr)) in findLineNumbersByAddress() 256 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findLineNumbersByAddress()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | EPCGenericRTDyldMemoryManager.cpp | 161 uint64_t LoadAddr, in registerEHFrames() argument 165 << formatv("[ {0:x} {1:x} ]", LoadAddr, LoadAddr + Size) << "\n"; in registerEHFrames() 172 ExecutorAddr LA(LoadAddr); in registerEHFrames()
|
| /openbsd-src/gnu/llvm/llvm/tools/lli/ |
| H A D | ForwardingMemoryManager.h | 58 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 60 MemMgr->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/ |
| H A D | RTDyldMemoryManager.h | 74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
|
| H A D | RuntimeDyld.h | 156 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rtdyld/ |
| H A D | llvm-rtdyld.cpp | 245 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 715 auto LoadAddr = Dyld.getSectionLoadAddress((*Tmp)->SectionID); in remapSectionsAndSymbols() local 717 if (LoadAddr != static_cast<uint64_t>( in remapSectionsAndSymbols() 722 if (LoadAddr != 0) in remapSectionsAndSymbols() 723 AlreadyAllocated[LoadAddr] = (*Tmp)->MB.allocatedSize(); in remapSectionsAndSymbols()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyld.cpp | 93 uint64_t LoadAddr = S.getLoadAddress(); in dumpSectionMemory() local 95 unsigned StartPadding = LoadAddr & (ColsPerRow - 1); in dumpSectionMemory() 100 LoadAddr & ~(uint64_t)(ColsPerRow - 1)) << ":"; in dumpSectionMemory() 106 if ((LoadAddr & (ColsPerRow - 1)) == 0) in dumpSectionMemory() 107 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":"; in dumpSectionMemory() 112 ++LoadAddr; in dumpSectionMemory()
|
| H A D | RTDyldMemoryManager.cpp | 129 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
|
| H A D | RuntimeDyldChecker.cpp | 551 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr() local 555 if (LoadAddr == 0) in evalLoadExpr() 559 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | EPCGenericRTDyldMemoryManager.h | 69 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 1381 Value *LoadAddr; in removeBitcastsFromLoadStoreOnMinMax() local 1382 if (!match(SI.getValueOperand(), m_Load(m_BitCast(m_Value(LoadAddr))))) in removeBitcastsFromLoadStoreOnMinMax() 1388 if (!isMinMaxWithLoads(LoadAddr, CmpLoadTy)) in removeBitcastsFromLoadStoreOnMinMax() 1402 if (!all_of(LI->users(), [LI, LoadAddr](User *U) { in removeBitcastsFromLoadStoreOnMinMax() 1406 LoadAddr && in removeBitcastsFromLoadStoreOnMinMax()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Expression/ |
| H A D | IRExecutionUnit.h | 298 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULegalizerInfo.cpp | 1855 Register LoadAddr = MRI.createGenericVirtualRegister( in getSegmentAperture() local 1880 B.buildPtrAdd(LoadAddr, KernargPtrReg, in getSegmentAperture() 1883 return B.buildLoad(S32, LoadAddr, *MMO).getReg(0); in getSegmentAperture() 1902 B.buildPtrAdd(LoadAddr, QueuePtr, in getSegmentAperture() 1904 return B.buildLoad(S32, LoadAddr, *MMO).getReg(0); in getSegmentAperture() 5338 Register LoadAddr = MRI.createGenericVirtualRegister( in legalizeTrapHsaQueuePtr() local 5340 B.buildPtrAdd(LoadAddr, KernargPtrReg, in legalizeTrapHsaQueuePtr() 5343 Register Temp = B.buildLoad(S64, LoadAddr, *MMO).getReg(0); in legalizeTrapHsaQueuePtr()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 6156 Address LoadAddr = in EmitAAPCSVAArg() local 6158 LoadAddr = CGF.Builder.CreateElementBitCast(LoadAddr, BaseTy); in EmitAAPCSVAArg() 6162 llvm::Value *Elem = CGF.Builder.CreateLoad(LoadAddr); in EmitAAPCSVAArg()
|
| H A D | CGBuiltin.cpp | 7897 Value *LoadAddr = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local 7904 LoadAddr = Builder.CreateBitCast(LoadAddr, PtrTy); in EmitARMBuiltinExpr() 7910 CallInst *Val = Builder.CreateCall(F, LoadAddr, "ldrex"); in EmitARMBuiltinExpr() 9926 Value *LoadAddr = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local 9933 LoadAddr = Builder.CreateBitCast(LoadAddr, PtrTy); in EmitAArch64BuiltinExpr() 9940 CallInst *Val = Builder.CreateCall(F, LoadAddr, "ldxr"); in EmitAArch64BuiltinExpr()
|