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