Home | History | Annotate | Download | only in SystemZ

Lines Matching defs:Bytes

38     uint64_t Bytes = CSize->getZExtValue();
39 if (Bytes >= 1 && Bytes <= 0x100) {
48 // Handle a memset of 1, 2, 4 or 8 bytes with the operands given by
74 uint64_t Bytes = CSize->getZExtValue();
75 if (Bytes == 0)
84 Bytes <= 16 && CountPopulation_64(Bytes) <= 2 :
85 Bytes <= 4) {
86 unsigned Size1 = Bytes == 16 ? 8 : 1 << findLastSet(Bytes);
87 unsigned Size2 = Bytes - Size1;
100 // Handle one and two bytes using STC.
101 if (Bytes <= 2) {
104 if (Bytes == 1)
114 assert(Bytes >= 2 && "Should have dealt with 0- and 1-byte cases already");
115 if (Bytes <= 0x101) {
123 DAG.getConstant(Bytes - 1, MVT::i32));