Lines Matching refs:ObjectFile
42 void ObjectFile::anchor() {} in anchor()
44 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source) in ObjectFile() function in ObjectFile
57 Expected<uint64_t> ObjectFile::getSymbolValue(DataRefImpl Ref) const { in getSymbolValue()
69 Error ObjectFile::printSymbolName(raw_ostream &OS, DataRefImpl Symb) const { in printSymbolName()
77 uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; } in getSymbolAlignment()
79 bool ObjectFile::isSectionBitcode(DataRefImpl Sec) const { in isSectionBitcode()
87 bool ObjectFile::isSectionStripped(DataRefImpl Sec) const { return false; } in isSectionStripped()
89 bool ObjectFile::isBerkeleyText(DataRefImpl Sec) const { in isBerkeleyText()
93 bool ObjectFile::isBerkeleyData(DataRefImpl Sec) const { in isBerkeleyData()
97 bool ObjectFile::isDebugSection(DataRefImpl Sec) const { return false; } in isDebugSection()
100 ObjectFile::getRelocatedSection(DataRefImpl Sec) const { in getRelocatedSection()
104 Triple ObjectFile::makeTriple() const { in makeTriple()
132 Expected<std::unique_ptr<ObjectFile>>
133 ObjectFile::createObjectFile(MemoryBufferRef Object, file_magic Type, in createObjectFile()
184 Expected<OwningBinary<ObjectFile>>
185 ObjectFile::createObjectFile(StringRef ObjectPath) { in createObjectFile()
192 Expected<std::unique_ptr<ObjectFile>> ObjOrErr = in createObjectFile()
196 std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get()); in createObjectFile()
198 return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer)); in createObjectFile()