Lines Matching refs:ImmOff
1215 static bool isPreferredADD(int64_t ImmOff) { in isPreferredADD() argument
1217 if ((ImmOff & 0xfffffffffffff000LL) == 0x0LL) in isPreferredADD()
1220 if ((ImmOff & 0xffffffffff000fffLL) == 0x0LL) in isPreferredADD()
1222 return (ImmOff & 0xffffffffff00ffffLL) != 0x0LL && in isPreferredADD()
1223 (ImmOff & 0xffffffffffff0fffLL) != 0x0LL; in isPreferredADD()
1258 int64_t ImmOff = (int64_t)cast<ConstantSDNode>(RHS)->getZExtValue(); in SelectAddrModeXRO() local
1263 if ((ImmOff % Size == 0 && ImmOff >= 0 && ImmOff < (0x1000 << Scale)) || in SelectAddrModeXRO()
1264 isPreferredADD(ImmOff) || isPreferredADD(-ImmOff)) in SelectAddrModeXRO()
5250 int64_t ImmOff = C->getSExtValue(); in SelectSVERegRegAddrMode() local
5255 if (ImmOff % Size) in SelectSVERegRegAddrMode()
5260 Offset = CurDAG->getTargetConstant(ImmOff >> Scale, DL, MVT::i64); in SelectSVERegRegAddrMode()
5302 int64_t ImmOff = C->getSExtValue(); in SelectSMETileSlice() local
5305 if (ImmOff < 0 || ImmOff > MaxSize) in SelectSMETileSlice()
5309 Offset = CurDAG->getTargetConstant(ImmOff, SDLoc(N), MVT::i64); in SelectSMETileSlice()