/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ObjectFile.h | 74 const ObjectFile *getObject() const; 142 const ObjectFile *getObject() const; 184 assert(isa<ObjectFile>(BasicSymbolRef::getObject())); in SymbolRef() 205 const ObjectFile *getObject() const; 213 cast<ObjectFile>(B->getObject()))) {} in symbol_iterator() 461 return getObject()->getSymbolName(getRawDataRefImpl()); in getName() 465 return getObject()->getSymbolAddress(getRawDataRefImpl()); in getAddress() 469 return getObject()->getSymbolValue(getRawDataRefImpl()); in getValue() 473 return getObject()->getSymbolAlignment(getRawDataRefImpl()); in getAlignment() 477 return getObject()->getCommonSymbolSize(getRawDataRefImpl()); in getCommonSize() [all …]
|
H A D | GOFFObjectFile.h | 133 assert(isa<GOFFObjectFile>(SymbolRef::getObject())); in GOFFSymbolRef() 136 const GOFFObjectFile *getObject() const { in getObject() function 137 return cast<GOFFObjectFile>(BasicSymbolRef::getObject()); in getObject() 141 return getObject()->getSymbolFlags(getRawDataRefImpl()); in getSymbolGOFFFlags() 145 return getObject()->getSymbolType(getRawDataRefImpl()); in getSymbolGOFFType() 149 return getObject()->getSymbolSize(getRawDataRefImpl()); in getSize()
|
H A D | ELFObjectFile.h | 133 assert(isa<ELFObjectFileBase>(SectionRef::getObject())); in ELFSectionRef() 136 const ELFObjectFileBase *getObject() const { in getObject() function 137 return cast<ELFObjectFileBase>(SectionRef::getObject()); in getObject() 141 return getObject()->getSectionType(getRawDataRefImpl()); in getType() 145 return getObject()->getSectionFlags(getRawDataRefImpl()); in getFlags() 149 return getObject()->getSectionOffset(getRawDataRefImpl()); in getOffset() 156 assert(isa<ELFObjectFileBase>(B->getObject())); in elf_section_iterator() 171 assert(isa<ELFObjectFileBase>(SymbolRef::getObject())); in ELFSymbolRef() 174 const ELFObjectFileBase *getObject() const { in getObject() function 175 return cast<ELFObjectFileBase>(BasicSymbolRef::getObject()); in getObject() [all …]
|
H A D | SymbolicFile.h | 140 const SymbolicFile *getObject() const; 214 inline const SymbolicFile *BasicSymbolRef::getObject() const { in getObject() function
|
H A D | XCOFFObjectFile.h | 799 return getObject()->is64Bit() ? getValue64() : getValue32(); 813 return getObject()->getSymbolSize(getRawDataRefImpl()); 817 getObject()->is64Bit() \ 853 const XCOFFObjectFile *getObject() const { 854 return cast<XCOFFObjectFile>(BasicSymbolRef::getObject());
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFF_x86_64.cpp | 68 const object::coff_relocation *COFFRel = getObject().getCOFFRelocation(Rel); in addSingleRelocation() 70 if (SymbolIt == getObject().symbol_end()) { in addSingleRelocation() 78 object::COFFSymbolRef COFFSymbol = getObject().getCOFFSymbol(*SymbolIt); in addSingleRelocation() 79 COFFSymbolIndex SymIndex = getObject().getSymbolIndex(COFFSymbol); in addSingleRelocation() 148 SectionIdx = getObject().getNumberOfSections() + 1; in addSingleRelocation()
|
H A D | MachOLinkGraphBuilder.h | 92 const object::MachOObjectFile &getObject() const { return Obj; } in getObject() function 171 getObject().getRelocation(RelItr->getRawDataRefImpl()); in getRelocationInfo()
|
H A D | COFFLinkGraphBuilder.h | 46 const object::COFFObjectFile &getObject() const { return Obj; } 47 const object::COFFObjectFile &getObject() const { return Obj; } getObject() function
|
H A D | MachO_x86_64.cpp | 225 auto &Obj = getObject(); in addRelocations()
|
H A D | MachO_arm64.cpp | 234 auto &Obj = getObject(); in addRelocations()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | XCOFFObjectFile.cpp | 33 static Expected<const T *> getObject(MemoryBufferRef M, const void *Ptr, in getObject() function 1029 getObject<Reloc>(Data, reinterpret_cast<void *>(RelocAddr), in relocations() 1087 getObject<char>(Obj->Data, Obj->base() + Offset, Size); in parseStringTable() 1128 auto ImportTableOrErr = getObject<char>( in getImportFileTable() 1163 getObject<void>(Data, Base + CurOffset, Obj->getFileHeaderSize()); in create() 1172 getObject<void>(Data, Base + CurOffset, Obj->getOptionalHeaderSize()); in create() 1185 getObject<void>(Data, Base + CurOffset, SectionHeadersSize); in create() 1210 getObject<void *>(Data, Base + CurOffset, SymbolTableSize); in create() 1279 if (++NextIt == getObject()->symbol_end()) in isFunction() 1301 Twine(getObject()->getSymbolIndex(CsectAuxRef.getEntryAddress())) + in isFunction() [all …]
|
H A D | COFFObjectFile.cpp | 57 static Error getObject(const T *&Obj, MemoryBufferRef M, const void *Ptr, in getObject() function 363 if (Error E = getObject(FirstReloc, M, in getNumberOfRelocations() 418 if (Error E = getObject( in initSymbolTablePtr() 424 if (Error E = getObject( in initSymbolTablePtr() 436 if (Error E = getObject(StringTableSizePtr, Data, StringTableAddr)) in initSymbolTablePtr() 439 if (Error E = getObject(StringTable, Data, StringTableAddr, StringTableSize)) in initSymbolTablePtr() 863 if (Error E = getObject(COFFHeader, Data, base() + CurPtr)) in initialize() 871 if (Error E = getObject(COFFBigObjHeader, Data, base() + CurPtr)) in initialize() 897 if (Error E = getObject(Header, Data, base() + CurPtr)) in initialize() 915 if (Error E = getObject(DataDirectory, Data, DataDirAddr, DataDirSize)) in initialize() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | DarwinSDKInfo.cpp | 88 if (const auto *VM = Obj->getObject("VersionMap")) { in parseDarwinSDKSettingsJSON() 108 if (const auto *Mapping = VM->getObject("macOS_iOSMac")) { in parseDarwinSDKSettingsJSON() 116 if (const auto *Mapping = VM->getObject("iOSMac_macOS")) { in parseDarwinSDKSettingsJSON()
|
H A D | Sarif.cpp | 289 json::Object &Driver = *Tool.getObject("driver"); in endRun()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | ELFDump.cpp | 190 Phdr, *cast<const ELFObjectFile<ELFT>>(Sec.getObject()) in getSectionLMA() 199 if (const auto *ELFObj = dyn_cast<ELF32LEObjectFile>(Sec.getObject())) in getELFSectionLMA() 201 else if (const auto *ELFObj = dyn_cast<ELF32BEObjectFile>(Sec.getObject())) in getELFSectionLMA() 203 else if (const auto *ELFObj = dyn_cast<ELF64LEObjectFile>(Sec.getObject())) in getELFSectionLMA() 205 const auto *ELFObj = cast<ELF64BEObjectFile>(Sec.getObject()); in getELFSectionLMA()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | ObjectCache.h | 37 virtual std::unique_ptr<MemoryBuffer> getObject(const Module* M) = 0;
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | CompileUtils.cpp | 74 return ObjCache->getObject(&M); in tryToLoadFromObjectCache()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyld.cpp | 472 const ObjectFile *Obj = Section.getObject(); in isRequiredForExecution() 495 const ObjectFile *Obj = Section.getObject(); in isReadOnlyData() 513 const ObjectFile *Obj = Section.getObject(); in isZeroInit() 527 const ObjectFile *Obj = Section.getObject(); in isTLS()
|
H A D | RuntimeDyldMachO.cpp | 143 auto &O = *cast<MachOObjectFile>(RI->getObject()); in makeValueAddendPCRel()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | TextStubV5.cpp | 417 auto *DataSection = Obj->getObject(Keys[TBDKey::Data]); in getSymbolSection() 418 auto *TextSection = Obj->getObject(Keys[TBDKey::Text]); in getSymbolSection() 720 Object *MainLib = Root->getObject(Keys[TBDKey::MainLibrary]); in getInterfaceFileFromJSON()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | JSON.cpp | 67 const json::Object *Object::getObject(StringRef K) const { in getObject() function in llvm::json::Object 72 json::Object *Object::getObject(StringRef K) { in getObject() function in llvm::json::Object
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | JumpDiagnostics.cpp | 564 if (auto *BDecl = EWC->getObject(i).dyn_cast<BlockDecl *>()) in BuildScopeInformation() 569 else if (auto *CLE = EWC->getObject(i).dyn_cast<CompoundLiteralExpr *>()) in BuildScopeInformation()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | SymbolizableObjectFile.cpp | 147 const ObjectFile &Obj = *Symbol.getObject(); in addSymbol()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.cpp | 994 Sec.getObject().IsMips64EL); in visit() 997 Sec.getObject().IsMips64EL); in visit() 1663 ToAdd.Type = Rel.getType(Relocs->getObject().IsMips64EL); in initRelocations() 1665 if (uint32_t Sym = Rel.getSymbol(Relocs->getObject().IsMips64EL)) { in initRelocations() 1666 if (!Relocs->getObject().SymbolTable) in initRelocations() 1672 Relocs->getObject().SymbolTable->getSymbolByIndex(Sym); in initRelocations()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | JSON.h | 152 const json::Object *getObject(StringRef K) const; 153 json::Object *getObject(StringRef K);
|