Lines Matching refs:IntelExp
6150 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6151 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6153 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6154 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6155 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6156 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6157 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6158 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6159 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6160 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
6161 if (AR.IntelExp.hasRegs()) in parseMSInlineAsm()
6164 StringRef OffsetName = AR.IntelExp.OffsetName; in parseMSInlineAsm()
6165 SMLoc OffsetLoc = SMLoc::getFromPointer(AR.IntelExp.OffsetName.data()); in parseMSInlineAsm()
6183 if (AR.IntelExp.Imm || AR.IntelExp.emitImm()) in parseMSInlineAsm()
6184 OS << (AR.IntelExp.emitImm() ? "$$" : " + $$") << AR.IntelExp.Imm; in parseMSInlineAsm()
6185 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()