Statistics
| Branch: | Revision:

root / exec.h @ 2c1794c4

History | View | Annotate | Download (9.9 kB)

1
/*
2
 * internal execution defines for qemu
3
 * 
4
 *  Copyright (c) 2003 Fabrice Bellard
5
 *
6
 * This library is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU Lesser General Public
8
 * License as published by the Free Software Foundation; either
9
 * version 2 of the License, or (at your option) any later version.
10
 *
11
 * This library is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 */
20

    
21
/* allow to see translation results - the slowdown should be negligible, so we leave it */
22
#define DEBUG_DISAS
23

    
24
/* is_jmp field values */
25
#define DISAS_NEXT    0 /* next instruction can be analyzed */
26
#define DISAS_JUMP    1 /* only pc was modified dynamically */
27
#define DISAS_UPDATE  2 /* cpu state was modified dynamically */
28
#define DISAS_TB_JUMP 3 /* only pc was modified statically */
29

    
30
struct TranslationBlock;
31

    
32
/* XXX: make safe guess about sizes */
33
#define MAX_OP_PER_INSTR 32
34
#define OPC_BUF_SIZE 512
35
#define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR)
36

    
37
#define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * 3)
38

    
39
extern uint16_t gen_opc_buf[OPC_BUF_SIZE];
40
extern uint32_t gen_opparam_buf[OPPARAM_BUF_SIZE];
41
extern uint32_t gen_opc_pc[OPC_BUF_SIZE];
42
extern uint8_t gen_opc_cc_op[OPC_BUF_SIZE];
43
extern uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
44

    
45
#if defined(TARGET_I386)
46

    
47
#define GEN_FLAG_CODE32_SHIFT 0
48
#define GEN_FLAG_ADDSEG_SHIFT 1
49
#define GEN_FLAG_SS32_SHIFT   2
50
#define GEN_FLAG_VM_SHIFT     3
51
#define GEN_FLAG_ST_SHIFT     4
52
#define GEN_FLAG_TF_SHIFT     8 /* same position as eflags */
53
#define GEN_FLAG_CPL_SHIFT    9
54
#define GEN_FLAG_IOPL_SHIFT   12 /* same position as eflags */
55

    
56
#endif
57

    
58
extern FILE *logfile;
59
extern int loglevel;
60

    
61
int gen_intermediate_code(CPUState *env, struct TranslationBlock *tb);
62
int gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb);
63
void dump_ops(const uint16_t *opc_buf, const uint32_t *opparam_buf);
64
int cpu_gen_code(CPUState *env, struct TranslationBlock *tb,
65
                 int max_code_size, int *gen_code_size_ptr);
66
int cpu_restore_state(struct TranslationBlock *tb, 
67
                      CPUState *env, unsigned long searched_pc);
68
void cpu_exec_init(void);
69
int page_unprotect(unsigned long address);
70
void page_unmap(void);
71

    
72
#define CODE_GEN_MAX_SIZE        65536
73
#define CODE_GEN_ALIGN           16 /* must be >= of the size of a icache line */
74

    
75
#define CODE_GEN_HASH_BITS     15
76
#define CODE_GEN_HASH_SIZE     (1 << CODE_GEN_HASH_BITS)
77

    
78
/* maximum total translate dcode allocated */
79
#define CODE_GEN_BUFFER_SIZE     (2048 * 1024)
80
//#define CODE_GEN_BUFFER_SIZE     (128 * 1024)
81

    
82
#if defined(__powerpc__)
83
#define USE_DIRECT_JUMP
84
#endif
85

    
86
typedef struct TranslationBlock {
87
    unsigned long pc;   /* simulated PC corresponding to this block (EIP + CS base) */
88
    unsigned long cs_base; /* CS base for this block */
89
    unsigned int flags; /* flags defining in which context the code was generated */
90
    uint16_t size;      /* size of target code for this block (1 <=
91
                           size <= TARGET_PAGE_SIZE) */
92
    uint8_t *tc_ptr;    /* pointer to the translated code */
93
    struct TranslationBlock *hash_next; /* next matching block */
94
    struct TranslationBlock *page_next[2]; /* next blocks in even/odd page */
95
    /* the following data are used to directly call another TB from
96
       the code of this one. */
97
    uint16_t tb_next_offset[2]; /* offset of original jump target */
98
#ifdef USE_DIRECT_JUMP
99
    uint16_t tb_jmp_offset[2]; /* offset of jump instruction */
100
#else
101
    uint32_t tb_next[2]; /* address of jump generated code */
102
#endif
103
    /* list of TBs jumping to this one. This is a circular list using
104
       the two least significant bits of the pointers to tell what is
105
       the next pointer: 0 = jmp_next[0], 1 = jmp_next[1], 2 =
106
       jmp_first */
107
    struct TranslationBlock *jmp_next[2]; 
108
    struct TranslationBlock *jmp_first;
109
} TranslationBlock;
110

    
111
static inline unsigned int tb_hash_func(unsigned long pc)
112
{
113
    return pc & (CODE_GEN_HASH_SIZE - 1);
114
}
115

    
116
TranslationBlock *tb_alloc(unsigned long pc);
117
void tb_flush(void);
118
void tb_link(TranslationBlock *tb);
119

    
120
extern TranslationBlock *tb_hash[CODE_GEN_HASH_SIZE];
121

    
122
extern uint8_t code_gen_buffer[CODE_GEN_BUFFER_SIZE];
123
extern uint8_t *code_gen_ptr;
124

    
125
/* find a translation block in the translation cache. If not found,
126
   return NULL and the pointer to the last element of the list in pptb */
127
static inline TranslationBlock *tb_find(TranslationBlock ***pptb,
128
                                        unsigned long pc, 
129
                                        unsigned long cs_base,
130
                                        unsigned int flags)
131
{
132
    TranslationBlock **ptb, *tb;
133
    unsigned int h;
134
 
135
    h = tb_hash_func(pc);
136
    ptb = &tb_hash[h];
137
    for(;;) {
138
        tb = *ptb;
139
        if (!tb)
140
            break;
141
        if (tb->pc == pc && tb->cs_base == cs_base && tb->flags == flags)
142
            return tb;
143
        ptb = &tb->hash_next;
144
    }
145
    *pptb = ptb;
146
    return NULL;
147
}
148

    
149
#if defined(__powerpc__)
150

    
151
static inline void tb_set_jmp_target(TranslationBlock *tb, 
152
                                     int n, unsigned long addr)
153
{
154
    uint32_t val, *ptr;
155
    unsigned long offset;
156

    
157
    offset = (unsigned long)(tb->tc_ptr + tb->tb_jmp_offset[n]);
158

    
159
    /* patch the branch destination */
160
    ptr = (uint32_t *)offset;
161
    val = *ptr;
162
    val = (val & ~0x03fffffc) | ((addr - offset) & 0x03fffffc);
163
    *ptr = val;
164
    /* flush icache */
165
    asm volatile ("dcbst 0,%0" : : "r"(ptr) : "memory");
166
    asm volatile ("sync" : : : "memory");
167
    asm volatile ("icbi 0,%0" : : "r"(ptr) : "memory");
168
    asm volatile ("sync" : : : "memory");
169
    asm volatile ("isync" : : : "memory");
170
}
171

    
172
#else
173

    
174
/* set the jump target */
175
static inline void tb_set_jmp_target(TranslationBlock *tb, 
176
                                     int n, unsigned long addr)
177
{
178
    tb->tb_next[n] = addr;
179
}
180

    
181
#endif
182

    
183
static inline void tb_add_jump(TranslationBlock *tb, int n, 
184
                               TranslationBlock *tb_next)
185
{
186
    /* NOTE: this test is only needed for thread safety */
187
    if (!tb->jmp_next[n]) {
188
        /* patch the native jump address */
189
        tb_set_jmp_target(tb, n, (unsigned long)tb_next->tc_ptr);
190
        
191
        /* add in TB jmp circular list */
192
        tb->jmp_next[n] = tb_next->jmp_first;
193
        tb_next->jmp_first = (TranslationBlock *)((long)(tb) | (n));
194
    }
195
}
196

    
197
TranslationBlock *tb_find_pc(unsigned long pc_ptr);
198

    
199
#ifndef offsetof
200
#define offsetof(type, field) ((size_t) &((type *)0)->field)
201
#endif
202

    
203
#if defined(__powerpc__)
204

    
205
/* on PowerPC we patch the jump instruction directly */
206
#define JUMP_TB(tbparam, n, eip)\
207
do {\
208
    static void __attribute__((unused)) *__op_label ## n = &&label ## n;\
209
    asm volatile ("b %0" : : "i" (&__op_jmp ## n));\
210
label ## n:\
211
    T0 = (long)(tbparam) + (n);\
212
    EIP = eip;\
213
} while (0)
214

    
215
#else
216

    
217
/* jump to next block operations (more portable code, does not need
218
   cache flushing, but slower because of indirect jump) */
219
#define JUMP_TB(tbparam, n, eip)\
220
do {\
221
    static void __attribute__((unused)) *__op_label ## n = &&label ## n;\
222
    static void __attribute__((unused)) *dummy ## n = &&dummy_label ## n;\
223
    goto *(void *)(((TranslationBlock *)tbparam)->tb_next[n]);\
224
label ## n:\
225
    T0 = (long)(tbparam) + (n);\
226
    EIP = eip;\
227
dummy_label ## n:\
228
    EXIT_TB();\
229
} while (0)
230

    
231
#endif
232

    
233
#ifdef __powerpc__
234
static inline int testandset (int *p)
235
{
236
    int ret;
237
    __asm__ __volatile__ (
238
                          "0:    lwarx %0,0,%1 ;"
239
                          "      xor. %0,%3,%0;"
240
                          "      bne 1f;"
241
                          "      stwcx. %2,0,%1;"
242
                          "      bne- 0b;"
243
                          "1:    "
244
                          : "=&r" (ret)
245
                          : "r" (p), "r" (1), "r" (0)
246
                          : "cr0", "memory");
247
    return ret;
248
}
249
#endif
250

    
251
#ifdef __i386__
252
static inline int testandset (int *p)
253
{
254
    char ret;
255
    long int readval;
256
    
257
    __asm__ __volatile__ ("lock; cmpxchgl %3, %1; sete %0"
258
                          : "=q" (ret), "=m" (*p), "=a" (readval)
259
                          : "r" (1), "m" (*p), "a" (0)
260
                          : "memory");
261
    return ret;
262
}
263
#endif
264

    
265
#ifdef __s390__
266
static inline int testandset (int *p)
267
{
268
    int ret;
269

    
270
    __asm__ __volatile__ ("0: cs    %0,%1,0(%2)\n"
271
                          "   jl    0b"
272
                          : "=&d" (ret)
273
                          : "r" (1), "a" (p), "0" (*p) 
274
                          : "cc", "memory" );
275
    return ret;
276
}
277
#endif
278

    
279
#ifdef __alpha__
280
static inline int testandset (int *p)
281
{
282
    int ret;
283
    unsigned long one;
284

    
285
    __asm__ __volatile__ ("0:        mov 1,%2\n"
286
                          "        ldl_l %0,%1\n"
287
                          "        stl_c %2,%1\n"
288
                          "        beq %2,1f\n"
289
                          ".subsection 2\n"
290
                          "1:        br 0b\n"
291
                          ".previous"
292
                          : "=r" (ret), "=m" (*p), "=r" (one)
293
                          : "m" (*p));
294
    return ret;
295
}
296
#endif
297

    
298
#ifdef __sparc__
299
static inline int testandset (int *p)
300
{
301
        int ret;
302

    
303
        __asm__ __volatile__("ldstub        [%1], %0"
304
                             : "=r" (ret)
305
                             : "r" (p)
306
                             : "memory");
307

    
308
        return (ret ? 1 : 0);
309
}
310
#endif
311

    
312
#ifdef __arm__
313
static inline int testandset (int *spinlock)
314
{
315
    register unsigned int ret;
316
    __asm__ __volatile__("swp %0, %1, [%2]"
317
                         : "=r"(ret)
318
                         : "0"(1), "r"(spinlock));
319
    
320
    return ret;
321
}
322
#endif
323

    
324
typedef int spinlock_t;
325

    
326
#define SPIN_LOCK_UNLOCKED 0
327

    
328
#if 1
329
static inline void spin_lock(spinlock_t *lock)
330
{
331
    while (testandset(lock));
332
}
333

    
334
static inline void spin_unlock(spinlock_t *lock)
335
{
336
    *lock = 0;
337
}
338

    
339
static inline int spin_trylock(spinlock_t *lock)
340
{
341
    return !testandset(lock);
342
}
343
#else
344
static inline void spin_lock(spinlock_t *lock)
345
{
346
}
347

    
348
static inline void spin_unlock(spinlock_t *lock)
349
{
350
}
351

    
352
static inline int spin_trylock(spinlock_t *lock)
353
{
354
    return 1;
355
}
356
#endif
357

    
358
extern spinlock_t tb_lock;
359