| 65 |
void do_tlbwr (void); |
void do_tlbwr (void); |
| 66 |
void do_tlbp (void); |
void do_tlbp (void); |
| 67 |
void do_tlbr (void); |
void do_tlbr (void); |
| 68 |
void do_lwl_raw (void); |
void do_lwl_raw (uint32_t); |
| 69 |
void do_lwr_raw (void); |
void do_lwr_raw (uint32_t); |
| 70 |
void do_swl_raw (void); |
uint32_t do_swl_raw (uint32_t); |
| 71 |
void do_swr_raw (void); |
uint32_t do_swr_raw (uint32_t); |
| 72 |
#if !defined(CONFIG_USER_ONLY) |
#if !defined(CONFIG_USER_ONLY) |
| 73 |
void do_lwl_user (void); |
void do_lwl_user (uint32_t); |
| 74 |
void do_lwl_kernel (void); |
void do_lwl_kernel (uint32_t); |
| 75 |
void do_lwr_user (void); |
void do_lwr_user (uint32_t); |
| 76 |
void do_lwr_kernel (void); |
void do_lwr_kernel (uint32_t); |
| 77 |
void do_swl_user (void); |
uint32_t do_swl_user (uint32_t); |
| 78 |
void do_swl_kernel (void); |
uint32_t do_swl_kernel (uint32_t); |
| 79 |
void do_swr_user (void); |
uint32_t do_swr_user (uint32_t); |
| 80 |
void do_swr_kernel (void); |
uint32_t do_swr_kernel (uint32_t); |
| 81 |
#endif |
#endif |
| 82 |
void do_pmon (int function); |
void do_pmon (int function); |
| 83 |
|
|
| 88 |
void cpu_loop_exit(void); |
void cpu_loop_exit(void); |
| 89 |
void do_raise_exception_err (uint32_t exception, int error_code); |
void do_raise_exception_err (uint32_t exception, int error_code); |
| 90 |
void do_raise_exception (uint32_t exception); |
void do_raise_exception (uint32_t exception); |
| 91 |
|
void do_raise_exception_direct (uint32_t exception); |
| 92 |
|
|
| 93 |
void cpu_dump_state(CPUState *env, FILE *f, |
void cpu_dump_state(CPUState *env, FILE *f, |
| 94 |
int (*cpu_fprintf)(FILE *f, const char *fmt, ...), |
int (*cpu_fprintf)(FILE *f, const char *fmt, ...), |