Home | History | Annotate | Download | only in opcodes

Lines Matching defs:lsb

872    %E			print the LSB and WIDTH fields of a BFI or BFC instruction.
1451 %E print the lsb and width fields of a bfc/bfi instruction
1452 %F print the lsb and width fields of a sbfx/ubfx instruction
3591 /* LSB and WIDTH fields of BFI or BFC. The machine-
3592 language instruction encodes LSB and MSB. */
3595 long lsb = (given & 0x00000f80) >> 7;
3596 long w = msb - lsb + 1;
3599 func (stream, "#%lu, #%lu", lsb, w);
3601 func (stream, "(invalid: %lu:%lu)", lsb, msb);
4285 unsigned int lsb = 0;
4287 lsb |= (given & 0x000000c0u) >> 6;
4288 lsb |= (given & 0x00007000u) >> 10;
4289 func (stream, "#%u, #%u", lsb, msb - lsb + 1);
4296 unsigned int lsb = 0;
4298 lsb |= (given & 0x000000c0u) >> 6;
4299 lsb |= (given & 0x00007000u) >> 10;
4300 func (stream, "#%u, #%u", lsb, width);