Lines Matching refs:IntelExp
7503 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
7504 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
7506 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
7507 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
7508 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
7509 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
7510 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
7511 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
7512 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
7513 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
7514 if (AR.IntelExp.hasRegs()) in parseMSInlineAsm()
7517 StringRef OffsetName = AR.IntelExp.OffsetName; in parseMSInlineAsm()
7518 SMLoc OffsetLoc = SMLoc::getFromPointer(AR.IntelExp.OffsetName.data()); in parseMSInlineAsm()
7536 if (AR.IntelExp.Imm || AR.IntelExp.emitImm()) in parseMSInlineAsm()
7537 OS << (AR.IntelExp.emitImm() ? "$$" : " + $$") << AR.IntelExp.Imm; in parseMSInlineAsm()
7538 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()