Lines Matching refs:IntelExp
6124 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6125 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6127 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6128 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6129 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6130 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6131 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6132 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6133 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6134 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
6135 if (AR.IntelExp.hasRegs()) in parseMSInlineAsm()
6138 StringRef OffsetName = AR.IntelExp.OffsetName; in parseMSInlineAsm()
6139 SMLoc OffsetLoc = SMLoc::getFromPointer(AR.IntelExp.OffsetName.data()); in parseMSInlineAsm()
6157 if (AR.IntelExp.Imm || AR.IntelExp.emitImm()) in parseMSInlineAsm()
6158 OS << (AR.IntelExp.emitImm() ? "$$" : " + $$") << AR.IntelExp.Imm; in parseMSInlineAsm()
6159 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()