forked from antmicro/tlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpu-exec.c
466 lines (420 loc) · 16.7 KB
/
cpu-exec.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
/*
* i386 emulator main execution loop
*
* Copyright (c) 2003-2005 Fabrice Bellard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#include "cpu.h"
#include "tcg.h"
#include "atomic.h"
#include "tlib-alloc.h"
target_ulong virt_to_phys(target_ulong virtual, uint32_t access_type, uint32_t nofault)
{
/* Access types :
* 0 : read
* 1 : write
* 2 : instr fetch */
void *p;
int8_t found_idx = -1;
uint16_t mmu_idx = cpu_mmu_index(env);
target_ulong masked_virtual;
target_ulong page_index;
target_ulong physical;
nofault = !!nofault;
masked_virtual = virtual & TARGET_PAGE_MASK;
page_index = (virtual >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
if ((env->tlb_table[mmu_idx][page_index].addr_write & TARGET_PAGE_MASK) == masked_virtual) {
physical = env->tlb_table[mmu_idx][page_index].addr_write;
found_idx = mmu_idx;
} else if ((env->tlb_table[mmu_idx][page_index].addr_read & TARGET_PAGE_MASK) == masked_virtual) {
physical = env->tlb_table[mmu_idx][page_index].addr_read;
found_idx = mmu_idx;
} else if ((env->tlb_table[mmu_idx][page_index].addr_code & TARGET_PAGE_MASK) == masked_virtual) {
physical = env->tlb_table[mmu_idx][page_index].addr_code;
found_idx = mmu_idx;
} else {
// Not mapped in current env mmu mode, check other modes
for (int idx = 0; idx < NB_MMU_MODES; idx++) {
if (idx == mmu_idx) {
// Already checked
continue;
}
if ((env->tlb_table[idx][page_index].addr_write & TARGET_PAGE_MASK) == masked_virtual) {
physical = env->tlb_table[idx][page_index].addr_write;
found_idx = idx;
break;
} else if ((env->tlb_table[idx][page_index].addr_read & TARGET_PAGE_MASK) == masked_virtual) {
physical = env->tlb_table[idx][page_index].addr_read;
found_idx = idx;
break;
} else if ((env->tlb_table[idx][page_index].addr_code & TARGET_PAGE_MASK) == masked_virtual) {
physical = env->tlb_table[idx][page_index].addr_code;
found_idx = idx;
break;
}
}
}
if (found_idx == -1) {
// Not mapped in any mode - referesh page table from h/w tables
tlb_fill(env, virtual & TARGET_PAGE_MASK, access_type, mmu_idx, NULL /* retaddr */, nofault, 1);
found_idx = mmu_idx;
target_ulong mapped_address;
switch (access_type) {
case 0: // DATA_LOAD
mapped_address = env->tlb_table[mmu_idx][page_index].addr_read;
break;
case 1: //DATA_STORE
mapped_address = env->tlb_table[mmu_idx][page_index].addr_write;
break;
case 2: //INST_FETCH
mapped_address = env->tlb_table[mmu_idx][page_index].addr_code;
break;
default:
mapped_address = ~masked_virtual; // Mapping should fail
}
if (likely((mapped_address & TARGET_PAGE_MASK) == masked_virtual)) {
physical = mapped_address;
} else {
return -1;
}
}
if (physical & TLB_MMIO) {
// The virtual address is mapping IO mem, not ram - use the IO page table
physical = (target_ulong)env->iotlb[found_idx][page_index];
physical = (physical + virtual) & TARGET_PAGE_MASK;
} else {
p = (void *)(uintptr_t)masked_virtual + env->tlb_table[found_idx][page_index].addend;
physical = tlib_host_ptr_to_guest_offset(p);
if (physical == -1) {
return -1;
}
}
physical |= (virtual & ~TARGET_PAGE_MASK);
return physical;
}
int tb_invalidated_flag;
void TLIB_NORETURN cpu_loop_exit_without_hook(CPUState *env)
{
env->current_tb = NULL;
longjmp(env->jmp_env, 1);
}
void TLIB_NORETURN cpu_loop_exit(CPUState *env)
{
if (env->block_finished_hook_present) {
target_ulong pc = CPU_PC(env);
// TODO: here we would need to have the number of executed instructions, how?!
tlib_on_block_finished(pc, -1);
}
cpu_loop_exit_without_hook(env);
}
void TLIB_NORETURN cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc, uint32_t call_hook)
{
TranslationBlock *tb;
uint32_t executed_instructions = 0;
if (pc) {
tb = tb_find_pc(pc);
if (!tb) {
tlib_abortf("tb_find_pc for pc = 0x%lx failed!", pc);
}
executed_instructions = cpu_restore_state_and_restore_instructions_count(cpu, tb, pc, true);
}
if (call_hook && cpu->block_finished_hook_present) {
tlib_on_block_finished(CPU_PC(cpu), executed_instructions);
}
cpu_loop_exit_without_hook(cpu);
}
static TranslationBlock *tb_find_slow(CPUState *env, target_ulong pc, target_ulong cs_base, uint64_t flags)
{
tlib_on_translation_block_find_slow(pc);
TranslationBlock *tb, **ptb1;
TranslationBlock *prev_related_tb;
unsigned int h;
tb_page_addr_t phys_pc, phys_page1;
target_ulong virt_page2;
uint32_t max_icount;
tb_invalidated_flag = 0;
prev_related_tb = NULL;
max_icount = env->instructions_count_limit - env->instructions_count_value;
/* find translated block using physical mappings */
phys_pc = get_page_addr_code(env, pc, true);
phys_page1 = phys_pc & TARGET_PAGE_MASK;
h = tb_phys_hash_func(phys_pc);
ptb1 = &tb_phys_hash[h];
if (unlikely(env->tb_cache_disabled)) {
goto not_found;
}
for (;;) {
tb = *ptb1;
if (!tb) {
goto not_found;
}
if (tb->pc == pc && tb->page_addr[0] == phys_page1 && tb->cs_base == cs_base && tb->flags == flags) {
if (tb->icount <= max_icount) {
/* check next page if needed */
if (tb->page_addr[1] != -1) {
tb_page_addr_t phys_page2;
virt_page2 = (pc & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE;
phys_page2 = get_page_addr_code(env, virt_page2, true);
if (tb->page_addr[1] == phys_page2) {
goto found;
}
} else {
goto found;
}
} else {
prev_related_tb = tb;
}
}
ptb1 = &tb->phys_hash_next;
}
not_found:
/* if no translated code available, then translate it now */
tb = tb_gen_code(env, pc, cs_base, flags, 0);
/* if tb_gen_code flushed translation blocks, ptb1 and prev_related_tb can be invalid;
* this is indicated by `tb_invalidated_flag` which is reset at the beginning of the current function
* and set when we invalidate TB (e.g. as a result of the code buffer reallocation) */
if (unlikely(tb_invalidated_flag)) {
prev_related_tb = NULL;
ptb1 = &tb_phys_hash[h];
}
found:
/* Move the last found TB closer to the beginning of the list,
* but keeping related TBs sorted.
* 'related' means TBs generated from the same code, but with
* different icount */
if (!tb->was_cut || !prev_related_tb) {
/* TB wasn't cut or is the first in the list among related to it.
* It means it is the largest TB and can be
* inserted at the beginning of the list */
*ptb1 = tb->phys_hash_next;
tb->phys_hash_next = tb_phys_hash[h];
tb_phys_hash[h] = tb;
} else {
/* Move the TB just after previous related TB */
*ptb1 = tb->phys_hash_next;
tb->phys_hash_next = prev_related_tb->phys_hash_next;
prev_related_tb->phys_hash_next = tb;
}
/* we add the TB in the virtual pc hash table */
env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)] = tb;
return tb;
}
static inline TranslationBlock *tb_find_fast(CPUState *env)
{
TranslationBlock *tb;
target_ulong cs_base, pc;
int flags;
uint32_t max_icount = (env->instructions_count_limit - env->instructions_count_value);
/* we record a subset of the CPU state. It will
always be the same before a given translated block
is executed. */
cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags);
tb = env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)];
if (unlikely(!tb || tb->pc != pc || tb->cs_base != cs_base || tb->flags != flags || env->tb_cache_disabled)
|| (tb->was_cut && tb->icount < max_icount) || (tb->icount > max_icount)) {
tb = tb_find_slow(env, pc, cs_base, flags);
}
return tb;
}
static CPUDebugExcpHandler *debug_excp_handler;
CPUDebugExcpHandler *cpu_set_debug_excp_handler(CPUDebugExcpHandler *handler)
{
CPUDebugExcpHandler *old_handler = debug_excp_handler;
debug_excp_handler = handler;
return old_handler;
}
static void verify_state(CPUState *env)
{
if (env->atomic_memory_state == NULL) {
return;
}
if (env->atomic_memory_state->locking_cpu_id == env->atomic_id) {
clear_global_memory_lock(env);
}
}
// `was_not_working` is in `env` so it will reset when CPU is reset
// and so it behaves properly after deserialization
inline static void on_cpu_no_work(CPUState *const env)
{
if (!env->was_not_working) {
env->was_not_working = true;
// Report WFI enter
tlib_on_wfi_state_change(true);
}
}
inline static void on_cpu_has_work(CPUState *const env)
{
if (env->was_not_working) {
env->was_not_working = false;
// Report WFI exit
tlib_on_wfi_state_change(false);
}
}
/* main execution loop */
int process_interrupt(int interrupt_request, CPUState *env);
void cpu_exec_prologue(CPUState *env);
void cpu_exec_epilogue(CPUState *env);
#ifndef __llvm__
// it looks like cpu_exec is aware of possible problems and restores `env`, so the warning is not necessary
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wclobbered"
#endif
int cpu_exec(CPUState *env)
{
int ret, interrupt_request;
TranslationBlock *tb;
uint8_t *tc_ptr;
uintptr_t next_tb;
if (!cpu_has_work(env)) {
if (unlikely(env->cpu_wfi_state_change_hook_present)) {
on_cpu_no_work(env);
}
return EXCP_WFI;
}
if (unlikely(env->cpu_wfi_state_change_hook_present)) {
on_cpu_has_work(env);
}
cpu_exec_prologue(env);
env->exception_index = -1;
/* prepare setjmp context for exception handling */
for (;;) {
verify_state(env);
if (setjmp(env->jmp_env) == 0) {
/* if an exception is pending, we execute it here */
if (env->exception_index >= 0) {
if (env->return_on_exception || env->exception_index >= EXCP_INTERRUPT) {
/* exit request from the cpu execution loop */
ret = env->exception_index;
if ((ret == EXCP_DEBUG) && debug_excp_handler) {
debug_excp_handler(env);
}
break;
} else {
do_interrupt(env);
if (env->exception_index != -1) {
if (env->exception_index == EXCP_WFI) {
env->exception_index = -1;
ret = 0;
break;
}
env->exception_index = -1;
}
}
}
next_tb = 0; /* force lookup of first TB */
for (;;) {
interrupt_request = env->interrupt_request;
if (unlikely(interrupt_request)) {
if (is_interrupt_pending(env, CPU_INTERRUPT_DEBUG)) {
clear_interrupt_pending(env, CPU_INTERRUPT_DEBUG);
env->exception_index = EXCP_DEBUG;
cpu_loop_exit_without_hook(env);
}
if (process_interrupt(interrupt_request, env)) {
next_tb = 0;
}
if (env->exception_index == EXCP_DEBUG || env->exception_index == EXCP_WFI) {
cpu_loop_exit_without_hook(env);
}
env->exception_index = -1;
/* Don't use the cached interrupt_request value,
do_interrupt may have updated the EXITTB flag. */
if (is_interrupt_pending(env, CPU_INTERRUPT_EXITTB)) {
clear_interrupt_pending(env, CPU_INTERRUPT_EXITTB);
/* ensure that no TB jump will be modified as
the program flow was changed */
next_tb = 0;
}
}
#ifdef TARGET_PROTO_ARM_M
if (env->regs[15] >= 0xffffff00) {
do_v7m_exception_exit(env);
next_tb = 0;
}
#endif
if(unlikely(env->mmu_fault))
{
env->exception_index = MMU_EXTERNAL_FAULT;
cpu_loop_exit_without_hook(env);
}
if (unlikely(env->exception_index != -1)) {
cpu_loop_exit_without_hook(env);
}
if (cpu->instructions_count_value == cpu->instructions_count_limit) {
env->exit_request = 1;
}
if (unlikely(env->exit_request)) {
env->exception_index = EXCP_INTERRUPT;
cpu_loop_exit_without_hook(env);
}
if (unlikely(env->tb_restart_request)) {
env->tb_restart_request = 0;
cpu_loop_exit_without_hook(env);
}
tb = tb_find_fast(env);
/* Note: we do it here to avoid a gcc bug on Mac OS X when
doing it in tb_find_slow */
if (tb_invalidated_flag) {
/* as some TB could have been invalidated because
of memory exceptions while generating the code, we
must recompute the hash index here */
next_tb = 0;
tb_invalidated_flag = 0;
}
/* see if we can patch the calling TB. When the TB
spans two pages, we cannot safely do a direct
jump.
We do not chain blocks if the chaining is explicitly disabled or if
there is a hook registered for the block footer. */
if (!env->chaining_disabled && !env->block_finished_hook_present && next_tb != 0 && tb->page_addr[1] == -1) {
tb_add_jump((TranslationBlock *)(next_tb & ~3), next_tb & 3, tb);
}
/* cpu_interrupt might be called while translating the
TB, but before it is linked into a potentially
infinite loop and becomes env->current_tb. Avoid
starting execution if there is a pending interrupt. */
env->current_tb = tb;
asm volatile ("" ::: "memory");
if (likely(!env->exit_request)) {
tc_ptr = (uint8_t *) rw_ptr_to_rx(tb->tc_ptr);
/* execute the generated code */
next_tb = tcg_tb_exec(env, tc_ptr);
/* Flush the list after every unchained block */
flush_dirty_addresses_list();
if ((next_tb & 3) == EXIT_TB_FORCE) {
tb = (TranslationBlock *)(uintptr_t)(next_tb & ~3);
/* Restore PC. */
cpu_pc_from_tb(env, tb);
next_tb = 0;
env->exception_index = EXCP_INTERRUPT;
cpu_loop_exit_without_hook(env);
}
}
env->current_tb = NULL;
/* reset soft MMU for next block (it can currently
only be set by a memory fault) */
} /* for(;;) */
} else {
/* Reload env after longjmp - the compiler may have smashed all
* local variables as longjmp is marked 'noreturn'. */
env = cpu;
}
} /* for(;;) */
cpu_exec_epilogue(env);
return ret;
}
#ifndef __llvm__
#pragma GCC diagnostic pop
#endif