Lines Matching refs:COFFObjectFile
59 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Symb) const { in toSymb()
77 const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const { in toSec()
94 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb, in getSymbolNext()
103 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb, in getSymbolName()
109 error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb, in getSymbolFileOffset()
125 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb, in getSymbolAddress()
141 error_code COFFObjectFile::getSymbolType(DataRefImpl Symb, in getSymbolType()
167 error_code COFFObjectFile::getSymbolFlags(DataRefImpl Symb, in getSymbolFlags()
191 error_code COFFObjectFile::getSymbolSize(DataRefImpl Symb, in getSymbolSize()
210 error_code COFFObjectFile::getSymbolSection(DataRefImpl Symb, in getSymbolSection()
225 error_code COFFObjectFile::getSymbolValue(DataRefImpl Symb, in getSymbolValue()
230 error_code COFFObjectFile::getSectionNext(DataRefImpl Sec, in getSectionNext()
239 error_code COFFObjectFile::getSectionName(DataRefImpl Sec, in getSectionName()
245 error_code COFFObjectFile::getSectionAddress(DataRefImpl Sec, in getSectionAddress()
252 error_code COFFObjectFile::getSectionSize(DataRefImpl Sec, in getSectionSize()
259 error_code COFFObjectFile::getSectionContents(DataRefImpl Sec, in getSectionContents()
268 error_code COFFObjectFile::getSectionAlignment(DataRefImpl Sec, in getSectionAlignment()
277 error_code COFFObjectFile::isSectionText(DataRefImpl Sec, in isSectionText()
284 error_code COFFObjectFile::isSectionData(DataRefImpl Sec, in isSectionData()
291 error_code COFFObjectFile::isSectionBSS(DataRefImpl Sec, in isSectionBSS()
298 error_code COFFObjectFile::isSectionRequiredForExecution(DataRefImpl Sec, in isSectionRequiredForExecution()
305 error_code COFFObjectFile::isSectionVirtual(DataRefImpl Sec, in isSectionVirtual()
312 error_code COFFObjectFile::isSectionZeroInit(DataRefImpl Sec, in isSectionZeroInit()
319 error_code COFFObjectFile::isSectionReadOnlyData(DataRefImpl Sec, in isSectionReadOnlyData()
326 error_code COFFObjectFile::sectionContainsSymbol(DataRefImpl Sec, in sectionContainsSymbol()
340 relocation_iterator COFFObjectFile::section_rel_begin(DataRefImpl Sec) const { in section_rel_begin()
351 relocation_iterator COFFObjectFile::section_rel_end(DataRefImpl Sec) const { in section_rel_end()
366 error_code COFFObjectFile::initSymbolTablePtr() { in initSymbolTablePtr()
394 error_code COFFObjectFile::getRvaPtr(uint32_t Rva, uintptr_t &Res) const { in getRvaPtr()
414 error_code COFFObjectFile::
426 error_code COFFObjectFile::initImportTablePtr() { in initImportTablePtr()
453 COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec) in COFFObjectFile() function in COFFObjectFile
527 symbol_iterator COFFObjectFile::begin_symbols() const { in begin_symbols()
533 symbol_iterator COFFObjectFile::end_symbols() const { in end_symbols()
540 symbol_iterator COFFObjectFile::begin_dynamic_symbols() const { in begin_dynamic_symbols()
545 symbol_iterator COFFObjectFile::end_dynamic_symbols() const { in end_dynamic_symbols()
550 library_iterator COFFObjectFile::begin_libraries_needed() const { in begin_libraries_needed()
555 library_iterator COFFObjectFile::end_libraries_needed() const { in end_libraries_needed()
560 StringRef COFFObjectFile::getLoadName() const { in getLoadName()
565 import_directory_iterator COFFObjectFile::import_directory_begin() const { in import_directory_begin()
571 import_directory_iterator COFFObjectFile::import_directory_end() const { in import_directory_end()
582 section_iterator COFFObjectFile::begin_sections() const { in begin_sections()
588 section_iterator COFFObjectFile::end_sections() const { in end_sections()
596 uint8_t COFFObjectFile::getBytesInAddress() const { in getBytesInAddress()
600 StringRef COFFObjectFile::getFileFormatName() const { in getFileFormatName()
611 unsigned COFFObjectFile::getArch() const { in getArch()
624 error_code COFFObjectFile::getHeader(const coff_file_header *&Res) const { in getHeader()
628 error_code COFFObjectFile::getCOFFHeader(const coff_file_header *&Res) const { in getCOFFHeader()
633 error_code COFFObjectFile::getPE32Header(const pe32_header *&Res) const { in getPE32Header()
638 error_code COFFObjectFile::getDataDirectory(uint32_t index, in getDataDirectory()
647 error_code COFFObjectFile::getSection(int32_t index, in getSection()
662 error_code COFFObjectFile::getString(uint32_t offset, in getString()
673 error_code COFFObjectFile::getSymbol(uint32_t index, in getSymbol()
682 error_code COFFObjectFile::getSymbolName(const coff_symbol *symbol, in getSymbolName()
701 ArrayRef<uint8_t> COFFObjectFile::getSymbolAuxData( in getSymbolAuxData()
723 error_code COFFObjectFile::getSectionName(const coff_section *Sec, in getSectionName()
746 error_code COFFObjectFile::getSectionContents(const coff_section *Sec, in getSectionContents()
760 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel()
763 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel, in getRelocationNext()
770 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel, in getRelocationAddress()
774 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel, in getRelocationOffset()
779 symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
785 error_code COFFObjectFile::getRelocationType(DataRefImpl Rel, in getRelocationType()
792 const coff_section *COFFObjectFile::getCOFFSection(section_iterator &It) const { in getCOFFSection()
796 const coff_symbol *COFFObjectFile::getCOFFSymbol(symbol_iterator &It) const { in getCOFFSymbol()
800 const coff_relocation *COFFObjectFile::getCOFFRelocation( in getCOFFRelocation()
808 error_code COFFObjectFile::getRelocationTypeName(DataRefImpl Rel, in getRelocationTypeName()
862 error_code COFFObjectFile::getRelocationValueString(DataRefImpl Rel, in getRelocationValueString()
875 error_code COFFObjectFile::getLibraryNext(DataRefImpl LibData, in getLibraryNext()
880 error_code COFFObjectFile::getLibraryPath(DataRefImpl LibData, in getLibraryPath()
935 return new COFFObjectFile(Object, ec); in createCOFFObjectFile()