diff options
author | Richard Henderson <rth@twiddle.net> | 2011-04-18 20:01:20 -0700 |
---|---|---|
committer | Richard Henderson <rth@anchor.twiddle.net> | 2011-05-31 10:18:06 -0700 |
commit | 3b4fefd6e65a7bdb994d10a9fa36c19b5749b502 (patch) | |
tree | 7efb27a3af6cb58a73909e407c6e6179fa49a088 /target-alpha/helper.h | |
parent | e5214853eac8f86aca2f5493e7171d6f36ddde38 (diff) | |
download | qemu-3b4fefd6e65a7bdb994d10a9fa36c19b5749b502.tar.gz qemu-3b4fefd6e65a7bdb994d10a9fa36c19b5749b502.tar.bz2 qemu-3b4fefd6e65a7bdb994d10a9fa36c19b5749b502.zip |
target-alpha: Implement TLB flush primitives.
Expose these via MTPR, more or less like the real HW does.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-alpha/helper.h')
-rw-r--r-- | target-alpha/helper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-alpha/helper.h b/target-alpha/helper.h index 9ffc372aff..2dec57e44b 100644 --- a/target-alpha/helper.h +++ b/target-alpha/helper.h @@ -110,6 +110,9 @@ DEF_HELPER_2(stl_phys, void, i64, i64) DEF_HELPER_2(stq_phys, void, i64, i64) DEF_HELPER_2(stl_c_phys, i64, i64, i64) DEF_HELPER_2(stq_c_phys, i64, i64, i64) + +DEF_HELPER_FLAGS_0(tbia, TCG_CALL_CONST, void) +DEF_HELPER_FLAGS_1(tbis, TCG_CALL_CONST, void, i64) #endif #include "def-helper.h" |