Fix test arguments (Jeremy C. Reed)
[qemu-kvm/fedora.git] / translate-all.c
blob263649578b180c46c04a385b8dc4b9e3b3db6c52
1 /*
2 * Host code generation
4 * Copyright (c) 2003 Fabrice Bellard
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.
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.
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
20 #include <stdarg.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <inttypes.h>
26 #include "config.h"
28 #define NO_CPU_IO_DEFS
29 #include "cpu.h"
30 #include "exec-all.h"
31 #include "disas.h"
32 #include "tcg.h"
34 /* code generation context */
35 TCGContext tcg_ctx;
37 uint16_t gen_opc_buf[OPC_BUF_SIZE];
38 TCGArg gen_opparam_buf[OPPARAM_BUF_SIZE];
40 target_ulong gen_opc_pc[OPC_BUF_SIZE];
41 uint16_t gen_opc_icount[OPC_BUF_SIZE];
42 uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
43 #if defined(TARGET_I386)
44 uint8_t gen_opc_cc_op[OPC_BUF_SIZE];
45 #elif defined(TARGET_SPARC)
46 target_ulong gen_opc_npc[OPC_BUF_SIZE];
47 target_ulong gen_opc_jump_pc[2];
48 #elif defined(TARGET_MIPS) || defined(TARGET_SH4)
49 uint32_t gen_opc_hflags[OPC_BUF_SIZE];
50 #endif
52 /* XXX: suppress that */
53 unsigned long code_gen_max_block_size(void)
55 static unsigned long max;
57 if (max == 0) {
58 max = TCG_MAX_OP_SIZE;
59 #define DEF(s, n, copy_size) max = copy_size > max? copy_size : max;
60 #include "tcg-opc.h"
61 #undef DEF
62 max *= OPC_MAX_SIZE;
65 return max;
68 void cpu_gen_init(void)
70 tcg_context_init(&tcg_ctx);
71 tcg_set_frame(&tcg_ctx, TCG_AREG0, offsetof(CPUState, temp_buf),
72 CPU_TEMP_BUF_NLONGS * sizeof(long));
75 /* return non zero if the very first instruction is invalid so that
76 the virtual CPU can trigger an exception.
78 '*gen_code_size_ptr' contains the size of the generated code (host
79 code).
81 int cpu_gen_code(CPUState *env, TranslationBlock *tb, int *gen_code_size_ptr)
83 TCGContext *s = &tcg_ctx;
84 uint8_t *gen_code_buf;
85 int gen_code_size;
86 #ifdef CONFIG_PROFILER
87 int64_t ti;
88 #endif
90 #ifdef CONFIG_PROFILER
91 s->tb_count1++; /* includes aborted translations because of
92 exceptions */
93 ti = profile_getclock();
94 #endif
95 tcg_func_start(s);
97 if (gen_intermediate_code(env, tb) < 0)
98 return -1;
100 /* generate machine code */
101 gen_code_buf = tb->tc_ptr;
102 tb->tb_next_offset[0] = 0xffff;
103 tb->tb_next_offset[1] = 0xffff;
104 s->tb_next_offset = tb->tb_next_offset;
105 #ifdef USE_DIRECT_JUMP
106 s->tb_jmp_offset = tb->tb_jmp_offset;
107 s->tb_next = NULL;
108 /* the following two entries are optional (only used for string ops) */
109 /* XXX: not used ? */
110 tb->tb_jmp_offset[2] = 0xffff;
111 tb->tb_jmp_offset[3] = 0xffff;
112 #else
113 s->tb_jmp_offset = NULL;
114 s->tb_next = tb->tb_next;
115 #endif
117 #ifdef CONFIG_PROFILER
118 s->tb_count++;
119 s->interm_time += profile_getclock() - ti;
120 s->code_time -= profile_getclock();
121 #endif
122 gen_code_size = dyngen_code(s, gen_code_buf);
123 *gen_code_size_ptr = gen_code_size;
124 #ifdef CONFIG_PROFILER
125 s->code_time += profile_getclock();
126 s->code_in_len += tb->size;
127 s->code_out_len += gen_code_size;
128 #endif
130 #ifdef DEBUG_DISAS
131 if (loglevel & CPU_LOG_TB_OUT_ASM) {
132 fprintf(logfile, "OUT: [size=%d]\n", *gen_code_size_ptr);
133 disas(logfile, tb->tc_ptr, *gen_code_size_ptr);
134 fprintf(logfile, "\n");
135 fflush(logfile);
137 #endif
138 return 0;
141 /* The cpu state corresponding to 'searched_pc' is restored.
143 int cpu_restore_state(TranslationBlock *tb,
144 CPUState *env, unsigned long searched_pc,
145 void *puc)
147 TCGContext *s = &tcg_ctx;
148 int j;
149 unsigned long tc_ptr;
150 #ifdef CONFIG_PROFILER
151 int64_t ti;
152 #endif
154 #ifdef CONFIG_PROFILER
155 ti = profile_getclock();
156 #endif
157 tcg_func_start(s);
159 if (gen_intermediate_code_pc(env, tb) < 0)
160 return -1;
162 if (use_icount) {
163 /* Reset the cycle counter to the start of the block. */
164 env->icount_decr.u16.low += tb->icount;
165 /* Clear the IO flag. */
166 env->can_do_io = 0;
169 /* find opc index corresponding to search_pc */
170 tc_ptr = (unsigned long)tb->tc_ptr;
171 if (searched_pc < tc_ptr)
172 return -1;
174 s->tb_next_offset = tb->tb_next_offset;
175 #ifdef USE_DIRECT_JUMP
176 s->tb_jmp_offset = tb->tb_jmp_offset;
177 s->tb_next = NULL;
178 #else
179 s->tb_jmp_offset = NULL;
180 s->tb_next = tb->tb_next;
181 #endif
182 j = dyngen_code_search_pc(s, (uint8_t *)tc_ptr, searched_pc - tc_ptr);
183 if (j < 0)
184 return -1;
185 /* now find start of instruction before */
186 while (gen_opc_instr_start[j] == 0)
187 j--;
188 env->icount_decr.u16.low -= gen_opc_icount[j];
190 gen_pc_load(env, tb, searched_pc, j, puc);
192 #ifdef CONFIG_PROFILER
193 s->restore_time += profile_getclock() - ti;
194 s->restore_count++;
195 #endif
196 return 0;