HomeSort by relevance Sort by last modified time
    Searched refs:DataRefImpl (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/Object/
MachO.h 50 error_code getSectionFinalSegmentName(DataRefImpl Sec, StringRef &Res) const;
59 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
60 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
61 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
62 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
63 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
64 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
65 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
66 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
67 virtual error_code getSymbolSection(DataRefImpl Symb
    [all...]
COFF.h 104 const coff_symbol *toSymb(DataRefImpl Symb) const;
105 const coff_section *toSec(DataRefImpl Sec) const;
106 const coff_relocation *toRel(DataRefImpl Rel) const;
109 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
110 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
111 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
112 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
113 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
114 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
115 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const
    [all...]
ObjectFile.h 30 union DataRefImpl {
41 DataRefImpl() {
42 std::memset(this, 0, sizeof(DataRefImpl));
79 inline bool operator==(const DataRefImpl &a, const DataRefImpl &b) {
82 return std::memcmp(&a, &b, sizeof(DataRefImpl)) == 0;
85 inline bool operator<(const DataRefImpl &a, const DataRefImpl &b) {
88 return std::memcmp(&a, &b, sizeof(DataRefImpl)) < 0;
96 DataRefImpl RelocationPimpl
    [all...]
ELF.h 618 const Elf_Shdr *getRelSection(DataRefImpl Rel) const {
623 bool isRelocationHasAddend(DataRefImpl Rel) const;
628 const Elf_Shdr *getSection(DataRefImpl index) const;
630 const Elf_Rel *getRel(DataRefImpl Rel) const;
631 const Elf_Rela *getRela(DataRefImpl Rela) const;
641 const Elf_Sym *getSymbol(DataRefImpl Symb) const; // FIXME: Should be private?
642 void validateSymbol(DataRefImpl Symb) const;
650 const Elf_Dyn *getDyn(DataRefImpl DynData) const;
655 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
656 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 57 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Symb) const {
75 const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const {
92 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
101 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb,
107 error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb,
125 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb,
143 error_code COFFObjectFile::getSymbolType(DataRefImpl Symb,
165 error_code COFFObjectFile::getSymbolFlags(DataRefImpl Symb,
189 error_code COFFObjectFile::getSymbolSize(DataRefImpl Symb,
210 error_code COFFObjectFile::getSymbolNMTypeChar(DataRefImpl Symb
    [all...]
MachOObjectFile.cpp 35 DataRefImpl DRI;
65 void MachOObjectFile::moveToNextSymbol(DataRefImpl &DRI) const {
81 void MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI,
96 void MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI,
112 error_code MachOObjectFile::getSymbolNext(DataRefImpl DRI,
120 error_code MachOObjectFile::getSymbolName(DataRefImpl DRI,
134 error_code MachOObjectFile::getSymbolFileOffset(DataRefImpl DRI,
159 error_code MachOObjectFile::getSymbolAddress(DataRefImpl DRI,
173 error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
246 error_code MachOObjectFile::getSymbolNMTypeChar(DataRefImpl DRI
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 258 DataRefImpl DR = i->getRawDataRefImpl();
596 DataRefImpl DR = Section->getRawDataRefImpl();
MachODump.cpp 341 DataRefImpl DR = Sections[SectIdx].getRawDataRefImpl();
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 129 DataRefImpl ShdrRef = Sec.getRawDataRefImpl();

Completed in 60 milliseconds