Home
last modified time | relevance | path

Searched refs:getObject (Results 1 – 25 of 37) sorted by relevance

12

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DObjectFile.h73 const ObjectFile *getObject() const;
138 const ObjectFile *getObject() const;
180 assert(isa<ObjectFile>(BasicSymbolRef::getObject())); in SymbolRef()
201 const ObjectFile *getObject() const;
387 return getObject()->getSymbolName(getRawDataRefImpl()); in getName()
395 return getObject()->getSymbolValue(getRawDataRefImpl()); in getValue()
411 return getObject()->getSymbolType(getRawDataRefImpl()); in getType()
414 inline const ObjectFile *SymbolRef::getObject() const { in getObject() function
415 const SymbolicFile *O = BasicSymbolRef::getObject(); in getObject()
527 inline const ObjectFile *SectionRef::getObject() const { in getObject() function
[all …]
H A DELFObjectFile.h104 assert(isa<ELFObjectFileBase>(SectionRef::getObject())); in ELFSectionRef()
107 const ELFObjectFileBase *getObject() const { in getObject() function
108 return cast<ELFObjectFileBase>(SectionRef::getObject()); in getObject()
112 return getObject()->getSectionType(getRawDataRefImpl()); in getType()
116 return getObject()->getSectionFlags(getRawDataRefImpl()); in getFlags()
127 assert(isa<ELFObjectFileBase>(B->getObject())); in elf_section_iterator()
142 assert(isa<ELFObjectFileBase>(SymbolRef::getObject())); in ELFSymbolRef()
145 const ELFObjectFileBase *getObject() const { in getObject() function
150 return getObject()->getSymbolSize(getRawDataRefImpl()); in getSize()
158 return getObject()->getSymbolOther(getRawDataRefImpl()); in getOther()
[all …]
H A DSymbolicFile.h138 const SymbolicFile *getObject() const;
210 inline const SymbolicFile *BasicSymbolRef::getObject() const { in getObject() function
/netbsd/external/gpl2/gettext/dist/gettext-runtime/intl-java/gnu/gettext/
H A DGettextResource.java77 String result = (String)catalog.getObject(msgid); in gettext()
200 value = catalog.getObject(msgid); in ngettext()
/netbsd/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DBinaryHolder.h82 Expected<const object::ObjectFile &> getObject(const Triple &T) const;
88 auto Object = getObject(T); in getObjectAs()
H A DBinaryHolder.cpp153 BinaryHolder::ObjectEntry::getObject(const Triple &T) const { in getObject() function in llvm::dsymutil::BinaryHolder::ObjectEntry
H A DDebugMap.cpp250 auto Object = ObjectEntry->getObject(Ctxt.BinaryTriple); in denormalize()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DELFDump.cpp162 if (const auto *ELFObj = dyn_cast<ELF32LEObjectFile>(Sec.getObject())) in getELFSectionLMA()
164 else if (const auto *ELFObj = dyn_cast<ELF32BEObjectFile>(Sec.getObject())) in getELFSectionLMA()
166 else if (const auto *ELFObj = dyn_cast<ELF64LEObjectFile>(Sec.getObject())) in getELFSectionLMA()
168 const auto *ELFObj = cast<ELF64BEObjectFile>(Sec.getObject()); in getELFSectionLMA()
/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp58 static Error getObject(const T *&Obj, MemoryBufferRef M, const void *Ptr, in getObject() function
357 if (Error E = getObject(FirstReloc, M, in getNumberOfRelocations()
412 if (Error E = getObject( in initSymbolTablePtr()
418 if (Error E = getObject( in initSymbolTablePtr()
430 if (Error E = getObject(StringTableSizePtr, Data, StringTableAddr)) in initSymbolTablePtr()
752 if (Error E = getObject(COFFHeader, Data, base() + CurPtr)) in initialize()
760 if (Error E = getObject(COFFBigObjHeader, Data, base() + CurPtr)) in initialize()
786 if (Error E = getObject(Header, Data, base() + CurPtr)) in initialize()
803 if (Error E = getObject(DataDirectory, Data, DataDirAddr, DataDirSize)) in initialize()
813 getObject(SectionTable, Data, base() + CurPtr, in initialize()
[all …]
H A DXCOFFObjectFile.cpp33 static Expected<const T *> getObject(MemoryBufferRef M, const void *Ptr, in getObject() function
676 getObject<XCOFFRelocation32>(Data, reinterpret_cast<void *>(RelocAddr), in relocations()
705 getObject<char>(Obj->Data, Obj->base() + Offset, Size); in parseStringTable()
728 getObject<void>(Data, Base + CurOffset, Obj->getFileHeaderSize()); in create()
740 auto SecHeadersOrErr = getObject<void>(Data, Base + CurOffset, in create()
761 getObject<XCOFFSymbolEntry>(Data, Base + CurOffset, SymbolTableSize); in create()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp74 if (const auto *ELFObj = dyn_cast<ELF32LEObjectFile>(Sec.getObject())) in getELFImageLMAForSec()
77 else if (const auto *ELFObj = dyn_cast<ELF32BEObjectFile>(Sec.getObject())) in getELFImageLMAForSec()
80 else if (const auto *ELFObj = dyn_cast<ELF64LEObjectFile>(Sec.getObject())) in getELFImageLMAForSec()
83 const auto *ELFObj = cast<ELF64BEObjectFile>(Sec.getObject()); in getELFImageLMAForSec()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DObjectCache.h37 virtual std::unique_ptr<MemoryBuffer> getObject(const Module* M) = 0;
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h89 const object::MachOObjectFile &getObject() const { return Obj; } in getObject() function
166 getObject().getRelocation(RelItr->getRawDataRefImpl()); in getRelocationInfo()
H A DMachO_x86_64.cpp203 auto &Obj = getObject(); in addRelocations()
H A DMachO_arm64.cpp184 auto &Obj = getObject(); in addRelocations()
/netbsd/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectCache/
H A DLLJITWithObjectCache.cpp34 std::unique_ptr<MemoryBuffer> getObject(const Module *M) override { in getObject() function in MyObjectCache
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp72 return ObjCache->getObject(&M); in tryToLoadFromObjectCache()
/netbsd/external/gpl2/gettext/dist/gettext-tools/src/gnu/gettext/
H A DDumpResource.java87 value = catalog.getObject(key); in lookup()
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp469 const ObjectFile *Obj = Section.getObject(); in isRequiredForExecution()
492 const ObjectFile *Obj = Section.getObject(); in isReadOnlyData()
510 const ObjectFile *Obj = Section.getObject(); in isZeroInit()
H A DRuntimeDyldMachO.cpp143 auto &O = *cast<MachOObjectFile>(RI->getObject()); in makeValueAddendPCRel()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DJSON.cpp63 const json::Object *Object::getObject(StringRef K) const { in getObject() function in llvm::json::Object
68 json::Object *Object::getObject(StringRef K) { in getObject() function in llvm::json::Object
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp147 const ObjectFile &Obj = *Symbol.getObject(); in addSymbol()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DJumpDiagnostics.cpp553 if (auto *BDecl = EWC->getObject(i).dyn_cast<BlockDecl *>()) in BuildScopeInformation()
558 else if (auto *CLE = EWC->getObject(i).dyn_cast<CompoundLiteralExpr *>()) in BuildScopeInformation()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DJSON.h144 const json::Object *getObject(StringRef K) const;
145 json::Object *getObject(StringRef K);
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp139 if (const json::Object *FileLoc = Obj->getObject("location")) { in createArtifactLocation()

12