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

  /external/llvm/include/llvm/Object/
MachO.h 64 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
65 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
66 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
67 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
68 virtual error_code getSymbolAlignment(DataRefImpl Symb, uint32_t &Res) const;
69 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
70 virtual error_code getSymbolType(DataRefImpl Symb,
72 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
73 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
74 virtual error_code getSymbolSection(DataRefImpl Symb,
    [all...]
COFF.h 209 const coff_symbol *toSymb(DataRefImpl Symb) const;
214 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
215 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
216 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
217 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
218 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
219 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
220 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
221 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
222 virtual error_code getSymbolSection(DataRefImpl Symb,
    [all...]
ObjectFile.h 46 content_iterator(content_type symb)
47 : Current(symb) {}
291 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const = 0;
292 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const = 0;
293 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const = 0;
294 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res)const=0;
295 virtual error_code getSymbolAlignment(DataRefImpl Symb, uint32_t &Res) const;
296 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const = 0;
297 virtual error_code getSymbolType(DataRefImpl Symb,
299 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const = 0
    [all...]
ELF.h 651 const Elf_Sym *Symb,
657 const Elf_Sym *getSymbol(DataRefImpl Symb) const; // FIXME: Should be private?
658 void validateSymbol(DataRefImpl Symb) const;
663 const Elf_Sym *Symb,
668 error_code getSymbolVersion(SymbolRef Symb, StringRef &Version,
673 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
674 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
675 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
676 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
677 virtual error_code getSymbolAlignment(DataRefImpl Symb, uint32_t &Res) const
926 const Elf_Sym *symb = getSymbol(Symb); local
956 const Elf_Sym *symb = getSymbol(Symb); local
966 const Elf_Sym *symb = getSymbol(Symb); local
1020 const Elf_Sym *symb = getSymbol(Symb); local
1054 const Elf_Sym *symb = getSymbol(Symb); local
1117 const Elf_Sym *symb = getSymbol(Symb); local
1128 const Elf_Sym *symb = getSymbol(Symb); local
1192 const Elf_Sym *symb = getSymbol(Symb); local
1223 const Elf_Sym *symb = getSymbol(Symb); local
1258 const Elf_Sym *symb = getSymbol(Symb); local
1274 const Elf_Sym *symb = getSymbol(Symb); local
1423 const Elf_Sym *symb = getSymbol(Symb); local
2323 const Elf_Sym *symb = getEntry<Elf_Sym>(sec->sh_link, symbol_index); local
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 58 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Symb) const {
59 const coff_symbol *addr = reinterpret_cast<const coff_symbol*>(Symb.p);
93 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
95 const coff_symbol *symb = toSymb(Symb); local
96 symb += 1 + symb->NumberOfAuxSymbols;
97 Symb.p = reinterpret_cast<uintptr_t>(symb);
98 Result = SymbolRef(Symb, this)
104 const coff_symbol *symb = toSymb(Symb); local
110 const coff_symbol *symb = toSymb(Symb); local
128 const coff_symbol *symb = toSymb(Symb); local
146 const coff_symbol *symb = toSymb(Symb); local
168 const coff_symbol *symb = toSymb(Symb); local
195 const coff_symbol *symb = toSymb(Symb); local
213 const coff_symbol *symb = toSymb(Symb); local
281 const coff_symbol *symb = toSymb(Symb); local
399 const coff_symbol *symb = toSymb(Symb); local
843 const coff_symbol *symb = 0; local
    [all...]
MachOObjectFile.cpp 448 error_code MachOObjectFile::getSymbolNext(DataRefImpl Symb,
453 Symb.p += SymbolTableEntrySize;
454 Res = SymbolRef(Symb, this);
458 error_code MachOObjectFile::getSymbolName(DataRefImpl Symb,
461 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
467 error_code MachOObjectFile::getSymbolAddress(DataRefImpl Symb,
470 macho::Symbol64TableEntry Entry = getSymbol64TableEntry(Symb);
473 macho::SymbolTableEntry Entry = getSymbolTableEntry(Symb);
480 MachOObjectFile::getSymbolFileOffset(DataRefImpl Symb,
482 SymbolTableEntryBase Entry = getSymbolTableEntryBase(this, Symb);
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 83 COFFSymbol *Symb;
85 COFFRelocation() : Symb(NULL) {}
658 const MCSymbolRefExpr *SymB = Target.getSymB();
659 const bool CrossSection = SymB &&
660 &SymA->getSymbol().getSection() != &SymB->getSymbol().getSection();
673 // In the case where we have SymbA and SymB, we just need to store the delta
689 Reloc.Symb = coff_symbol->Section->Symbol;
693 Reloc.Symb = coff_symbol;
695 ++Reloc.Symb->Relocations;
835 assert((*cr).Symb->Index != -1)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 138 MCSymbol *Symb = DU->getStringPoolEntry(String);
140 Value = new (DIEValueAllocator) DIELabel(Symb);
143 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
159 MCSymbol *Symb = DU->getStringPoolEntry(String);
162 Value = new (DIEValueAllocator) DIELabel(Symb);
165 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
    [all...]

Completed in 86 milliseconds