Searched refs:op_mask (Results 1 – 3 of 3) sorted by relevance
857 unsigned int op_mask = 0; in avr_operand() local882 op_mask = r_name[1] - '0'; in avr_operand()886 op_mask = (r_name[1] - '0') * 10 + r_name[2] - '0'; in avr_operand()890 op_mask = (r_name[0] - 'x') * 2 + (r_name[1] == 'h') + 26; in avr_operand()894 op_mask = (r_name[0] - 'x') * 2 + 26; in avr_operand()898 op_mask = avr_get_constant (old_str, 31); in avr_operand()905 if (op_mask < 16 || op_mask > 31) in avr_operand()911 else if (op_mask > 31) in avr_operand()920 if (op_mask < 16 || op_mask > 23) in avr_operand()922 op_mask -= 16; in avr_operand()[all …]
1214 unsigned int op_mask = 0; in xgate_parse_operand() local1231 op_mask = operand.reg; in xgate_parse_operand()1236 op_mask <<= 2; in xgate_parse_operand()1237 op_mask |= pp_fix; in xgate_parse_operand()1246 op_mask = operand.reg; in xgate_parse_operand()1263 op_mask = operand.exp.X_add_number; in xgate_parse_operand()1266 op_mask &= 0x00FF; in xgate_parse_operand()1269 op_mask >>= 8; in xgate_parse_operand()1277 if (op_mask > max_size) in xgate_parse_operand()1278 as_bad (_(":operand value(%d) too big for constraint"), op_mask); in xgate_parse_operand()[all …]
5489 (avr_operand): Don't set (unsigned) op_mask to -1.