summaryrefslogtreecommitdiff
path: root/include/llvm/Object/COFF.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-01-30 01:17:42 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-01-30 01:17:42 +0000
commit8ddf091e99eda230e43fd51fd2e7c30a501e39af (patch)
tree7d40e7b97743746a3b228a3c2549427e55741240 /include/llvm/Object/COFF.h
parentfc79e50982cfc7dd0326ca7ce4cb44cc976c4e90 (diff)
downloadllvm-8ddf091e99eda230e43fd51fd2e7c30a501e39af.tar.gz
llvm-8ddf091e99eda230e43fd51fd2e7c30a501e39af.tar.bz2
llvm-8ddf091e99eda230e43fd51fd2e7c30a501e39af.tar.xz
add a bunch of LLVM_OVERRIDE before I start refactoring these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200439 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/COFF.h')
-rw-r--r--include/llvm/Object/COFF.h134
1 files changed, 74 insertions, 60 deletions
diff --git a/include/llvm/Object/COFF.h b/include/llvm/Object/COFF.h
index d7965a33e7..2c2bd4823c 100644
--- a/include/llvm/Object/COFF.h
+++ b/include/llvm/Object/COFF.h
@@ -271,74 +271,88 @@ private:
error_code initExportTablePtr();
protected:
- virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
- virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
- virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
- virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
- virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
- virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
- virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
- virtual error_code getSymbolSection(DataRefImpl Symb,
- section_iterator &Res) const;
- virtual error_code getSymbolValue(DataRefImpl Symb, uint64_t &Val) const;
-
- virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
- virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
- virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
- virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
- virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
- virtual error_code getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const;
- virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
- virtual error_code isSectionData(DataRefImpl Sec, bool &Res) const;
- virtual error_code isSectionBSS(DataRefImpl Sec, bool &Res) const;
- virtual error_code isSectionVirtual(DataRefImpl Sec, bool &Res) const;
- virtual error_code isSectionZeroInit(DataRefImpl Sec, bool &Res) const;
- virtual error_code isSectionReadOnlyData(DataRefImpl Sec, bool &Res) const;
- virtual error_code isSectionRequiredForExecution(DataRefImpl Sec,
- bool &Res) const;
- virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
- bool &Result) const;
- virtual relocation_iterator section_rel_begin(DataRefImpl Sec) const;
- virtual relocation_iterator section_rel_end(DataRefImpl Sec) const;
-
- virtual error_code getRelocationNext(DataRefImpl Rel,
- RelocationRef &Res) const;
- virtual error_code getRelocationAddress(DataRefImpl Rel,
- uint64_t &Res) const;
- virtual error_code getRelocationOffset(DataRefImpl Rel,
- uint64_t &Res) const;
- virtual symbol_iterator getRelocationSymbol(DataRefImpl Rel) const;
- virtual error_code getRelocationType(DataRefImpl Rel,
- uint64_t &Res) const;
- virtual error_code getRelocationTypeName(DataRefImpl Rel,
- SmallVectorImpl<char> &Result) const;
- virtual error_code getRelocationValueString(DataRefImpl Rel,
- SmallVectorImpl<char> &Result) const;
-
- virtual error_code getLibraryNext(DataRefImpl LibData,
- LibraryRef &Result) const;
- virtual error_code getLibraryPath(DataRefImpl LibData,
- StringRef &Result) const;
+ error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const LLVM_OVERRIDE;
+ error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolSection(DataRefImpl Symb, section_iterator &Res) const
+ LLVM_OVERRIDE;
+ error_code getSymbolValue(DataRefImpl Symb, uint64_t &Val) const
+ LLVM_OVERRIDE;
+ error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const
+ LLVM_OVERRIDE;
+ error_code getSectionName(DataRefImpl Sec, StringRef &Res) const
+ LLVM_OVERRIDE;
+ error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const LLVM_OVERRIDE;
+ error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const
+ LLVM_OVERRIDE;
+ error_code getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ error_code isSectionText(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
+ error_code isSectionData(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
+ error_code isSectionBSS(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
+ error_code isSectionVirtual(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
+ error_code isSectionZeroInit(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
+ error_code isSectionReadOnlyData(DataRefImpl Sec, bool &Res) const
+ LLVM_OVERRIDE;
+ error_code isSectionRequiredForExecution(DataRefImpl Sec, bool &Res) const
+ LLVM_OVERRIDE;
+ error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
+ bool &Result) const LLVM_OVERRIDE;
+ relocation_iterator section_rel_begin(DataRefImpl Sec) const LLVM_OVERRIDE;
+ relocation_iterator section_rel_end(DataRefImpl Sec) const LLVM_OVERRIDE;
+
+ error_code getRelocationNext(DataRefImpl Rel, RelocationRef &Res) const
+ LLVM_OVERRIDE;
+ error_code getRelocationAddress(DataRefImpl Rel, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ error_code getRelocationOffset(DataRefImpl Rel, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ symbol_iterator getRelocationSymbol(DataRefImpl Rel) const LLVM_OVERRIDE;
+ error_code getRelocationType(DataRefImpl Rel, uint64_t &Res) const
+ LLVM_OVERRIDE;
+ error_code getRelocationTypeName(DataRefImpl Rel,
+ SmallVectorImpl<char> &Result) const
+ LLVM_OVERRIDE;
+ error_code getRelocationValueString(DataRefImpl Rel,
+ SmallVectorImpl<char> &Result) const
+ LLVM_OVERRIDE;
+
+ error_code getLibraryNext(DataRefImpl LibData, LibraryRef &Result) const
+ LLVM_OVERRIDE;
+ error_code getLibraryPath(DataRefImpl LibData, StringRef &Result) const
+ LLVM_OVERRIDE;
public:
COFFObjectFile(MemoryBuffer *Object, error_code &EC, bool BufferOwned = true);
- virtual symbol_iterator begin_symbols() const;
- virtual symbol_iterator end_symbols() const;
- virtual symbol_iterator begin_dynamic_symbols() const;
- virtual symbol_iterator end_dynamic_symbols() const;
- virtual library_iterator begin_libraries_needed() const;
- virtual library_iterator end_libraries_needed() const;
- virtual section_iterator begin_sections() const;
- virtual section_iterator end_sections() const;
+ symbol_iterator begin_symbols() const LLVM_OVERRIDE;
+ symbol_iterator end_symbols() const LLVM_OVERRIDE;
+ symbol_iterator begin_dynamic_symbols() const LLVM_OVERRIDE;
+ symbol_iterator end_dynamic_symbols() const LLVM_OVERRIDE;
+ library_iterator begin_libraries_needed() const LLVM_OVERRIDE;
+ library_iterator end_libraries_needed() const LLVM_OVERRIDE;
+ section_iterator begin_sections() const LLVM_OVERRIDE;
+ section_iterator end_sections() const LLVM_OVERRIDE;
const coff_section *getCOFFSection(section_iterator &It) const;
const coff_symbol *getCOFFSymbol(symbol_iterator &It) const;
const coff_relocation *getCOFFRelocation(relocation_iterator &It) const;
- virtual uint8_t getBytesInAddress() const;
- virtual StringRef getFileFormatName() const;
- virtual unsigned getArch() const;
- virtual StringRef getLoadName() const;
+ uint8_t getBytesInAddress() const LLVM_OVERRIDE;
+ StringRef getFileFormatName() const LLVM_OVERRIDE;
+ unsigned getArch() const LLVM_OVERRIDE;
+ StringRef getLoadName() const LLVM_OVERRIDE;
import_directory_iterator import_directory_begin() const;
import_directory_iterator import_directory_end() const;