Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MachObjectWriter.cpp188 Value += Writer->getSymbolAddress(&A_SD, Layout) - in RecordX86_64Relocation()
189 (!A_Base ? 0 : Writer->getSymbolAddress(A_Base, Layout)); in RecordX86_64Relocation()
190 Value -= Writer->getSymbolAddress(&B_SD, Layout) - in RecordX86_64Relocation()
191 (!B_Base ? 0 : Writer->getSymbolAddress(B_Base, Layout)); in RecordX86_64Relocation()
251 Value += Writer->getSymbolAddress(&SD, Layout); in RecordX86_64Relocation()
379 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordScatteredRelocation()
399 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordScatteredRelocation()
482 FixedValue = (FixupAddress - Writer->getSymbolAddress(SD_B, Layout) + in RecordTLVPRelocation()
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp245 : Writer->getSymbolAddress(&A_SD, Layout)) - in RecordRelocation()
248 : Writer->getSymbolAddress(A_Base, Layout)); in RecordRelocation()
250 : Writer->getSymbolAddress(&B_SD, Layout)) - in RecordRelocation()
253 : Writer->getSymbolAddress(B_Base, Layout)); in RecordRelocation()
332 Value += Writer->getSymbolAddress(&SD, Layout); in RecordRelocation()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp292 uint64_t MCJIT::getSymbolAddress(const std::string &Name, in getSymbolAddress() function in MCJIT
340 uint64_t Result = getSymbolAddress(Name, false); in getGlobalValueAddress()
348 uint64_t Result = getSymbolAddress(Name, true); in getFunctionAddress()
583 uint64_t LinkingMemoryManager::getSymbolAddress(const std::string &Name) { in getSymbolAddress() function in LinkingMemoryManager
584 uint64_t Result = ParentEngine->getSymbolAddress(Name, false); in getSymbolAddress()
588 Result = ParentEngine->getSymbolAddress(Name.substr(1), false); in getSymbolAddress()
591 return ClientMM->getSymbolAddress(Name); in getSymbolAddress()
DMCJIT.h34 uint64_t getSymbolAddress(const std::string &Name) override;
338 uint64_t getSymbolAddress(const std::string &Name,
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp167 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordARMScatteredHalfRelocation()
183 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordARMScatteredHalfRelocation()
270 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordARMScatteredRelocation()
286 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordARMScatteredRelocation()
/external/llvm/lib/MC/
DMCLinkerOptimizationHint.cpp33 encodeULEB128(ObjWriter.getSymbolAddress(&Asm.getSymbolData(**It), Layout), in Emit_impl()
DMachObjectWriter.cpp75 uint64_t MachObjectWriter::getSymbolAddress(const MCSymbolData* SD, in getSymbolAddress() function in MachObjectWriter
101 Address += getSymbolAddress(&Layout.getAssembler().getSymbolData( in getSymbolAddress()
104 Address += getSymbolAddress(&Layout.getAssembler().getSymbolData( in getSymbolAddress()
367 Address = getSymbolAddress(&Data, Layout); in WriteNlist()
969 getSymbolAddress(&Layout.getAssembler().getSymbolData(*Data->Start), in WriteObject()
972 getSymbolAddress(&Layout.getAssembler().getSymbolData(*Data->End), in WriteObject()
/external/llvm/lib/ExecutionEngine/
DRTDyldMemoryManager.cpp213 uint64_t RTDyldMemoryManager::getSymbolAddress(const std::string &Name) { in ARM_MATH_IMPORTS()
273 uint64_t Addr = getSymbolAddress(Name); in getPointerToNamedFunction()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp288 uint64_t NextPC = Checker.getSymbolAddress(Symbol) + Size; in evalNextPC()
308 return std::make_pair(EvalResult(Checker.getSymbolAddress(Symbol)), in evalIdentifierExpr()
616 return RTDyld.getSymbolAddress(Symbol) != nullptr; in checkSymbolIsValidForLoad()
619 uint64_t RuntimeDyldChecker::getSymbolAddress(StringRef Symbol) const { in getSymbolAddress() function in RuntimeDyldChecker
626 uint8_t *Src = RTDyld.getSymbolAddress(Symbol); in readMemoryAtSymbol()
DRuntimeDyldImpl.h168 return MemMgr->getSymbolAddress(Symbol); in getAnySymbolRemoteAddress()
363 uint8_t* getSymbolAddress(StringRef Name) { in getSymbolAddress() function
DRuntimeDyld.cpp643 Addr = MemMgr->getSymbolAddress(Name.data()); in resolveExternalSymbols()
774 void *RuntimeDyld::getSymbolAddress(StringRef Name) { in getSymbolAddress() function in llvm::RuntimeDyld
777 return Dyld->getSymbolAddress(Name); in getSymbolAddress()
/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyldChecker.h85 uint64_t getSymbolAddress(StringRef Symbol) const;
DRuntimeDyld.h65 void *getSymbolAddress(StringRef Name);
DRTDyldMemoryManager.h81 virtual uint64_t getSymbolAddress(const std::string &Name);
/external/llvm/tools/lli/
DRemoteMemoryManager.h81 uint64_t getSymbolAddress(const std::string &Name) override { return 0; } in getSymbolAddress() function
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp215 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); in RecordScatteredRelocation()
229 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordScatteredRelocation()
/external/llvm/include/llvm/MC/
DMCMachObjectWriter.h141 uint64_t getSymbolAddress(const MCSymbolData* SD,
/external/llvm/include/llvm/Object/
DObjectFile.h230 virtual std::error_code getSymbolAddress(DataRefImpl Symb,
367 return getObject()->getSymbolAddress(getRawDataRefImpl(), Result); in getAddress()
DMachO.h69 std::error_code getSymbolAddress(DataRefImpl Symb,
DELFObjectFile.h62 std::error_code getSymbolAddress(DataRefImpl Symb,
251 std::error_code ELFObjectFile<ELFT>::getSymbolAddress(DataRefImpl Symb, in getSymbolAddress() function
DCOFF.h370 std::error_code getSymbolAddress(DataRefImpl Symb,
/external/llvm/lib/Object/
DMachOObjectFile.cpp507 std::error_code MachOObjectFile::getSymbolAddress(DataRefImpl Symb, in getSymbolAddress() function in llvm::object::MachOObjectFile
547 getSymbolAddress(DRI, Value); in getSymbolSize()
569 getSymbolAddress(DRI, Value); in getSymbolSize()
633 getSymbolAddress(DRI, Value); in getSymbolFlags()
812 getSymbolAddress(Symb, SymAddr); in sectionContainsSymbol()
DCOFFObjectFile.cpp139 std::error_code COFFObjectFile::getSymbolAddress(DataRefImpl Ref, in getSymbolAddress() function in COFFObjectFile
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp262 void *MainAddress = Dyld.getSymbolAddress(EntryPoint); in executeInput()