Lines Matching refs:ScaleFactor
147 unsigned Flags, unsigned ScaleFactor,
957 unsigned ScaleFactor = getImplicitScaleFactor(VT); in simplifyAddress() local
958 if (!ScaleFactor) in simplifyAddress()
964 if (((Offset < 0) || (Offset & (ScaleFactor - 1))) && !isInt<9>(Offset)) in simplifyAddress()
966 else if (Offset > 0 && !(Offset & (ScaleFactor - 1)) && in simplifyAddress()
967 !isUInt<12>(Offset / ScaleFactor)) in simplifyAddress()
1052 unsigned ScaleFactor, in addLoadStoreOperands() argument
1054 int64_t Offset = Addr.getOffset() / ScaleFactor; in addLoadStoreOperands()
1715 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitLoad() local
1716 if (!ScaleFactor) in emitLoad()
1722 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitLoad()
1724 ScaleFactor = 1; in emitLoad()
1820 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOLoad, ScaleFactor, MMO); in emitLoad()
2002 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitStore() local
2003 if (!ScaleFactor) in emitStore()
2009 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitStore()
2011 ScaleFactor = 1; in emitStore()
2056 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOStore, ScaleFactor, MMO); in emitStore()