Lines Matching refs:Bytes
86 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemset() local
87 if (Bytes == 0) in EmitTargetCodeForMemset()
96 Bytes <= 16 && countPopulation(Bytes) <= 2 : in EmitTargetCodeForMemset()
97 Bytes <= 4) { in EmitTargetCodeForMemset()
98 unsigned Size1 = Bytes == 16 ? 8 : 1 << findLastSet(Bytes); in EmitTargetCodeForMemset()
99 unsigned Size2 = Bytes - Size1; in EmitTargetCodeForMemset()
114 if (Bytes <= 2) { in EmitTargetCodeForMemset()
117 if (Bytes == 1) in EmitTargetCodeForMemset()
126 assert(Bytes >= 2 && "Should have dealt with 0- and 1-byte cases already"); in EmitTargetCodeForMemset()
131 Chain, Dst, Dst, Bytes); in EmitTargetCodeForMemset()
139 Chain, DstPlus1, Dst, Bytes - 1); in EmitTargetCodeForMemset()
197 uint64_t Bytes = CSize->getZExtValue(); in EmitTargetCodeForMemcmp() local
198 assert(Bytes > 0 && "Caller should have handled 0-size case"); in EmitTargetCodeForMemcmp()
200 SDValue CCReg = emitCLC(DAG, DL, Chain, Src2, Src1, Bytes); in EmitTargetCodeForMemcmp()