blob: 91cbbc4929397c73e864e844ce25d1d4748c2806 [file] [log] [blame]
bellardd19893d2003-06-15 19:58:51 +00001/*
2 * Host code generation
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardd19893d2003-06-15 19:58:51 +00004 * 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
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellardd19893d2003-06-15 19:58:51 +000018 */
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"
bellard20543962003-06-15 23:28:43 +000026
bellardaf5ad102004-01-04 23:28:12 +000027#define NO_CPU_IO_DEFS
bellardd3eead22003-09-30 20:59:51 +000028#include "cpu.h"
29#include "exec-all.h"
bellardd19893d2003-06-15 19:58:51 +000030#include "disas.h"
bellard57fec1f2008-02-01 10:50:11 +000031#include "tcg.h"
Blue Swirl29e922b2010-03-29 19:24:00 +000032#include "qemu-timer.h"
bellardd19893d2003-06-15 19:58:51 +000033
bellard57fec1f2008-02-01 10:50:11 +000034/* code generation context */
35TCGContext tcg_ctx;
bellardd19893d2003-06-15 19:58:51 +000036
bellardd19893d2003-06-15 19:58:51 +000037uint16_t gen_opc_buf[OPC_BUF_SIZE];
bellard57fec1f2008-02-01 10:50:11 +000038TCGArg gen_opparam_buf[OPPARAM_BUF_SIZE];
bellardc4687872005-01-03 23:44:44 +000039
40target_ulong gen_opc_pc[OPC_BUF_SIZE];
pbrook2e70f6e2008-06-29 01:03:05 +000041uint16_t gen_opc_icount[OPC_BUF_SIZE];
bellardd19893d2003-06-15 19:58:51 +000042uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
bellardd19893d2003-06-15 19:58:51 +000043
bellard57fec1f2008-02-01 10:50:11 +000044/* XXX: suppress that */
blueswir1d07bde82007-12-11 19:35:45 +000045unsigned long code_gen_max_block_size(void)
46{
47 static unsigned long max;
48
49 if (max == 0) {
pbrooka208e542008-03-31 17:07:36 +000050 max = TCG_MAX_OP_SIZE;
blueswir1d07bde82007-12-11 19:35:45 +000051#define DEF(s, n, copy_size) max = copy_size > max? copy_size : max;
bellard57fec1f2008-02-01 10:50:11 +000052#include "tcg-opc.h"
blueswir1d07bde82007-12-11 19:35:45 +000053#undef DEF
54 max *= OPC_MAX_SIZE;
55 }
56
57 return max;
58}
59
bellard57fec1f2008-02-01 10:50:11 +000060void cpu_gen_init(void)
61{
62 tcg_context_init(&tcg_ctx);
63 tcg_set_frame(&tcg_ctx, TCG_AREG0, offsetof(CPUState, temp_buf),
blueswir1a20e31d2008-04-08 19:29:54 +000064 CPU_TEMP_BUF_NLONGS * sizeof(long));
bellard57fec1f2008-02-01 10:50:11 +000065}
66
bellardd19893d2003-06-15 19:58:51 +000067/* return non zero if the very first instruction is invalid so that
ths5fafdf22007-09-16 21:08:06 +000068 the virtual CPU can trigger an exception.
bellardd19893d2003-06-15 19:58:51 +000069
70 '*gen_code_size_ptr' contains the size of the generated code (host
71 code).
72*/
blueswir1d07bde82007-12-11 19:35:45 +000073int cpu_gen_code(CPUState *env, TranslationBlock *tb, int *gen_code_size_ptr)
bellardd19893d2003-06-15 19:58:51 +000074{
bellard57fec1f2008-02-01 10:50:11 +000075 TCGContext *s = &tcg_ctx;
bellardd19893d2003-06-15 19:58:51 +000076 uint8_t *gen_code_buf;
77 int gen_code_size;
bellard57fec1f2008-02-01 10:50:11 +000078#ifdef CONFIG_PROFILER
79 int64_t ti;
80#endif
81
82#ifdef CONFIG_PROFILER
bellardb67d9a52008-05-23 09:57:34 +000083 s->tb_count1++; /* includes aborted translations because of
84 exceptions */
bellard57fec1f2008-02-01 10:50:11 +000085 ti = profile_getclock();
86#endif
87 tcg_func_start(s);
bellardd19893d2003-06-15 19:58:51 +000088
ths2cfc5f12008-07-18 18:01:29 +000089 gen_intermediate_code(env, tb);
90
bellardec6338b2007-11-08 14:25:03 +000091 /* generate machine code */
bellard57fec1f2008-02-01 10:50:11 +000092 gen_code_buf = tb->tc_ptr;
bellardec6338b2007-11-08 14:25:03 +000093 tb->tb_next_offset[0] = 0xffff;
94 tb->tb_next_offset[1] = 0xffff;
bellard57fec1f2008-02-01 10:50:11 +000095 s->tb_next_offset = tb->tb_next_offset;
bellard4cbb86e2003-09-17 22:53:29 +000096#ifdef USE_DIRECT_JUMP
bellard57fec1f2008-02-01 10:50:11 +000097 s->tb_jmp_offset = tb->tb_jmp_offset;
98 s->tb_next = NULL;
bellardd19893d2003-06-15 19:58:51 +000099#else
bellard57fec1f2008-02-01 10:50:11 +0000100 s->tb_jmp_offset = NULL;
101 s->tb_next = tb->tb_next;
bellardd19893d2003-06-15 19:58:51 +0000102#endif
bellard57fec1f2008-02-01 10:50:11 +0000103
104#ifdef CONFIG_PROFILER
bellardb67d9a52008-05-23 09:57:34 +0000105 s->tb_count++;
106 s->interm_time += profile_getclock() - ti;
107 s->code_time -= profile_getclock();
bellard57fec1f2008-02-01 10:50:11 +0000108#endif
aurel3254604f72008-12-07 20:35:00 +0000109 gen_code_size = tcg_gen_code(s, gen_code_buf);
bellardd19893d2003-06-15 19:58:51 +0000110 *gen_code_size_ptr = gen_code_size;
bellard57fec1f2008-02-01 10:50:11 +0000111#ifdef CONFIG_PROFILER
bellardb67d9a52008-05-23 09:57:34 +0000112 s->code_time += profile_getclock();
113 s->code_in_len += tb->size;
114 s->code_out_len += gen_code_size;
bellard57fec1f2008-02-01 10:50:11 +0000115#endif
116
bellardd19893d2003-06-15 19:58:51 +0000117#ifdef DEBUG_DISAS
aliguori8fec2b82009-01-15 22:36:53 +0000118 if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM)) {
aliguori93fcfe32009-01-15 22:34:14 +0000119 qemu_log("OUT: [size=%d]\n", *gen_code_size_ptr);
120 log_disas(tb->tc_ptr, *gen_code_size_ptr);
121 qemu_log("\n");
aliguori31b1a7b2009-01-15 22:35:09 +0000122 qemu_log_flush();
bellardd19893d2003-06-15 19:58:51 +0000123 }
124#endif
125 return 0;
126}
127
ths5fafdf22007-09-16 21:08:06 +0000128/* The cpu state corresponding to 'searched_pc' is restored.
bellardd19893d2003-06-15 19:58:51 +0000129 */
ths5fafdf22007-09-16 21:08:06 +0000130int cpu_restore_state(TranslationBlock *tb,
bellard58fe2f12004-02-16 22:11:32 +0000131 CPUState *env, unsigned long searched_pc,
132 void *puc)
bellardd19893d2003-06-15 19:58:51 +0000133{
bellard57fec1f2008-02-01 10:50:11 +0000134 TCGContext *s = &tcg_ctx;
135 int j;
bellardd19893d2003-06-15 19:58:51 +0000136 unsigned long tc_ptr;
bellard57fec1f2008-02-01 10:50:11 +0000137#ifdef CONFIG_PROFILER
138 int64_t ti;
139#endif
140
141#ifdef CONFIG_PROFILER
142 ti = profile_getclock();
143#endif
144 tcg_func_start(s);
bellardd19893d2003-06-15 19:58:51 +0000145
ths2cfc5f12008-07-18 18:01:29 +0000146 gen_intermediate_code_pc(env, tb);
ths3b46e622007-09-17 08:09:54 +0000147
pbrook2e70f6e2008-06-29 01:03:05 +0000148 if (use_icount) {
149 /* Reset the cycle counter to the start of the block. */
150 env->icount_decr.u16.low += tb->icount;
151 /* Clear the IO flag. */
152 env->can_do_io = 0;
153 }
154
bellardd19893d2003-06-15 19:58:51 +0000155 /* find opc index corresponding to search_pc */
156 tc_ptr = (unsigned long)tb->tc_ptr;
157 if (searched_pc < tc_ptr)
158 return -1;
bellard57fec1f2008-02-01 10:50:11 +0000159
160 s->tb_next_offset = tb->tb_next_offset;
161#ifdef USE_DIRECT_JUMP
162 s->tb_jmp_offset = tb->tb_jmp_offset;
163 s->tb_next = NULL;
164#else
165 s->tb_jmp_offset = NULL;
166 s->tb_next = tb->tb_next;
167#endif
aurel3254604f72008-12-07 20:35:00 +0000168 j = tcg_gen_code_search_pc(s, (uint8_t *)tc_ptr, searched_pc - tc_ptr);
bellard57fec1f2008-02-01 10:50:11 +0000169 if (j < 0)
170 return -1;
bellardd19893d2003-06-15 19:58:51 +0000171 /* now find start of instruction before */
172 while (gen_opc_instr_start[j] == 0)
173 j--;
pbrook2e70f6e2008-06-29 01:03:05 +0000174 env->icount_decr.u16.low -= gen_opc_icount[j];
ths3b46e622007-09-17 08:09:54 +0000175
aurel32d2856f12008-04-28 00:32:32 +0000176 gen_pc_load(env, tb, searched_pc, j, puc);
bellard57fec1f2008-02-01 10:50:11 +0000177
178#ifdef CONFIG_PROFILER
bellardb67d9a52008-05-23 09:57:34 +0000179 s->restore_time += profile_getclock() - ti;
180 s->restore_count++;
bellard57fec1f2008-02-01 10:50:11 +0000181#endif
bellardd19893d2003-06-15 19:58:51 +0000182 return 0;
183}