Home | History | Annotate | Download | only in opcodes

Lines Matching refs:uval

1319    whose value is given by UVAL.  */
1323 const struct mips_operand *operand, unsigned int uval,
1330 uval & 8 ? "x" : "",
1331 uval & 4 ? "y" : "",
1332 uval & 2 ? "z" : "",
1333 uval & 1 ? "w" : "");
1335 infprintf (info->stream, style, "%c", "xyzw"[uval]);
1450 UVAL is the encoding of the operand (shifted into bit 0) and BASE_PC is
1459 unsigned int uval)
1471 uval = mips_decode_int_operand (int_op, uval);
1472 state->last_int = uval;
1474 infprintf (is, dis_style_immediate, "0x%x", uval);
1476 infprintf (is, dis_style_immediate, "%d", uval);
1485 uval = mint_op->int_map[uval];
1486 state->last_int = uval;
1488 infprintf (is, dis_style_immediate, "0x%x", uval);
1490 infprintf (is, dis_style_immediate, "%d", uval);
1499 uval += msb_op->bias;
1501 uval -= state->last_int;
1502 infprintf (is, dis_style_immediate, "0x%x", uval);
1512 uval = mips_decode_reg_operand (reg_op, uval);
1513 print_reg (info, opcode, reg_op->reg_type, uval);
1515 mips_seen_register (state, uval, reg_op->reg_type);
1525 pair_op->reg1_map[uval]);
1528 pair_op->reg2_map[uval]);
1537 info->target = mips_decode_pcrel_operand (pcrel_op, base_pc, uval);
1550 infprintf (is, dis_style_register, "%d", uval);
1557 sval = mips_signed_operand (operand, uval) * 4;
1568 reg1 = uval & 31;
1569 reg2 = uval >> 5;
1589 print_reg (info, opcode, OP_REG_GP, uval & 31);
1590 mips_seen_register (state, uval, OP_REG_GP);
1597 if (uval == 0)
1611 mips_gpr_names[16 + uval]);
1621 s_reg_encode = uval & 0xf;
1649 if (uval & 0x10) /* For ra. */
1669 amask = (uval >> 3) & 7;
1682 smask = (uval >> 1) & 3;
1701 if (uval & 1)
1729 vsel = uval >> 5;
1730 uval &= 31;
1739 print_reg (info, opcode, OP_REG_VEC, uval);
1745 print_reg (info, opcode, OP_REG_VEC, uval);
1747 infprintf (is, dis_style_immediate, "0x%x", uval);
1769 print_vu0_channel (info, operand, uval, dis_style_register);
1774 infprintf (is, dis_style_immediate, "%d", uval);
1780 print_reg (info, opcode, OP_REG_GP, uval);
1797 unsigned int uval;
1818 uval = mips_extract_operand (operand, insn);
1827 uval = mips_decode_reg_operand (reg_op, uval);
1828 mips_seen_register (&state, uval, reg_op->reg_type);
1836 reg1 = uval & 31;
1837 reg2 = uval >> 5;
1850 if (!prev_op->zero_ok && uval == 0)
1853 if (((prev_op->less_than_ok && uval < state.last_regno)
1854 || (prev_op->greater_than_ok && uval > state.last_regno)
1855 || (prev_op->equal_ok && uval == state.last_regno)))
1863 if (uval == 0)
2109 unsigned int uval;
2112 uval
2113 print_vu0_channel (info, &mips_vu0_channel_mask, uval,
2153 unsigned int uval;
2215 uval = ((extend & 0x1f) << 21) | ((extend & 0x3e0) << 11) | insn;
2217 uval = ((extend & 0x1f) << 11) | (extend & 0x7e0) | (insn & 0x1f);
2219 uval = ((extend & 0xf) << 11) | (extend & 0x7f0) | (insn & 0xf);
2221 uval = ((extend >> 6) & 0x1f) | (extend & 0x20);
2223 uval = mips_extract_operand (operand, (extend << 16) | insn);
2225 uval &= (1U << ext_size) - 1;
2268 print_insn_arg (info, state, opcode, operand, baseaddr + 1, uval);