Lines Matching refs:CS

1171     SegmentReg = X86::CS;  in emitNop()
1820 raw_string_ostream CS(Comment); in getShuffleComment() local
1821 CS << DstName; in getShuffleComment()
1831 CS << " {%" << GetRegisterName(WriteMaskOp.getReg()) << "}"; in getShuffleComment()
1834 CS << " {z}"; in getShuffleComment()
1839 CS << " = "; in getShuffleComment()
1843 CS << ","; in getShuffleComment()
1845 CS << "zero"; in getShuffleComment()
1852 CS << (isSrc1 ? Src1Name : Src2Name) << '['; in getShuffleComment()
1858 CS << ','; in getShuffleComment()
1862 CS << "u"; in getShuffleComment()
1864 CS << ShuffleMask[i] % (int)e; in getShuffleComment()
1867 CS << ']'; in getShuffleComment()
1870 CS.flush(); in getShuffleComment()
1875 static void printConstant(const APInt &Val, raw_ostream &CS) { in printConstant() argument
1877 CS << Val.getZExtValue(); in printConstant()
1880 CS << "("; in printConstant()
1883 CS << ","; in printConstant()
1884 CS << Val.getRawData()[i]; in printConstant()
1886 CS << ")"; in printConstant()
1890 static void printConstant(const APFloat &Flt, raw_ostream &CS) { in printConstant() argument
1894 CS << Str; in printConstant()
1897 static void printConstant(const Constant *COp, raw_ostream &CS) { in printConstant() argument
1899 CS << "u"; in printConstant()
1901 printConstant(CI->getValue(), CS); in printConstant()
1903 printConstant(CF->getValueAPF(), CS); in printConstant()
1905 CS << "?"; in printConstant()
2166 raw_string_ostream CS(Comment); in addConstantComments() local
2168 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
2170 CS << "0x" << toString(CF->getValueAPF().bitcastToAPInt(), 16, false); in addConstantComments()
2171 OutStreamer.AddComment(CS.str()); in addConstantComments()
2245 raw_string_ostream CS(Comment); in addConstantComments() local
2247 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
2249 CS << "["; in addConstantComments()
2254 CS << ","; in addConstantComments()
2256 printConstant(CDS->getElementAsAPInt(i), CS); in addConstantComments()
2260 printConstant(CDS->getElementAsAPFloat(i), CS); in addConstantComments()
2262 CS << "?"; in addConstantComments()
2265 CS << "]"; in addConstantComments()
2266 OutStreamer.AddComment(CS.str()); in addConstantComments()
2268 CS << "<"; in addConstantComments()
2273 CS << ","; in addConstantComments()
2274 printConstant(CV->getOperand(i), CS); in addConstantComments()
2277 CS << ">"; in addConstantComments()
2278 OutStreamer.AddComment(CS.str()); in addConstantComments()
2354 raw_string_ostream CS(Comment); in addConstantComments() local
2356 CS << X86ATTInstPrinter::getRegisterName(DstOp.getReg()) << " = "; in addConstantComments()
2357 CS << "["; in addConstantComments()
2360 CS << ","; in addConstantComments()
2361 printConstant(C, CS); in addConstantComments()
2363 CS << "]"; in addConstantComments()
2364 OutStreamer.AddComment(CS.str()); in addConstantComments()