]> git.proxmox.com Git - qemu.git/blame - translate-all.c
ide: enable single word DMA, by Stefano Stabellini.
[qemu.git] / translate-all.c
CommitLineData
d19893da
FB
1/*
2 * Host code generation
5fafdf24 3 *
d19893da
FB
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#include <stdarg.h>
21#include <stdlib.h>
22#include <stdio.h>
23#include <string.h>
24#include <inttypes.h>
25
26#include "config.h"
2054396a 27
af5ad107 28#define NO_CPU_IO_DEFS
d3eead2e
FB
29#include "cpu.h"
30#include "exec-all.h"
d19893da 31#include "disas.h"
57fec1fe 32#include "tcg.h"
d19893da 33
57fec1fe
FB
34/* code generation context */
35TCGContext tcg_ctx;
d19893da 36
d19893da 37uint16_t gen_opc_buf[OPC_BUF_SIZE];
57fec1fe 38TCGArg gen_opparam_buf[OPPARAM_BUF_SIZE];
c4687878
FB
39
40target_ulong gen_opc_pc[OPC_BUF_SIZE];
2e70f6ef 41uint16_t gen_opc_icount[OPC_BUF_SIZE];
d19893da 42uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
f76af4b3
FB
43#if defined(TARGET_I386)
44uint8_t gen_opc_cc_op[OPC_BUF_SIZE];
e95c8d51 45#elif defined(TARGET_SPARC)
c4687878 46target_ulong gen_opc_npc[OPC_BUF_SIZE];
c3278b7b 47target_ulong gen_opc_jump_pc[2];
823029f9 48#elif defined(TARGET_MIPS) || defined(TARGET_SH4)
30d6cb84 49uint32_t gen_opc_hflags[OPC_BUF_SIZE];
f76af4b3 50#endif
d19893da 51
57fec1fe 52/* XXX: suppress that */
d07bde88
BS
53unsigned long code_gen_max_block_size(void)
54{
55 static unsigned long max;
56
57 if (max == 0) {
a208e54a 58 max = TCG_MAX_OP_SIZE;
d07bde88 59#define DEF(s, n, copy_size) max = copy_size > max? copy_size : max;
57fec1fe 60#include "tcg-opc.h"
d07bde88
BS
61#undef DEF
62 max *= OPC_MAX_SIZE;
63 }
64
65 return max;
66}
67
57fec1fe
FB
68void cpu_gen_init(void)
69{
70 tcg_context_init(&tcg_ctx);
71 tcg_set_frame(&tcg_ctx, TCG_AREG0, offsetof(CPUState, temp_buf),
a20e31dc 72 CPU_TEMP_BUF_NLONGS * sizeof(long));
57fec1fe
FB
73}
74
d19893da 75/* return non zero if the very first instruction is invalid so that
5fafdf24 76 the virtual CPU can trigger an exception.
d19893da
FB
77
78 '*gen_code_size_ptr' contains the size of the generated code (host
79 code).
80*/
d07bde88 81int cpu_gen_code(CPUState *env, TranslationBlock *tb, int *gen_code_size_ptr)
d19893da 82{
57fec1fe 83 TCGContext *s = &tcg_ctx;
d19893da
FB
84 uint8_t *gen_code_buf;
85 int gen_code_size;
57fec1fe
FB
86#ifdef CONFIG_PROFILER
87 int64_t ti;
88#endif
89
90#ifdef CONFIG_PROFILER
b67d9a52
FB
91 s->tb_count1++; /* includes aborted translations because of
92 exceptions */
57fec1fe
FB
93 ti = profile_getclock();
94#endif
95 tcg_func_start(s);
d19893da 96
ec6338ba
FB
97 if (gen_intermediate_code(env, tb) < 0)
98 return -1;
99
100 /* generate machine code */
57fec1fe 101 gen_code_buf = tb->tc_ptr;
ec6338ba
FB
102 tb->tb_next_offset[0] = 0xffff;
103 tb->tb_next_offset[1] = 0xffff;
57fec1fe 104 s->tb_next_offset = tb->tb_next_offset;
4cbb86e1 105#ifdef USE_DIRECT_JUMP
57fec1fe
FB
106 s->tb_jmp_offset = tb->tb_jmp_offset;
107 s->tb_next = NULL;
ec6338ba 108 /* the following two entries are optional (only used for string ops) */
57fec1fe 109 /* XXX: not used ? */
ec6338ba
FB
110 tb->tb_jmp_offset[2] = 0xffff;
111 tb->tb_jmp_offset[3] = 0xffff;
d19893da 112#else
57fec1fe
FB
113 s->tb_jmp_offset = NULL;
114 s->tb_next = tb->tb_next;
d19893da 115#endif
57fec1fe
FB
116
117#ifdef CONFIG_PROFILER
b67d9a52
FB
118 s->tb_count++;
119 s->interm_time += profile_getclock() - ti;
120 s->code_time -= profile_getclock();
57fec1fe
FB
121#endif
122 gen_code_size = dyngen_code(s, gen_code_buf);
d19893da 123 *gen_code_size_ptr = gen_code_size;
57fec1fe 124#ifdef CONFIG_PROFILER
b67d9a52
FB
125 s->code_time += profile_getclock();
126 s->code_in_len += tb->size;
127 s->code_out_len += gen_code_size;
57fec1fe
FB
128#endif
129
d19893da 130#ifdef DEBUG_DISAS
f193c797 131 if (loglevel & CPU_LOG_TB_OUT_ASM) {
d19893da 132 fprintf(logfile, "OUT: [size=%d]\n", *gen_code_size_ptr);
c4687878 133 disas(logfile, tb->tc_ptr, *gen_code_size_ptr);
d19893da
FB
134 fprintf(logfile, "\n");
135 fflush(logfile);
136 }
137#endif
138 return 0;
139}
140
5fafdf24 141/* The cpu state corresponding to 'searched_pc' is restored.
d19893da 142 */
5fafdf24 143int cpu_restore_state(TranslationBlock *tb,
58fe2f10
FB
144 CPUState *env, unsigned long searched_pc,
145 void *puc)
d19893da 146{
57fec1fe
FB
147 TCGContext *s = &tcg_ctx;
148 int j;
d19893da 149 unsigned long tc_ptr;
57fec1fe
FB
150#ifdef CONFIG_PROFILER
151 int64_t ti;
152#endif
153
154#ifdef CONFIG_PROFILER
155 ti = profile_getclock();
156#endif
157 tcg_func_start(s);
d19893da 158
4c3a88a2 159 if (gen_intermediate_code_pc(env, tb) < 0)
d19893da 160 return -1;
3b46e624 161
2e70f6ef
PB
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;
167 }
168
d19893da
FB
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;
57fec1fe
FB
173
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
623e265c 182 j = dyngen_code_search_pc(s, (uint8_t *)tc_ptr, searched_pc - tc_ptr);
57fec1fe
FB
183 if (j < 0)
184 return -1;
d19893da
FB
185 /* now find start of instruction before */
186 while (gen_opc_instr_start[j] == 0)
187 j--;
2e70f6ef 188 env->icount_decr.u16.low -= gen_opc_icount[j];
3b46e624 189
d2856f1a 190 gen_pc_load(env, tb, searched_pc, j, puc);
57fec1fe
FB
191
192#ifdef CONFIG_PROFILER
b67d9a52
FB
193 s->restore_time += profile_getclock() - ti;
194 s->restore_count++;
57fec1fe 195#endif
d19893da
FB
196 return 0;
197}