/external/llvm/tools/lli/ |
D | RemoteJITUtils.h | 115 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 117 MemMgr->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames() 120 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, in deregisterEHFrames() argument 122 MemMgr->deregisterEHFrames(Addr, LoadAddr, Size); in deregisterEHFrames()
|
/external/llvm-project/llvm/unittests/DebugInfo/PDB/ |
D | NativeSessionTest.cpp | 57 uint64_t LoadAddr = S->getLoadAddress(); in TEST() local 60 ASSERT_TRUE(S->addressForVA(LoadAddr + 5000, Section, Offset)); in TEST() 72 ASSERT_TRUE(S->addressForVA(LoadAddr + 100000, Section, Offset)); in TEST()
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RTDyldMemoryManager.h | 70 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override { in registerEHFrames() argument 74 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override { in deregisterEHFrames() argument
|
D | RuntimeDyld.h | 157 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, 159 virtual void deregisterEHFrames(uint8_t *addr, uint64_t LoadAddr,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/ |
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()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
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()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_misc.cpp | 208 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) { in registerEHFrames() argument 209 mgr()->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames() 216 virtual void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) { in deregisterEHFrames() argument 217 mgr()->deregisterEHFrames(Addr, LoadAddr, Size); in deregisterEHFrames()
|
/external/llvm-project/llvm/tools/lli/ |
D | RemoteJITUtils.h | 68 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 70 MemMgr->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.h | 70 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 72 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames() 75 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, in deregisterEHFrames() argument 77 return ClientMM->deregisterEHFrames(Addr, LoadAddr, Size); in deregisterEHFrames()
|
/external/llvm/lib/DebugInfo/PDB/DIA/ |
D | DIASession.cpp | 167 ULONGLONG LoadAddr = 0; in findSymbolByAddress() local 168 if (S_OK != Session->get_loadAddress(&LoadAddr)) in findSymbolByAddress() 170 DWORD RVA = static_cast<DWORD>(Address - LoadAddr); in findSymbolByAddress()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 91 uint64_t LoadAddr = S.getLoadAddress(); in dumpSectionMemory() local 93 unsigned StartPadding = LoadAddr & (ColsPerRow - 1); in dumpSectionMemory() 98 LoadAddr & ~(uint64_t)(ColsPerRow - 1)) << ":"; in dumpSectionMemory() 104 if ((LoadAddr & (ColsPerRow - 1)) == 0) in dumpSectionMemory() 105 dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr) << ":"; in dumpSectionMemory() 110 ++LoadAddr; in dumpSectionMemory()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/ |
D | RTDyldMemoryManager.h | 74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
|
D | RuntimeDyld.h | 139 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | RTDyldMemoryManager.h | 74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
|
D | RuntimeDyld.h | 139 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
|
/external/llvm-project/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 241 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 664 auto LoadAddr = Dyld.getSectionLoadAddress((*Tmp)->SectionID); in remapSectionsAndSymbols() local 666 if (LoadAddr != static_cast<uint64_t>( in remapSectionsAndSymbols() 671 if (LoadAddr != 0) in remapSectionsAndSymbols() 672 AlreadyAllocated[LoadAddr] = (*Tmp)->MB.allocatedSize(); in remapSectionsAndSymbols()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 95 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()
|
D | RTDyldMemoryManager.cpp | 137 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
|
D | RuntimeDyldChecker.cpp | 527 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr() local 531 if (LoadAddr == 0) in evalLoadExpr() 535 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()
|
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 95 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()
|
D | RTDyldMemoryManager.cpp | 129 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | OrcRemoteTargetClient.h | 169 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 172 std::make_pair(LoadAddr, static_cast<uint32_t>(Size))); in registerEHFrames() 175 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, in deregisterEHFrames() argument 177 auto Err = Client.deregisterEHFrames(LoadAddr, Size); in deregisterEHFrames()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 1286 Value *LoadAddr; in removeBitcastsFromLoadStoreOnMinMax() local 1287 if (!match(SI.getValueOperand(), m_Load(m_BitCast(m_Value(LoadAddr))))) in removeBitcastsFromLoadStoreOnMinMax() 1293 if (!isMinMaxWithLoads(LoadAddr, CmpLoadTy)) in removeBitcastsFromLoadStoreOnMinMax() 1307 if (!all_of(LI->users(), [LI, LoadAddr](User *U) { in removeBitcastsFromLoadStoreOnMinMax() 1311 LoadAddr && in removeBitcastsFromLoadStoreOnMinMax()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 1329 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()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.h | 99 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument 101 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
|