reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/MC/MCParser/MCTargetAsmParser.h
  120     : AsmRewrite(AOK_IntelExpr, loc, len) { IntelExp = exp; }
lib/MC/MCParser/AsmParser.cpp
 5919       assert(AR.IntelExp.isValid() && "cannot write invalid intel expression");
 5920       if (AR.IntelExp.NeedBracs)
 5922       if (AR.IntelExp.hasBaseReg())
 5923         OS << AR.IntelExp.BaseReg;
 5924       if (AR.IntelExp.hasIndexReg())
 5925         OS << (AR.IntelExp.hasBaseReg() ? " + " : "")
 5926            << AR.IntelExp.IndexReg;
 5927       if (AR.IntelExp.Scale > 1)
 5928           OS << " * $$" << AR.IntelExp.Scale;
 5929       if (AR.IntelExp.Imm || !AR.IntelExp.hasRegs())
 5929       if (AR.IntelExp.Imm || !AR.IntelExp.hasRegs())
 5930         OS << (AR.IntelExp.hasRegs() ? " + $$" : "$$") << AR.IntelExp.Imm;
 5930         OS << (AR.IntelExp.hasRegs() ? " + $$" : "$$") << AR.IntelExp.Imm;
 5931       if (AR.IntelExp.NeedBracs)