Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:Arg

171   static inline int getSOImmVal(unsigned Arg) {
174 if ((Arg & ~255U) == 0) return Arg;
176 unsigned RotAmt = getSOImmValRotate(Arg);
179 if (rotr32(~255U, RotAmt) & Arg)
183 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
303 // If 'Arg' can be handled with a single shifter_op return the value.
314 static inline int getT2SOImmVal(unsigned Arg) {
315 // If 'Arg' is an 8-bit splat, then get the encoded value.
316 int Splat = getT2SOImmValSplatVal(Arg);
320 // If 'Arg' can be handled with a single shifter_op return the value.
321 int Rot = getT2SOImmValRotateVal(Arg);