Lines Matching refs:ShiftAmount
3075 uint32_t ShiftAmount = Log2_32(NumOfVReg); in getVLENFactoredAmount() local
3076 if (ShiftAmount == 0) in getVLENFactoredAmount()
3080 .addImm(ShiftAmount) in getVLENFactoredAmount()
3088 uint32_t ShiftAmount; in getVLENFactoredAmount() local
3091 ShiftAmount = Log2_64(NumOfVReg / 9); in getVLENFactoredAmount()
3094 ShiftAmount = Log2_64(NumOfVReg / 5); in getVLENFactoredAmount()
3097 ShiftAmount = Log2_64(NumOfVReg / 3); in getVLENFactoredAmount()
3101 if (ShiftAmount) in getVLENFactoredAmount()
3104 .addImm(ShiftAmount) in getVLENFactoredAmount()
3112 uint32_t ShiftAmount = Log2_32(NumOfVReg - 1); in getVLENFactoredAmount() local
3115 .addImm(ShiftAmount) in getVLENFactoredAmount()
3123 uint32_t ShiftAmount = Log2_32(NumOfVReg + 1); in getVLENFactoredAmount() local
3126 .addImm(ShiftAmount) in getVLENFactoredAmount()
3146 for (uint32_t ShiftAmount = 0; NumOfVReg >> ShiftAmount; ShiftAmount++) { in getVLENFactoredAmount() local
3147 if (NumOfVReg & (1LL << ShiftAmount)) { in getVLENFactoredAmount()
3148 if (ShiftAmount) in getVLENFactoredAmount()
3151 .addImm(ShiftAmount - PrevShiftAmount) in getVLENFactoredAmount()
3153 if (NumOfVReg >> (ShiftAmount + 1)) in getVLENFactoredAmount()
3158 PrevShiftAmount = ShiftAmount; in getVLENFactoredAmount()