Searched refs:op_mask (Results 1 – 4 of 4) sorted by relevance
1052 unsigned int op_mask = 0; in avr_operand() local1077 op_mask = r_name[1] - '0'; in avr_operand()1081 op_mask = (r_name[1] - '0') * 10 + r_name[2] - '0'; in avr_operand()1085 op_mask = (r_name[0] - 'x') * 2 + (r_name[1] == 'h') + 26; in avr_operand()1089 op_mask = (r_name[0] - 'x') * 2 + 26; in avr_operand()1093 op_mask = avr_get_constant (old_str, 31); in avr_operand()1099 *pregno = op_mask; in avr_operand()1103 if (op_mask < 16 || op_mask > 31) in avr_operand()1109 else if (op_mask > 31) in avr_operand()1118 if (op_mask < 16 || op_mask > 23) in avr_operand()[all …]
1222 unsigned int op_mask = 0; in xgate_parse_operand() local1239 op_mask = operand.reg; in xgate_parse_operand()1244 op_mask <<= 2; in xgate_parse_operand()1245 op_mask |= pp_fix; in xgate_parse_operand()1254 op_mask = operand.reg; in xgate_parse_operand()1271 op_mask = operand.exp.X_add_number; in xgate_parse_operand()1274 op_mask &= 0x00FF; in xgate_parse_operand()1277 op_mask >>= 8; in xgate_parse_operand()1285 if (op_mask > max_size) in xgate_parse_operand()1286 as_bad (_(":operand value(%d) too big for constraint"), op_mask); in xgate_parse_operand()[all …]
2296 check_redundant_cond_expr (gimple *stmt, tree op_mask, tree op_cond, in check_redundant_cond_expr() argument2307 if ((use_cond == op_mask || operand_equal_p (use_cond, op_cond, 0)) in check_redundant_cond_expr()
5489 (avr_operand): Don't set (unsigned) op_mask to -1.