summaryrefslogtreecommitdiff
path: root/target-m68k/op-hacks.h
blob: c7865638eee87bc2c34b96afd3e1524a72c11790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Various hacks to make code written for a dynamic code generator work
   with regular QEMU.  */

static int free_qreg;

#define QMODE_I32 1
#define QMODE_F32 1
#define QMODE_F64 2

static inline int gen_new_qreg(int mode)
{
    int qreg;

    qreg = free_qreg;
    free_qreg += mode;
    if (free_qreg > MAX_QREGS) {
        fprintf(stderr, "qreg overflow\n");
        abort();
    }
    return qreg + TARGET_NUM_QREGS;
}

static inline int gen_im32(uint32_t i)
{
    int qreg = gen_new_qreg(QMODE_I32);
    gen_op_mov32_im(qreg, i);
    return qreg;
}

static inline void gen_op_ldf32(int dest, int addr)
{
    gen_op_ld32(dest, addr);
}

static inline void gen_op_stf32(int addr, int dest)
{
    gen_op_st32(addr, dest);
}

static inline void gen_op_pack_32_f32(int dest, int src)
{
    gen_op_mov32(dest, src);
}

static inline void gen_op_pack_f32_32(int dest, int src)
{
    gen_op_mov32(dest, src);
}

static inline void gen_op_flags_set(void)
{
    /* Dummy op.  */
}

static inline void gen_op_shl_im_cc(int val, int shift)
{
    gen_op_shl_cc(val, gen_im32(shift));
}

static inline void gen_op_shr_im_cc(int val, int shift)
{
    gen_op_shr_cc(val, gen_im32(shift));
}

static inline void gen_op_sar_im_cc(int val, int shift)
{
    gen_op_sar_cc(val, gen_im32(shift));
}

#ifdef USE_DIRECT_JUMP
#define TBPARAM(x)
#else
#define TBPARAM(x) (long)(x)
#endif

static inline void gen_op_goto_tb(int dummy, int n, long tb)
{
    if (n == 0) {
        gen_op_goto_tb0(TBPARAM(tb));
    } else {
        gen_op_goto_tb1(TBPARAM(tb));
    }
}