Lines Matching refs:ObjectFile
36 void ObjectFile::anchor() {} in anchor()
38 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source) in ObjectFile() function in ObjectFile
51 uint64_t ObjectFile::getSymbolValue(DataRefImpl Ref) const { in getSymbolValue()
60 std::error_code ObjectFile::printSymbolName(raw_ostream &OS, in printSymbolName()
69 uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; } in getSymbolAlignment()
71 bool ObjectFile::isSectionBitcode(DataRefImpl Sec) const { in isSectionBitcode()
78 bool ObjectFile::isSectionStripped(DataRefImpl Sec) const { return false; } in isSectionStripped()
80 bool ObjectFile::isBerkeleyText(DataRefImpl Sec) const { in isBerkeleyText()
84 bool ObjectFile::isBerkeleyData(DataRefImpl Sec) const { in isBerkeleyData()
88 section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const { in getRelocatedSection()
92 Triple ObjectFile::makeTriple() const { in makeTriple()
117 Expected<std::unique_ptr<ObjectFile>>
118 ObjectFile::createObjectFile(MemoryBufferRef Object, file_magic Type) { in createObjectFile()
160 Expected<OwningBinary<ObjectFile>>
161 ObjectFile::createObjectFile(StringRef ObjectPath) { in createObjectFile()
168 Expected<std::unique_ptr<ObjectFile>> ObjOrErr = in createObjectFile()
172 std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get()); in createObjectFile()
174 return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer)); in createObjectFile()