Commit 5329e227 by Torbjorn Granlund

(reg_or_cint_move_operand): New function.

(move_operand): Add header comment.

From-SVN: r3693
parent 78878730
......@@ -156,6 +156,8 @@ reg_or_0_or_nonsymb_mem_operand (op, mode)
return 0;
}
/* Accept anything that can be moved in one instruction into a general
register. */
int
move_operand (op, mode)
rtx op;
......@@ -185,6 +187,25 @@ move_operand (op, mode)
return memory_address_p (mode, op);
}
/* Accept REG and any CONST_INT that can be moved in one instruction into a
general register. */
int
reg_or_cint_move_operand (op, mode)
rtx op;
enum machine_mode mode;
{
if (register_operand (op, mode))
return 1;
if (GET_CODE (op) == CONST_INT)
{
/* OK if ldo, ldil, or zdepi, can be used. */
return (INT_14_BITS (op) || (INTVAL (op) & 0x7ff) == 0
|| zdepi_cint_p (INTVAL (op)));
}
return 0;
}
int
pic_operand (op, mode)
rtx op;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment