Lines Matching refs:ObjectFile
26 void ObjectFile::anchor() { } in anchor()
28 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source) in ObjectFile() function in ObjectFile
41 uint64_t ObjectFile::getSymbolValue(DataRefImpl Ref) const { in getSymbolValue()
50 std::error_code ObjectFile::printSymbolName(raw_ostream &OS, in printSymbolName()
59 uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; } in getSymbolAlignment()
61 bool ObjectFile::isSectionBitcode(DataRefImpl Sec) const { in isSectionBitcode()
68 section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const { in getRelocatedSection()
72 Expected<std::unique_ptr<ObjectFile>>
73 ObjectFile::createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type) { in createObjectFile()
111 Expected<OwningBinary<ObjectFile>>
112 ObjectFile::createObjectFile(StringRef ObjectPath) { in createObjectFile()
119 Expected<std::unique_ptr<ObjectFile>> ObjOrErr = in createObjectFile()
123 std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get()); in createObjectFile()
125 return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer)); in createObjectFile()