Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:imms

212 /// the form N:immr:imms.
294 /// "N:immr:imms" (where the immr and imms fields are each 6 bits) into the
297 // Extract the N, imms, and immr fields.
300 unsigned imms = val & 0x3f;
303 int len = 31 - countLeadingZeros((N << 6) | (~imms & 0x3f));
307 unsigned S = imms & (size - 1);
322 /// in the form "N:immr:imms" (where the immr and imms fields are each 6 bits)
326 // Extract the N and imms fields needed for checking.
328 unsigned imms = val & 0x3f;
332 int len = 31 - countLeadingZeros((N << 6) | (~imms & 0x3f));
336 unsigned S = imms & (size - 1);