diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-30 16:22:56 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-30 16:22:56 +0000 |
commit | 0f3955e2d28d71bc18935913e0bc2c5d134b1568 (patch) | |
tree | 47a019856ad6758c58c1fcbed74f0d72b93d42f4 /target-ppc/helper.h | |
parent | 4bf5801db44a1bb13e80b35bb0ea7aeed9780050 (diff) |
target-ppc: convert software TLB instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5819 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/helper.h')
-rw-r--r-- | target-ppc/helper.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target-ppc/helper.h b/target-ppc/helper.h index be6c6a0fe7..67ba0142e3 100644 --- a/target-ppc/helper.h +++ b/target-ppc/helper.h @@ -139,4 +139,11 @@ DEF_HELPER_2(efdcmplt, i32, i64, i64) DEF_HELPER_2(efdcmpgt, i32, i64, i64) DEF_HELPER_2(efdcmpeq, i32, i64, i64) +#if !defined(CONFIG_USER_ONLY) +DEF_HELPER_1(load_6xx_tlbd, void, tl) +DEF_HELPER_1(load_6xx_tlbi, void, tl) +DEF_HELPER_1(load_74xx_tlbd, void, tl) +DEF_HELPER_1(load_74xx_tlbi, void, tl) +#endif + #include "def-helper.h" |