Lines Matching refs:CS

713     SegmentReg = X86::CS;  in emitNop()
1423 raw_string_ostream CS(Comment); in getShuffleComment() local
1424 CS << DstName; in getShuffleComment()
1434 CS << " {%" << GetRegisterName(WriteMaskOp.getReg()) << "}"; in getShuffleComment()
1437 CS << " {z}"; in getShuffleComment()
1442 CS << " = "; in getShuffleComment()
1446 CS << ","; in getShuffleComment()
1448 CS << "zero"; in getShuffleComment()
1455 CS << (isSrc1 ? Src1Name : Src2Name) << '['; in getShuffleComment()
1461 CS << ','; in getShuffleComment()
1465 CS << "u"; in getShuffleComment()
1467 CS << ShuffleMask[i] % (int)e; in getShuffleComment()
1470 CS << ']'; in getShuffleComment()
1473 CS.flush(); in getShuffleComment()
1478 static void printConstant(const APInt &Val, raw_ostream &CS, in printConstant() argument
1481 CS << (PrintZero ? 0ULL : Val.getZExtValue()); in printConstant()
1484 CS << "("; in printConstant()
1487 CS << ","; in printConstant()
1488 CS << (PrintZero ? 0ULL : Val.getRawData()[i]); in printConstant()
1490 CS << ")"; in printConstant()
1494 static void printConstant(const APFloat &Flt, raw_ostream &CS, in printConstant() argument
1502 CS << Str; in printConstant()
1506 raw_ostream &CS, bool PrintZero = false) { in printConstant() argument
1508 CS << "u"; in printConstant()
1510 printConstant(CI->getValue(), CS, PrintZero); in printConstant()
1512 printConstant(CF->getValueAPF(), CS, PrintZero); in printConstant()
1522 CS << ","; in printConstant()
1524 printConstant(CDS->getElementAsAPInt(I), CS, PrintZero); in printConstant()
1526 printConstant(CDS->getElementAsAPFloat(I), CS, PrintZero); in printConstant()
1528 CS << "?"; in printConstant()
1536 CS << ","; in printConstant()
1537 printConstant(CV->getOperand(I), EltBits, CS, PrintZero); in printConstant()
1540 CS << "?"; in printConstant()
1548 raw_string_ostream CS(Comment); in printZeroUpperMove() local
1550 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in printZeroUpperMove()
1553 CS << "["; in printZeroUpperMove()
1554 printConstant(C, SclWidth, CS); in printZeroUpperMove()
1556 CS << ","; in printZeroUpperMove()
1557 printConstant(C, SclWidth, CS, true); in printZeroUpperMove()
1559 CS << "]"; in printZeroUpperMove()
1560 OutStreamer.AddComment(CS.str()); in printZeroUpperMove()
1565 CS << ShuffleComment; in printZeroUpperMove()
1566 OutStreamer.AddComment(CS.str()); in printZeroUpperMove()
1573 raw_string_ostream CS(Comment); in printBroadcast() local
1575 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in printBroadcast()
1576 CS << "["; in printBroadcast()
1579 CS << ","; in printBroadcast()
1580 printConstant(C, BitWidth, CS); in printBroadcast()
1582 CS << "]"; in printBroadcast()
1583 OutStreamer.AddComment(CS.str()); in printBroadcast()
1828 raw_string_ostream CS(Comment); in addConstantComments() local
1830 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
1832 CS << "0x" << toString(CF->getValueAPF().bitcastToAPInt(), 16, false); in addConstantComments()
1833 OutStreamer.AddComment(CS.str()); in addConstantComments()