Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:imms

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