aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-12-27 18:19:58 -0800
committeriximeow <me@iximeow.net>2021-12-27 18:19:58 -0800
commitd887643b7a528736fff857c67f1a93afa3d8b2f5 (patch)
treef5e3ee187470d45716dd0cde0ec0f35988fec252 /test
parent56cbef33bfaaa633fbe95b0256ac462024925c2e (diff)
vector x indexed fmla,fmls,fmul
Diffstat (limited to 'test')
-rw-r--r--test/armv8/a64.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/armv8/a64.rs b/test/armv8/a64.rs
index 6f43c22..593dcbf 100644
--- a/test/armv8/a64.rs
+++ b/test/armv8/a64.rs
@@ -4283,3 +4283,23 @@ fn test_ext() {
assert!(errs.is_empty());
}
+
+#[test]
+fn test_indexed() {
+ const TESTS: &[([u8; 4], &'static str)] = &[
+ ([0x10, 0x11, 0x80, 0x0f], "fmla v16.2s, v8.2s, v0.s[0]"),
+ ([0x39, 0x58, 0x88, 0x0f], "fmls v25.2s, v1.2s, v8.s[2]"),
+ ([0x08, 0x92, 0x8a, 0x0f], "fmul v8.2s, v16.2s, v10.s[0]"),
+ ([0x01, 0x12, 0x8b, 0x0f], "fmla v1.2s, v16.2s, v11.s[0]"),
+ ([0x8c, 0x12, 0x8e, 0x0f], "fmla v12.2s, v20.2s, v14.s[0]"),
+ ([0xc6, 0x12, 0x8e, 0x0f], "fmla v6.2s, v22.2s, v14.s[0]"),
+ ([0x3c, 0x58, 0xa9, 0x0f], "fmls v28.2s, v1.2s, v9.s[3]"),
+ ];
+ let errs = run_tests(TESTS);
+
+ for err in errs.iter() {
+ println!("{}", err);
+ }
+
+ assert!(errs.is_empty());
+}