Lines Matching refs:IntelExp
7553 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
7554 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
7556 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
7557 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
7558 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
7559 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
7560 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
7561 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
7562 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
7563 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
7564 if (AR.IntelExp.hasRegs()) in parseMSInlineAsm()
7567 StringRef OffsetName = AR.IntelExp.OffsetName; in parseMSInlineAsm()
7568 SMLoc OffsetLoc = SMLoc::getFromPointer(AR.IntelExp.OffsetName.data()); in parseMSInlineAsm()
7586 if (AR.IntelExp.Imm || AR.IntelExp.emitImm()) in parseMSInlineAsm()
7587 OS << (AR.IntelExp.emitImm() ? "$$" : " + $$") << AR.IntelExp.Imm; in parseMSInlineAsm()
7588 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()