mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
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
This commit is contained in:
@@ -55,53 +55,67 @@ public:
|
||||
protected:
|
||||
ELFFile<ELFT> EF;
|
||||
|
||||
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 getSymbolAlignment(DataRefImpl Symb, uint32_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;
|
||||
error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code getSymbolAlignment(DataRefImpl Symb, uint32_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;
|
||||
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;
|
||||
|
||||
virtual error_code getLibraryNext(DataRefImpl Data, LibraryRef &Result) const;
|
||||
virtual error_code getLibraryPath(DataRefImpl Data, StringRef &Res) const;
|
||||
error_code getLibraryNext(DataRefImpl Data, LibraryRef &Result) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code getLibraryPath(DataRefImpl Data, StringRef &Res) const
|
||||
LLVM_OVERRIDE;
|
||||
|
||||
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 isSectionRequiredForExecution(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 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 section_iterator getRelocatedSection(DataRefImpl Sec) const;
|
||||
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;
|
||||
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;
|
||||
error_code isSectionBSS(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
|
||||
error_code isSectionRequiredForExecution(DataRefImpl Sec, bool &Res) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code isSectionVirtual(DataRefImpl Sec, bool &Res) const;
|
||||
error_code isSectionZeroInit(DataRefImpl Sec, bool &Res) const LLVM_OVERRIDE;
|
||||
error_code isSectionReadOnlyData(DataRefImpl Sec, bool &Res) const;
|
||||
error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
|
||||
bool &Result) const LLVM_OVERRIDE;
|
||||
relocation_iterator section_rel_begin(DataRefImpl Sec) const;
|
||||
relocation_iterator section_rel_end(DataRefImpl Sec) const LLVM_OVERRIDE;
|
||||
section_iterator getRelocatedSection(DataRefImpl Sec) const LLVM_OVERRIDE;
|
||||
|
||||
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;
|
||||
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;
|
||||
error_code getRelocationTypeName(DataRefImpl Rel,
|
||||
SmallVectorImpl<char> &Result) const
|
||||
LLVM_OVERRIDE;
|
||||
error_code getRelocationValueString(DataRefImpl Rel,
|
||||
SmallVectorImpl<char> &Result) const
|
||||
LLVM_OVERRIDE;
|
||||
|
||||
uint64_t getROffset(DataRefImpl Rel) const;
|
||||
StringRef getRelocationTypeName(uint32_t Type) const;
|
||||
@@ -169,26 +183,27 @@ public:
|
||||
|
||||
const Elf_Sym *getSymbol(DataRefImpl Symb) const;
|
||||
|
||||
virtual symbol_iterator begin_symbols() const;
|
||||
virtual symbol_iterator end_symbols() const;
|
||||
symbol_iterator begin_symbols() const LLVM_OVERRIDE;
|
||||
symbol_iterator end_symbols() const LLVM_OVERRIDE;
|
||||
|
||||
virtual symbol_iterator begin_dynamic_symbols() const;
|
||||
virtual symbol_iterator end_dynamic_symbols() const;
|
||||
symbol_iterator begin_dynamic_symbols() const LLVM_OVERRIDE;
|
||||
symbol_iterator end_dynamic_symbols() const LLVM_OVERRIDE;
|
||||
|
||||
virtual section_iterator begin_sections() const;
|
||||
virtual section_iterator end_sections() const;
|
||||
section_iterator begin_sections() const LLVM_OVERRIDE;
|
||||
section_iterator end_sections() const LLVM_OVERRIDE;
|
||||
|
||||
virtual library_iterator begin_libraries_needed() const;
|
||||
virtual library_iterator end_libraries_needed() const;
|
||||
library_iterator begin_libraries_needed() const LLVM_OVERRIDE;
|
||||
library_iterator end_libraries_needed() const LLVM_OVERRIDE;
|
||||
|
||||
error_code getRelocationAddend(DataRefImpl Rel, int64_t &Res) const;
|
||||
error_code getSymbolVersion(SymbolRef Symb, StringRef &Version,
|
||||
bool &IsDefault) 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;
|
||||
|
||||
const ELFFile<ELFT> *getELFFile() const { return &EF; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user