Lines Matching refs:sval
4998 offsetT sval; in match_int_operand() local
5033 sval = offset_expr.X_add_number; in match_int_operand()
5039 if (sval > max_val) in match_int_operand()
5042 if (!arg->lax_match && sval <= max_val) in match_int_operand()
5048 if (!match_const_int (arg, &sval)) in match_int_operand()
5052 arg->last_op_int = sval; in match_int_operand()
5054 if (sval < min_val || sval > max_val || sval % factor) in match_int_operand()
5060 uval = (unsigned int) sval >> operand->shift; in match_int_operand()
5099 offsetT sval; in match_mapped_int_operand() local
5102 if (!match_const_int (arg, &sval)) in match_mapped_int_operand()
5107 if (operand->int_map[uval] == sval) in match_mapped_int_operand()
5127 offsetT size, sval, high; in match_msb_operand() local
5138 sval = operand->add_lsb ? high : size; in match_msb_operand()
5140 if (size < 0 || high > max_high || sval < min_val || sval > max_val) in match_msb_operand()
5145 insn_insert_operand (arg->insn, operand_base, sval - min_val); in match_msb_operand()
5223 offsetT sval; in match_perf_reg_operand() local
5225 if (!match_const_int (arg, &sval)) in match_perf_reg_operand()
5228 if (sval != 0 in match_perf_reg_operand()
5229 && (sval != 1 in match_perf_reg_operand()
5238 insn_insert_operand (arg->insn, operand, sval); in match_perf_reg_operand()
5248 offsetT sval; in match_addiusp_operand() local
5251 if (!match_const_int (arg, &sval)) in match_addiusp_operand()
5254 if (sval % 4) in match_addiusp_operand()
5260 sval /= 4; in match_addiusp_operand()
5261 if (!(sval >= -258 && sval <= 257) || (sval >= -2 && sval <= 1)) in match_addiusp_operand()
5267 uval = (unsigned int) sval; in match_addiusp_operand()
5660 offsetT sval; in match_mdmx_imm_reg_operand() local
5662 if (!match_const_int (arg, &sval)) in match_mdmx_imm_reg_operand()
5664 if (sval < 0 || sval > 31) in match_mdmx_imm_reg_operand()
5669 uval |= (sval & 31); in match_mdmx_imm_reg_operand()
13796 bfd_reloc_code_real_type reloc, offsetT sval) in mips16_immed_in_range_p() argument
13805 sval = SEXT_16BIT (sval); in mips16_immed_in_range_p()
13807 sval &= 0xffff; in mips16_immed_in_range_p()
13810 return (sval >= min_val in mips16_immed_in_range_p()
13811 && sval <= max_val in mips16_immed_in_range_p()
13812 && (sval & ((1 << operand->shift) - 1)) == 0); in mips16_immed_in_range_p()