diff options
author | Chen Gang <gang.chen.5i5j@gmail.com> | 2015-10-04 19:01:27 +0800 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-10-07 20:03:16 +1100 |
commit | a419e22d703667211521d4257df294047c13eca3 (patch) | |
tree | 6581378e6ead49c265d387f1b2e4fc12c598b8eb /target-tilegx/helper.h | |
parent | aaf893a6ad6c7c0a986638ba599000e13f9f4182 (diff) | |
download | qemu-a419e22d703667211521d4257df294047c13eca3.zip qemu-a419e22d703667211521d4257df294047c13eca3.tar.gz qemu-a419e22d703667211521d4257df294047c13eca3.tar.bz2 |
target-tilegx: Implement v2mults instruction
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Message-Id: <1443956491-26850-3-git-send-email-gang.chen.5i5j@gmail.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-tilegx/helper.h')
-rw-r--r-- | target-tilegx/helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-tilegx/helper.h b/target-tilegx/helper.h index c58ee20..bbcc476 100644 --- a/target-tilegx/helper.h +++ b/target-tilegx/helper.h @@ -16,6 +16,7 @@ DEF_HELPER_FLAGS_2(v2int_h, TCG_CALL_NO_RWG_SE, i64, i64, i64) DEF_HELPER_FLAGS_2(v2int_l, TCG_CALL_NO_RWG_SE, i64, i64, i64) DEF_HELPER_FLAGS_2(v1multu, TCG_CALL_NO_RWG_SE, i64, i64, i64) +DEF_HELPER_FLAGS_2(v2mults, TCG_CALL_NO_RWG_SE, i64, i64, i64) DEF_HELPER_FLAGS_2(v1shl, TCG_CALL_NO_RWG_SE, i64, i64, i64) DEF_HELPER_FLAGS_2(v1shru, TCG_CALL_NO_RWG_SE, i64, i64, i64) DEF_HELPER_FLAGS_2(v1shrs, TCG_CALL_NO_RWG_SE, i64, i64, i64) |