Home | History | Annotate | Download | only in opcodes

Lines Matching refs:immh

479 /* Decode fields immh:immb and/or Q for e.g.
489 aarch64_insn Q, imm, immh;
492 immh = extract_field (FLD_immh, code, 0);
493 if (immh == 0)
497 /* Get highest set bit in immh. */
498 while (--pos >= 0 && (immh & 0x8) == 0)
499 immh <<= 1;
508 /* immh Q <T>
525 /* immh <shift>
527 0001 (16-UInt(immh:immb))
528 001x (32-UInt(immh:immb))
529 01xx (64-UInt(immh:immb))
530 1xxx (128-UInt(immh:immb)) */
533 /* immh:immb
534 immh <shift>
536 0001 (UInt(immh:immb)-8)
537 001x (UInt(immh:immb)-16)
538 01xx (UInt(immh:immb)-32)
539 1xxx (UInt(immh:immb)-64) */
2062 encoding in other opcode(s) ('immh' in the case of the example). */