Lines Matching refs:ScaleFactor
191 unsigned ScaleFactor, MachineMemOperand *MMO);
1009 unsigned ScaleFactor = getImplicitScaleFactor(VT); in simplifyAddress() local
1010 if (!ScaleFactor) in simplifyAddress()
1016 if (((Offset < 0) || (Offset & (ScaleFactor - 1))) && !isInt<9>(Offset)) in simplifyAddress()
1018 else if (Offset > 0 && !(Offset & (ScaleFactor - 1)) && in simplifyAddress()
1019 !isUInt<12>(Offset / ScaleFactor)) in simplifyAddress()
1100 unsigned ScaleFactor, in addLoadStoreOperands() argument
1102 int64_t Offset = Addr.getOffset() / ScaleFactor; in addLoadStoreOperands()
1742 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitLoad() local
1743 if (!ScaleFactor) in emitLoad()
1749 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitLoad()
1751 ScaleFactor = 1; in emitLoad()
1847 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOLoad, ScaleFactor, MMO); in emitLoad()
2067 unsigned ScaleFactor = getImplicitScaleFactor(VT); in emitStore() local
2068 if (!ScaleFactor) in emitStore()
2074 if ((Addr.getOffset() < 0) || (Addr.getOffset() & (ScaleFactor - 1))) { in emitStore()
2076 ScaleFactor = 1; in emitStore()
2121 addLoadStoreOperands(Addr, MIB, MachineMemOperand::MOStore, ScaleFactor, MMO); in emitStore()