2021-04-18 16:09:50 +03:00
|
|
|
/*
|
|
|
|
* MIPS internal definitions and helpers (TCG accelerator)
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MIPS_TCG_INTERNAL_H
|
|
|
|
#define MIPS_TCG_INTERNAL_H
|
|
|
|
|
2021-04-13 21:19:52 +03:00
|
|
|
#include "tcg/tcg.h"
|
2021-04-18 16:09:50 +03:00
|
|
|
#include "hw/core/cpu.h"
|
2021-04-19 01:43:02 +03:00
|
|
|
#include "cpu.h"
|
2021-04-18 16:09:50 +03:00
|
|
|
|
2021-04-13 22:40:33 +03:00
|
|
|
void mips_cpu_synchronize_from_tb(CPUState *cs, const TranslationBlock *tb);
|
2021-04-18 16:09:50 +03:00
|
|
|
void mips_cpu_do_interrupt(CPUState *cpu);
|
2021-04-13 22:40:33 +03:00
|
|
|
bool mips_cpu_exec_interrupt(CPUState *cpu, int int_req);
|
2021-04-18 16:09:50 +03:00
|
|
|
bool mips_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
|
|
|
|
MMUAccessType access_type, int mmu_idx,
|
|
|
|
bool probe, uintptr_t retaddr);
|
|
|
|
|
2021-04-13 22:40:33 +03:00
|
|
|
const char *mips_exception_name(int32_t exception);
|
|
|
|
|
|
|
|
void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env, uint32_t exception,
|
|
|
|
int error_code, uintptr_t pc);
|
|
|
|
|
|
|
|
static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env,
|
|
|
|
uint32_t exception,
|
|
|
|
uintptr_t pc)
|
|
|
|
{
|
|
|
|
do_raise_exception_err(env, exception, 0, pc);
|
|
|
|
}
|
|
|
|
|
2021-04-19 01:43:02 +03:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
|
2021-04-18 17:25:49 +03:00
|
|
|
void mmu_init(CPUMIPSState *env, const mips_def_t *def);
|
|
|
|
|
2021-04-19 01:43:02 +03:00
|
|
|
void update_pagemask(CPUMIPSState *env, target_ulong arg1, int32_t *pagemask);
|
|
|
|
|
2021-04-13 12:46:18 +03:00
|
|
|
void r4k_invalidate_tlb(CPUMIPSState *env, int idx, int use_extra);
|
2021-04-19 01:43:02 +03:00
|
|
|
uint32_t cpu_mips_get_random(CPUMIPSState *env);
|
|
|
|
|
2021-04-13 21:19:52 +03:00
|
|
|
bool mips_io_recompile_replay_branch(CPUState *cs, const TranslationBlock *tb);
|
|
|
|
|
2021-04-13 12:46:18 +03:00
|
|
|
hwaddr cpu_mips_translate_address(CPUMIPSState *env, target_ulong address,
|
|
|
|
MMUAccessType access_type, uintptr_t retaddr);
|
|
|
|
void cpu_mips_tlb_flush(CPUMIPSState *env);
|
|
|
|
|
2021-04-19 01:43:02 +03:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
|
|
|
|
2021-04-18 16:09:50 +03:00
|
|
|
#endif
|