diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-04-13 21:30:40 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-02 16:49:35 +0200 |
commit | 6575529b654ffeaebf1b00c53e33c834d68b7c33 (patch) | |
tree | f7eb528ca7602880109777e2dadf3ba0e34b7b86 /target/mips/tcg/sysemu_helper.h.inc | |
parent | ecdbcb0a9450e9109ae3dd6cfa10c71fda753bda (diff) |
target/mips: Move TLB management helpers to tcg/sysemu/tlb_helper.c
Move TLB management helpers to tcg/sysemu/tlb_helper.c.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210428170410.479308-26-f4bug@amsat.org>
Diffstat (limited to 'target/mips/tcg/sysemu_helper.h.inc')
-rw-r--r-- | target/mips/tcg/sysemu_helper.h.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/mips/tcg/sysemu_helper.h.inc b/target/mips/tcg/sysemu_helper.h.inc index 1ccbf68723..4353a966f9 100644 --- a/target/mips/tcg/sysemu_helper.h.inc +++ b/target/mips/tcg/sysemu_helper.h.inc @@ -167,6 +167,15 @@ DEF_HELPER_1(evpe, tl, env) DEF_HELPER_1(dvp, tl, env) DEF_HELPER_1(evp, tl, env) +/* TLB */ +DEF_HELPER_1(tlbwi, void, env) +DEF_HELPER_1(tlbwr, void, env) +DEF_HELPER_1(tlbp, void, env) +DEF_HELPER_1(tlbr, void, env) +DEF_HELPER_1(tlbinv, void, env) +DEF_HELPER_1(tlbinvf, void, env) +DEF_HELPER_3(ginvt, void, env, tl, i32) + /* Special */ DEF_HELPER_1(di, tl, env) DEF_HELPER_1(ei, tl, env) |