diff options
author | Richard Henderson | 2009-12-10 21:04:42 +0100 |
---|---|---|
committer | Aurelien Jarno | 2009-12-13 21:26:26 +0100 |
commit | 13e4df99ce5a2fde4b8ac9a21c3d98db4c629b7c (patch) | |
tree | 632ba4d631f685975d035b375ee77af6c9694db7 /target-alpha/helper.h | |
parent | target-mips: fix user-mode emulation startup (diff) | |
download | qemu-13e4df99ce5a2fde4b8ac9a21c3d98db4c629b7c.tar.gz qemu-13e4df99ce5a2fde4b8ac9a21c3d98db4c629b7c.tar.xz qemu-13e4df99ce5a2fde4b8ac9a21c3d98db4c629b7c.zip |
target-alpha: Implement missing MVI instructions.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-alpha/helper.h')
-rw-r--r-- | target-alpha/helper.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target-alpha/helper.h b/target-alpha/helper.h index 9c60be1ea2..850ba0d3fc 100644 --- a/target-alpha/helper.h +++ b/target-alpha/helper.h @@ -36,6 +36,20 @@ DEF_HELPER_2(insqh, i64, i64, i64) DEF_HELPER_2(cmpbge, i64, i64, i64) +DEF_HELPER_2(minub8, i64, i64, i64) +DEF_HELPER_2(minsb8, i64, i64, i64) +DEF_HELPER_2(minuw4, i64, i64, i64) +DEF_HELPER_2(minsw4, i64, i64, i64) +DEF_HELPER_2(maxub8, i64, i64, i64) +DEF_HELPER_2(maxsb8, i64, i64, i64) +DEF_HELPER_2(maxuw4, i64, i64, i64) +DEF_HELPER_2(maxsw4, i64, i64, i64) +DEF_HELPER_2(perr, i64, i64, i64) +DEF_HELPER_1(pklb, i64, i64) +DEF_HELPER_1(pkwb, i64, i64) +DEF_HELPER_1(unpkbl, i64, i64) +DEF_HELPER_1(unpkbw, i64, i64) + DEF_HELPER_0(load_fpcr, i64) DEF_HELPER_1(store_fpcr, void, i64) |