Lines Matching refs:CS
1184 SegmentReg = X86::CS; in emitNop()
1866 raw_string_ostream CS(Comment); in getShuffleComment() local
1867 CS << DstName; in getShuffleComment()
1877 CS << " {%" << GetRegisterName(WriteMaskOp.getReg()) << "}"; in getShuffleComment()
1880 CS << " {z}"; in getShuffleComment()
1885 CS << " = "; in getShuffleComment()
1889 CS << ","; in getShuffleComment()
1891 CS << "zero"; in getShuffleComment()
1898 CS << (isSrc1 ? Src1Name : Src2Name) << '['; in getShuffleComment()
1904 CS << ','; in getShuffleComment()
1908 CS << "u"; in getShuffleComment()
1910 CS << ShuffleMask[i] % (int)e; in getShuffleComment()
1913 CS << ']'; in getShuffleComment()
1916 CS.flush(); in getShuffleComment()
1921 static void printConstant(const APInt &Val, raw_ostream &CS) { in printConstant() argument
1923 CS << Val.getZExtValue(); in printConstant()
1926 CS << "("; in printConstant()
1929 CS << ","; in printConstant()
1930 CS << Val.getRawData()[i]; in printConstant()
1932 CS << ")"; in printConstant()
1936 static void printConstant(const APFloat &Flt, raw_ostream &CS) { in printConstant() argument
1940 CS << Str; in printConstant()
1943 static void printConstant(const Constant *COp, raw_ostream &CS) { in printConstant() argument
1945 CS << "u"; in printConstant()
1947 printConstant(CI->getValue(), CS); in printConstant()
1949 printConstant(CF->getValueAPF(), CS); in printConstant()
1951 CS << "?"; in printConstant()
2212 raw_string_ostream CS(Comment); in addConstantComments() local
2214 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
2216 CS << "0x" << toString(CF->getValueAPF().bitcastToAPInt(), 16, false); in addConstantComments()
2217 OutStreamer.AddComment(CS.str()); in addConstantComments()
2291 raw_string_ostream CS(Comment); in addConstantComments() local
2293 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
2295 CS << "["; in addConstantComments()
2300 CS << ","; in addConstantComments()
2302 printConstant(CDS->getElementAsAPInt(i), CS); in addConstantComments()
2306 printConstant(CDS->getElementAsAPFloat(i), CS); in addConstantComments()
2308 CS << "?"; in addConstantComments()
2311 CS << "]"; in addConstantComments()
2312 OutStreamer.AddComment(CS.str()); in addConstantComments()
2314 CS << "<"; in addConstantComments()
2319 CS << ","; in addConstantComments()
2320 printConstant(CV->getOperand(i), CS); in addConstantComments()
2323 CS << ">"; in addConstantComments()
2324 OutStreamer.AddComment(CS.str()); in addConstantComments()
2400 raw_string_ostream CS(Comment); in addConstantComments() local
2402 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
2403 CS << "["; in addConstantComments()
2406 CS << ","; in addConstantComments()
2407 printConstant(C, CS); in addConstantComments()
2409 CS << "]"; in addConstantComments()
2410 OutStreamer.AddComment(CS.str()); in addConstantComments()