Lines Matching refs:ScaleFactor
192 unsigned ScaleFactor, MachineMemOperand *MMO);
1036 unsigned ScaleFactor = getImplicitScaleFactor(VT); in simplifyAddress() local
1037 if (!ScaleFactor) in simplifyAddress()
1043 if (((Offset < 0) || (Offset & (ScaleFactor - 1))) && !isInt<9>(Offset)) in simplifyAddress()
1045 else if (Offset > 0 && !(Offset & (ScaleFactor - 1)) && in simplifyAddress()
1046 !isUInt<12>(Offset / ScaleFactor)) in simplifyAddress()
1127 unsigned ScaleFactor, in addLoadStoreOperands() argument
1129 int64_t Offset = Addr.getOffset() / ScaleFactor; in addLoadStoreOperands()
1760 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitLoad() local
1761 if (!ScaleFactor) in emitLoad()
1767 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitLoad()
1769 ScaleFactor = 1; in emitLoad()
1865 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOLoad, ScaleFactor, MMO); in emitLoad()
2085 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitStore() local
2086 if (!ScaleFactor) in emitStore()
2092 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitStore()
2094 ScaleFactor = 1; in emitStore()
2139 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOStore, ScaleFactor, MMO); in emitStore()