Home
last modified time | relevance | path

Searched refs:SymA (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/MC/
DMCValue.h44 const MCSymbolRefExpr *SymA, *SymB; variable
50 const MCSymbolRefExpr *getSymA() const { return SymA; } in getSymA()
55 bool isAbsolute() const { return !SymA && !SymB; } in isAbsolute()
65 static MCValue get(const MCSymbolRefExpr *SymA,
69 assert((!SymB || SymA) && "Invalid relocatable MCValue!");
71 R.SymA = SymA;
80 R.SymA = nullptr; in get()
/external/llvm/lib/MC/
DELFObjectWriter.cpp827 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr; in RecordRelocation() local
828 const MCSymbolData *SymAD = SymA ? &Asm.getSymbolData(*SymA) : nullptr; in RecordRelocation()
832 if (!RelocateWithSymbol && SymA && !SymA->isUndefined()) in RecordRelocation()
851 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr; in RecordRelocation()
861 if (SymA) { in RecordRelocation()
862 if (const MCSymbol *R = Renames.lookup(SymA)) in RecordRelocation()
863 SymA = R; in RecordRelocation()
868 UsedInReloc.insert(SymA); in RecordRelocation()
870 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend); in RecordRelocation()