Home
last modified time | relevance | path

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

123

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ExecutionEngine/Orc/Shared/
DVTuneSharedStructs.h29 ExecutorAddr LoadAddr; member
63 MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in size()
69 IB, MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in deserialize()
75 OB, MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in serialize()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ExecutionEngine/Orc/Shared/
DVTuneSharedStructs.h29 ExecutorAddr LoadAddr; member
63 MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in size()
69 IB, MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in deserialize()
75 OB, MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in serialize()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ExecutionEngine/Orc/Shared/
DVTuneSharedStructs.h33 ExecutorAddr LoadAddr; member
67 MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in size()
73 IB, MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in deserialize()
79 OB, MI.LineTable, MI.LoadAddr, MI.LoadSize, MI.MethodID, MI.NameSI, in serialize()
/aosp_15_r20/external/llvm/tools/lli/
H A DRemoteJITUtils.h115 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
H A 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/PDB/DIA/
H A 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericRTDyldMemoryManager.cpp161 uint64_t LoadAddr, in registerEHFrames() argument
165 << formatv("[ {0:x} {1:x} ]", LoadAddr, LoadAddr + Size) << "\n"; in registerEHFrames()
172 ExecutorAddr LA(LoadAddr); in registerEHFrames()
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp208 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()
/aosp_15_r20/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h70 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()
/aosp_15_r20/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp91 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()
/aosp_15_r20/external/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h70 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
H A DRuntimeDyld.h157 virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
159 virtual void deregisterEHFrames(uint8_t *addr, uint64_t LoadAddr,
/aosp_15_r20/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp167 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp93 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 DRuntimeDyldChecker.cpp551 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr() local
555 if (LoadAddr == 0) in evalLoadExpr()
559 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
H A 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()
H A DRuntimeDyldChecker.cpp527 uint64_t LoadAddr = LoadAddrExprResult.getValue(); in evalLoadExpr() local
531 if (LoadAddr == 0) in evalLoadExpr()
535 EvalResult(Checker.readMemoryAtAddr(LoadAddr, ReadSize)), in evalLoadExpr()
/aosp_15_r20/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetClient.h169 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp1381 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()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h99 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames() argument
101 return ClientMM->registerEHFrames(Addr, LoadAddr, Size); in registerEHFrames()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h74 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) override;

123