Lines Matching refs:ObjectFile
41 void ObjectFile::anchor() {} in anchor()
43 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source) in ObjectFile() function in ObjectFile
56 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()
99 bool ObjectFile::hasDebugInfo() const { in hasDebugInfo()
105 ObjectFile::getRelocatedSection(DataRefImpl Sec) const { in getRelocatedSection()
109 Triple ObjectFile::makeTriple() const { in makeTriple()
148 Expected<std::unique_ptr<ObjectFile>>
149 ObjectFile::createObjectFile(MemoryBufferRef Object, file_magic Type, in createObjectFile()
208 Expected<OwningBinary<ObjectFile>>
209 ObjectFile::createObjectFile(StringRef ObjectPath) { in createObjectFile()
216 Expected<std::unique_ptr<ObjectFile>> ObjOrErr = in createObjectFile()
220 std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get()); in createObjectFile()
222 return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer)); in createObjectFile()
225 bool ObjectFile::isReflectionSectionStrippable( in isReflectionSectionStrippable()