Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp198 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()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_misc.cpp211 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) { in registerEHFrames() argument
212 mgr()->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
219 virtual void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) { in deregisterEHFrames() argument
220 mgr()->deregisterEHFrames(Addr, LoadAddr, Size); in deregisterEHFrames()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp95 uint64_t LoadAddr = S.getLoadAddress(); in dumpSectionMemory() local
97 unsigned StartPadding = LoadAddr & (ColsPerRow - 1); in dumpSectionMemory()
102 LoadAddr & ~(uint64_t)(ColsPerRow - 1)) << ":"; in dumpSectionMemory()
108 if ((LoadAddr & (ColsPerRow - 1)) == 0) in dumpSectionMemory()
109 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":"; in dumpSectionMemory()
114 ++LoadAddr; in dumpSectionMemory()
DRTDyldMemoryManager.cpp137 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
DRuntimeDyldChecker.cpp527 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr() local
531 if (LoadAddr == 0) in evalLoadExpr()
535 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
DRuntimeDyld.h139 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp1329 Value *LoadAddr; in removeBitcastsFromLoadStoreOnMinMax() local
1330 if (!match(SI.getValueOperand(), m_Load(m_BitCast(m_Value(LoadAddr))))) in removeBitcastsFromLoadStoreOnMinMax()
1336 if (!isMinMaxWithLoads(LoadAddr, CmpLoadTy)) in removeBitcastsFromLoadStoreOnMinMax()
1350 if (!all_of(LI->users(), [LI, LoadAddr](User *U) { in removeBitcastsFromLoadStoreOnMinMax()
1353 peekThroughBitcast(SI->getPointerOperand()) != LoadAddr && in removeBitcastsFromLoadStoreOnMinMax()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h99 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
101 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h152 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
154 UnfinalizedEHFrames.push_back({LoadAddr, Size}); in registerEHFrames()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULegalizerInfo.cpp1243 Register LoadAddr; in getSegmentAperture() local
1245 B.materializePtrAdd(LoadAddr, QueuePtr, LLT::scalar(64), StructOffset); in getSegmentAperture()
1246 B.buildLoad(LoadResult, LoadAddr, *MMO); in getSegmentAperture()