Lines Matching refs:IntelExp
7518 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
7519 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
7521 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
7522 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
7523 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
7524 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
7525 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
7526 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
7527 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
7528 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
7529 if (AR.IntelExp.hasRegs()) in parseMSInlineAsm()
7532 StringRef OffsetName = AR.IntelExp.OffsetName; in parseMSInlineAsm()
7533 SMLoc OffsetLoc = SMLoc::getFromPointer(AR.IntelExp.OffsetName.data()); in parseMSInlineAsm()
7551 if (AR.IntelExp.Imm || AR.IntelExp.emitImm()) in parseMSInlineAsm()
7552 OS << (AR.IntelExp.emitImm() ? "$$" : " + $$") << AR.IntelExp.Imm; in parseMSInlineAsm()
7553 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()