Lines Matching refs:Bytes
99 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset() local
100 if (Bytes == 0) in EmitTargetCodeForMemset()
109 Bytes <= 16 && countPopulation(Bytes) <= 2 : in EmitTargetCodeForMemset()
110 Bytes <= 4) { in EmitTargetCodeForMemset()
111 unsigned Size1 = Bytes == 16 ? 8 : 1 << findLastSet(Bytes); in EmitTargetCodeForMemset()
112 unsigned Size2 = Bytes - Size1; in EmitTargetCodeForMemset()
127 if (Bytes <= 2) { in EmitTargetCodeForMemset()
130 if (Bytes == 1) in EmitTargetCodeForMemset()
139 assert(Bytes >= 2 && "Should have dealt with 0- and 1-byte cases already"); in EmitTargetCodeForMemset()
143 return emitMemMemImm(DAG, DL, SystemZISD::XC, Chain, Dst, Dst, Bytes); in EmitTargetCodeForMemset()
146 Bytes, DAG.getAnyExtOrTrunc(Byte, DL, MVT::i32)); in EmitTargetCodeForMemset()
179 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp() local
180 assert(Bytes > 0 && "Caller should have handled 0-size case"); in EmitTargetCodeForMemcmp()
181 CCReg = emitMemMemImm(DAG, DL, SystemZISD::CLC, Chain, Src2, Src1, Bytes); in EmitTargetCodeForMemcmp()