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

  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCValue.h 38 const MCSymbolRefExpr *SymA, *SymB;
44 const MCSymbolRefExpr *getSymB() const { return SymB; }
47 bool isAbsolute() const { return !SymA && !SymB; }
55 static MCValue get(const MCSymbolRefExpr *SymA, const MCSymbolRefExpr *SymB=0,
58 assert((!SymB || SymA) && "Invalid relocatable MCValue!");
61 R.SymB = SymB;
69 R.SymB = 0;
  /external/llvm/include/llvm/MC/
MCValue.h 41 const MCSymbolRefExpr *SymA, *SymB;
48 const MCSymbolRefExpr *getSymB() const { return SymB; }
52 bool isAbsolute() const { return !SymA && !SymB; }
63 const MCSymbolRefExpr *SymB = nullptr,
68 R.SymB = SymB;
77 R.SymB = nullptr;
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 650 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
652 if (SymB.isUndefined()) {
654 Twine("symbol '") + SymB.getName() +
659 assert(!SymB.isAbsolute() && "Should have been folded");
660 const MCSection &SecB = SymB.getSection();
667 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
    [all...]
WinCOFFObjectWriter.cpp 93 COFFSymbol *Symb;
95 COFFRelocation() : Symb(nullptr) {}
679 const MCSymbolRefExpr *SymB = Target.getSymB();
682 if (SymB) {
683 const MCSymbol *B = &SymB->getSymbol();
705 // In the case where we have SymbA and SymB, we just need to store the delta
734 Reloc.Symb = SectionMap[TargetSection]->Symbol;
740 Reloc.Symb = SymbolMap[&A];
743 ++Reloc.Symb->Relocations;
962 assert(Relocation.Symb->getIndex() != -1)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 86 COFFSymbol *Symb;
88 COFFRelocation() : Symb(NULL) {}
657 const MCSymbolRefExpr *SymB = Target.getSymB();
658 const bool CrossSection = SymB &&
659 &SymA->getSymbol().getSection() != &SymB->getSymbol().getSection();
672 // In the case where we have SymbA and SymB, we just need to store the delta
688 Reloc.Symb = coff_symbol->Section->Symbol;
692 Reloc.Symb = coff_symbol;
694 ++Reloc.Symb->Relocations;
815 assert((*cr).Symb->Index != -1)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 997 milliseconds