Home | History | Annotate | Download | only in opcodes

Lines Matching defs:lsb

1000      SBFX <Xd>, <Xn>, #<lsb>, #<width>
1002 SBFM <Xd>, <Xn>, #<lsb>, #(<lsb>+<width>-1). */
1007 int64_t lsb, width;
1010 lsb = inst->operands[2].imm.value;
1012 inst->operands[2].imm.value = lsb;
1013 inst->operands[3].imm.value = lsb + width - 1;
1017 SBFIZ <Xd>, <Xn>, #<lsb>, #<width>
1019 SBFM <Xd>, <Xn>, #((64-<lsb>)&0x3f), #(<width>-1). */
1024 int64_t lsb, width;
1027 lsb = inst->operands[2].imm.value;
1031 inst->operands[2].imm.value = (32 - lsb) & 0x1f;
1036 inst->operands[2].imm.value = (64 - lsb) & 0x3f;