Lines Matching refs:ScaleFactor
146 unsigned Flags, unsigned ScaleFactor,
949 unsigned ScaleFactor = getImplicitScaleFactor(VT); in simplifyAddress() local
950 if (!ScaleFactor) in simplifyAddress()
956 if (((Offset < 0) || (Offset & (ScaleFactor - 1))) && !isInt<9>(Offset)) in simplifyAddress()
958 else if (Offset > 0 && !(Offset & (ScaleFactor - 1)) && in simplifyAddress()
959 !isUInt<12>(Offset / ScaleFactor)) in simplifyAddress()
1044 unsigned ScaleFactor, in addLoadStoreOperands() argument
1046 int64_t Offset = Addr.getOffset() / ScaleFactor; in addLoadStoreOperands()
1707 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitLoad() local
1708 if (!ScaleFactor) in emitLoad()
1714 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitLoad()
1716 ScaleFactor = 1; in emitLoad()
1812 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOLoad, ScaleFactor, MMO); in emitLoad()
2009 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitStore() local
2010 if (!ScaleFactor) in emitStore()
2016 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitStore()
2018 ScaleFactor = 1; in emitStore()
2063 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOStore, ScaleFactor, MMO); in emitStore()