Lines Matching refs:NumOfVReg

3069   int64_t NumOfVReg = Amount / 8;  in getVLENFactoredAmount()  local
3072 assert(isInt<32>(NumOfVReg) && in getVLENFactoredAmount()
3074 if (llvm::has_single_bit<uint32_t>(NumOfVReg)) { in getVLENFactoredAmount()
3075 uint32_t ShiftAmount = Log2_32(NumOfVReg); in getVLENFactoredAmount()
3083 ((NumOfVReg % 3 == 0 && isPowerOf2_64(NumOfVReg / 3)) || in getVLENFactoredAmount()
3084 (NumOfVReg % 5 == 0 && isPowerOf2_64(NumOfVReg / 5)) || in getVLENFactoredAmount()
3085 (NumOfVReg % 9 == 0 && isPowerOf2_64(NumOfVReg / 9)))) { in getVLENFactoredAmount()
3089 if (NumOfVReg % 9 == 0) { in getVLENFactoredAmount()
3091 ShiftAmount = Log2_64(NumOfVReg / 9); in getVLENFactoredAmount()
3092 } else if (NumOfVReg % 5 == 0) { in getVLENFactoredAmount()
3094 ShiftAmount = Log2_64(NumOfVReg / 5); in getVLENFactoredAmount()
3095 } else if (NumOfVReg % 3 == 0) { in getVLENFactoredAmount()
3097 ShiftAmount = Log2_64(NumOfVReg / 3); in getVLENFactoredAmount()
3110 } else if (llvm::has_single_bit<uint32_t>(NumOfVReg - 1)) { in getVLENFactoredAmount()
3112 uint32_t ShiftAmount = Log2_32(NumOfVReg - 1); in getVLENFactoredAmount()
3121 } else if (llvm::has_single_bit<uint32_t>(NumOfVReg + 1)) { in getVLENFactoredAmount()
3123 uint32_t ShiftAmount = Log2_32(NumOfVReg + 1); in getVLENFactoredAmount()
3134 movImm(MBB, II, DL, N, NumOfVReg, Flag); in getVLENFactoredAmount()
3146 for (uint32_t ShiftAmount = 0; NumOfVReg >> ShiftAmount; ShiftAmount++) { in getVLENFactoredAmount()
3147 if (NumOfVReg & (1LL << ShiftAmount)) { in getVLENFactoredAmount()
3153 if (NumOfVReg >> (ShiftAmount + 1)) in getVLENFactoredAmount()