aboutsummaryrefslogtreecommitdiff
path: root/tcg/sparc
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-24 18:06:35 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-24 18:06:35 +0000
commit26cc915cff2adeabff44ca8b779de3a54fec0171 (patch)
tree60689aa3ab528e92c5ec469a697ce109fb9e1e06 /tcg/sparc
parent77fcd0934a2076beb5b174f54b81fc1d7e76f7ec (diff)
Use sethi and arith functions, fix comment
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4560 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcg/sparc')
-rw-r--r--tcg/sparc/tcg-target.c49
1 files changed, 26 insertions, 23 deletions
diff --git a/tcg/sparc/tcg-target.c b/tcg/sparc/tcg-target.c
index 4d53254ce6..61353f6e9d 100644
--- a/tcg/sparc/tcg-target.c
+++ b/tcg/sparc/tcg-target.c
@@ -243,10 +243,28 @@ static inline int tcg_target_const_match(tcg_target_long val,
#define STW (INSN_OP(3) | INSN_OP3(0x04))
#define STX (INSN_OP(3) | INSN_OP3(0x0e))
+static inline void tcg_out_arith(TCGContext *s, int rd, int rs1, int rs2,
+ int op)
+{
+ tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) |
+ INSN_RS2(rs2));
+}
+
+static inline void tcg_out_arithi(TCGContext *s, int rd, int rs1, int offset,
+ int op)
+{
+ tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) |
+ INSN_IMM13(offset));
+}
+
static inline void tcg_out_mov(TCGContext *s, int ret, int arg)
{
- tcg_out32(s, ARITH_OR | INSN_RD(ret) | INSN_RS1(arg) |
- INSN_RS2(TCG_REG_G0));
+ tcg_out_arith(s, ret, arg, TCG_REG_G0, ARITH_OR);
+}
+
+static inline void tcg_out_sethi(TCGContext *s, int ret, uint32_t arg)
+{
+ tcg_out32(s, SETHI | INSN_RD(ret) | ((arg & 0xfffffc00) >> 10));
}
static inline void tcg_out_movi(TCGContext *s, TCGType type,
@@ -260,7 +278,7 @@ static inline void tcg_out_movi(TCGContext *s, TCGType type,
tcg_out32(s, ARITH_OR | INSN_RD(ret) | INSN_RS1(TCG_REG_G0) |
INSN_IMM13(arg));
else {
- tcg_out32(s, SETHI | INSN_RD(ret) | ((arg & 0xfffffc00) >> 10));
+ tcg_out_sethi(s, ret, arg);
if (arg & 0x3ff)
tcg_out32(s, ARITH_OR | INSN_RD(ret) | INSN_RS1(ret) |
INSN_IMM13(arg & 0x3ff));
@@ -270,7 +288,7 @@ static inline void tcg_out_movi(TCGContext *s, TCGType type,
static inline void tcg_out_ld_raw(TCGContext *s, int ret,
tcg_target_long arg)
{
- tcg_out32(s, SETHI | INSN_RD(ret) | (((uint32_t)arg & 0xfffffc00) >> 10));
+ tcg_out_sethi(s, ret, arg);
tcg_out32(s, LDUW | INSN_RD(ret) | INSN_RS1(ret) |
INSN_IMM13(arg & 0x3ff));
}
@@ -282,7 +300,7 @@ static inline void tcg_out_ld_ptr(TCGContext *s, int ret,
if (!check_fit_tl(arg, 32) && (arg & ~0xffffffff) != 0)
fprintf(stderr, "unimplemented %s with offset %ld\n", __func__, arg);
if (!check_fit_i32(arg, 13))
- tcg_out32(s, SETHI | INSN_RD(ret) | (((uint32_t)arg & 0xfffffc00) >> 10));
+ tcg_out_sethi(s, ret, arg);
tcg_out32(s, LDX | INSN_RD(ret) | INSN_RS1(ret) |
INSN_IMM13(arg & 0x3ff));
#else
@@ -320,20 +338,6 @@ static inline void tcg_out_st(TCGContext *s, TCGType type, int arg,
tcg_out_ldst(s, arg, arg1, arg2, STX);
}
-static inline void tcg_out_arith(TCGContext *s, int rd, int rs1, int rs2,
- int op)
-{
- tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) |
- INSN_RS2(rs2));
-}
-
-static inline void tcg_out_arithi(TCGContext *s, int rd, int rs1, int offset,
- int op)
-{
- tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) |
- INSN_IMM13(offset));
-}
-
static inline void tcg_out_sety(TCGContext *s, tcg_target_long val)
{
if (val == 0 || val == -1)
@@ -356,7 +360,7 @@ static inline void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
static inline void tcg_out_nop(TCGContext *s)
{
- tcg_out32(s, SETHI | INSN_RD(TCG_REG_G0) | 0);
+ tcg_out_sethi(s, TCG_REG_G0, 0);
}
static void tcg_out_branch(TCGContext *s, int opc, int label_index)
@@ -392,7 +396,7 @@ static void tcg_out_brcond(TCGContext *s, int cond,
int label_index)
{
if (const_arg2 && arg2 == 0)
- /* orcc r, r, %g0 */
+ /* orcc %g0, r, %g0 */
tcg_out_arith(s, TCG_REG_G0, TCG_REG_G0, arg1, ARITH_ORCC);
else
/* subcc r1, r2, %g0 */
@@ -780,8 +784,7 @@ static inline void tcg_out_op(TCGContext *s, int opc, const TCGArg *args,
case INDEX_op_goto_tb:
if (s->tb_jmp_offset) {
/* direct jump method */
- tcg_out32(s, SETHI | INSN_RD(TCG_REG_I5) |
- ((args[0] & 0xffffe000) >> 10));
+ tcg_out_sethi(s, TCG_REG_I5, args[0] & 0xffffe000);
tcg_out32(s, JMPL | INSN_RD(TCG_REG_G0) | INSN_RS1(TCG_REG_I5) |
INSN_IMM13((args[0] & 0x1fff)));
s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf;