Lines Matching refs:NumOfVReg
1845 int64_t NumOfVReg = Amount / 8; in getVLENFactoredAmount() local
1850 assert(isInt<32>(NumOfVReg) && in getVLENFactoredAmount()
1852 if (isPowerOf2_32(NumOfVReg)) { in getVLENFactoredAmount()
1853 uint32_t ShiftAmount = Log2_32(NumOfVReg); in getVLENFactoredAmount()
1861 ((NumOfVReg % 3 == 0 && isPowerOf2_64(NumOfVReg / 3)) || in getVLENFactoredAmount()
1862 (NumOfVReg % 5 == 0 && isPowerOf2_64(NumOfVReg / 5)) || in getVLENFactoredAmount()
1863 (NumOfVReg % 9 == 0 && isPowerOf2_64(NumOfVReg / 9)))) { in getVLENFactoredAmount()
1867 if (NumOfVReg % 9 == 0) { in getVLENFactoredAmount()
1869 ShiftAmount = Log2_64(NumOfVReg / 9); in getVLENFactoredAmount()
1870 } else if (NumOfVReg % 5 == 0) { in getVLENFactoredAmount()
1872 ShiftAmount = Log2_64(NumOfVReg / 5); in getVLENFactoredAmount()
1873 } else if (NumOfVReg % 3 == 0) { in getVLENFactoredAmount()
1875 ShiftAmount = Log2_64(NumOfVReg / 3); in getVLENFactoredAmount()
1888 } else if (isPowerOf2_32(NumOfVReg - 1)) { in getVLENFactoredAmount()
1890 uint32_t ShiftAmount = Log2_32(NumOfVReg - 1); in getVLENFactoredAmount()
1899 } else if (isPowerOf2_32(NumOfVReg + 1)) { in getVLENFactoredAmount()
1901 uint32_t ShiftAmount = Log2_32(NumOfVReg + 1); in getVLENFactoredAmount()
1912 movImm(MBB, II, DL, N, NumOfVReg, Flag); in getVLENFactoredAmount()