| /freebsd-12.1/contrib/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86MachObjectWriter.cpp | 197 Value += Writer->getSymbolAddress(*A, Layout) - in RecordX86_64Relocation() 198 (!A_Base ? 0 : Writer->getSymbolAddress(*A_Base, Layout)); in RecordX86_64Relocation() 199 Value -= Writer->getSymbolAddress(*B, Layout) - in RecordX86_64Relocation() 200 (!B_Base ? 0 : Writer->getSymbolAddress(*B_Base, Layout)); in RecordX86_64Relocation() 248 Value += Writer->getSymbolAddress(*Symbol, Layout); in RecordX86_64Relocation() 389 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in recordScatteredRelocation() 412 Value2 = Writer->getSymbolAddress(*SB, Layout); in recordScatteredRelocation() 490 Writer->getSymbolAddress(SymB->getSymbol(), Layout) + in recordTLVPRelocation()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64MachObjectWriter.cpp | 285 Value += (!A->getFragment() ? 0 : Writer->getSymbolAddress(*A, Layout)) - in recordRelocation() 286 (!A_Base || !A_Base->getFragment() ? 0 : Writer->getSymbolAddress( in recordRelocation() 288 Value -= (!B->getFragment() ? 0 : Writer->getSymbolAddress(*B, Layout)) - in recordRelocation() 289 (!B_Base || !B_Base->getFragment() ? 0 : Writer->getSymbolAddress( in recordRelocation() 359 Value += Writer->getSymbolAddress(*Symbol, Layout); in recordRelocation()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/ |
| H A D | RTDyldMemoryManager.h | 86 virtual uint64_t getSymbolAddress(const std::string &Name) { in getSymbolAddress() function 102 return JITSymbol(getSymbolAddress(Name), JITSymbolFlags::Exported); in findSymbol()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/ |
| H A D | OrcMCJITReplacement.h | 329 uint64_t getSymbolAddress(StringRef Name) { in getSymbolAddress() function 350 return getSymbolAddress(Name); in getGlobalValueAddress() 354 return getSymbolAddress(Name); in getFunctionAddress() 358 uint64_t FAddr = getSymbolAddress(F->getName()); in getPointerToFunction() 364 uint64_t Addr = getSymbolAddress(Name);
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMachObjectWriter.cpp | 171 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in RecordARMScatteredHalfRelocation() 188 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredHalfRelocation() 285 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in RecordARMScatteredRelocation() 303 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredRelocation()
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCLinkerOptimizationHint.cpp | 34 encodeULEB128(ObjWriter.getSymbolAddress(*Arg, Layout), OutStream); in emit_impl()
|
| H A D | MachObjectWriter.cpp | 86 uint64_t MachObjectWriter::getSymbolAddress(const MCSymbol &S, in getSymbolAddress() function in MachObjectWriter 109 Address += getSymbolAddress(Target.getSymA()->getSymbol(), Layout); in getSymbolAddress() 111 Address += getSymbolAddress(Target.getSymB()->getSymbol(), Layout); in getSymbolAddress() 382 Address = getSymbolAddress(OrigSymbol, Layout); in writeNlist() 962 uint64_t Start = getSymbolAddress(*Data->Start, Layout); in writeObject() 965 End = getSymbolAddress(*Data->End, Layout); in writeObject()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| H A D | PPCMachObjectWriter.cpp | 213 uint32_t Value = Writer->getSymbolAddress(*A, Layout); in recordScatteredRelocation() 226 Value2 = Writer->getSymbolAddress(*SB, Layout); in recordScatteredRelocation()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/MCJIT/ |
| H A D | MCJIT.cpp | 317 uint64_t MCJIT::getSymbolAddress(const std::string &Name, in getSymbolAddress() function in MCJIT 393 uint64_t Result = getSymbolAddress(Name, false); in getGlobalValueAddress() 401 uint64_t Result = getSymbolAddress(Name, true); in getFunctionAddress()
|
| H A D | MCJIT.h | 323 uint64_t getSymbolAddress(const std::string &Name,
|
| /freebsd-12.1/contrib/llvm/include/llvm/Object/ |
| H A D | ObjectFile.h | 225 virtual Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const = 0; 364 return getObject()->getSymbolAddress(getRawDataRefImpl()); in getAddress()
|
| H A D | Wasm.h | 162 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
|
| H A D | ELFObjectFile.h | 237 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override; 480 ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb) const { in getSymbolAddress() function
|
| H A D | MachO.h | 289 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
|
| H A D | COFF.h | 893 Expected<uint64_t> getSymbolAddress(DataRefImpl Symb) const override;
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RTDyldMemoryManager.cpp | 292 uint64_t Addr = getSymbolAddress(Name); in getPointerToNamedFunction()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCMachObjectWriter.h | 153 uint64_t getSymbolAddress(const MCSymbol &S, const MCAsmLayout &Layout) const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/ |
| H A D | IRExecutionUnit.h | 334 uint64_t getSymbolAddress(const std::string &Name) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | IRExecutionUnit.cpp | 1002 IRExecutionUnit::MemoryManager::getSymbolAddress(const std::string &Name) { in getSymbolAddress() function in IRExecutionUnit::MemoryManager 1029 return (void *)getSymbolAddress(Name); in getPointerToNamedFunction()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | OrcRemoteTargetClient.h | 577 Expected<JITTargetAddress> getSymbolAddress(StringRef Name) { in getSymbolAddress() function
|
| /freebsd-12.1/contrib/llvm/tools/lli/ |
| H A D | lli.cpp | 669 if (auto Addr = ExitOnErr(R->getSymbolAddress(Name))) in main()
|
| /freebsd-12.1/contrib/llvm/lib/Object/ |
| H A D | COFFObjectFile.cpp | 169 Expected<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const { in getSymbolAddress() function in COFFObjectFile
|
| H A D | WasmObjectFile.cpp | 1192 Expected<uint64_t> WasmObjectFile::getSymbolAddress(DataRefImpl Symb) const { in getSymbolAddress() function in WasmObjectFile
|
| H A D | MachOObjectFile.cpp | 1758 Expected<uint64_t> MachOObjectFile::getSymbolAddress(DataRefImpl Sym) const { in getSymbolAddress() function in MachOObjectFile
|