Lines Matching refs:ScaleFactor
191 unsigned ScaleFactor, MachineMemOperand *MMO);
995 unsigned ScaleFactor = getImplicitScaleFactor(VT); in simplifyAddress() local
996 if (!ScaleFactor) in simplifyAddress()
1002 if (((Offset < 0) || (Offset & (ScaleFactor - 1))) && !isInt<9>(Offset)) in simplifyAddress()
1004 else if (Offset > 0 && !(Offset & (ScaleFactor - 1)) && in simplifyAddress()
1005 !isUInt<12>(Offset / ScaleFactor)) in simplifyAddress()
1090 unsigned ScaleFactor, in addLoadStoreOperands() argument
1092 int64_t Offset = Addr.getOffset() / ScaleFactor; in addLoadStoreOperands()
1761 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitLoad() local
1762 if (!ScaleFactor) in emitLoad()
1768 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitLoad()
1770 ScaleFactor = 1; in emitLoad()
1866 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOLoad, ScaleFactor, MMO); in emitLoad()
2087 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitStore() local
2088 if (!ScaleFactor) in emitStore()
2094 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitStore()
2096 ScaleFactor = 1; in emitStore()
2141 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOStore, ScaleFactor, MMO); in emitStore()