Lines Matching refs:IntelExp
5774 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
5775 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
5777 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
5778 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
5779 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
5780 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
5781 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
5782 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
5783 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
5784 if (AR.IntelExp.Imm || !AR.IntelExp.hasRegs()) in parseMSInlineAsm()
5785 OS << (AR.IntelExp.hasRegs() ? " + $$" : "$$") << AR.IntelExp.Imm; in parseMSInlineAsm()
5786 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()