diff options
author | Jia Liu <proljc@gmail.com> | 2012-10-24 22:17:09 +0800 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2012-10-31 21:37:18 +0100 |
commit | 1cb6686cf926e0efc2056405a0a76dd41eb65d89 (patch) | |
tree | 7b3bb92fe62144e9ce3cbff72d17c46a02aaadb1 /target-mips/helper.h | |
parent | a22260ae380fa6abb546479cfc2962ba4c40382d (diff) |
target-mips: Add ASE DSP bit/manipulation instructions
Add MIPS ASE DSP Bit/Manipulation instructions.
Signed-off-by: Jia Liu <proljc@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-mips/helper.h')
-rw-r--r-- | target-mips/helper.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target-mips/helper.h b/target-mips/helper.h index 139bb1e464..5380adbdb6 100644 --- a/target-mips/helper.h +++ b/target-mips/helper.h @@ -617,4 +617,11 @@ DEF_HELPER_FLAGS_4(dmsub, 0, void, tl, tl, i32, env) DEF_HELPER_FLAGS_4(dmsubu, 0, void, tl, tl, i32, env) #endif +/* DSP Bit/Manipulation Sub-class insns */ +DEF_HELPER_FLAGS_1(bitrev, TCG_CALL_NO_RWG_SE, tl, tl) +DEF_HELPER_FLAGS_3(insv, 0, tl, env, tl, tl) +#if defined(TARGET_MIPS64) +DEF_HELPER_FLAGS_3(dinsv, 0, tl, env, tl, tl); +#endif + #include "def-helper.h" |