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

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 223 MCSymbol *Symb = DU->getStringPool().getSymbol(*Asm, String);
226 Value = new (DIEValueAllocator) DIELabel(Symb);
229 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
    [all...]
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 59 void moveSymbolNext(DataRefImpl &Symb) const override;
60 std::error_code getSymbolName(DataRefImpl Symb,
62 std::error_code getSymbolAddress(DataRefImpl Symb,
64 std::error_code getSymbolAlignment(DataRefImpl Symb,
66 std::error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const override;
67 uint32_t getSymbolFlags(DataRefImpl Symb) const override;
68 std::error_code getSymbolType(DataRefImpl Symb,
70 std::error_code getSymbolSection(DataRefImpl Symb,
97 std::error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
129 Elf_Sym_Iter toELFSymIter(DataRefImpl Symb) const
241 const Elf_Sym *symb = getSymbol(Symb); local
701 const Elf_Sym *symb = local
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 167 DataRefImpl Symb;
277 STE_64 = MachO->getSymbol64TableEntry(I->Symb);
285 STE = MachO->getSymbolTableEntry(I->Symb);
329 MachO->getSymbolSection(I->Symb, Sec);
388 if (MachO->getIndirectName(I->Symb, IndirectName))
512 DataRefImpl Symb = I->getRawDataRefImpl();
513 const Elf_Sym *ESym = Obj.getSymbol(Symb);
552 const coff_symbol *Symb = Obj.getCOFFSymbol(*I);
569 if (!COFF::isReservedSectionNumber(Symb->SectionNumber)) {
577 switch (Symb->SectionNumber)
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 83 COFFSymbol *Symb;
85 COFFRelocation() : Symb(nullptr) {}
724 const MCSymbolRefExpr *SymB = Target.getSymB();
727 if (SymB) {
728 const MCSymbol *B = &SymB->getSymbol();
751 // In the case where we have SymbA and SymB, we just need to store the delta
767 Reloc.Symb = coff_symbol->Section->Symbol;
771 Reloc.Symb = coff_symbol;
773 ++Reloc.Symb->Relocations;
937 assert(Relocation.Symb->Index != -1)
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 128 const coff_symbol *Symb = toSymb(Ref);
129 Symb += 1 + Symb->NumberOfAuxSymbols;
130 Ref.p = reinterpret_cast<uintptr_t>(Symb);
135 const coff_symbol *Symb = toSymb(Ref);
136 return getSymbolName(Symb, Result);
141 const coff_symbol *Symb = toSymb(Ref);
143 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
146 if (Symb->SectionNumber == COFF::IMAGE_SYM_UNDEFINED)
149 Result = Section->VirtualAddress + Symb->Value
    [all...]

Completed in 78 milliseconds