Home
last modified time | relevance | path

Searched refs:getSymbolAddress (Results 1 – 23 of 23) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/
DX86MachObjectWriter.cpp196 Value += Writer->getSymbolAddress(*A, Layout) - in RecordX86_64Relocation()
197 (!A_Base ? 0 : Writer->getSymbolAddress(*A_Base, Layout)); in RecordX86_64Relocation()
198 Value -= Writer->getSymbolAddress(*B, Layout) - in RecordX86_64Relocation()
199 (!B_Base ? 0 : Writer->getSymbolAddress(*B_Base, Layout)); in RecordX86_64Relocation()
247 Value += Writer->getSymbolAddress(*Symbol, Layout); in RecordX86_64Relocation()
387 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in recordScatteredRelocation()
410 Value2 = Writer->getSymbolAddress(*SB, Layout); in recordScatteredRelocation()
488 Writer->getSymbolAddress(SymB->getSymbol(), Layout) + in recordTLVPRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp284 Value += (!A->getFragment() ? 0 : Writer->getSymbolAddress(*A, Layout)) - in recordRelocation()
285 (!A_Base || !A_Base->getFragment() ? 0 : Writer->getSymbolAddress( in recordRelocation()
287 Value -= (!B->getFragment() ? 0 : Writer->getSymbolAddress(*B, Layout)) - in recordRelocation()
288 (!B_Base || !B_Base->getFragment() ? 0 : Writer->getSymbolAddress( in recordRelocation()
358 Value += Writer->getSymbolAddress(*Symbol, Layout); in recordRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DRTDyldMemoryManager.h85 virtual uint64_t getSymbolAddress(const std::string &Name) { in getSymbolAddress() function
101 return JITSymbol(getSymbolAddress(Name), JITSymbolFlags::Exported); in findSymbol()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h325 uint64_t getSymbolAddress(StringRef Name) { in getSymbolAddress() function
346 return getSymbolAddress(Name); in getGlobalValueAddress()
350 return getSymbolAddress(Name); in getFunctionAddress()
354 uint64_t FAddr = getSymbolAddress(F->getName()); in getPointerToFunction()
360 uint64_t Addr = getSymbolAddress(Name);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp170 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in RecordARMScatteredHalfRelocation()
187 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredHalfRelocation()
284 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in RecordARMScatteredRelocation()
302 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMachObjectWriter.cpp87 uint64_t MachObjectWriter::getSymbolAddress(const MCSymbol &S, in getSymbolAddress() function in MachObjectWriter
110 Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout); in getSymbolAddress()
112 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout); in getSymbolAddress()
383 Address = getSymbolAddress(OrigSymbol, Layout); in writeNlist()
979 uint64_t Start = getSymbolAddress(*Data->Start, Layout); in writeObject()
982 End = getSymbolAddress(*Data->End, Layout); in writeObject()
DMCLinkerOptimizationHint.cpp33 encodeULEB128(ObjWriter.getSymbolAddress(*Arg, Layout), OutStream); in emit_impl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp212 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in recordScatteredRelocation()
225 Value2 = Writer->getSymbolAddress(*SB, Layout); in recordScatteredRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp316 uint64_t MCJIT::getSymbolAddress(const std::string &Name, in getSymbolAddress() function in MCJIT
392 uint64_t Result = getSymbolAddress(Name, false); in getGlobalValueAddress()
400 uint64_t Result = getSymbolAddress(Name, true); in getFunctionAddress()
DMCJIT.h322 uint64_t getSymbolAddress(const std::string &Name,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DObjectFile.h246 virtual Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const = 0;
382 return getObject()->getSymbolAddress(getRawDataRefImpl()); in getAddress()
DXCOFFObjectFile.h257 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
DWasm.h164 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
DELFObjectFile.h260 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
515 ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb) const { in getSymbolAddress() function
DMachO.h286 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
DCOFF.h895 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRTDyldMemoryManager.cpp292 uint64_t Addr = getSymbolAddress(Name); in getPointerToNamedFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCMachObjectWriter.h154 uint64_t getSymbolAddress(const MCSymbol &S, const MCAsmLayout &Layout) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DXCOFFObjectFile.cpp193 Expected<uint64_t> XCOFFObjectFile::getSymbolAddress(DataRefImpl Symb) const { in getSymbolAddress() function in llvm::object::XCOFFObjectFile
DCOFFObjectFile.cpp168 Expected<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const { in getSymbolAddress() function in COFFObjectFile
DWasmObjectFile.cpp1297 Expected<uint64_t> WasmObjectFile::getSymbolAddress(DataRefImpl Symb) const { in getSymbolAddress() function in WasmObjectFile
DMachOObjectFile.cpp1802 Expected<uint64_t> MachOObjectFile::getSymbolAddress(DataRefImpl Sym) const { in getSymbolAddress() function in MachOObjectFile
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h576 Expected<JITTargetAddress> getSymbolAddress(StringRef Name) { in getSymbolAddress() function