]>
Commit | Line | Data |
---|---|---|
fdf9b3e8 FB |
1 | /* |
2 | * SH4 emulation | |
5fafdf24 | 3 | * |
fdf9b3e8 FB |
4 | * Copyright (c) 2005 Samuel Tardieu |
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 | #ifndef _EXEC_SH4_H | |
21 | #define _EXEC_SH4_H | |
22 | ||
23 | #include "config.h" | |
24 | #include "dyngen-exec.h" | |
25 | ||
26 | register struct CPUSH4State *env asm(AREG0); | |
27 | register uint32_t T0 asm(AREG1); | |
28 | register uint32_t T1 asm(AREG2); | |
9c2a9ea1 | 29 | //register uint32_t T2 asm(AREG3); |
fdf9b3e8 | 30 | |
eda9b09b FB |
31 | #define FT0 (env->ft0) |
32 | #define FT1 (env->ft1) | |
33 | #define DT0 (env->dt0) | |
34 | #define DT1 (env->dt1) | |
35 | ||
fdf9b3e8 FB |
36 | #include "cpu.h" |
37 | #include "exec-all.h" | |
38 | ||
d10927f8 TS |
39 | static inline int cpu_halted(CPUState *env) { |
40 | if (!env->halted) | |
41 | return 0; | |
42 | if (env->interrupt_request & CPU_INTERRUPT_HARD) { | |
43 | env->halted = 0; | |
833ed386 | 44 | env->intr_at_halt = 1; |
d10927f8 TS |
45 | return 0; |
46 | } | |
47 | return EXCP_HALTED; | |
48 | } | |
49 | ||
fdf9b3e8 FB |
50 | #ifndef CONFIG_USER_ONLY |
51 | #include "softmmu_exec.h" | |
52 | #endif | |
53 | ||
54 | #define RETURN() __asm__ __volatile__("") | |
55 | ||
56 | static inline void regs_to_env(void) | |
57 | { | |
58 | /* XXXXX */ | |
59 | } | |
60 | ||
61 | static inline void env_to_regs(void) | |
62 | { | |
63 | /* XXXXX */ | |
64 | } | |
65 | ||
66 | int cpu_sh4_handle_mmu_fault(CPUState * env, target_ulong address, int rw, | |
6ebbf390 | 67 | int mmu_idx, int is_softmmu); |
ea2b542a | 68 | void cpu_load_tlb(CPUState * env); |
fdf9b3e8 FB |
69 | |
70 | int find_itlb_entry(CPUState * env, target_ulong address, | |
71 | int use_asid, int update); | |
72 | int find_utlb_entry(CPUState * env, target_ulong address, int use_asid); | |
73 | ||
74 | void helper_addc_T0_T1(void); | |
75 | void helper_addv_T0_T1(void); | |
76 | void helper_div1_T0_T1(void); | |
77 | void helper_dmulsl_T0_T1(void); | |
78 | void helper_dmulul_T0_T1(void); | |
79 | void helper_macl_T0_T1(void); | |
80 | void helper_macw_T0_T1(void); | |
81 | void helper_negc_T0(void); | |
82 | void helper_subc_T0_T1(void); | |
83 | void helper_subv_T0_T1(void); | |
84 | void helper_rotcl(uint32_t * addr); | |
85 | void helper_rotcr(uint32_t * addr); | |
ea2b542a | 86 | void helper_ldtlb(void); |
fdf9b3e8 FB |
87 | |
88 | void do_interrupt(CPUState * env); | |
89 | ||
90 | void cpu_loop_exit(void); | |
91 | void do_raise_exception(void); | |
92 | ||
93 | #endif /* _EXEC_SH4_H */ |