VirtualBox

source: vbox/trunk/src/recompiler/tcg/i386/tcg-target.c@ 20204

最後變更 在這個檔案從20204是 18477,由 vboxsync 提交於 16 年 前

REM/tcg-target.c: Shut up warning about unused bias3 (32-bit).

檔案大小: 41.4 KB
 
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24/*
25 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
26 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
27 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
28 * a choice of LGPL license versions is made available with the language indicating
29 * that LGPLv2 or any later version may be used, or where a choice of which version
30 * of the LGPL is applied is otherwise unspecified.
31 */
32#ifndef NDEBUG
33static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
34 "%eax",
35 "%ecx",
36 "%edx",
37 "%ebx",
38 "%esp",
39 "%ebp",
40 "%esi",
41 "%edi",
42};
43#endif
44
45static const int tcg_target_reg_alloc_order[] = {
46 TCG_REG_EAX,
47 TCG_REG_EDX,
48 TCG_REG_ECX,
49 TCG_REG_EBX,
50 TCG_REG_ESI,
51 TCG_REG_EDI,
52 TCG_REG_EBP,
53};
54
55static const int tcg_target_call_iarg_regs[3] = { TCG_REG_EAX, TCG_REG_EDX, TCG_REG_ECX };
56static const int tcg_target_call_oarg_regs[2] = { TCG_REG_EAX, TCG_REG_EDX };
57
58static uint8_t *tb_ret_addr;
59
60static void patch_reloc(uint8_t *code_ptr, int type,
61 tcg_target_long value, tcg_target_long addend)
62{
63 value += addend;
64 switch(type) {
65 case R_386_32:
66 *(uint32_t *)code_ptr = value;
67 break;
68 case R_386_PC32:
69 *(uint32_t *)code_ptr = value - (long)code_ptr;
70 break;
71 default:
72 tcg_abort();
73 }
74}
75
76#ifdef VBOX
77/* emits stack alignment checks for strict builds. */
78DECLINLINE(void) tcg_gen_stack_alignment_check(TCGContext *s)
79{
80# if defined(RT_STRICT) && defined(RT_OS_DARWIN) /** @todo all OSes? */
81 tcg_out8(s, 0xf7); tcg_out8(s, 0xc4); /* test %esp, 1fh */
82 tcg_out32(s, TCG_TARGET_STACK_ALIGN - 1);
83 tcg_out8(s, 0x74); /* jz imm8 */
84 tcg_out8(s, 1); /* $+3 (over int3) */
85 tcg_out8(s, 0xcc); /* int3 */
86# else
87 NOREF(s);
88# endif
89}
90#endif /* VBOX */
91
92/* maximum number of register used for input function arguments */
93#ifndef VBOX
94static inline int tcg_target_get_call_iarg_regs_count(int flags)
95#else /* VBOX */
96DECLINLINE(int) tcg_target_get_call_iarg_regs_count(int flags)
97#endif /* VBOX */
98{
99 flags &= TCG_CALL_TYPE_MASK;
100 switch(flags) {
101 case TCG_CALL_TYPE_STD:
102 return 0;
103 case TCG_CALL_TYPE_REGPARM_1:
104 case TCG_CALL_TYPE_REGPARM_2:
105 case TCG_CALL_TYPE_REGPARM:
106 return flags - TCG_CALL_TYPE_REGPARM_1 + 1;
107 default:
108 tcg_abort();
109 }
110}
111
112/* parse target specific constraints */
113static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
114{
115 const char *ct_str;
116
117 ct_str = *pct_str;
118 switch(ct_str[0]) {
119 case 'a':
120 ct->ct |= TCG_CT_REG;
121 tcg_regset_set_reg(ct->u.regs, TCG_REG_EAX);
122 break;
123 case 'b':
124 ct->ct |= TCG_CT_REG;
125 tcg_regset_set_reg(ct->u.regs, TCG_REG_EBX);
126 break;
127 case 'c':
128 ct->ct |= TCG_CT_REG;
129 tcg_regset_set_reg(ct->u.regs, TCG_REG_ECX);
130 break;
131 case 'd':
132 ct->ct |= TCG_CT_REG;
133 tcg_regset_set_reg(ct->u.regs, TCG_REG_EDX);
134 break;
135 case 'S':
136 ct->ct |= TCG_CT_REG;
137 tcg_regset_set_reg(ct->u.regs, TCG_REG_ESI);
138 break;
139 case 'D':
140 ct->ct |= TCG_CT_REG;
141 tcg_regset_set_reg(ct->u.regs, TCG_REG_EDI);
142 break;
143 case 'q':
144 ct->ct |= TCG_CT_REG;
145 tcg_regset_set32(ct->u.regs, 0, 0xf);
146 break;
147 case 'r':
148 ct->ct |= TCG_CT_REG;
149 tcg_regset_set32(ct->u.regs, 0, 0xff);
150 break;
151
152 /* qemu_ld/st address constraint */
153 case 'L':
154 ct->ct |= TCG_CT_REG;
155 tcg_regset_set32(ct->u.regs, 0, 0xff);
156 tcg_regset_reset_reg(ct->u.regs, TCG_REG_EAX);
157 tcg_regset_reset_reg(ct->u.regs, TCG_REG_EDX);
158 break;
159 default:
160 return -1;
161 }
162 ct_str++;
163 *pct_str = ct_str;
164 return 0;
165}
166
167/* test if a constant matches the constraint */
168#ifndef VBOX
169static inline int tcg_target_const_match(tcg_target_long val,
170#else /* VBOX */
171DECLINLINE(int) tcg_target_const_match(tcg_target_long val,
172#endif /* VBOX */
173 const TCGArgConstraint *arg_ct)
174{
175 int ct;
176 ct = arg_ct->ct;
177 if (ct & TCG_CT_CONST)
178 return 1;
179 else
180 return 0;
181}
182
183#define ARITH_ADD 0
184#define ARITH_OR 1
185#define ARITH_ADC 2
186#define ARITH_SBB 3
187#define ARITH_AND 4
188#define ARITH_SUB 5
189#define ARITH_XOR 6
190#define ARITH_CMP 7
191
192#define SHIFT_SHL 4
193#define SHIFT_SHR 5
194#define SHIFT_SAR 7
195
196#define JCC_JMP (-1)
197#define JCC_JO 0x0
198#define JCC_JNO 0x1
199#define JCC_JB 0x2
200#define JCC_JAE 0x3
201#define JCC_JE 0x4
202#define JCC_JNE 0x5
203#define JCC_JBE 0x6
204#define JCC_JA 0x7
205#define JCC_JS 0x8
206#define JCC_JNS 0x9
207#define JCC_JP 0xa
208#define JCC_JNP 0xb
209#define JCC_JL 0xc
210#define JCC_JGE 0xd
211#define JCC_JLE 0xe
212#define JCC_JG 0xf
213
214#define P_EXT 0x100 /* 0x0f opcode prefix */
215
216#if !defined(VBOX) || !defined(_MSC_VER)
217static const uint8_t tcg_cond_to_jcc[10] = {
218 [TCG_COND_EQ] = JCC_JE,
219 [TCG_COND_NE] = JCC_JNE,
220 [TCG_COND_LT] = JCC_JL,
221 [TCG_COND_GE] = JCC_JGE,
222 [TCG_COND_LE] = JCC_JLE,
223 [TCG_COND_GT] = JCC_JG,
224 [TCG_COND_LTU] = JCC_JB,
225 [TCG_COND_GEU] = JCC_JAE,
226 [TCG_COND_LEU] = JCC_JBE,
227 [TCG_COND_GTU] = JCC_JA,
228};
229#else
230/* Fortunately, ordering is right */
231static const uint8_t tcg_cond_to_jcc[10] = {
232 JCC_JE,
233 JCC_JNE,
234 JCC_JL,
235 JCC_JGE,
236 JCC_JLE,
237 JCC_JG,
238 JCC_JB,
239 JCC_JAE,
240 JCC_JBE,
241 JCC_JA,
242};
243#endif
244
245#ifndef VBOX
246static inline void tcg_out_opc(TCGContext *s, int opc)
247#else /* VBOX */
248DECLINLINE(void) tcg_out_opc(TCGContext *s, int opc)
249#endif /* VBOX */
250{
251 if (opc & P_EXT)
252 tcg_out8(s, 0x0f);
253 tcg_out8(s, opc);
254}
255
256#ifndef VBOX
257static inline void tcg_out_modrm(TCGContext *s, int opc, int r, int rm)
258#else /* VBOX */
259DECLINLINE(void) tcg_out_modrm(TCGContext *s, int opc, int r, int rm)
260#endif /* VBOX */
261{
262 tcg_out_opc(s, opc);
263 tcg_out8(s, 0xc0 | (r << 3) | rm);
264}
265
266/* rm == -1 means no register index */
267#ifndef VBOX
268static inline void tcg_out_modrm_offset(TCGContext *s, int opc, int r, int rm,
269#else /* VBOX */
270DECLINLINE(void) tcg_out_modrm_offset(TCGContext *s, int opc, int r, int rm,
271#endif /* VBOX */
272 int32_t offset)
273{
274 tcg_out_opc(s, opc);
275 if (rm == -1) {
276 tcg_out8(s, 0x05 | (r << 3));
277 tcg_out32(s, offset);
278 } else if (offset == 0 && rm != TCG_REG_EBP) {
279 if (rm == TCG_REG_ESP) {
280 tcg_out8(s, 0x04 | (r << 3));
281 tcg_out8(s, 0x24);
282 } else {
283 tcg_out8(s, 0x00 | (r << 3) | rm);
284 }
285 } else if ((int8_t)offset == offset) {
286 if (rm == TCG_REG_ESP) {
287 tcg_out8(s, 0x44 | (r << 3));
288 tcg_out8(s, 0x24);
289 } else {
290 tcg_out8(s, 0x40 | (r << 3) | rm);
291 }
292 tcg_out8(s, offset);
293 } else {
294 if (rm == TCG_REG_ESP) {
295 tcg_out8(s, 0x84 | (r << 3));
296 tcg_out8(s, 0x24);
297 } else {
298 tcg_out8(s, 0x80 | (r << 3) | rm);
299 }
300 tcg_out32(s, offset);
301 }
302}
303
304#ifndef VBOX
305static inline void tcg_out_mov(TCGContext *s, int ret, int arg)
306#else /* VBOX */
307DECLINLINE(void) tcg_out_mov(TCGContext *s, int ret, int arg)
308#endif /* VBOX */
309{
310 if (arg != ret)
311 tcg_out_modrm(s, 0x8b, ret, arg);
312}
313
314#ifndef VBOX
315static inline void tcg_out_movi(TCGContext *s, TCGType type,
316#else /* VBOX */
317DECLINLINE(void) tcg_out_movi(TCGContext *s, TCGType type,
318#endif /* VBOX */
319 int ret, int32_t arg)
320{
321 if (arg == 0) {
322 /* xor r0,r0 */
323 tcg_out_modrm(s, 0x01 | (ARITH_XOR << 3), ret, ret);
324 } else {
325 tcg_out8(s, 0xb8 + ret);
326 tcg_out32(s, arg);
327 }
328}
329
330#ifndef VBOX
331static inline void tcg_out_push(TCGContext *s, int reg)
332#else /* VBOX */
333DECLINLINE(void) tcg_out_push(TCGContext *s, int reg)
334#endif /* VBOX */
335{
336 tcg_out_opc(s, 0x50 + reg);
337}
338
339#ifndef VBOX
340static inline void tcg_out_pop(TCGContext *s, int reg)
341#else /* VBOX */
342DECLINLINE(void) tcg_out_pop(TCGContext *s, int reg)
343#endif /* VBOX */
344{
345 tcg_out_opc(s, 0x58 + reg);
346}
347
348#ifndef VBOX
349static inline void tcg_out_ld(TCGContext *s, TCGType type, int ret,
350#else /* VBOX */
351DECLINLINE(void) tcg_out_ld(TCGContext *s, TCGType type, int ret,
352#endif /* VBOX */
353 int arg1, tcg_target_long arg2)
354{
355 /* movl */
356 tcg_out_modrm_offset(s, 0x8b, ret, arg1, arg2);
357}
358
359#ifndef VBOX
360static inline void tcg_out_st(TCGContext *s, TCGType type, int arg,
361#else /* VBOX */
362DECLINLINE(void) tcg_out_st(TCGContext *s, TCGType type, int arg,
363#endif /* VBOX */
364 int arg1, tcg_target_long arg2)
365{
366 /* movl */
367 tcg_out_modrm_offset(s, 0x89, arg, arg1, arg2);
368}
369
370#ifndef VBOX
371static inline void tgen_arithi(TCGContext *s, int c, int r0, int32_t val)
372#else /* VBOX */
373DECLINLINE(void) tgen_arithi(TCGContext *s, int c, int r0, int32_t val)
374#endif /* VBOX */
375{
376 if (val == (int8_t)val) {
377 tcg_out_modrm(s, 0x83, c, r0);
378 tcg_out8(s, val);
379 } else {
380 tcg_out_modrm(s, 0x81, c, r0);
381 tcg_out32(s, val);
382 }
383}
384
385void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
386{
387 if (val != 0)
388 tgen_arithi(s, ARITH_ADD, reg, val);
389}
390
391#ifdef VBOX
392void tcg_out_subi(TCGContext *s, int reg, tcg_target_long val)
393{
394 if (val != 0)
395 tgen_arithi(s, ARITH_SUB, reg, val);
396}
397#endif
398
399static void tcg_out_jxx(TCGContext *s, int opc, int label_index)
400{
401 int32_t val, val1;
402 TCGLabel *l = &s->labels[label_index];
403
404 if (l->has_value) {
405 val = l->u.value - (tcg_target_long)s->code_ptr;
406 val1 = val - 2;
407 if ((int8_t)val1 == val1) {
408 if (opc == -1)
409 tcg_out8(s, 0xeb);
410 else
411 tcg_out8(s, 0x70 + opc);
412 tcg_out8(s, val1);
413 } else {
414 if (opc == -1) {
415 tcg_out8(s, 0xe9);
416 tcg_out32(s, val - 5);
417 } else {
418 tcg_out8(s, 0x0f);
419 tcg_out8(s, 0x80 + opc);
420 tcg_out32(s, val - 6);
421 }
422 }
423 } else {
424 if (opc == -1) {
425 tcg_out8(s, 0xe9);
426 } else {
427 tcg_out8(s, 0x0f);
428 tcg_out8(s, 0x80 + opc);
429 }
430 tcg_out_reloc(s, s->code_ptr, R_386_PC32, label_index, -4);
431 s->code_ptr += 4;
432 }
433}
434
435static void tcg_out_brcond(TCGContext *s, int cond,
436 TCGArg arg1, TCGArg arg2, int const_arg2,
437 int label_index)
438{
439 if (const_arg2) {
440 if (arg2 == 0) {
441 /* test r, r */
442 tcg_out_modrm(s, 0x85, arg1, arg1);
443 } else {
444 tgen_arithi(s, ARITH_CMP, arg1, arg2);
445 }
446 } else {
447 tcg_out_modrm(s, 0x01 | (ARITH_CMP << 3), arg2, arg1);
448 }
449 tcg_out_jxx(s, tcg_cond_to_jcc[cond], label_index);
450}
451
452#ifdef VBOX
453DECLINLINE(void)
454tcg_out_long_call(TCGContext *s, void* dst)
455{
456 intptr_t disp;
457# ifdef VBOX
458 tcg_gen_stack_alignment_check(s);
459# endif
460 disp = (uintptr_t)dst - (uintptr_t)s->code_ptr - 5;
461 tcg_out8(s, 0xe8); /* call disp32 */
462 tcg_out32(s, disp); /* disp32 */
463}
464DECLINLINE(void)
465tcg_out_long_jmp(TCGContext *s, void* dst)
466{
467 intptr_t disp = (uintptr_t)dst - (uintptr_t)s->code_ptr - 5;
468 tcg_out8(s, 0xe9); /* jmp disp32 */
469 tcg_out32(s, disp); /* disp32 */
470}
471#endif /* VBOX */
472
473
474/* XXX: we implement it at the target level to avoid having to
475 handle cross basic blocks temporaries */
476static void tcg_out_brcond2(TCGContext *s,
477 const TCGArg *args, const int *const_args)
478{
479 int label_next;
480 label_next = gen_new_label();
481 switch(args[4]) {
482 case TCG_COND_EQ:
483 tcg_out_brcond(s, TCG_COND_NE, args[0], args[2], const_args[2], label_next);
484 tcg_out_brcond(s, TCG_COND_EQ, args[1], args[3], const_args[3], args[5]);
485 break;
486 case TCG_COND_NE:
487 tcg_out_brcond(s, TCG_COND_NE, args[0], args[2], const_args[2], args[5]);
488 tcg_out_brcond(s, TCG_COND_NE, args[1], args[3], const_args[3], args[5]);
489 break;
490 case TCG_COND_LT:
491 tcg_out_brcond(s, TCG_COND_LT, args[1], args[3], const_args[3], args[5]);
492 tcg_out_jxx(s, JCC_JNE, label_next);
493 tcg_out_brcond(s, TCG_COND_LTU, args[0], args[2], const_args[2], args[5]);
494 break;
495 case TCG_COND_LE:
496 tcg_out_brcond(s, TCG_COND_LT, args[1], args[3], const_args[3], args[5]);
497 tcg_out_jxx(s, JCC_JNE, label_next);
498 tcg_out_brcond(s, TCG_COND_LEU, args[0], args[2], const_args[2], args[5]);
499 break;
500 case TCG_COND_GT:
501 tcg_out_brcond(s, TCG_COND_GT, args[1], args[3], const_args[3], args[5]);
502 tcg_out_jxx(s, JCC_JNE, label_next);
503 tcg_out_brcond(s, TCG_COND_GTU, args[0], args[2], const_args[2], args[5]);
504 break;
505 case TCG_COND_GE:
506 tcg_out_brcond(s, TCG_COND_GT, args[1], args[3], const_args[3], args[5]);
507 tcg_out_jxx(s, JCC_JNE, label_next);
508 tcg_out_brcond(s, TCG_COND_GEU, args[0], args[2], const_args[2], args[5]);
509 break;
510 case TCG_COND_LTU:
511 tcg_out_brcond(s, TCG_COND_LTU, args[1], args[3], const_args[3], args[5]);
512 tcg_out_jxx(s, JCC_JNE, label_next);
513 tcg_out_brcond(s, TCG_COND_LTU, args[0], args[2], const_args[2], args[5]);
514 break;
515 case TCG_COND_LEU:
516 tcg_out_brcond(s, TCG_COND_LTU, args[1], args[3], const_args[3], args[5]);
517 tcg_out_jxx(s, JCC_JNE, label_next);
518 tcg_out_brcond(s, TCG_COND_LEU, args[0], args[2], const_args[2], args[5]);
519 break;
520 case TCG_COND_GTU:
521 tcg_out_brcond(s, TCG_COND_GTU, args[1], args[3], const_args[3], args[5]);
522 tcg_out_jxx(s, JCC_JNE, label_next);
523 tcg_out_brcond(s, TCG_COND_GTU, args[0], args[2], const_args[2], args[5]);
524 break;
525 case TCG_COND_GEU:
526 tcg_out_brcond(s, TCG_COND_GTU, args[1], args[3], const_args[3], args[5]);
527 tcg_out_jxx(s, JCC_JNE, label_next);
528 tcg_out_brcond(s, TCG_COND_GEU, args[0], args[2], const_args[2], args[5]);
529 break;
530 default:
531 tcg_abort();
532 }
533 tcg_out_label(s, label_next, (tcg_target_long)s->code_ptr);
534}
535
536#if defined(CONFIG_SOFTMMU)
537
538#include "../../softmmu_defs.h"
539
540static void *qemu_ld_helpers[4] = {
541 __ldb_mmu,
542 __ldw_mmu,
543 __ldl_mmu,
544 __ldq_mmu,
545};
546
547static void *qemu_st_helpers[4] = {
548 __stb_mmu,
549 __stw_mmu,
550 __stl_mmu,
551 __stq_mmu,
552};
553#endif
554
555#if defined(VBOX) && defined(REM_PHYS_ADDR_IN_TLB)
556static void *vbox_ld_helpers[] = {
557 __ldub_vbox_phys,
558 __lduw_vbox_phys,
559 __ldul_vbox_phys,
560 __ldq_vbox_phys,
561 __ldb_vbox_phys,
562 __ldw_vbox_phys,
563 __ldl_vbox_phys,
564 __ldq_vbox_phys,
565};
566
567static void *vbox_st_helpers[] = {
568 __stb_vbox_phys,
569 __stw_vbox_phys,
570 __stl_vbox_phys,
571 __stq_vbox_phys
572};
573
574static void tcg_out_vbox_phys_read(TCGContext *s, int index,
575 int addr_reg,
576 int data_reg, int data_reg2)
577{
578 int useReg2 = ((index & 3) == 3);
579
580 /** @todo: should we make phys addess accessors fastcalls - probably not a big deal */
581 /* out parameter (address), note that phys address is always 64-bit */
582 AssertMsg(sizeof(RTGCPHYS) == 8, ("Physical address must be 64-bits, update caller\n"));
583
584#if 0
585 tcg_out8(s, 0x6a); tcg_out8(s, 0x00); /* push $0 */
586 tcg_out_push(s, addr_reg);
587#else
588 /* mov addr_reg, %eax */
589 tcg_out_mov(s, TCG_REG_EAX, addr_reg);
590#endif
591
592 tcg_out_long_call(s, vbox_ld_helpers[index]);
593
594 /* mov %eax, data_reg */
595 tcg_out_mov(s, data_reg, TCG_REG_EAX);
596
597 /* returned 64-bit value */
598 if (useReg2)
599 tcg_out_mov(s, data_reg2, TCG_REG_EDX);
600}
601
602static void tcg_out_vbox_phys_write(TCGContext *s, int index,
603 int addr_reg,
604 int val_reg, int val_reg2) {
605 int useReg2 = ((index & 3) == 3);
606
607#if 0
608 /* out parameter (value2) */
609 if (useReg2)
610 tcg_out_push(s, val_reg2);
611 /* out parameter (value) */
612 tcg_out_push(s, val_reg);
613 /* out parameter (address), note that phys address is always 64-bit */
614 AssertMsg(sizeof(RTGCPHYS) == 8, ("Physical address must be 64-bits, update caller\n"));
615 tcg_out8(s, 0x6a); tcg_out8(s, 0x00); /* push $0 */
616 tcg_out_push(s, addr_reg);
617#else
618 Assert(val_reg != TCG_REG_EAX && (!useReg2 || (val_reg2 != TCG_REG_EAX)));
619 /* mov addr_reg, %eax */
620 tcg_out_mov(s, TCG_REG_EAX, addr_reg);
621 Assert(!useReg2 || (val_reg2 != TCG_REG_EDX));
622 /* mov val_reg, %edx */
623 tcg_out_mov(s, TCG_REG_EDX, val_reg);
624 if (useReg2)
625 tcg_out_mov(s, TCG_REG_ECX, val_reg2);
626
627#endif
628 /* call it */
629 tcg_out_long_call(s, vbox_st_helpers[index]);
630
631 /* clean stack after us */
632#if 0
633 tcg_out_addi(s, TCG_REG_ESP, 8 + (useReg2 ? 8 : 4));
634# endif
635}
636
637#endif /* defined(VBOX) && defined(REM_PHYS_ADDR_IN_TLB) */
638
639/* XXX: qemu_ld and qemu_st could be modified to clobber only EDX and
640 EAX. It will be useful once fixed registers globals are less
641 common. */
642static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args,
643 int opc)
644{
645 int addr_reg, data_reg, data_reg2, r0, r1, mem_index, s_bits, bswap;
646#if defined(CONFIG_SOFTMMU)
647 uint8_t *label1_ptr, *label2_ptr;
648#endif
649#if TARGET_LONG_BITS == 64
650#if defined(CONFIG_SOFTMMU)
651 uint8_t *label3_ptr;
652#endif
653 int addr_reg2;
654#endif
655
656 data_reg = *args++;
657 if (opc == 3)
658 data_reg2 = *args++;
659 else
660 data_reg2 = 0;
661 addr_reg = *args++;
662#if TARGET_LONG_BITS == 64
663 addr_reg2 = *args++;
664#endif
665 mem_index = *args;
666 s_bits = opc & 3;
667
668 r0 = TCG_REG_EAX;
669 r1 = TCG_REG_EDX;
670
671#if defined(CONFIG_SOFTMMU)
672 tcg_out_mov(s, r1, addr_reg);
673
674 tcg_out_mov(s, r0, addr_reg);
675
676 tcg_out_modrm(s, 0xc1, 5, r1); /* shr $x, r1 */
677 tcg_out8(s, TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);
678
679 tcg_out_modrm(s, 0x81, 4, r0); /* andl $x, r0 */
680 tcg_out32(s, TARGET_PAGE_MASK | ((1 << s_bits) - 1));
681
682 tcg_out_modrm(s, 0x81, 4, r1); /* andl $x, r1 */
683 tcg_out32(s, (CPU_TLB_SIZE - 1) << CPU_TLB_ENTRY_BITS);
684
685#ifndef VBOX
686 tcg_out_opc(s, 0x8d); /* lea offset(r1, %ebp), r1 */
687 tcg_out8(s, 0x80 | (r1 << 3) | 0x04);
688 tcg_out8(s, (5 << 3) | r1);
689 tcg_out32(s, offsetof(CPUState, tlb_table[mem_index][0].addr_read));
690#else
691 tcg_out_opc(s, 0x8d); /* lea offset(r1, env), r1 */
692 tcg_out8(s, 0x80 | (r1 << 3) | 0x04);
693 tcg_out8(s, (TCG_AREG0 << 3) | r1);
694 tcg_out32(s, offsetof(CPUState, tlb_table[mem_index][0].addr_read));
695#endif
696
697 /* cmp 0(r1), r0 */
698 tcg_out_modrm_offset(s, 0x3b, r0, r1, 0);
699
700 tcg_out_mov(s, r0, addr_reg);
701
702#if TARGET_LONG_BITS == 32
703 /* je label1 */
704 tcg_out8(s, 0x70 + JCC_JE);
705 label1_ptr = s->code_ptr;
706 s->code_ptr++;
707#else
708 /* jne label3 */
709 tcg_out8(s, 0x70 + JCC_JNE);
710 label3_ptr = s->code_ptr;
711 s->code_ptr++;
712
713 /* cmp 4(r1), addr_reg2 */
714 tcg_out_modrm_offset(s, 0x3b, addr_reg2, r1, 4);
715
716 /* je label1 */
717 tcg_out8(s, 0x70 + JCC_JE);
718 label1_ptr = s->code_ptr;
719 s->code_ptr++;
720
721 /* label3: */
722 *label3_ptr = s->code_ptr - label3_ptr - 1;
723#endif
724
725 /* XXX: move that code at the end of the TB */
726#if TARGET_LONG_BITS == 32
727 tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_EDX, mem_index);
728#else
729 tcg_out_mov(s, TCG_REG_EDX, addr_reg2);
730 tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_ECX, mem_index);
731#endif
732#ifdef VBOX
733 tcg_gen_stack_alignment_check(s);
734#endif
735 tcg_out8(s, 0xe8);
736 tcg_out32(s, (tcg_target_long)qemu_ld_helpers[s_bits] -
737 (tcg_target_long)s->code_ptr - 4);
738
739 switch(opc) {
740 case 0 | 4:
741 /* movsbl */
742 tcg_out_modrm(s, 0xbe | P_EXT, data_reg, TCG_REG_EAX);
743 break;
744 case 1 | 4:
745 /* movswl */
746 tcg_out_modrm(s, 0xbf | P_EXT, data_reg, TCG_REG_EAX);
747 break;
748 case 0:
749 case 1:
750 case 2:
751 default:
752 tcg_out_mov(s, data_reg, TCG_REG_EAX);
753 break;
754 case 3:
755 if (data_reg == TCG_REG_EDX) {
756 tcg_out_opc(s, 0x90 + TCG_REG_EDX); /* xchg %edx, %eax */
757 tcg_out_mov(s, data_reg2, TCG_REG_EAX);
758 } else {
759 tcg_out_mov(s, data_reg, TCG_REG_EAX);
760 tcg_out_mov(s, data_reg2, TCG_REG_EDX);
761 }
762 break;
763 }
764
765 /* jmp label2 */
766 tcg_out8(s, 0xeb);
767 label2_ptr = s->code_ptr;
768 s->code_ptr++;
769
770 /* label1: */
771 *label1_ptr = s->code_ptr - label1_ptr - 1;
772
773 /* add x(r1), r0 */
774 tcg_out_modrm_offset(s, 0x03, r0, r1, offsetof(CPUTLBEntry, addend) -
775 offsetof(CPUTLBEntry, addr_read));
776#else
777 r0 = addr_reg;
778#endif
779
780#if !defined(VBOX) || !defined(REM_PHYS_ADDR_IN_TLB)
781#ifdef TARGET_WORDS_BIGENDIAN
782 bswap = 1;
783#else
784 bswap = 0;
785#endif
786 switch(opc) {
787 case 0:
788 /* movzbl */
789 tcg_out_modrm_offset(s, 0xb6 | P_EXT, data_reg, r0, 0);
790 break;
791 case 0 | 4:
792 /* movsbl */
793 tcg_out_modrm_offset(s, 0xbe | P_EXT, data_reg, r0, 0);
794 break;
795 case 1:
796 /* movzwl */
797 tcg_out_modrm_offset(s, 0xb7 | P_EXT, data_reg, r0, 0);
798 if (bswap) {
799 /* rolw $8, data_reg */
800 tcg_out8(s, 0x66);
801 tcg_out_modrm(s, 0xc1, 0, data_reg);
802 tcg_out8(s, 8);
803 }
804 break;
805 case 1 | 4:
806 /* movswl */
807 tcg_out_modrm_offset(s, 0xbf | P_EXT, data_reg, r0, 0);
808 if (bswap) {
809 /* rolw $8, data_reg */
810 tcg_out8(s, 0x66);
811 tcg_out_modrm(s, 0xc1, 0, data_reg);
812 tcg_out8(s, 8);
813
814 /* movswl data_reg, data_reg */
815 tcg_out_modrm(s, 0xbf | P_EXT, data_reg, data_reg);
816 }
817 break;
818 case 2:
819 /* movl (r0), data_reg */
820 tcg_out_modrm_offset(s, 0x8b, data_reg, r0, 0);
821 if (bswap) {
822 /* bswap */
823 tcg_out_opc(s, (0xc8 + data_reg) | P_EXT);
824 }
825 break;
826 case 3:
827 /* XXX: could be nicer */
828 if (r0 == data_reg) {
829 r1 = TCG_REG_EDX;
830 if (r1 == data_reg)
831 r1 = TCG_REG_EAX;
832 tcg_out_mov(s, r1, r0);
833 r0 = r1;
834 }
835 if (!bswap) {
836 tcg_out_modrm_offset(s, 0x8b, data_reg, r0, 0);
837 tcg_out_modrm_offset(s, 0x8b, data_reg2, r0, 4);
838 } else {
839 tcg_out_modrm_offset(s, 0x8b, data_reg, r0, 4);
840 tcg_out_opc(s, (0xc8 + data_reg) | P_EXT);
841
842 tcg_out_modrm_offset(s, 0x8b, data_reg2, r0, 0);
843 /* bswap */
844 tcg_out_opc(s, (0xc8 + data_reg2) | P_EXT);
845 }
846 break;
847 default:
848 tcg_abort();
849 }
850#else /* VBOX */
851 tcg_out_vbox_phys_read(s, opc, r0, data_reg, data_reg2);
852#endif
853
854
855#if defined(CONFIG_SOFTMMU)
856 /* label2: */
857 *label2_ptr = s->code_ptr - label2_ptr - 1;
858# ifdef VBOX
859 Assert((unsigned)(s->code_ptr - label2_ptr - 1) <= 127);
860# endif
861#endif
862}
863
864
865static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args,
866 int opc)
867{
868 int addr_reg, data_reg, data_reg2, r0, r1, mem_index, s_bits, bswap;
869#if defined(CONFIG_SOFTMMU)
870 uint8_t *label1_ptr, *label2_ptr;
871#endif
872#if TARGET_LONG_BITS == 64
873#if defined(CONFIG_SOFTMMU)
874 uint8_t *label3_ptr;
875#endif
876 int addr_reg2;
877#endif
878#ifdef VBOX
879# ifdef RT_OS_DARWIN
880 int bias1 = 12, bias3 = 4;/** @todo TCG_TARGET_STACK_ALIGN. */
881# else
882 int bias1 = 0, bias3 = 0;
883# endif
884 NOREF(bias3);
885#endif
886
887 data_reg = *args++;
888 if (opc == 3)
889 data_reg2 = *args++;
890 else
891 data_reg2 = 0;
892 addr_reg = *args++;
893#if TARGET_LONG_BITS == 64
894 addr_reg2 = *args++;
895#endif
896 mem_index = *args;
897
898 s_bits = opc;
899
900 r0 = TCG_REG_EAX;
901 r1 = TCG_REG_EDX;
902
903#if defined(CONFIG_SOFTMMU)
904 tcg_out_mov(s, r1, addr_reg);
905
906 tcg_out_mov(s, r0, addr_reg);
907
908 tcg_out_modrm(s, 0xc1, 5, r1); /* shr $x, r1 */
909 tcg_out8(s, TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);
910
911 tcg_out_modrm(s, 0x81, 4, r0); /* andl $x, r0 */
912 tcg_out32(s, TARGET_PAGE_MASK | ((1 << s_bits) - 1));
913
914 tcg_out_modrm(s, 0x81, 4, r1); /* andl $x, r1 */
915 tcg_out32(s, (CPU_TLB_SIZE - 1) << CPU_TLB_ENTRY_BITS);
916
917#ifndef VBOX
918 tcg_out_opc(s, 0x8d); /* lea offset(r1, %ebp), r1 */
919 tcg_out8(s, 0x80 | (r1 << 3) | 0x04);
920 tcg_out8(s, (5 << 3) | r1);
921 tcg_out32(s, offsetof(CPUState, tlb_table[mem_index][0].addr_write));
922#else
923 tcg_out_opc(s, 0x8d); /* lea offset(r1, env), r1 */
924 tcg_out8(s, 0x80 | (r1 << 3) | 0x04);
925 tcg_out8(s, (TCG_AREG0 << 3) | r1);
926 tcg_out32(s, offsetof(CPUState, tlb_table[mem_index][0].addr_write));
927#endif
928
929 /* cmp 0(r1), r0 */
930 tcg_out_modrm_offset(s, 0x3b, r0, r1, 0);
931
932 tcg_out_mov(s, r0, addr_reg);
933
934#if TARGET_LONG_BITS == 32
935 /* je label1 */
936 tcg_out8(s, 0x70 + JCC_JE);
937 label1_ptr = s->code_ptr;
938 s->code_ptr++;
939#else
940 /* jne label3 */
941 tcg_out8(s, 0x70 + JCC_JNE);
942 label3_ptr = s->code_ptr;
943 s->code_ptr++;
944
945 /* cmp 4(r1), addr_reg2 */
946 tcg_out_modrm_offset(s, 0x3b, addr_reg2, r1, 4);
947
948 /* je label1 */
949 tcg_out8(s, 0x70 + JCC_JE);
950 label1_ptr = s->code_ptr;
951 s->code_ptr++;
952
953 /* label3: */
954 *label3_ptr = s->code_ptr - label3_ptr - 1;
955#endif
956
957 /* XXX: move that code at the end of the TB */
958#if TARGET_LONG_BITS == 32
959 if (opc == 3) {
960 tcg_out_mov(s, TCG_REG_EDX, data_reg);
961 tcg_out_mov(s, TCG_REG_ECX, data_reg2);
962#ifdef VBOX
963 tcg_out_subi(s, TCG_REG_ESP, bias1);
964#endif
965 tcg_out8(s, 0x6a); /* push Ib */
966 tcg_out8(s, mem_index);
967# ifdef VBOX
968 tcg_gen_stack_alignment_check(s);
969# endif
970 tcg_out8(s, 0xe8);
971 tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] -
972 (tcg_target_long)s->code_ptr - 4);
973#ifdef VBOX
974 tcg_out_addi(s, TCG_REG_ESP, 4+bias1);
975#else
976 tcg_out_addi(s, TCG_REG_ESP, 4);
977#endif
978 } else {
979 switch(opc) {
980 case 0:
981 /* movzbl */
982 tcg_out_modrm(s, 0xb6 | P_EXT, TCG_REG_EDX, data_reg);
983 break;
984 case 1:
985 /* movzwl */
986 tcg_out_modrm(s, 0xb7 | P_EXT, TCG_REG_EDX, data_reg);
987 break;
988 case 2:
989 tcg_out_mov(s, TCG_REG_EDX, data_reg);
990 break;
991 }
992 tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_ECX, mem_index);
993# ifdef VBOX
994 tcg_gen_stack_alignment_check(s);
995# endif
996 tcg_out8(s, 0xe8);
997 tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] -
998 (tcg_target_long)s->code_ptr - 4);
999 }
1000#else
1001 if (opc == 3) {
1002 tcg_out_mov(s, TCG_REG_EDX, addr_reg2);
1003# ifdef VBOX
1004 tcg_out_subi(s, TCG_REG_ESP, bias3);
1005# endif
1006 tcg_out8(s, 0x6a); /* push Ib */
1007 tcg_out8(s, mem_index);
1008 tcg_out_opc(s, 0x50 + data_reg2); /* push */
1009 tcg_out_opc(s, 0x50 + data_reg); /* push */
1010# ifdef VBOX
1011 tcg_gen_stack_alignment_check(s);
1012# endif
1013 tcg_out8(s, 0xe8);
1014 tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] -
1015 (tcg_target_long)s->code_ptr - 4);
1016#ifdef VBOX
1017 tcg_out_addi(s, TCG_REG_ESP, 12+bias3);
1018#else
1019 tcg_out_addi(s, TCG_REG_ESP, 12);
1020#endif
1021 } else {
1022 tcg_out_mov(s, TCG_REG_EDX, addr_reg2);
1023 switch(opc) {
1024 case 0:
1025 /* movzbl */
1026 tcg_out_modrm(s, 0xb6 | P_EXT, TCG_REG_ECX, data_reg);
1027 break;
1028 case 1:
1029 /* movzwl */
1030 tcg_out_modrm(s, 0xb7 | P_EXT, TCG_REG_ECX, data_reg);
1031 break;
1032 case 2:
1033 tcg_out_mov(s, TCG_REG_ECX, data_reg);
1034 break;
1035 }
1036# ifdef VBOX
1037 tcg_out_subi(s, TCG_REG_ESP, bias1);
1038# endif
1039 tcg_out8(s, 0x6a); /* push Ib */
1040 tcg_out8(s, mem_index);
1041# ifdef VBOX
1042 tcg_gen_stack_alignment_check(s);
1043# endif
1044
1045 tcg_out8(s, 0xe8);
1046 tcg_out32(s, (tcg_target_long)qemu_st_helpers[s_bits] -
1047 (tcg_target_long)s->code_ptr - 4);
1048# if defined(VBOX)
1049 tcg_out_addi(s, TCG_REG_ESP, 4 + bias1);
1050# else
1051 tcg_out_addi(s, TCG_REG_ESP, 4);
1052# endif
1053 }
1054#endif
1055
1056 /* jmp label2 */
1057 tcg_out8(s, 0xeb);
1058 label2_ptr = s->code_ptr;
1059 s->code_ptr++;
1060
1061 /* label1: */
1062 *label1_ptr = s->code_ptr - label1_ptr - 1;
1063
1064 /* add x(r1), r0 */
1065 tcg_out_modrm_offset(s, 0x03, r0, r1, offsetof(CPUTLBEntry, addend) -
1066 offsetof(CPUTLBEntry, addr_write));
1067#else
1068 r0 = addr_reg;
1069#endif
1070
1071#if !defined(VBOX) || !defined(REM_PHYS_ADDR_IN_TLB)
1072#ifdef TARGET_WORDS_BIGENDIAN
1073 bswap = 1;
1074#else
1075 bswap = 0;
1076#endif
1077 switch(opc) {
1078 case 0:
1079 /* movb */
1080 tcg_out_modrm_offset(s, 0x88, data_reg, r0, 0);
1081 break;
1082 case 1:
1083 if (bswap) {
1084 tcg_out_mov(s, r1, data_reg);
1085 tcg_out8(s, 0x66); /* rolw $8, %ecx */
1086 tcg_out_modrm(s, 0xc1, 0, r1);
1087 tcg_out8(s, 8);
1088 data_reg = r1;
1089 }
1090 /* movw */
1091 tcg_out8(s, 0x66);
1092 tcg_out_modrm_offset(s, 0x89, data_reg, r0, 0);
1093 break;
1094 case 2:
1095 if (bswap) {
1096 tcg_out_mov(s, r1, data_reg);
1097 /* bswap data_reg */
1098 tcg_out_opc(s, (0xc8 + r1) | P_EXT);
1099 data_reg = r1;
1100 }
1101 /* movl */
1102 tcg_out_modrm_offset(s, 0x89, data_reg, r0, 0);
1103 break;
1104 case 3:
1105 if (bswap) {
1106 tcg_out_mov(s, r1, data_reg2);
1107 /* bswap data_reg */
1108 tcg_out_opc(s, (0xc8 + r1) | P_EXT);
1109 tcg_out_modrm_offset(s, 0x89, r1, r0, 0);
1110 tcg_out_mov(s, r1, data_reg);
1111 /* bswap data_reg */
1112 tcg_out_opc(s, (0xc8 + r1) | P_EXT);
1113 tcg_out_modrm_offset(s, 0x89, r1, r0, 4);
1114 } else {
1115 tcg_out_modrm_offset(s, 0x89, data_reg, r0, 0);
1116 tcg_out_modrm_offset(s, 0x89, data_reg2, r0, 4);
1117 }
1118 break;
1119 default:
1120 tcg_abort();
1121 }
1122#else
1123 tcg_out_vbox_phys_write(s, opc, r0, data_reg, data_reg2);
1124#endif
1125
1126#if defined(CONFIG_SOFTMMU)
1127 /* label2: */
1128 *label2_ptr = s->code_ptr - label2_ptr - 1;
1129# ifdef VBOX
1130 Assert((unsigned)(s->code_ptr - label2_ptr - 1) <= 127);
1131# endif
1132#endif
1133}
1134
1135#ifndef VBOX
1136static inline void tcg_out_op(TCGContext *s, int opc,
1137#else /* VBOX */
1138DECLINLINE(void) tcg_out_op(TCGContext *s, int opc,
1139#endif /* VBOX */
1140 const TCGArg *args, const int *const_args)
1141{
1142 int c;
1143
1144 switch(opc) {
1145 case INDEX_op_exit_tb:
1146 tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_EAX, args[0]);
1147 tcg_out8(s, 0xe9); /* jmp tb_ret_addr */
1148 tcg_out32(s, tb_ret_addr - s->code_ptr - 4);
1149 break;
1150 case INDEX_op_goto_tb:
1151 if (s->tb_jmp_offset) {
1152 /* direct jump method */
1153 tcg_out8(s, 0xe9); /* jmp im */
1154 s->tb_jmp_offset[args[0]] = s->code_ptr - s->code_buf;
1155 tcg_out32(s, 0);
1156 } else {
1157 /* indirect jump method */
1158 /* jmp Ev */
1159 tcg_out_modrm_offset(s, 0xff, 4, -1,
1160 (tcg_target_long)(s->tb_next + args[0]));
1161 }
1162 s->tb_next_offset[args[0]] = s->code_ptr - s->code_buf;
1163 break;
1164 case INDEX_op_call:
1165#ifdef VBOX
1166 tcg_gen_stack_alignment_check(s);
1167#endif
1168 if (const_args[0]) {
1169 tcg_out8(s, 0xe8);
1170 tcg_out32(s, args[0] - (tcg_target_long)s->code_ptr - 4);
1171 } else {
1172 tcg_out_modrm(s, 0xff, 2, args[0]);
1173 }
1174 break;
1175 case INDEX_op_jmp:
1176 if (const_args[0]) {
1177 tcg_out8(s, 0xe9);
1178 tcg_out32(s, args[0] - (tcg_target_long)s->code_ptr - 4);
1179 } else {
1180 tcg_out_modrm(s, 0xff, 4, args[0]);
1181 }
1182 break;
1183 case INDEX_op_br:
1184 tcg_out_jxx(s, JCC_JMP, args[0]);
1185 break;
1186 case INDEX_op_movi_i32:
1187 tcg_out_movi(s, TCG_TYPE_I32, args[0], args[1]);
1188 break;
1189 case INDEX_op_ld8u_i32:
1190 /* movzbl */
1191 tcg_out_modrm_offset(s, 0xb6 | P_EXT, args[0], args[1], args[2]);
1192 break;
1193 case INDEX_op_ld8s_i32:
1194 /* movsbl */
1195 tcg_out_modrm_offset(s, 0xbe | P_EXT, args[0], args[1], args[2]);
1196 break;
1197 case INDEX_op_ld16u_i32:
1198 /* movzwl */
1199 tcg_out_modrm_offset(s, 0xb7 | P_EXT, args[0], args[1], args[2]);
1200 break;
1201 case INDEX_op_ld16s_i32:
1202 /* movswl */
1203 tcg_out_modrm_offset(s, 0xbf | P_EXT, args[0], args[1], args[2]);
1204 break;
1205 case INDEX_op_ld_i32:
1206 /* movl */
1207 tcg_out_modrm_offset(s, 0x8b, args[0], args[1], args[2]);
1208 break;
1209 case INDEX_op_st8_i32:
1210 /* movb */
1211 tcg_out_modrm_offset(s, 0x88, args[0], args[1], args[2]);
1212 break;
1213 case INDEX_op_st16_i32:
1214 /* movw */
1215 tcg_out8(s, 0x66);
1216 tcg_out_modrm_offset(s, 0x89, args[0], args[1], args[2]);
1217 break;
1218 case INDEX_op_st_i32:
1219 /* movl */
1220 tcg_out_modrm_offset(s, 0x89, args[0], args[1], args[2]);
1221 break;
1222 case INDEX_op_sub_i32:
1223 c = ARITH_SUB;
1224 goto gen_arith;
1225 case INDEX_op_and_i32:
1226 c = ARITH_AND;
1227 goto gen_arith;
1228 case INDEX_op_or_i32:
1229 c = ARITH_OR;
1230 goto gen_arith;
1231 case INDEX_op_xor_i32:
1232 c = ARITH_XOR;
1233 goto gen_arith;
1234 case INDEX_op_add_i32:
1235 c = ARITH_ADD;
1236 gen_arith:
1237 if (const_args[2]) {
1238 tgen_arithi(s, c, args[0], args[2]);
1239 } else {
1240 tcg_out_modrm(s, 0x01 | (c << 3), args[2], args[0]);
1241 }
1242 break;
1243 case INDEX_op_mul_i32:
1244 if (const_args[2]) {
1245 int32_t val;
1246 val = args[2];
1247 if (val == (int8_t)val) {
1248 tcg_out_modrm(s, 0x6b, args[0], args[0]);
1249 tcg_out8(s, val);
1250 } else {
1251 tcg_out_modrm(s, 0x69, args[0], args[0]);
1252 tcg_out32(s, val);
1253 }
1254 } else {
1255 tcg_out_modrm(s, 0xaf | P_EXT, args[0], args[2]);
1256 }
1257 break;
1258 case INDEX_op_mulu2_i32:
1259 tcg_out_modrm(s, 0xf7, 4, args[3]);
1260 break;
1261 case INDEX_op_div2_i32:
1262 tcg_out_modrm(s, 0xf7, 7, args[4]);
1263 break;
1264 case INDEX_op_divu2_i32:
1265 tcg_out_modrm(s, 0xf7, 6, args[4]);
1266 break;
1267 case INDEX_op_shl_i32:
1268 c = SHIFT_SHL;
1269 gen_shift32:
1270 if (const_args[2]) {
1271 if (args[2] == 1) {
1272 tcg_out_modrm(s, 0xd1, c, args[0]);
1273 } else {
1274 tcg_out_modrm(s, 0xc1, c, args[0]);
1275 tcg_out8(s, args[2]);
1276 }
1277 } else {
1278 tcg_out_modrm(s, 0xd3, c, args[0]);
1279 }
1280 break;
1281 case INDEX_op_shr_i32:
1282 c = SHIFT_SHR;
1283 goto gen_shift32;
1284 case INDEX_op_sar_i32:
1285 c = SHIFT_SAR;
1286 goto gen_shift32;
1287
1288 case INDEX_op_add2_i32:
1289 if (const_args[4])
1290 tgen_arithi(s, ARITH_ADD, args[0], args[4]);
1291 else
1292 tcg_out_modrm(s, 0x01 | (ARITH_ADD << 3), args[4], args[0]);
1293 if (const_args[5])
1294 tgen_arithi(s, ARITH_ADC, args[1], args[5]);
1295 else
1296 tcg_out_modrm(s, 0x01 | (ARITH_ADC << 3), args[5], args[1]);
1297 break;
1298 case INDEX_op_sub2_i32:
1299 if (const_args[4])
1300 tgen_arithi(s, ARITH_SUB, args[0], args[4]);
1301 else
1302 tcg_out_modrm(s, 0x01 | (ARITH_SUB << 3), args[4], args[0]);
1303 if (const_args[5])
1304 tgen_arithi(s, ARITH_SBB, args[1], args[5]);
1305 else
1306 tcg_out_modrm(s, 0x01 | (ARITH_SBB << 3), args[5], args[1]);
1307 break;
1308 case INDEX_op_brcond_i32:
1309 tcg_out_brcond(s, args[2], args[0], args[1], const_args[1], args[3]);
1310 break;
1311 case INDEX_op_brcond2_i32:
1312 tcg_out_brcond2(s, args, const_args);
1313 break;
1314
1315 case INDEX_op_qemu_ld8u:
1316 tcg_out_qemu_ld(s, args, 0);
1317 break;
1318 case INDEX_op_qemu_ld8s:
1319 tcg_out_qemu_ld(s, args, 0 | 4);
1320 break;
1321 case INDEX_op_qemu_ld16u:
1322 tcg_out_qemu_ld(s, args, 1);
1323 break;
1324 case INDEX_op_qemu_ld16s:
1325 tcg_out_qemu_ld(s, args, 1 | 4);
1326 break;
1327 case INDEX_op_qemu_ld32u:
1328 tcg_out_qemu_ld(s, args, 2);
1329 break;
1330 case INDEX_op_qemu_ld64:
1331 tcg_out_qemu_ld(s, args, 3);
1332 break;
1333
1334 case INDEX_op_qemu_st8:
1335 tcg_out_qemu_st(s, args, 0);
1336 break;
1337 case INDEX_op_qemu_st16:
1338 tcg_out_qemu_st(s, args, 1);
1339 break;
1340 case INDEX_op_qemu_st32:
1341 tcg_out_qemu_st(s, args, 2);
1342 break;
1343 case INDEX_op_qemu_st64:
1344 tcg_out_qemu_st(s, args, 3);
1345 break;
1346
1347 default:
1348 tcg_abort();
1349 }
1350}
1351
1352static const TCGTargetOpDef x86_op_defs[] = {
1353 { INDEX_op_exit_tb, {"", "" } },
1354 { INDEX_op_goto_tb, {"", "" } },
1355 { INDEX_op_call, { "ri", "", } },
1356 { INDEX_op_jmp, { "ri", ""} },
1357 { INDEX_op_br, {"", "" } },
1358 { INDEX_op_mov_i32, { "r", "r" } },
1359 { INDEX_op_movi_i32, { "r" } },
1360 { INDEX_op_ld8u_i32, { "r", "r" } },
1361 { INDEX_op_ld8s_i32, { "r", "r" } },
1362 { INDEX_op_ld16u_i32, { "r", "r" } },
1363 { INDEX_op_ld16s_i32, { "r", "r" } },
1364 { INDEX_op_ld_i32, { "r", "r" } },
1365 { INDEX_op_st8_i32, { "q", "r" } },
1366 { INDEX_op_st16_i32, { "r", "r" } },
1367 { INDEX_op_st_i32, { "r", "r" } },
1368
1369 { INDEX_op_add_i32, { "r", "0", "ri" } },
1370 { INDEX_op_sub_i32, { "r", "0", "ri" } },
1371 { INDEX_op_mul_i32, { "r", "0", "ri" } },
1372 { INDEX_op_mulu2_i32, { "a", "d", "a", "r" } },
1373 { INDEX_op_div2_i32, { "a", "d", "0", "1", "r" } },
1374 { INDEX_op_divu2_i32, { "a", "d", "0", "1", "r" } },
1375 { INDEX_op_and_i32, { "r", "0", "ri" } },
1376 { INDEX_op_or_i32, { "r", "0", "ri" } },
1377 { INDEX_op_xor_i32, { "r", "0", "ri" } },
1378
1379 { INDEX_op_shl_i32, { "r", "0", "ci" } },
1380 { INDEX_op_shr_i32, { "r", "0", "ci" } },
1381 { INDEX_op_sar_i32, { "r", "0", "ci" } },
1382
1383 { INDEX_op_brcond_i32, { "r", "ri" } },
1384
1385 { INDEX_op_add2_i32, { "r", "r", "0", "1", "ri", "ri" } },
1386 { INDEX_op_sub2_i32, { "r", "r", "0", "1", "ri", "ri" } },
1387 { INDEX_op_brcond2_i32, { "r", "r", "ri", "ri" } },
1388
1389#if TARGET_LONG_BITS == 32
1390 { INDEX_op_qemu_ld8u, { "r", "L" } },
1391 { INDEX_op_qemu_ld8s, { "r", "L" } },
1392 { INDEX_op_qemu_ld16u, { "r", "L" } },
1393 { INDEX_op_qemu_ld16s, { "r", "L" } },
1394 { INDEX_op_qemu_ld32u, { "r", "L" } },
1395 { INDEX_op_qemu_ld64, { "r", "r", "L" } },
1396
1397 { INDEX_op_qemu_st8, { "cb", "L" } },
1398 { INDEX_op_qemu_st16, { "L", "L" } },
1399 { INDEX_op_qemu_st32, { "L", "L" } },
1400 { INDEX_op_qemu_st64, { "L", "L", "L" } },
1401#else
1402 { INDEX_op_qemu_ld8u, { "r", "L", "L" } },
1403 { INDEX_op_qemu_ld8s, { "r", "L", "L" } },
1404 { INDEX_op_qemu_ld16u, { "r", "L", "L" } },
1405 { INDEX_op_qemu_ld16s, { "r", "L", "L" } },
1406 { INDEX_op_qemu_ld32u, { "r", "L", "L" } },
1407 { INDEX_op_qemu_ld64, { "r", "r", "L", "L" } },
1408
1409 { INDEX_op_qemu_st8, { "cb", "L", "L" } },
1410 { INDEX_op_qemu_st16, { "L", "L", "L" } },
1411 { INDEX_op_qemu_st32, { "L", "L", "L" } },
1412 { INDEX_op_qemu_st64, { "L", "L", "L", "L" } },
1413#endif
1414#ifndef VBOX
1415 { -1 },
1416#else
1417 { -1, {"", "", "", ""} },
1418#endif
1419};
1420
1421static int tcg_target_callee_save_regs[] = {
1422#ifndef VBOX
1423 /* TCG_REG_EBP, */ /* currently used for the global env, so no
1424 need to save */
1425 TCG_REG_EBX,
1426 TCG_REG_ESI,
1427 TCG_REG_EDI,
1428#else
1429 TCG_REG_EBP,
1430 TCG_REG_EBX,
1431 /* TCG_REG_ESI, */ /* currently used for the global env, so no
1432 need to save */
1433 TCG_REG_EDI,
1434#endif
1435};
1436
1437/* Generate global QEMU prologue and epilogue code */
1438void tcg_target_qemu_prologue(TCGContext *s)
1439{
1440 int i, frame_size, push_size, stack_addend;
1441
1442 /* TB prologue */
1443 /* save all callee saved registers */
1444 for(i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
1445 tcg_out_push(s, tcg_target_callee_save_regs[i]);
1446 }
1447 /* reserve some stack space */
1448 push_size = 4 + ARRAY_SIZE(tcg_target_callee_save_regs) * 4;
1449 frame_size = push_size + TCG_STATIC_CALL_ARGS_SIZE;
1450 frame_size = (frame_size + TCG_TARGET_STACK_ALIGN - 1) &
1451 ~(TCG_TARGET_STACK_ALIGN - 1);
1452 stack_addend = frame_size - push_size;
1453 tcg_out_addi(s, TCG_REG_ESP, -stack_addend);
1454# ifdef VBOX
1455 tcg_gen_stack_alignment_check(s);
1456# endif
1457
1458 tcg_out_modrm(s, 0xff, 4, TCG_REG_EAX); /* jmp *%eax */
1459
1460 /* TB epilogue */
1461 tb_ret_addr = s->code_ptr;
1462 tcg_out_addi(s, TCG_REG_ESP, stack_addend);
1463 for(i = ARRAY_SIZE(tcg_target_callee_save_regs) - 1; i >= 0; i--) {
1464 tcg_out_pop(s, tcg_target_callee_save_regs[i]);
1465 }
1466 tcg_out8(s, 0xc3); /* ret */
1467}
1468
1469void tcg_target_init(TCGContext *s)
1470{
1471 /* fail safe */
1472 if ((1 << CPU_TLB_ENTRY_BITS) != sizeof(CPUTLBEntry))
1473 tcg_abort();
1474
1475 tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xff);
1476 tcg_regset_set32(tcg_target_call_clobber_regs, 0,
1477 (1 << TCG_REG_EAX) |
1478 (1 << TCG_REG_EDX) |
1479 (1 << TCG_REG_ECX));
1480
1481 tcg_regset_clear(s->reserved_regs);
1482 tcg_regset_set_reg(s->reserved_regs, TCG_REG_ESP);
1483
1484 tcg_add_target_add_op_defs(x86_op_defs);
1485}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette