aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2022-01-01 01:13:12 -0800
committeriximeow <me@iximeow.net>2022-01-01 01:13:12 -0800
commiteb867d51ed8ad3b45d710f4ae3eb2fbb52605cb6 (patch)
tree8bed203f88eaba3110e32f198e7eae13042cd5ee
parentc6042657deccd52aee3376c4bb618fe97b39e5ca (diff)
test expectation cleanup
-rw-r--r--src/armv8/a64.rs12
-rw-r--r--test/armv8/a64.rs2598
2 files changed, 1304 insertions, 1306 deletions
diff --git a/src/armv8/a64.rs b/src/armv8/a64.rs
index a1f977f..eb709d0 100644
--- a/src/armv8/a64.rs
+++ b/src/armv8/a64.rs
@@ -297,9 +297,9 @@ impl Display for Instruction {
};
let imm = if let Operand::Register(size, _) = self.operands[0] {
if size == SizeCode::W {
- (imm as u32) as i32 as i64
+ imm as u32 as u64
} else {
- imm as i64
+ imm
}
} else {
unreachable!("movn operand 0 is always Register");
@@ -314,9 +314,9 @@ impl Display for Instruction {
};
let imm = if let Operand::Register(size, _) = self.operands[0] {
if size == SizeCode::W {
- (imm as u32) as i32 as i64
+ imm as u32 as u64
} else {
- imm as i64
+ imm
}
} else {
unreachable!("movn operand 0 is always Register");
@@ -2862,7 +2862,7 @@ impl Display for Operand {
}
}
Operand::Immediate(i) => {
- write!(fmt, "#{:x}", *i)
+ write!(fmt, "#{:#x}", *i)
},
Operand::ImmediateDouble(d) => {
write!(fmt, "#{:0.1}", d)
@@ -2932,7 +2932,7 @@ impl Display for Operand {
*amount == 0 {
write!(fmt, "[{}, {}, {}]", Operand::RegisterOrSP(SizeCode::X, *reg), Operand::Register(*index_size, *index_reg), extend)
} else {
- write!(fmt, "[{}, {}, {} #{:#x}]", Operand::RegisterOrSP(SizeCode::X, *reg), Operand::Register(*index_size, *index_reg), extend, amount)
+ write!(fmt, "[{}, {}, {} #{}]", Operand::RegisterOrSP(SizeCode::X, *reg), Operand::Register(*index_size, *index_reg), extend, amount)
}
}
Operand::RegPreIndex(reg, offset, wback_bit) => {
diff --git a/test/armv8/a64.rs b/test/armv8/a64.rs
index d1c3166..cf31ada 100644
--- a/test/armv8/a64.rs
+++ b/test/armv8/a64.rs
@@ -53,7 +53,7 @@ fn test_sve() {
#[test]
fn test_unpredictable() {
// could be stx/ldx but Lo1 is `x1` and invalid.
- test_err([0x00, 0x00, 0x20, 0x08], DecodeError::InvalidOpcode);
+ test_err([0x00, 0x00, 0x20, 0x08], DecodeError::InvalidOperand);
test_err([0x00, 0xfc, 0x00, 0x12], DecodeError::InvalidOperand);
}
@@ -65,7 +65,7 @@ fn test_display_misc() {
);
test_display(
[0x1f, 0x20, 0x03, 0xd5],
- "nop"
+ "esb"
);
}
@@ -137,15 +137,15 @@ fn test_decode_misc() {
);
test_display(
[0x1d, 0x00, 0x80, 0xd2],
- "mov x29, 0x0"
+ "mov x29, #0x0"
);
test_display(
[0x13, 0x00, 0x80, 0xd2],
- "mov x19, 0x0"
+ "mov x19, #0x0"
);
test_display(
[0x1d, 0xff, 0xff, 0xd2],
- "mov x29, 0xfff8000000000000"
+ "mov x29, #0xfff8000000000000"
);
test_display(
[0x22, 0x39, 0x04, 0xb0],
@@ -187,7 +187,7 @@ fn test_display_ldr() {
/* TODO:
test_display(
[0x88, 0xff, 0x00, 0xd8],
- "prfm plil1keep, 0x1ff0"
+ "prfm plil1keep, #0x1ff0"
);
*/
}
@@ -294,10 +294,10 @@ fn test_decode_mul() {
#[test]
fn test_decode_ccm() {
- test_display([0x00, 0xa8, 0x42, 0x3a], "ccmn w0, 0x2, 0x0, ge");
- test_display([0x00, 0xa8, 0x42, 0xfa], "ccmp x0, 0x2, 0x0, ge");
- test_display([0x00, 0xa0, 0x42, 0xfa], "ccmp x0, x2, 0x0, ge");
- test_display([0x85, 0x80, 0x42, 0xfa], "ccmp x4, x2, 0x5, hi");
+ test_display([0x00, 0xa8, 0x42, 0x3a], "ccmn w0, #0x2, #0x0, ge");
+ test_display([0x00, 0xa8, 0x42, 0xfa], "ccmp x0, #0x2, #0x0, ge");
+ test_display([0x00, 0xa0, 0x42, 0xfa], "ccmp x0, x2, #0x0, ge");
+ test_display([0x85, 0x80, 0x42, 0xfa], "ccmp x4, x2, #0x5, hi");
}
#[test]
@@ -329,7 +329,7 @@ fn test_decode_data_processing_three_source() {
([0x11, 0x09, 0x2f, 0x9b], "smaddl x17, w8, w15, x2"),
([0x11, 0x89, 0x2f, 0x9b], "smsubl x17, w8, w15, x2"),
- ([0x11, 0x09, 0x4f, 0x9b], "smulh x17, w8, w15, x2"),
+ ([0x11, 0x09, 0x4f, 0x9b], "smulh x17, x8, x15"),
([0x11, 0x09, 0xaf, 0x9b], "umaddl x17, w8, w15, x2"),
([0x11, 0x89, 0xaf, 0x9b], "umsubl x17, w8, w15, x2"),
([0x11, 0x09, 0xcf, 0x9b], "umulh x17, x8, x15"),
@@ -353,11 +353,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x00, 0x00, 0x20, 0xd4],
- "brk 0x0"
+ "brk #0x0"
);
test_display(
[0x00, 0x00, 0x80, 0x12],
- "mov w0, 0xffffffff"
+ "mov w0, #0xffffffff"
);
test_display(
[0x00, 0x01, 0x3f, 0xd6],
@@ -365,7 +365,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x00, 0x02, 0x00, 0x36],
- "tbz w0, 0x0, $+0x40"
+ "tbz w0, #0x0, $+0x40"
);
test_display(
[0x00, 0x03, 0x00, 0x35],
@@ -373,11 +373,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x00, 0x04, 0x00, 0x36],
- "tbz w0, 0x0, $+0x80"
+ "tbz w0, #0x0, $+0x80"
);
test_display(
[0x00, 0x04, 0x40, 0xf9],
- "ldr x0, [x0, 0x8]"
+ "ldr x0, [x0, #0x8]"
);
test_display(
[0x00, 0x07, 0x00, 0x34],
@@ -385,27 +385,27 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x00, 0x08, 0x47, 0xf9],
- "ldr x0, [x0, 0xe10]"
+ "ldr x0, [x0, #0xe10]"
);
test_display(
[0x00, 0x0b, 0x80, 0x52],
- "mov w0, 0x58"
+ "mov w0, #0x58"
);
test_display(
[0x00, 0x14, 0x42, 0xf9],
- "ldr x0, [x0, 0x428]"
+ "ldr x0, [x0, #0x428]"
);
test_display(
[0x00, 0x1b, 0x80, 0x52],
- "mov w0, 0xd8"
+ "mov w0, #0xd8"
);
test_display(
[0x00, 0x20, 0x40, 0xf9],
- "ldr x0, [x0, 0x40]"
+ "ldr x0, [x0, #0x40]"
);
test_display(
[0x00, 0x24, 0x47, 0xf9],
- "ldr x0, [x0, 0xe48]"
+ "ldr x0, [x0, #0xe48]"
);
test_display(
[0x00, 0x2b, 0x03, 0x90],
@@ -413,7 +413,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x00, 0x34, 0x42, 0xf9],
- "ldr x0, [x0, 0x468]"
+ "ldr x0, [x0, #0x468]"
);
test_display(
[0x00, 0x39, 0x04, 0xb0],
@@ -425,71 +425,71 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x00, 0x3c, 0x43, 0xf9],
- "ldr x0, [x0, 0x678]"
+ "ldr x0, [x0, #0x678]"
);
test_display(
[0x00, 0x44, 0x44, 0xf9],
- "ldr x0, [x0, 0x888]"
+ "ldr x0, [x0, #0x888]"
);
test_display(
[0x00, 0x50, 0x14, 0x91],
- "add x0, x0, 0x514"
+ "add x0, x0, #0x514"
);
test_display(
[0x00, 0x54, 0x44, 0xf9],
- "ldr x0, [x0, 0x8a8]"
+ "ldr x0, [x0, #0x8a8]"
);
test_display(
[0x00, 0x58, 0x42, 0xf9],
- "ldr x0, [x0, 0x4b0]"
+ "ldr x0, [x0, #0x4b0]"
);
test_display(
[0x00, 0x5c, 0x44, 0xf9],
- "ldr x0, [x0, 0x8b8]"
+ "ldr x0, [x0, #0x8b8]"
);
test_display(
[0x00, 0x60, 0x1e, 0x91],
- "add x0, x0, 0x798"
+ "add x0, x0, #0x798"
);
test_display(
[0x00, 0x70, 0x47, 0xf9],
- "ldr x0, [x0, 0xee0]"
+ "ldr x0, [x0, #0xee0]"
);
test_display(
[0x00, 0x80, 0x1e, 0x91],
- "add x0, x0, 0x7a0"
+ "add x0, x0, #0x7a0"
);
test_display(
[0x00, 0x80, 0x44, 0xf9],
- "ldr x0, [x0, 0x900]"
+ "ldr x0, [x0, #0x900]"
);
test_display(
[0x00, 0x84, 0x47, 0xf9],
- "ldr x0, [x0, 0xf08]"
+ "ldr x0, [x0, #0xf08]"
);
test_display(
[0x00, 0xac, 0x40, 0xf9],
- "ldr x0, [x0, 0x158]"
+ "ldr x0, [x0, #0x158]"
);
test_display(
[0x00, 0xc0, 0x09, 0x91],
- "add x0, x0, 0x270"
+ "add x0, x0, #0x270"
);
test_display(
[0x00, 0xc4, 0x45, 0xf9],
- "ldr x0, [x0, 0xb88]"
+ "ldr x0, [x0, #0xb88]"
);
test_display(
[0x00, 0xcc, 0x41, 0xf9],
- "ldr x0, [x0, 0x398]"
+ "ldr x0, [x0, #0x398]"
);
test_display(
[0x00, 0xdc, 0x35, 0x91],
- "add x0, x0, 0xd77"
+ "add x0, x0, #0xd77"
);
test_display(
[0x00, 0xf4, 0x47, 0xf9],
- "ldr x0, [x0, 0xfe8]"
+ "ldr x0, [x0, #0xfe8]"
);
test_display(
[0x01, 0x00, 0x00, 0x14],
@@ -501,7 +501,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x01, 0x05, 0x40, 0xf9],
- "ldr x1, [x8, 0x8]"
+ "ldr x1, [x8, #0x8]"
);
test_display(
[0x01, 0xfb, 0x4b, 0x95],
@@ -517,7 +517,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x02, 0x00, 0x80, 0x92],
- "mov x2, 0xffffffffffffffff"
+ "mov x2, #0xffffffffffffffff"
);
test_display(
[0x02, 0x04, 0xf8, 0x97],
@@ -525,7 +525,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x02, 0x2c, 0x80, 0x52],
- "mov w2, 0x160"
+ "mov w2, #0x160"
);
test_display(
[0x08, 0x00, 0x40, 0xf9],
@@ -537,7 +537,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x08, 0x05, 0x40, 0xf9],
- "ldr x8, [x8, 0x8]"
+ "ldr x8, [x8, #0x8]"
);
test_display(
[0x08, 0x06, 0xf8, 0x97],
@@ -545,11 +545,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x08, 0x09, 0x40, 0xf9],
- "ldr x8, [x8, 0x10]"
+ "ldr x8, [x8, #0x10]"
);
test_display(
[0x08, 0x1d, 0x40, 0x92],
- "and x8, x8, 0xff"
+ "and x8, x8, #0xff"
);
test_display(
[0x08, 0x1f, 0x00, 0x13],
@@ -557,39 +557,39 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x08, 0x21, 0x0a, 0x91],
- "add x8, x8, 0x288"
+ "add x8, x8, #0x288"
);
test_display(
[0x08, 0x41, 0x00, 0x91],
- "add x8, x8, 0x10"
+ "add x8, x8, #0x10"
);
test_display(
[0x08, 0x41, 0x40, 0xf9],
- "ldr x8, [x8, 0x80]"
+ "ldr x8, [x8, #0x80]"
);
test_display(
[0x08, 0x81, 0x0a, 0x91],
- "add x8, x8, 0x2a0"
+ "add x8, x8, #0x2a0"
);
test_display(
[0x08, 0xa1, 0x11, 0x91],
- "add x8, x8, 0x468"
+ "add x8, x8, #0x468"
);
test_display(
[0x08, 0xc1, 0x1e, 0x91],
- "add x8, x8, 0x7b0"
+ "add x8, x8, #0x7b0"
);
test_display(
[0x08, 0xdd, 0x46, 0xf9],
- "ldr x8, [x8, 0xdb8]"
+ "ldr x8, [x8, #0xdb8]"
);
test_display(
[0x08, 0xe1, 0x0e, 0x91],
- "add x8, x8, 0x3b8"
+ "add x8, x8, #0x3b8"
);
test_display(
[0x08, 0xf2, 0xff, 0x36],
- "tbz w8, 0x1f, $-0x1c0"
+ "tbz w8, #0x1f, $-0x1c0"
);
test_display(
[0x09, 0x1f, 0x00, 0x13],
@@ -597,7 +597,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x09, 0x5d, 0xc0, 0x39],
- "ldrsb w9, [x8, 0x17]"
+ "ldrsb w9, [x8, #0x17]"
);
test_display(
[0x0a, 0x2d, 0x40, 0xa9],
@@ -625,19 +625,19 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x17, 0xed, 0x7c, 0x92],
- "and x23, x8, 0xfffffffffffffff0"
+ "and x23, x8, #0xfffffffffffffff0"
);
test_display(
[0x1d, 0x00, 0x80, 0xd2],
- "mov x29, 0x0"
+ "mov x29, #0x0"
);
test_display(
[0x1e, 0x00, 0x80, 0xd2],
- "mov x30, 0x0"
+ "mov x30, #0x0"
);
test_display(
[0x1f, 0x00, 0x00, 0x71],
- "cmp w0, 0x0"
+ "cmp w0, #0x0"
);
test_display(
[0x1f, 0x00, 0x14, 0xeb],
@@ -645,11 +645,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x1f, 0x01, 0x00, 0x71],
- "cmp w8, 0x0"
+ "cmp w8, #0x0"
);
test_display(
[0x1f, 0x01, 0x00, 0xf1],
- "cmp x8, 0x0"
+ "cmp x8, #0x0"
);
test_display(
[0x1f, 0x01, 0x09, 0xeb],
@@ -661,11 +661,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x1f, 0x03, 0x00, 0x71],
- "cmp w24, 0x0"
+ "cmp w24, #0x0"
);
test_display(
[0x1f, 0x0d, 0x00, 0xf1],
- "cmp x8, 0x3"
+ "cmp x8, #0x3"
);
test_display(
[0x1f, 0x20, 0x03, 0xd5],
@@ -681,7 +681,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x20, 0x00, 0x80, 0x52],
- "mov w0, 0x1"
+ "mov w0, #0x1"
);
test_display(
[0x20, 0xb1, 0x8a, 0x9a],
@@ -709,67 +709,67 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x21, 0x04, 0x36, 0x91],
- "add x1, x1, 0xd81"
+ "add x1, x1, #0xd81"
);
test_display(
[0x21, 0x10, 0x34, 0x91],
- "add x1, x1, 0xd04"
+ "add x1, x1, #0xd04"
);
test_display(
[0x21, 0x1c, 0x00, 0x91],
- "add x1, x1, 0x7"
+ "add x1, x1, #0x7"
);
test_display(
[0x21, 0x1c, 0x45, 0xf9],
- "ldr x1, [x1, 0xa38]"
+ "ldr x1, [x1, #0xa38]"
);
test_display(
[0x21, 0x1c, 0x46, 0xf9],
- "ldr x1, [x1, 0xc38]"
+ "ldr x1, [x1, #0xc38]"
);
test_display(
[0x21, 0x34, 0x42, 0xf9],
- "ldr x1, [x1, 0x468]"
+ "ldr x1, [x1, #0x468]"
);
test_display(
[0x21, 0x3c, 0x36, 0x91],
- "add x1, x1, 0xd8f"
+ "add x1, x1, #0xd8f"
);
test_display(
[0x21, 0x90, 0x36, 0x91],
- "add x1, x1, 0xda4"
+ "add x1, x1, #0xda4"
);
test_display(
[0x21, 0x98, 0x41, 0xf9],
- "ldr x1, [x1, 0x330]"
+ "ldr x1, [x1, #0x330]"
);
test_display(
[0x21, 0xb4, 0x34, 0x91],
- "add x1, x1, 0xd2d"
+ "add x1, x1, #0xd2d"
);
test_display(
[0x21, 0xc4, 0x40, 0xf9],
- "ldr x1, [x1, 0x188]"
+ "ldr x1, [x1, #0x188]"
);
test_display(
[0x21, 0xc4, 0x45, 0xf9],
- "ldr x1, [x1, 0xb88]"
+ "ldr x1, [x1, #0xb88]"
);
test_display(
[0x21, 0xd8, 0x40, 0xf9],
- "ldr x1, [x1, 0x1b0]"
+ "ldr x1, [x1, #0x1b0]"
);
test_display(
[0x21, 0xd8, 0x47, 0xf9],
- "ldr x1, [x1, 0xfb0]"
+ "ldr x1, [x1, #0xfb0]"
);
test_display(
[0x21, 0xe4, 0x40, 0xf9],
- "ldr x1, [x1, 0x1c8]"
+ "ldr x1, [x1, #0x1c8]"
);
test_display(
[0x21, 0xf4, 0x36, 0x91],
- "add x1, x1, 0xdbd"
+ "add x1, x1, #0xdbd"
);
test_display(
[0x21, 0xfc, 0x41, 0x8b],
@@ -777,19 +777,19 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x21, 0xfc, 0x41, 0x93],
- "asr x1, x1, 0x1"
+ "asr x1, x1, #0x1"
);
test_display(
[0x21, 0xfc, 0x43, 0x93],
- "asr x1, x1, 0x3"
+ "asr x1, x1, #0x3"
);
test_display(
[0x21, 0xfc, 0x44, 0xf9],
- "ldr x1, [x1, 0x9f8]"
+ "ldr x1, [x1, #0x9f8]"
);
test_display(
[0x22, 0x09, 0x80, 0x52],
- "mov w2, 0x49"
+ "mov w2, #0x49"
);
test_display(
[0x22, 0xb1, 0x96, 0x9a],
@@ -801,7 +801,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x24, 0x01, 0x80, 0x52],
- "mov w4, 0x9"
+ "mov w4, #0x9"
);
test_display(
[0x26, 0x00, 0x00, 0x14],
@@ -813,7 +813,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x28, 0x11, 0x08, 0x8b],
- "add x8, x9, x8, lsl 4"
+ "add x8, x9, x8, lsl #4"
);
test_display(
[0x28, 0xb1, 0x88, 0x9a],
@@ -825,19 +825,19 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x29, 0x1d, 0x40, 0x92],
- "and x9, x9, 0xff"
+ "and x9, x9, #0xff"
);
test_display(
[0x29, 0xa1, 0x21, 0x91],
- "add x9, x9, 0x868"
+ "add x9, x9, #0x868"
);
test_display(
[0x29, 0xc5, 0x46, 0xf9],
- "ldr x9, [x9, 0xd88]"
+ "ldr x9, [x9, #0xd88]"
);
test_display(
[0x29, 0xdd, 0x46, 0xf9],
- "ldr x9, [x9, 0xdb8]"
+ "ldr x9, [x9, #0xdb8]"
);
test_display(
[0x2b, 0x1d, 0x00, 0x13],
@@ -865,7 +865,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x3f, 0x01, 0x00, 0x71],
- "cmp w9, 0x0"
+ "cmp w9, #0x0"
);
test_display(
[0x3f, 0x01, 0x08, 0xeb],
@@ -873,7 +873,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x3f, 0x38, 0x00, 0xf1],
- "cmp x1, 0xe"
+ "cmp x1, #0xe"
);
test_display(
[0x40, 0x00, 0x1f, 0xd6],
@@ -881,11 +881,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x40, 0x21, 0x00, 0x91],
- "add x0, x10, 0x8"
+ "add x0, x10, #0x8"
);
test_display(
[0x40, 0x7d, 0x80, 0x52],
- "mov w0, 0x3ea"
+ "mov w0, #0x3ea"
);
test_display(
[0x41, 0x01, 0x00, 0x54],
@@ -897,27 +897,27 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x42, 0x00, 0x1b, 0x91],
- "add x2, x2, 0x6c0"
+ "add x2, x2, #0x6c0"
);
test_display(
[0x42, 0x40, 0x1a, 0x91],
- "add x2, x2, 0x690"
+ "add x2, x2, #0x690"
);
test_display(
[0x42, 0x50, 0x41, 0xf9],
- "ldr x2, [x2, 0x2a0]"
+ "ldr x2, [x2, #0x2a0]"
);
test_display(
[0x42, 0x7d, 0x80, 0x52],
- "mov w2, 0x3ea"
+ "mov w2, #0x3ea"
);
test_display(
[0x42, 0xc0, 0x1b, 0x91],
- "add x2, x2, 0x6f0"
+ "add x2, x2, #0x6f0"
);
test_display(
[0x42, 0xe4, 0x44, 0xf9],
- "ldr x2, [x2, 0x9c8]"
+ "ldr x2, [x2, #0x9c8]"
);
test_display(
[0x48, 0xb1, 0x89, 0x9a],
@@ -937,7 +937,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x5f, 0x01, 0x00, 0x71],
- "cmp w10, 0x0"
+ "cmp w10, #0x0"
);
test_display(
[0x60, 0x02, 0x00, 0xb9],
@@ -945,27 +945,27 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x60, 0x02, 0x0a, 0x39],
- "strb w0, [x19, 0x280]"
+ "strb w0, [x19, #0x280]"
);
test_display(
[0x60, 0x02, 0x4a, 0x39],
- "ldrb w0, [x19, 0x280]"
+ "ldrb w0, [x19, #0x280]"
);
test_display(
[0x60, 0x22, 0x00, 0x91],
- "add x0, x19, 0x8"
+ "add x0, x19, #0x8"
);
test_display(
[0x60, 0x36, 0x40, 0xf9],
- "ldr x0, [x19, 0x68]"
+ "ldr x0, [x19, #0x68]"
);
test_display(
[0x60, 0x3e, 0x40, 0xf9],
- "ldr x0, [x19, 0x78]"
+ "ldr x0, [x19, #0x78]"
);
test_display(
[0x61, 0x02, 0x00, 0x12],
- "and w1, w19, 0x1"
+ "and w1, w19, #0x1"
);
test_display(
[0x61, 0xb1, 0x88, 0x9a],
@@ -977,63 +977,63 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x63, 0x14, 0x42, 0xf9],
- "ldr x3, [x3, 0x428]"
+ "ldr x3, [x3, #0x428]"
);
test_display(
[0x63, 0x18, 0x16, 0x91],
- "add x3, x3, 0x586"
+ "add x3, x3, #0x586"
);
test_display(
[0x63, 0x24, 0x47, 0xf9],
- "ldr x3, [x3, 0xe48]"
+ "ldr x3, [x3, #0xe48]"
);
test_display(
[0x63, 0x44, 0x44, 0xf9],
- "ldr x3, [x3, 0x888]"
+ "ldr x3, [x3, #0x888]"
);
test_display(
[0x63, 0x5c, 0x21, 0x91],
- "add x3, x3, 0x857"
+ "add x3, x3, #0x857"
);
test_display(
[0x63, 0x5c, 0x44, 0xf9],
- "ldr x3, [x3, 0x8b8]"
+ "ldr x3, [x3, #0x8b8]"
);
test_display(
[0x63, 0x80, 0x44, 0xf9],
- "ldr x3, [x3, 0x900]"
+ "ldr x3, [x3, #0x900]"
);
test_display(
[0x63, 0x84, 0x47, 0xf9],
- "ldr x3, [x3, 0xf08]"
+ "ldr x3, [x3, #0xf08]"
);
test_display(
[0x63, 0x88, 0x09, 0x91],
- "add x3, x3, 0x262"
+ "add x3, x3, #0x262"
);
test_display(
[0x63, 0xbc, 0x44, 0xf9],
- "ldr x3, [x3, 0x978]"
+ "ldr x3, [x3, #0x978]"
);
test_display(
[0x63, 0xc4, 0x45, 0xf9],
- "ldr x3, [x3, 0xb88]"
+ "ldr x3, [x3, #0xb88]"
);
test_display(
[0x63, 0xcc, 0x41, 0xf9],
- "ldr x3, [x3, 0x398]"
+ "ldr x3, [x3, #0x398]"
);
test_display(
[0x63, 0xf4, 0x47, 0xf9],
- "ldr x3, [x3, 0xfe8]"
+ "ldr x3, [x3, #0xfe8]"
);
test_display(
[0x68, 0x00, 0xf8, 0x36],
- "tbz w8, 0x1f, $+0xc"
+ "tbz w8, #0x1f, $+0xc"
);
test_display(
[0x68, 0x01, 0xf8, 0x37],
- "tbnz w8, 0x1f, $+0x2c"
+ "tbnz w8, #0x1f, $+0x2c"
);
test_display(
[0x68, 0x02, 0x00, 0xf9],
@@ -1045,55 +1045,55 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x74, 0x3a, 0x00, 0xf9],
- "str x20, [x19, 0x70]"
+ "str x20, [x19, #0x70]"
);
test_display(
[0x74, 0x3a, 0x40, 0xf9],
- "ldr x20, [x19, 0x70]"
+ "ldr x20, [x19, #0x70]"
);
test_display(
[0x74, 0x5e, 0x40, 0x39],
- "ldrb w20, [x19, 0x17]"
+ "ldrb w20, [x19, #0x17]"
);
test_display(
[0x75, 0x06, 0x40, 0xf9],
- "ldr x21, [x19, 0x8]"
+ "ldr x21, [x19, #0x8]"
);
test_display(
[0x75, 0x36, 0x00, 0xf9],
- "str x21, [x19, 0x68]"
+ "str x21, [x19, #0x68]"
);
test_display(
[0x75, 0x36, 0x40, 0xf9],
- "ldr x21, [x19, 0x68]"
+ "ldr x21, [x19, #0x68]"
);
test_display(
[0x75, 0x3a, 0x40, 0xf9],
- "ldr x21, [x19, 0x70]"
+ "ldr x21, [x19, #0x70]"
);
test_display(
[0x76, 0x5e, 0x40, 0x39],
- "ldrb w22, [x19, 0x17]"
+ "ldrb w22, [x19, #0x17]"
);
test_display(
[0x7f, 0x01, 0x00, 0x71],
- "cmp w11, 0x0"
+ "cmp w11, #0x0"
);
test_display(
[0x7f, 0x06, 0x00, 0xf1],
- "cmp x19, 0x1"
+ "cmp x19, #0x1"
);
test_display(
[0x7f, 0x1d, 0x00, 0xf1],
- "cmp x11, 0x7"
+ "cmp x11, #0x7"
);
test_display(
[0x80, 0x22, 0x00, 0x91],
- "add x0, x20, 0x8"
+ "add x0, x20, #0x8"
);
test_display(
[0x80, 0x3a, 0x40, 0xf9],
- "ldr x0, [x20, 0x70]"
+ "ldr x0, [x20, #0x70]"
);
test_display(
[0x81, 0x01, 0x00, 0x54],
@@ -1101,11 +1101,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x82, 0x02, 0x80, 0x52],
- "mov w2, 0x14"
+ "mov w2, #0x14"
);
test_display(
[0x84, 0x48, 0x46, 0xf9],
- "ldr x4, [x4, 0xc90]"
+ "ldr x4, [x4, #0xc90]"
);
test_display(
[0x88, 0x02, 0x00, 0xf9],
@@ -1117,15 +1117,15 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x89, 0x5e, 0x40, 0x39],
- "ldrb w9, [x20, 0x17]"
+ "ldrb w9, [x20, #0x17]"
);
test_display(
[0x8a, 0x06, 0x40, 0xf9],
- "ldr x10, [x20, 0x8]"
+ "ldr x10, [x20, #0x8]"
);
test_display(
[0x93, 0x22, 0x00, 0x91],
- "add x19, x20, 0x8"
+ "add x19, x20, #0x8"
);
test_display(
[0x93, 0xfe, 0xdf, 0xc8],
@@ -1133,19 +1133,19 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x94, 0x00, 0xf8, 0x36],
- "tbz w20, 0x1f, $+0x10"
+ "tbz w20, #0x1f, $+0x10"
);
test_display(
[0x94, 0x22, 0x0a, 0x91],
- "add x20, x20, 0x288"
+ "add x20, x20, #0x288"
);
test_display(
[0x94, 0x82, 0x0a, 0x91],
- "add x20, x20, 0x2a0"
+ "add x20, x20, #0x2a0"
);
test_display(
[0x94, 0xa2, 0x11, 0x91],
- "add x20, x20, 0x468"
+ "add x20, x20, #0x468"
);
test_display(
[0x96, 0x1e, 0x00, 0x13],
@@ -1153,67 +1153,67 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xa0, 0x03, 0x19, 0xf8],
- "stur x0, [x29, -0x70]"
+ "stur x0, [x29, #-0x70]"
);
test_display(
[0xa0, 0x03, 0x1a, 0xf8],
- "stur x0, [x29, -0x60]"
+ "stur x0, [x29, #-0x60]"
);
test_display(
[0xa0, 0x03, 0x58, 0xf8],
- "ldur x0, [x29, -0x80]"
+ "ldur x0, [x29, #-0x80]"
);
test_display(
[0xa0, 0x03, 0x5a, 0xf8],
- "ldur x0, [x29, -0x60]"
+ "ldur x0, [x29, #-0x60]"
);
test_display(
[0xa0, 0x09, 0x40, 0xd4],
- "hlt 0x4d"
+ "hlt #0x4d"
);
test_display(
[0xa0, 0x22, 0x00, 0x91],
- "add x0, x21, 0x8"
+ "add x0, x21, #0x8"
);
test_display(
[0xa0, 0x23, 0x01, 0xd1],
- "sub x0, x29, 0x48"
+ "sub x0, x29, #0x48"
);
test_display(
[0xa0, 0x3e, 0x40, 0xf9],
- "ldr x0, [x21, 0x78]"
+ "ldr x0, [x21, #0x78]"
);
test_display(
[0xa0, 0x83, 0x1a, 0xf8],
- "stur x0, [x29, -0x58]"
+ "stur x0, [x29, #-0x58]"
);
test_display(
[0xa0, 0x83, 0x58, 0xf8],
- "ldur x0, [x29, -0x78]"
+ "ldur x0, [x29, #-0x78]"
);
test_display(
[0xa0, 0x83, 0x5b, 0xf8],
- "ldur x0, [x29, -0x48]"
+ "ldur x0, [x29, #-0x48]"
);
test_display(
[0xa0, 0xe3, 0x01, 0xd1],
- "sub x0, x29, 0x78"
+ "sub x0, x29, #0x78"
);
test_display(
[0xa1, 0x23, 0x01, 0xd1],
- "sub x1, x29, 0x48"
+ "sub x1, x29, #0x48"
);
test_display(
[0xa1, 0x7e, 0x80, 0x52],
- "mov w1, 0x3f5"
+ "mov w1, #0x3f5"
);
test_display(
[0xa1, 0x83, 0x01, 0xd1],
- "sub x1, x29, 0x60"
+ "sub x1, x29, #0x60"
);
test_display(
[0xa1, 0xe3, 0x01, 0xd1],
- "sub x1, x29, 0x78"
+ "sub x1, x29, #0x78"
);
test_display(
[0xa2, 0x00, 0x00, 0x54],
@@ -1221,107 +1221,107 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xa2, 0x01, 0x80, 0x52],
- "mov w2, 0xd"
+ "mov w2, #0xd"
);
test_display(
[0xa2, 0x04, 0x80, 0x52],
- "mov w2, 0x25"
+ "mov w2, #0x25"
);
test_display(
[0xa2, 0x23, 0x01, 0xd1],
- "sub x2, x29, 0x48"
+ "sub x2, x29, #0x48"
);
test_display(
[0xa2, 0x23, 0x80, 0x52],
- "mov w2, 0x11d"
+ "mov w2, #0x11d"
);
test_display(
[0xa3, 0xe3, 0x01, 0xd1],
- "sub x3, x29, 0x78"
+ "sub x3, x29, #0x78"
);
test_display(
[0xa8, 0x03, 0x02, 0xd1],
- "sub x8, x29, 0x80"
+ "sub x8, x29, #0x80"
);
test_display(
[0xa8, 0x23, 0x01, 0xd1],
- "sub x8, x29, 0x48"
+ "sub x8, x29, #0x48"
);
test_display(
[0xa8, 0x3e, 0x00, 0xf9],
- "str x8, [x21, 0x78]"
+ "str x8, [x21, #0x78]"
);
test_display(
[0xa8, 0x42, 0x00, 0x91],
- "add x8, x21, 0x10"
+ "add x8, x21, #0x10"
);
test_display(
[0xa8, 0x73, 0x5b, 0x38],
- "ldurb w8, [x29, -0x49]"
+ "ldurb w8, [x29, #-0x49]"
);
test_display(
[0xa8, 0x73, 0xdb, 0x38],
- "ldursb w8, [x29, -0x49]"
+ "ldursb w8, [x29, #-0x49]"
);
test_display(
[0xa8, 0x83, 0x01, 0xd1],
- "sub x8, x29, 0x60"
+ "sub x8, x29, #0x60"
);
test_display(
[0xa8, 0x83, 0x19, 0xf8],
- "stur x8, [x29, -0x68]"
+ "stur x8, [x29, #-0x68]"
);
test_display(
[0xa8, 0x83, 0x1b, 0xf8],
- "stur x8, [x29, -0x48]"
+ "stur x8, [x29, #-0x48]"
);
test_display(
[0xa8, 0x83, 0x1c, 0xf8],
- "stur x8, [x29, -0x38]"
+ "stur x8, [x29, #-0x38]"
);
test_display(
[0xa8, 0x83, 0x1d, 0xf8],
- "stur x8, [x29, -0x28]"
+ "stur x8, [x29, #-0x28]"
);
test_display(
[0xa8, 0x83, 0x5b, 0xf8],
- "ldur x8, [x29, -0x48]"
+ "ldur x8, [x29, #-0x48]"
);
test_display(
[0xa8, 0x83, 0x5c, 0xf8],
- "ldur x8, [x29, -0x38]"
+ "ldur x8, [x29, #-0x38]"
);
test_display(
[0xa8, 0x83, 0x5d, 0xf8],
- "ldur x8, [x29, -0x28]"
+ "ldur x8, [x29, #-0x28]"
);
test_display(
[0xa8, 0xf3, 0x5c, 0x38],
- "ldurb w8, [x29, -0x31]"
+ "ldurb w8, [x29, #-0x31]"
);
test_display(
[0xa8, 0xf3, 0xd9, 0x38],
- "ldursb w8, [x29, -0x61]"
+ "ldursb w8, [x29, #-0x61]"
);
test_display(
[0xa8, 0xf3, 0xdc, 0x38],
- "ldursb w8, [x29, -0x31]"
+ "ldursb w8, [x29, #-0x31]"
);
test_display(
[0xa9, 0x03, 0x5c, 0xf8],
- "ldur x9, [x29, -0x40]"
+ "ldur x9, [x29, #-0x40]"
);
test_display(
[0xa9, 0x83, 0x5a, 0xf8],
- "ldur x9, [x29, -0x58]"
+ "ldur x9, [x29, #-0x58]"
);
test_display(
[0xa9, 0xab, 0x78, 0xa9],
- "ldp x9, x10, [x29, -0x78]"
+ "ldp x9, x10, [x29, #-0x78]"
);
test_display(
[0xa9, 0xaf, 0x78, 0xa9],
- "ldp x9, x11, [x29, -0x78]"
+ "ldp x9, x11, [x29, #-0x78]"
);
test_display(
[0xa9, 0x00, 0x00, 0x54],
@@ -1329,7 +1329,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xaa, 0xe3, 0x01, 0xd1],
- "sub x10, x29, 0x78"
+ "sub x10, x29, #0x78"
);
test_display(
[0xa9, 0xb2, 0x94, 0x9a],
@@ -1337,43 +1337,43 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xb4, 0x22, 0x03, 0x51],
- "sub w20, w21, 0xc8"
+ "sub w20, w21, #0xc8"
);
test_display(
[0xb4, 0x92, 0x01, 0x51],
- "sub w20, w21, 0x64"
+ "sub w20, w21, #0x64"
);
test_display(
[0xb5, 0x56, 0x44, 0xf9],
- "ldr x21, [x21, 0x8a8]"
+ "ldr x21, [x21, #0x8a8]"
);
test_display(
[0xb5, 0x83, 0x18, 0xf8],
- "stur x21, [x29, -0x78]"
+ "stur x21, [x29, #-0x78]"
);
test_display(
[0xb5, 0xda, 0x47, 0xf9],
- "ldr x21, [x21, 0xfb0]"
+ "ldr x21, [x21, #0xfb0]"
);
test_display(
[0xb5, 0xe3, 0x01, 0xd1],
- "sub x21, x29, 0x78"
+ "sub x21, x29, #0x78"
);
test_display(
[0xb5, 0xf3, 0x19, 0x38],
- "sturb w21, [x29, -0x61]"
+ "sturb w21, [x29, #-0x61]"
);
test_display(
[0xb6, 0xd7, 0x38, 0xa9],
- "stp x22, x21, [x29, -0x78]"
+ "stp x22, x21, [x29, #-0x78]"
);
test_display(
[0xb6, 0xe3, 0x01, 0xd1],
- "sub x22, x29, 0x78"
+ "sub x22, x29, #0x78"
);
test_display(
[0xbf, 0x5e, 0x00, 0xf1],
- "cmp x21, 0x17"
+ "cmp x21, #0x17"
);
test_display(
[0xc0, 0x03, 0x5f, 0xd6],
@@ -1381,23 +1381,23 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xc0, 0x09, 0x40, 0xd4],
- "hlt 0x4e"
+ "hlt #0x4e"
);
test_display(
[0xc0, 0x42, 0x00, 0x91],
- "add x0, x22, 0x10"
+ "add x0, x22, #0x10"
);
test_display(
[0xc0, 0x7e, 0x80, 0x52],
- "mov w0, 0x3f6"
+ "mov w0, #0x3f6"
);
test_display(
[0xc0, 0x80, 0x80, 0x52],
- "mov w0, 0x406"
+ "mov w0, #0x406"
);
test_display(
[0xc2, 0x47, 0x80, 0x52],
- "mov w2, 0x23e"
+ "mov w2, #0x23e"
);
test_display(
[0xc9, 0x1e, 0x00, 0x13],
@@ -1405,7 +1405,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xd6, 0x16, 0x43, 0xf9],
- "ldr x22, [x22, 0x628]"
+ "ldr x22, [x22, #0x628]"
);
test_display(
[0xdf, 0x6a, 0x35, 0x38],
@@ -1413,7 +1413,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xe0, 0x03, 0x00, 0x32],
- "mov w0, 0x1"
+ "mov w0, #0x1"
);
test_display(
[0xe0, 0x03, 0x00, 0x91],
@@ -1421,43 +1421,43 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xe0, 0x03, 0x1f, 0x32],
- "mov w0, 0x2"
+ "mov w0, #0x2"
);
test_display(
[0xe0, 0x07, 0x00, 0x32],
- "mov w0, 0x3"
+ "mov w0, #0x3"
);
test_display(
[0xe0, 0x07, 0x00, 0xf9],
- "str x0, [sp, 0x8]"
+ "str x0, [sp, #0x8]"
);
test_display(
[0xe0, 0x07, 0x40, 0xf9],
- "ldr x0, [sp, 0x8]"
+ "ldr x0, [sp, #0x8]"
);
test_display(
[0xe0, 0x09, 0x40, 0xd4],
- "hlt 0x4f"
+ "hlt #0x4f"
);
test_display(
[0xe0, 0x0b, 0x00, 0xf9],
- "str x0, [sp, 0x10]"
+ "str x0, [sp, #0x10]"
);
test_display(
[0xe0, 0x0f, 0x00, 0x32],
- "mov w0, 0xf"
+ "mov w0, #0xf"
);
test_display(
[0xe0, 0x0f, 0x40, 0xf9],
- "ldr x0, [sp, 0x18]"
+ "ldr x0, [sp, #0x18]"
);
test_display(
[0xe0, 0x13, 0x40, 0xf9],
- "ldr x0, [sp, 0x20]"
+ "ldr x0, [sp, #0x20]"
);
test_display(
[0xe0, 0x17, 0x00, 0xf9],
- "str x0, [sp, 0x28]"
+ "str x0, [sp, #0x28]"
);
test_display(
[0xe0, 0x17, 0x9f, 0x1a],
@@ -1465,59 +1465,59 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xe0, 0x1b, 0x40, 0xf9],
- "ldr x0, [sp, 0x30]"
+ "ldr x0, [sp, #0x30]"
);
test_display(
[0xe0, 0x1f, 0x40, 0xf9],
- "ldr x0, [sp, 0x38]"
+ "ldr x0, [sp, #0x38]"
);
test_display(
[0xe0, 0x22, 0x00, 0x91],
- "add x0, x23, 0x8"
+ "add x0, x23, #0x8"
);
test_display(
[0xe0, 0x23, 0x00, 0x91],
- "add x0, sp, 0x8"
+ "add x0, sp, #0x8"
);
test_display(
[0xe0, 0x23, 0x00, 0xf9],
- "str x0, [sp, 0x40]"
+ "str x0, [sp, #0x40]"
);
test_display(
[0xe0, 0x27, 0x40, 0xf9],
- "ldr x0, [sp, 0x48]"
+ "ldr x0, [sp, #0x48]"
);
test_display(
[0xe0, 0x33, 0x40, 0xf9],
- "ldr x0, [sp, 0x60]"
+ "ldr x0, [sp, #0x60]"
);
test_display(
[0xe0, 0x63, 0x00, 0x91],
- "add x0, sp, 0x18"
+ "add x0, sp, #0x18"
);
test_display(
[0xe0, 0x83, 0x00, 0x91],
- "add x0, sp, 0x20"
+ "add x0, sp, #0x20"
);
test_display(
[0xe0, 0x83, 0x01, 0x91],
- "add x0, sp, 0x60"
+ "add x0, sp, #0x60"
);
test_display(
[0xe0, 0xa3, 0x00, 0x91],
- "add x0, sp, 0x28"
+ "add x0, sp, #0x28"
);
test_display(
[0xe0, 0xe3, 0x00, 0x91],
- "add x0, sp, 0x38"
+ "add x0, sp, #0x38"
);
test_display(
[0xe0, 0xe3, 0x01, 0x91],
- "add x0, sp, 0x78"
+ "add x0, sp, #0x78"
);
test_display(
[0xe1, 0x03, 0x1f, 0x32],
- "mov w1, 0x2"
+ "mov w1, #0x2"
);
test_display(
[0xe1, 0x03, 0x40, 0xf9],
@@ -1525,51 +1525,51 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xe1, 0x23, 0x00, 0x91],
- "add x1, sp, 0x8"
+ "add x1, sp, #0x8"
);
test_display(
[0xe1, 0x63, 0x00, 0x91],
- "add x1, sp, 0x18"
+ "add x1, sp, #0x18"
);
test_display(
[0xe1, 0x83, 0x00, 0x91],
- "add x1, sp, 0x20"
+ "add x1, sp, #0x20"
);
test_display(
[0xe1, 0xe3, 0x00, 0x91],
- "add x1, sp, 0x38"
+ "add x1, sp, #0x38"
);
test_display(
[0xe1, 0xe3, 0x01, 0x91],
- "add x1, sp, 0x78"
+ "add x1, sp, #0x78"
);
test_display(
[0xe2, 0x07, 0x1d, 0x32],
- "mov w2, 0x18"
+ "mov w2, #0x18"
);
test_display(
[0xe2, 0x23, 0x00, 0x91],
- "add x2, sp, 0x8"
+ "add x2, sp, #0x8"
);
test_display(
[0xe2, 0xe3, 0x00, 0x91],
- "add x2, sp, 0x38"
+ "add x2, sp, #0x38"
);
test_display(
[0xe3, 0x03, 0x00, 0x32],
- "mov w3, 0x1"
+ "mov w3, #0x1"
);
test_display(
[0xe3, 0x03, 0x1f, 0x32],
- "mov w3, 0x2"
+ "mov w3, #0x2"
);
test_display(
[0xe4, 0x07, 0x00, 0x32],
- "mov w4, 0x3"
+ "mov w4, #0x3"
);
test_display(
[0xe4, 0x0b, 0x00, 0x32],
- "mov w4, 0x7"
+ "mov w4, #0x7"
);
test_display(
[0xe6, 0x03, 0x00, 0x91],
@@ -1577,111 +1577,111 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xe8, 0x01, 0xf8, 0x37],
- "tbnz w8, 0x1f, $+0x3c"
+ "tbnz w8, #0x1f, $+0x3c"
);
test_display(
[0xe8, 0x02, 0x41, 0xb2],
- "orr x8, x23, 0x8000000000000000"
+ "orr x8, x23, #0x8000000000000000"
);
test_display(
[0xe8, 0x03, 0x00, 0x32],
- "mov w8, 0x1"
+ "mov w8, #0x1"
);
test_display(
[0xe8, 0x0f, 0x00, 0xf9],
- "str x8, [sp, 0x18]"
+ "str x8, [sp, #0x18]"
);
test_display(
[0xe8, 0x1f, 0x40, 0xf9],
- "ldr x8, [sp, 0x38]"
+ "ldr x8, [sp, #0x38]"
);
test_display(
[0xe8, 0x1f, 0xc1, 0x39],
- "ldrsb w8, [sp, 0x47]"
+ "ldrsb w8, [sp, #0x47]"
);
test_display(
[0xe8, 0x23, 0x00, 0x91],
- "add x8, sp, 0x8"
+ "add x8, sp, #0x8"
);
test_display(
[0xe8, 0x3f, 0x41, 0x39],
- "ldrb w8, [sp, 0x4f]"
+ "ldrb w8, [sp, #0x4f]"
);
test_display(
[0xe8, 0x3f, 0xc1, 0x39],
- "ldrsb w8, [sp, 0x4f]"
+ "ldrsb w8, [sp, #0x4f]"
);
test_display(
[0xe8, 0x63, 0x00, 0x91],
- "add x8, sp, 0x18"
+ "add x8, sp, #0x18"
);
test_display(
[0xe8, 0x7f, 0xc0, 0x39],
- "ldrsb w8, [sp, 0x1f]"
+ "ldrsb w8, [sp, #0x1f]"
);
test_display(
[0xe8, 0x7f, 0xc1, 0x39],
- "ldrsb w8, [sp, 0x5f]"
+ "ldrsb w8, [sp, #0x5f]"
);
test_display(
[0xe8, 0x83, 0x00, 0x91],
- "add x8, sp, 0x20"
+ "add x8, sp, #0x20"
);
test_display(
[0xe8, 0x83, 0x01, 0x91],
- "add x8, sp, 0x60"
+ "add x8, sp, #0x60"
);
test_display(
[0xe8, 0xbf, 0xc0, 0x39],
- "ldrsb w8, [sp, 0x2f]"
+ "ldrsb w8, [sp, #0x2f]"
);
test_display(
[0xe8, 0xdf, 0x41, 0x39],
- "ldrb w8, [sp, 0x77]"
+ "ldrb w8, [sp, #0x77]"
);
test_display(
[0xe8, 0xdf, 0xc0, 0x39],
- "ldrsb w8, [sp, 0x37]"
+ "ldrsb w8, [sp, #0x37]"
);
test_display(
[0xe8, 0xdf, 0xc1, 0x39],
- "ldrsb w8, [sp, 0x77]"
+ "ldrsb w8, [sp, #0x77]"
);
test_display(
[0xe8, 0xe3, 0x00, 0x91],
- "add x8, sp, 0x38"
+ "add x8, sp, #0x38"
);
test_display(
[0xe8, 0xe3, 0x01, 0x91],
- "add x8, sp, 0x78"
+ "add x8, sp, #0x78"
);
test_display(
[0xe9, 0x03, 0x01, 0x32],
- "mov w9, 0x80000000"
+ "mov w9, #0x80000000"
);
test_display(
[0xe9, 0x07, 0x40, 0xf9],
- "ldr x9, [sp, 0x8]"
+ "ldr x9, [sp, #0x8]"
);
test_display(
[0xe9, 0x13, 0x40, 0xf9],
- "ldr x9, [sp, 0x20]"
+ "ldr x9, [sp, #0x20]"
);
test_display(
[0xe9, 0x1f, 0x40, 0xf9],
- "ldr x9, [sp, 0x38]"
+ "ldr x9, [sp, #0x38]"
);
test_display(
[0xe9, 0x23, 0x40, 0xf9],
- "ldr x9, [sp, 0x40]"
+ "ldr x9, [sp, #0x40]"
);
test_display(
[0xe9, 0x37, 0x40, 0xf9],
- "ldr x9, [sp, 0x68]"
+ "ldr x9, [sp, #0x68]"
);
test_display(
[0xe9, 0xa3, 0x00, 0xb9],
- "str w9, [sp, 0xa0]"
+ "str w9, [sp, #0xa0]"
);
test_display(
[0xe9, 0xb2, 0x96, 0x9a],
@@ -1689,15 +1689,15 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xe9, 0xdf, 0x41, 0x39],
- "ldrb w9, [sp, 0x77]"
+ "ldrb w9, [sp, #0x77]"
);
test_display(
[0xea, 0x37, 0x40, 0xf9],
- "ldr x10, [sp, 0x68]"
+ "ldr x10, [sp, #0x68]"
);
test_display(
[0xea, 0x63, 0x00, 0x91],
- "add x10, sp, 0x18"
+ "add x10, sp, #0x18"
);
test_display(
[0xf3, 0x03, 0x00, 0x91],
@@ -1705,19 +1705,19 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xf3, 0x0b, 0x40, 0xf9],
- "ldr x19, [sp, 0x10]"
+ "ldr x19, [sp, #0x10]"
);
test_display(
[0xf3, 0x1b, 0x00, 0xf9],
- "str x19, [sp, 0x30]"
+ "str x19, [sp, #0x30]"
);
test_display(
[0xf3, 0x5b, 0x00, 0xf9],
- "str x19, [sp, 0xb0]"
+ "str x19, [sp, #0xb0]"
);
test_display(
[0xf3, 0x5b, 0x40, 0xf9],
- "ldr x19, [sp, 0xb0]"
+ "ldr x19, [sp, #0xb0]"
);
test_display(
[0xf4, 0x07, 0x9f, 0x1a],
@@ -1725,63 +1725,63 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xf4, 0x0b, 0x00, 0xb9],
- "str w20, [sp, 0x8]"
+ "str w20, [sp, #0x8]"
);
test_display(
[0xf4, 0x4f, 0x01, 0xa9],
- "stp x20, x19, [sp, 0x10]"
+ "stp x20, x19, [sp, #0x10]"
);
test_display(
[0xf4, 0x4f, 0x02, 0xa9],
- "stp x20, x19, [sp, 0x20]"
+ "stp x20, x19, [sp, #0x20]"
);
test_display(
[0xf4, 0x4f, 0x0c, 0xa9],
- "stp x20, x19, [sp, 0xc0]"
+ "stp x20, x19, [sp, #0xc0]"
);
test_display(
[0xf4, 0x4f, 0x10, 0xa9],
- "stp x20, x19, [sp, 0x100]"
+ "stp x20, x19, [sp, #0x100]"
);
test_display(
[0xf4, 0x4f, 0x16, 0xa9],
- "stp x20, x19, [sp, 0x160]"
+ "stp x20, x19, [sp, #0x160]"
);
test_display(
[0xf4, 0x4f, 0x19, 0xa9],
- "stp x20, x19, [sp, 0x190]"
+ "stp x20, x19, [sp, #0x190]"
);
test_display(
[0xf4, 0x4f, 0x41, 0xa9],
- "ldp x20, x19, [sp, 0x10]"
+ "ldp x20, x19, [sp, #0x10]"
);
test_display(
[0xf4, 0x4f, 0x42, 0xa9],
- "ldp x20, x19, [sp, 0x20]"
+ "ldp x20, x19, [sp, #0x20]"
);
test_display(
[0xf4, 0x4f, 0x4c, 0xa9],
- "ldp x20, x19, [sp, 0xc0]"
+ "ldp x20, x19, [sp, #0xc0]"
);
test_display(
[0xf4, 0x4f, 0x50, 0xa9],
- "ldp x20, x19, [sp, 0x100]"
+ "ldp x20, x19, [sp, #0x100]"
);
test_display(
[0xf4, 0x4f, 0x56, 0xa9],
- "ldp x20, x19, [sp, 0x160]"
+ "ldp x20, x19, [sp, #0x160]"
);
test_display(
[0xf4, 0x4f, 0x59, 0xa9],
- "ldp x20, x19, [sp, 0x190]"
+ "ldp x20, x19, [sp, #0x190]"
);
test_display(
[0xf4, 0x4f, 0xbe, 0xa9],
- "stp x20, x19, [sp, -0x20]!"
+ "stp x20, x19, [sp, #-0x20]!"
);
test_display(
[0xf4, 0x4f, 0xc2, 0xa8],
- "ldp x20, x19, [sp], 0x20"
+ "ldp x20, x19, [sp], #0x20"
);
test_display(
[0xf4, 0xb2, 0x96, 0x9a],
@@ -1789,11 +1789,11 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xf4, 0xe3, 0x00, 0x91],
- "add x20, sp, 0x38"
+ "add x20, sp, #0x38"
);
test_display(
[0xf5, 0x03, 0x00, 0x32],
- "mov w21, 0x1"
+ "mov w21, #0x1"
);
test_display(
[0xf5, 0x03, 0x00, 0xf9],
@@ -1801,115 +1801,115 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xf5, 0x03, 0x1f, 0x32],
- "mov w21, 0x2"
+ "mov w21, #0x2"
);
test_display(
[0xf5, 0x07, 0x00, 0xf9],
- "str x21, [sp, 0x8]"
+ "str x21, [sp, #0x8]"
);
test_display(
[0xf5, 0x07, 0x43, 0xf8],
- "ldr x21, [sp], 0x30"
+ "ldr x21, [sp], #0x30"
);
test_display(
[0xf5, 0x0f, 0x1d, 0xf8],
- "str x21, [sp, -0x30]!"
+ "str x21, [sp, #-0x30]!"
);
test_display(
[0xf5, 0x13, 0x00, 0xf9],
- "str x21, [sp, 0x20]"
+ "str x21, [sp, #0x20]"
);
test_display(
[0xf5, 0x5b, 0x00, 0xf9],
- "str x21, [sp, 0xb0]"
+ "str x21, [sp, #0xb0]"
);
test_display(
[0xf5, 0x5b, 0x40, 0xf9],
- "ldr x21, [sp, 0xb0]"
+ "ldr x21, [sp, #0xb0]"
);
test_display(
[0xf5, 0x83, 0x00, 0x91],
- "add x21, sp, 0x20"
+ "add x21, sp, #0x20"
);
test_display(
[0xf5, 0xa3, 0x00, 0x91],
- "add x21, sp, 0x28"
+ "add x21, sp, #0x28"
);
test_display(
[0xf6, 0x1f, 0x00, 0xf9],
- "str x22, [sp, 0x38]"
+ "str x22, [sp, #0x38]"
);
test_display(
[0xf6, 0x23, 0x00, 0x91],
- "add x22, sp, 0x8"
+ "add x22, sp, #0x8"
);
test_display(
[0xf6, 0x57, 0x0f, 0xa9],
- "stp x22, x21, [sp, 0xf0]"
+ "stp x22, x21, [sp, #0xf0]"
);
test_display(
[0xf6, 0x57, 0x15, 0xa9],
- "stp x22, x21, [sp, 0x150]"
+ "stp x22, x21, [sp, #0x150]"
);
test_display(
[0xf6, 0x57, 0x18, 0xa9],
- "stp x22, x21, [sp, 0x180]"
+ "stp x22, x21, [sp, #0x180]"
);
test_display(
[0xf6, 0x57, 0x4f, 0xa9],
- "ldp x22, x21, [sp, 0xf0]"
+ "ldp x22, x21, [sp, #0xf0]"
);
test_display(
[0xf6, 0x57, 0x55, 0xa9],
- "ldp x22, x21, [sp, 0x150]"
+ "ldp x22, x21, [sp, #0x150]"
);
test_display(
[0xf6, 0x57, 0x58, 0xa9],
- "ldp x22, x21, [sp, 0x180]"
+ "ldp x22, x21, [sp, #0x180]"
);
test_display(
[0xf6, 0x57, 0xbd, 0xa9],
- "stp x22, x21, [sp, -0x30]!"
+ "stp x22, x21, [sp, #-0x30]!"
);
test_display(
[0xf6, 0x57, 0xc3, 0xa8],
- "ldp x22, x21, [sp], 0x30"
+ "ldp x22, x21, [sp], #0x30"
);
test_display(
[0xf6, 0xe3, 0x00, 0x91],
- "add x22, sp, 0x38"
+ "add x22, sp, #0x38"
);
test_display(
[0xf7, 0xe3, 0x00, 0x91],
- "add x23, sp, 0x38"
+ "add x23, sp, #0x38"
);
test_display(
[0xf8, 0x5f, 0x14, 0xa9],
- "stp x24, x23, [sp, 0x140]"
+ "stp x24, x23, [sp, #0x140]"
);
test_display(
[0xf8, 0x5f, 0x54, 0xa9],
- "ldp x24, x23, [sp, 0x140]"
+ "ldp x24, x23, [sp, #0x140]"
);
test_display(
[0xfc, 0x5f, 0x0e, 0xa9],
- "stp x28, x23, [sp, 0xe0]"
+ "stp x28, x23, [sp, #0xe0]"
);
test_display(
[0xfc, 0x5f, 0x17, 0xa9],
- "stp x28, x23, [sp, 0x170]"
+ "stp x28, x23, [sp, #0x170]"
);
test_display(
[0xfc, 0x5f, 0x4e, 0xa9],
- "ldp x28, x23, [sp, 0xe0]"
+ "ldp x28, x23, [sp, #0xe0]"
);
test_display(
[0xfc, 0x5f, 0x57, 0xa9],
- "ldp x28, x23, [sp, 0x170]"
+ "ldp x28, x23, [sp, #0x170]"
);
test_display(
[0xfc, 0x9b, 0x00, 0xf9],
- "str x28, [sp, 0x130]"
+ "str x28, [sp, #0x130]"
);
test_display(
[0xfd, 0x03, 0x00, 0x91],
@@ -1917,127 +1917,127 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xfd, 0x03, 0x03, 0x91],
- "add x29, sp, 0xc0"
+ "add x29, sp, #0xc0"
);
test_display(
[0xfd, 0x43, 0x00, 0x91],
- "add x29, sp, 0x10"
+ "add x29, sp, #0x10"
);
test_display(
[0xfd, 0x43, 0x03, 0x91],
- "add x29, sp, 0xd0"
+ "add x29, sp, #0xd0"
);
test_display(
[0xfd, 0x43, 0x04, 0x91],
- "add x29, sp, 0x110"
+ "add x29, sp, #0x110"
);
test_display(
[0xfd, 0x7b, 0x01, 0xa9],
- "stp x29, x30, [sp, 0x10]"
+ "stp x29, x30, [sp, #0x10]"
);
test_display(
[0xfd, 0x7b, 0x02, 0xa9],
- "stp x29, x30, [sp, 0x20]"
+ "stp x29, x30, [sp, #0x20]"
);
test_display(
[0xfd, 0x7b, 0x03, 0xa9],
- "stp x29, x30, [sp, 0x30]"
+ "stp x29, x30, [sp, #0x30]"
);
test_display(
[0xfd, 0x7b, 0x0c, 0xa9],
- "stp x29, x30, [sp, 0xc0]"
+ "stp x29, x30, [sp, #0xc0]"
);
test_display(
[0xfd, 0x7b, 0x0d, 0xa9],
- "stp x29, x30, [sp, 0xd0]"
+ "stp x29, x30, [sp, #0xd0]"
);
test_display(
[0xfd, 0x7b, 0x11, 0xa9],
- "stp x29, x30, [sp, 0x110]"
+ "stp x29, x30, [sp, #0x110]"
);
test_display(
[0xfd, 0x7b, 0x17, 0xa9],
- "stp x29, x30, [sp, 0x170]"
+ "stp x29, x30, [sp, #0x170]"
);
test_display(
[0xfd, 0x7b, 0x1a, 0xa9],
- "stp x29, x30, [sp, 0x1a0]"
+ "stp x29, x30, [sp, #0x1a0]"
);
test_display(
[0xfd, 0x7b, 0x41, 0xa9],
- "ldp x29, x30, [sp, 0x10]"
+ "ldp x29, x30, [sp, #0x10]"
);
test_display(
[0xfd, 0x7b, 0x42, 0xa9],
- "ldp x29, x30, [sp, 0x20]"
+ "ldp x29, x30, [sp, #0x20]"
);
test_display(
[0xfd, 0x7b, 0x43, 0xa9],
- "ldp x29, x30, [sp, 0x30]"
+ "ldp x29, x30, [sp, #0x30]"
);
test_display(
[0xfd, 0x7b, 0x4c, 0xa9],
- "ldp x29, x30, [sp, 0xc0]"
+ "ldp x29, x30, [sp, #0xc0]"
);
test_display(
[0xfd, 0x7b, 0x4d, 0xa9],
- "ldp x29, x30, [sp, 0xd0]"
+ "ldp x29, x30, [sp, #0xd0]"
);
test_display(
[0xfd, 0x7b, 0x51, 0xa9],
- "ldp x29, x30, [sp, 0x110]"
+ "ldp x29, x30, [sp, #0x110]"
);
test_display(
[0xfd, 0x7b, 0x57, 0xa9],
- "ldp x29, x30, [sp, 0x170]"
+ "ldp x29, x30, [sp, #0x170]"
);
test_display(
[0xfd, 0x7b, 0x5a, 0xa9],
- "ldp x29, x30, [sp, 0x1a0]"
+ "ldp x29, x30, [sp, #0x1a0]"
);
test_display(
[0xfd, 0x7b, 0xbe, 0xa9],
- "stp x29, x30, [sp, -0x20]!"
+ "stp x29, x30, [sp, #-0x20]!"
);
test_display(
[0xfd, 0x7b, 0xbf, 0xa9],
- "stp x29, x30, [sp, -0x10]!"
+ "stp x29, x30, [sp, #-0x10]!"
);
test_display(
[0xfd, 0x7b, 0xc1, 0xa8],
- "ldp x29, x30, [sp], 0x10"
+ "ldp x29, x30, [sp], #0x10"
);
test_display(
[0xfd, 0x7b, 0xc2, 0xa8],
- "ldp x29, x30, [sp], 0x20"
+ "ldp x29, x30, [sp], #0x20"
);
test_display(
[0xfd, 0x83, 0x00, 0x91],
- "add x29, sp, 0x20"
+ "add x29, sp, #0x20"
);
test_display(
[0xfd, 0x83, 0x06, 0x91],
- "add x29, sp, 0x1a0"
+ "add x29, sp, #0x1a0"
);
test_display(
[0xfd, 0xc3, 0x00, 0x91],
- "add x29, sp, 0x30"
+ "add x29, sp, #0x30"
);
test_display(
[0xfd, 0xc3, 0x05, 0x91],
- "add x29, sp, 0x170"
+ "add x29, sp, #0x170"
);
test_display(
[0xff, 0x1f, 0x00, 0xf9],
- "str xzr, [sp, 0x38]"
+ "str xzr, [sp, #0x38]"
);
test_display(
[0xe3, 0x07, 0x00, 0x32],
- "mov w3, 0x3"
+ "mov w3, #0x3"
);
test_display(
[0xff, 0xff, 0x01, 0xa9],
- "stp xzr, xzr, [sp, 0x18]"
+ "stp xzr, xzr, [sp, #0x18]"
);
test_display(
[0x7f, 0x02, 0x00, 0xb9],
@@ -2045,99 +2045,99 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0x7f, 0x36, 0x00, 0xf9],
- "str xzr, [x19, 0x68]"
+ "str xzr, [x19, #0x68]"
);
test_display(
[0x7f, 0x3a, 0x00, 0xf9],
- "str xzr, [x19, 0x70]"
+ "str xzr, [x19, #0x70]"
);
test_display(
[0x7f, 0x3e, 0x00, 0xf9],
- "str xzr, [x19, 0x78]"
+ "str xzr, [x19, #0x78]"
);
test_display(
[0x9f, 0x3e, 0x00, 0xf9],
- "str xzr, [x20, 0x78]"
+ "str xzr, [x20, #0x78]"
);
test_display(
[0x9f, 0xfe, 0x06, 0xa9],
- "stp xzr, xzr, [x20, 0x68]"
+ "stp xzr, xzr, [x20, #0x68]"
);
test_display(
[0xbf, 0x03, 0x18, 0xf8],
- "stur xzr, [x29, -0x80]"
+ "stur xzr, [x29, #-0x80]"
);
test_display(
[0xbf, 0x42, 0x00, 0xb1],
- "cmn x21, 0x10"
+ "cmn x21, #0x10"
);
test_display(
[0xbf, 0x83, 0x19, 0xf8],
- "stur xzr, [x29, -0x68]"
+ "stur xzr, [x29, #-0x68]"
);
test_display(
[0xbf, 0xff, 0x38, 0xa9],
- "stp xzr, xzr, [x29, -0x78]"
+ "stp xzr, xzr, [x29, #-0x78]"
);
test_display(
[0xff, 0x03, 0x01, 0x91],
- "add sp, sp, 0x40"
+ "add sp, sp, #0x40"
);
test_display(
[0xff, 0x03, 0x01, 0xd1],
- "sub sp, sp, 0x40"
+ "sub sp, sp, #0x40"
);
test_display(
[0xff, 0x03, 0x06, 0x91],
- "add sp, sp, 0x180"
+ "add sp, sp, #0x180"
);
test_display(
[0xff, 0x03, 0x06, 0xd1],
- "sub sp, sp, 0x180"
+ "sub sp, sp, #0x180"
);
test_display(
[0xff, 0x43, 0x01, 0xd1],
- "sub sp, sp, 0x50"
+ "sub sp, sp, #0x50"
);
test_display(
[0xff, 0x43, 0x03, 0x91],
- "add sp, sp, 0xd0"
+ "add sp, sp, #0xd0"
);
test_display(
[0xff, 0x43, 0x03, 0xd1],
- "sub sp, sp, 0xd0"
+ "sub sp, sp, #0xd0"
);
test_display(
[0xff, 0x83, 0x03, 0x91],
- "add sp, sp, 0xe0"
+ "add sp, sp, #0xe0"
);
test_display(
[0xff, 0x83, 0x03, 0xd1],
- "sub sp, sp, 0xe0"
+ "sub sp, sp, #0xe0"
);
test_display(
[0xff, 0x83, 0x04, 0x91],
- "add sp, sp, 0x120"
+ "add sp, sp, #0x120"
);
test_display(
[0xff, 0x83, 0x04, 0xd1],
- "sub sp, sp, 0x120"
+ "sub sp, sp, #0x120"
);
test_display(
[0xff, 0xc3, 0x00, 0x91],
- "add sp, sp, 0x30"
+ "add sp, sp, #0x30"
);
test_display(
[0xff, 0xc3, 0x00, 0xd1],
- "sub sp, sp, 0x30"
+ "sub sp, sp, #0x30"
);
test_display(
[0xff, 0xc3, 0x06, 0x91],
- "add sp, sp, 0x1b0"
+ "add sp, sp, #0x1b0"
);
test_display(
[0xff, 0xc3, 0x06, 0xd1],
- "sub sp, sp, 0x1b0"
+ "sub sp, sp, #0x1b0"
);
test_display(
[0xe0, 0x03, 0x01, 0xaa],
@@ -2305,7 +2305,7 @@ fn test_decode_chrome_entrypoint() {
);
test_display(
[0xf3, 0x0b, 0x00, 0xf9],
- "str x19, [sp, 0x10]"
+ "str x19, [sp, #0x10]"
);
test_display(
[0xf4, 0x03, 0x00, 0xaa],
@@ -2484,102 +2484,102 @@ fn run_tests(cases: &[([u8; 4], &'static str)]) -> Vec<ErrorDesc> {
#[test]
fn test_openblas_arithmetic() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x61, 0x06, 0x13, 0x0b], "add w1, w19, w19, lsl 1"),
- ([0x05, 0x07, 0x13, 0x0b], "add w5, w24, w19, lsl 1"),
- ([0x08, 0x7d, 0x48, 0x0b], "add w8, w8, w8, lsr 31"),
- ([0x00, 0x04, 0x00, 0x11], "add w0, w0, 0x1"),
- ([0x00, 0x04, 0x01, 0x11], "add w0, w0, 0x41"),
- ([0x5b, 0xff, 0x01, 0x11], "add w27, w26, 0x7f"),
- ([0x02, 0xfc, 0x3f, 0x11], "add w2, w0, 0xfff"),
- ([0x00, 0x00, 0x60, 0x11], "add w0, w0, 0x800000"),
- ([0x0a, 0x0c, 0x00, 0x31], "adds w10, w0, 0x3"),
+ ([0x61, 0x06, 0x13, 0x0b], "add w1, w19, w19, lsl #1"),
+ ([0x05, 0x07, 0x13, 0x0b], "add w5, w24, w19, lsl #1"),
+ ([0x08, 0x7d, 0x48, 0x0b], "add w8, w8, w8, lsr #31"),
+ ([0x00, 0x04, 0x00, 0x11], "add w0, w0, #0x1"),
+ ([0x00, 0x04, 0x01, 0x11], "add w0, w0, #0x41"),
+ ([0x5b, 0xff, 0x01, 0x11], "add w27, w26, #0x7f"),
+ ([0x02, 0xfc, 0x3f, 0x11], "add w2, w0, #0xfff"),
+ ([0x00, 0x00, 0x60, 0x11], "add w0, w0, #0x800, lsl #12"),
+ ([0x0a, 0x0c, 0x00, 0x31], "adds w10, w0, #0x3"),
([0x82, 0x00, 0x00, 0x8b], "add x2, x4, x0"),
- ([0x00, 0x35, 0x00, 0x8b], "add x0, x8, x0, lsl 13"),
+ ([0x00, 0x35, 0x00, 0x8b], "add x0, x8, x0, lsl #13"),
([0x00, 0x00, 0x01, 0x8b], "add x0, x0, x1"),
([0xde, 0x03, 0x12, 0x8b], "add x30, x30, x18"),
- ([0x03, 0x04, 0x12, 0x8b], "add x3, x0, x18, lsl 1"),
- ([0x56, 0x06, 0x12, 0x8b], "add x22, x18, x18, lsl 1"),
- ([0x12, 0x08, 0x12, 0x8b], "add x18, x0, x18, lsl 2"),
- ([0x32, 0x08, 0x12, 0x8b], "add x18, x1, x18, lsl 2"),
- ([0x92, 0x13, 0x12, 0x8b], "add x18, x28, x18, lsl 4"),
- ([0x4f, 0x14, 0x12, 0x8b], "add x15, x2, x18, lsl 5"),
- ([0x42, 0x18, 0x12, 0x8b], "add x2, x2, x18, lsl 6"),
- ([0xc6, 0x1c, 0x12, 0x8b], "add x6, x6, x18, lsl 7"),
- ([0x62, 0xce, 0x21, 0x8b], "add x2, x19, w1, sxtw 3"),
- ([0x87, 0xd3, 0x21, 0x8b], "add x7, x28, w1, sxtw 4"),
- ([0x2a, 0x41, 0x22, 0x8b], "add x10, x9, w2, uxtw 0"),
- ([0x18, 0x4f, 0x22, 0x8b], "add x24, x24, w2, uxtw 3"),
- ([0x82, 0x4f, 0x22, 0x8b], "add x2, x28, w2, uxtw 3"),
- ([0xe2, 0x50, 0x22, 0x8b], "add x2, x7, w2, uxtw 4"),
- ([0x20, 0x04, 0x84, 0x8b], "add x0, x1, x4, asr 1"),
- ([0x14, 0x04, 0x94, 0x8b], "add x20, x0, x20, asr 1"),
- ([0xe6, 0x62, 0x00, 0x91], "add x6, x23, 0x18"),
- ([0x00, 0x80, 0x04, 0x91], "add x0, x0, 0x120"),
- ([0xf8, 0x63, 0x06, 0x91], "add x24, sp, 0x198"),
- ([0xb7, 0xfc, 0x3f, 0x91], "add x23, x5, 0xfff"),
- ([0x5a, 0xff, 0x3f, 0x91], "add x26, x26, 0xfff"),
- ([0x7b, 0xff, 0x3f, 0x91], "add x27, x27, 0xfff"),
- ([0x9c, 0xff, 0x3f, 0x91], "add x28, x28, 0xfff"),
- ([0xc6, 0x08, 0x40, 0x91], "add x6, x6, 0x2000"),
- ([0xe8, 0x13, 0x40, 0x91], "add x8, sp, 0x4000"),
- ([0xe2, 0x43, 0x40, 0x91], "add x2, sp, 0x10000"),
- ([0xff, 0x0f, 0x42, 0x91], "add sp, sp, 0x83000"),
- ([0xe1, 0x13, 0x42, 0x91], "add x1, sp, 0x84000"),
- ([0xff, 0x13, 0x42, 0x91], "add sp, sp, 0x84000"),
- ([0x63, 0x02, 0x60, 0x91], "add x3, x19, 0x800000"),
- ([0x03, 0x03, 0x60, 0x91], "add x3, x24, 0x800000"),
+ ([0x03, 0x04, 0x12, 0x8b], "add x3, x0, x18, lsl #1"),
+ ([0x56, 0x06, 0x12, 0x8b], "add x22, x18, x18, lsl #1"),
+ ([0x12, 0x08, 0x12, 0x8b], "add x18, x0, x18, lsl #2"),
+ ([0x32, 0x08, 0x12, 0x8b], "add x18, x1, x18, lsl #2"),
+ ([0x92, 0x13, 0x12, 0x8b], "add x18, x28, x18, lsl #4"),
+ ([0x4f, 0x14, 0x12, 0x8b], "add x15, x2, x18, lsl #5"),
+ ([0x42, 0x18, 0x12, 0x8b], "add x2, x2, x18, lsl #6"),
+ ([0xc6, 0x1c, 0x12, 0x8b], "add x6, x6, x18, lsl #7"),
+ ([0x62, 0xce, 0x21, 0x8b], "add x2, x19, w1, sxtw #3"),
+ ([0x87, 0xd3, 0x21, 0x8b], "add x7, x28, w1, sxtw #4"),
+ ([0x2a, 0x41, 0x22, 0x8b], "add x10, x9, w2"),
+ ([0x18, 0x4f, 0x22, 0x8b], "add x24, x24, w2, lsl #3"),
+ ([0x82, 0x4f, 0x22, 0x8b], "add x2, x28, w2, lsl #3"),
+ ([0xe2, 0x50, 0x22, 0x8b], "add x2, x7, w2, lsl #4"),
+ ([0x20, 0x04, 0x84, 0x8b], "add x0, x1, x4, asr #1"),
+ ([0x14, 0x04, 0x94, 0x8b], "add x20, x0, x20, asr #1"),
+ ([0xe6, 0x62, 0x00, 0x91], "add x6, x23, #0x18"),
+ ([0x00, 0x80, 0x04, 0x91], "add x0, x0, #0x120"),
+ ([0xf8, 0x63, 0x06, 0x91], "add x24, sp, #0x198"),
+ ([0xb7, 0xfc, 0x3f, 0x91], "add x23, x5, #0xfff"),
+ ([0x5a, 0xff, 0x3f, 0x91], "add x26, x26, #0xfff"),
+ ([0x7b, 0xff, 0x3f, 0x91], "add x27, x27, #0xfff"),
+ ([0x9c, 0xff, 0x3f, 0x91], "add x28, x28, #0xfff"),
+ ([0xc6, 0x08, 0x40, 0x91], "add x6, x6, #0x2, lsl #12"),
+ ([0xe8, 0x13, 0x40, 0x91], "add x8, sp, #0x4, lsl #12"),
+ ([0xe2, 0x43, 0x40, 0x91], "add x2, sp, #0x10, lsl #12"),
+ ([0xff, 0x0f, 0x42, 0x91], "add sp, sp, #0x83, lsl #12"),
+ ([0xe1, 0x13, 0x42, 0x91], "add x1, sp, #0x84, lsl #12"),
+ ([0xff, 0x13, 0x42, 0x91], "add sp, sp, #0x84, lsl #12"),
+ ([0x63, 0x02, 0x60, 0x91], "add x3, x19, #0x800, lsl #12"),
+ ([0x03, 0x03, 0x60, 0x91], "add x3, x24, #0x800, lsl #12"),
([0x14, 0x00, 0x13, 0xab], "adds x20, x0, x19"),
([0x37, 0x01, 0x1c, 0xab], "adds x23, x9, x28"),
- ([0x0b, 0x08, 0x00, 0x4b], "sub w11, w0, w0, lsl 2"),
+ ([0x0b, 0x08, 0x00, 0x4b], "sub w11, w0, w0, lsl #2"),
([0x00, 0x00, 0x01, 0x4b], "sub w0, w0, w1"),
([0xfc, 0x03, 0x08, 0x4b], "neg w28, w8"),
- ([0x00, 0x04, 0x08, 0x4b], "sub w0, w0, w8, lsl 1"),
- ([0x81, 0x09, 0x0c, 0x4b], "sub w1, w12, w12, lsl 2"),
+ ([0x00, 0x04, 0x08, 0x4b], "sub w0, w0, w8, lsl #1"),
+ ([0x81, 0x09, 0x0c, 0x4b], "sub w1, w12, w12, lsl #2"),
([0xe0, 0x02, 0x0d, 0x4b], "sub w0, w23, w13"),
([0xfb, 0x03, 0x15, 0x4b], "neg w27, w21"),
- ([0x63, 0x04, 0x15, 0x4b], "sub w3, w3, w21, lsl 1"),
+ ([0x63, 0x04, 0x15, 0x4b], "sub w3, w3, w21, lsl #1"),
([0xfc, 0x03, 0x1c, 0x4b], "neg w28, w28"),
- ([0x00, 0x04, 0x1c, 0x4b], "sub w0, w0, w28, lsl 1"),
- ([0x00, 0x7c, 0x81, 0x4b], "sub w0, w0, w1, asr 31"),
- ([0x6e, 0x7c, 0x8e, 0x4b], "sub w14, w3, w14, asr 31"),
- ([0x4c, 0x04, 0x00, 0x51], "sub w12, w2, 0x1"),
- ([0x67, 0x0f, 0x00, 0x51], "sub w7, w27, 0x3"),
- ([0x04, 0x11, 0x00, 0x51], "sub w4, w8, 0x4"),
- ([0x42, 0x1c, 0x00, 0x51], "sub w2, w2, 0x7"),
- ([0xc5, 0x20, 0x00, 0x51], "sub w5, w6, 0x8"),
- ([0x08, 0x25, 0x00, 0x51], "sub w8, w8, 0x9"),
- ([0x00, 0x2c, 0x00, 0x51], "sub w0, w0, 0xb"),
- ([0x00, 0x30, 0x00, 0x51], "sub w0, w0, 0xc"),
- ([0x2d, 0x30, 0x00, 0x51], "sub w13, w1, 0xc"),
- ([0x21, 0x34, 0x00, 0x51], "sub w1, w1, 0xd"),
- ([0xb8, 0x46, 0x00, 0x51], "sub w24, w21, 0x11"),
- ([0xe0, 0x84, 0x01, 0x51], "sub w0, w7, 0x61"),
+ ([0x00, 0x04, 0x1c, 0x4b], "sub w0, w0, w28, lsl #1"),
+ ([0x00, 0x7c, 0x81, 0x4b], "sub w0, w0, w1, asr #31"),
+ ([0x6e, 0x7c, 0x8e, 0x4b], "sub w14, w3, w14, asr #31"),
+ ([0x4c, 0x04, 0x00, 0x51], "sub w12, w2, #0x1"),
+ ([0x67, 0x0f, 0x00, 0x51], "sub w7, w27, #0x3"),
+ ([0x04, 0x11, 0x00, 0x51], "sub w4, w8, #0x4"),
+ ([0x42, 0x1c, 0x00, 0x51], "sub w2, w2, #0x7"),
+ ([0xc5, 0x20, 0x00, 0x51], "sub w5, w6, #0x8"),
+ ([0x08, 0x25, 0x00, 0x51], "sub w8, w8, #0x9"),
+ ([0x00, 0x2c, 0x00, 0x51], "sub w0, w0, #0xb"),
+ ([0x00, 0x30, 0x00, 0x51], "sub w0, w0, #0xc"),
+ ([0x2d, 0x30, 0x00, 0x51], "sub w13, w1, #0xc"),
+ ([0x21, 0x34, 0x00, 0x51], "sub w1, w1, #0xd"),
+ ([0xb8, 0x46, 0x00, 0x51], "sub w24, w21, #0x11"),
+ ([0xe0, 0x84, 0x01, 0x51], "sub w0, w7, #0x61"),
([0x0c, 0x01, 0x00, 0x6b], "subs w12, w8, w0"),
([0xe2, 0x03, 0x00, 0x6b], "negs w2, w0"),
- ([0x21, 0x04, 0x00, 0x71], "subs w1, w1, 0x1"),
- ([0x25, 0x04, 0x00, 0x71], "subs w5, w1, 0x1"),
- ([0x2c, 0x04, 0x00, 0x71], "subs w12, w1, 0x1"),
- ([0x3a, 0x04, 0x00, 0x71], "subs w26, w1, 0x1"),
- ([0xe3, 0x13, 0x02, 0xcb], "neg x3, x2, lsl 4"),
- ([0xeb, 0x0f, 0x03, 0xcb], "neg x11, x3, lsl 3"),
- ([0x75, 0x08, 0x02, 0xcb], "sub x21, x3, x2, lsl 2"),
+ ([0x21, 0x04, 0x00, 0x71], "subs w1, w1, #0x1"),
+ ([0x25, 0x04, 0x00, 0x71], "subs w5, w1, #0x1"),
+ ([0x2c, 0x04, 0x00, 0x71], "subs w12, w1, #0x1"),
+ ([0x3a, 0x04, 0x00, 0x71], "subs w26, w1, #0x1"),
+ ([0xe3, 0x13, 0x02, 0xcb], "neg x3, x2, lsl #4"),
+ ([0xeb, 0x0f, 0x03, 0xcb], "neg x11, x3, lsl #3"),
+ ([0x75, 0x08, 0x02, 0xcb], "sub x21, x3, x2, lsl #2"),
([0xa3, 0x00, 0x03, 0xcb], "sub x3, x5, x3"),
- ([0x81, 0x08, 0x03, 0xcb], "sub x1, x4, x3, lsl 2"),
- ([0x70, 0x12, 0x15, 0xcb], "sub x16, x19, x21, lsl 4"),
- ([0xc6, 0x40, 0x20, 0xcb], "sub x6, x6, w0, uxtw 0"),
- ([0x24, 0x50, 0x20, 0xcb], "sub x4, x1, w0, uxtw 4"),
- ([0x8a, 0xc1, 0x20, 0xcb], "sub x10, x12, w0, sxtw 0"),
- ([0xbb, 0xcc, 0x20, 0xcb], "sub x27, x5, w0, sxtw 3"),
- ([0xd6, 0x04, 0x00, 0xd1], "sub x22, x6, 0x1"),
- ([0xc7, 0x40, 0x10, 0xd1], "sub x7, x6, 0x410"),
- ([0x7b, 0x43, 0x10, 0xd1], "sub x27, x27, 0x410"),
- ([0xff, 0xc3, 0x27, 0xd1], "sub sp, sp, 0x9f0"),
- ([0xec, 0x03, 0x42, 0xd1], "sub x12, sp, 0x80000"),
+ ([0x81, 0x08, 0x03, 0xcb], "sub x1, x4, x3, lsl #2"),
+ ([0x70, 0x12, 0x15, 0xcb], "sub x16, x19, x21, lsl #4"),
+ ([0xc6, 0x40, 0x20, 0xcb], "sub x6, x6, w0"),
+ ([0x24, 0x50, 0x20, 0xcb], "sub x4, x1, w0, lsl #4"),
+ ([0x8a, 0xc1, 0x20, 0xcb], "sub x10, x12, w0, sxtw"),
+ ([0xbb, 0xcc, 0x20, 0xcb], "sub x27, x5, w0, sxtw #3"),
+ ([0xd6, 0x04, 0x00, 0xd1], "sub x22, x6, #0x1"),
+ ([0xc7, 0x40, 0x10, 0xd1], "sub x7, x6, #0x410"),
+ ([0x7b, 0x43, 0x10, 0xd1], "sub x27, x27, #0x410"),
+ ([0xff, 0xc3, 0x27, 0xd1], "sub sp, sp, #0x9f0"),
+ ([0xec, 0x03, 0x42, 0xd1], "sub x12, sp, #0x80, lsl #12"),
([0x97, 0x02, 0x1b, 0xeb], "subs x23, x20, x27"),
([0x98, 0x02, 0x1b, 0xeb], "subs x24, x20, x27"),
- ([0x6b, 0x05, 0x00, 0xf1], "subs x11, x11, 0x1"),
- ([0x5a, 0x07, 0x00, 0xf1], "subs x26, x26, 0x1"),
- ([0x08, 0x09, 0x00, 0xf1], "subs x8, x8, 0x2"),
+ ([0x6b, 0x05, 0x00, 0xf1], "subs x11, x11, #0x1"),
+ ([0x5a, 0x07, 0x00, 0xf1], "subs x26, x26, #0x1"),
+ ([0x08, 0x09, 0x00, 0xf1], "subs x8, x8, #0x2"),
];
let errs = run_tests(TESTS);
@@ -2594,124 +2594,124 @@ fn test_openblas_arithmetic() {
#[test]
fn test_openblas_bitwise() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x94, 0x7c, 0x01, 0x13], "asr w20, w4, 0x1"),
- ([0x0a, 0x7d, 0x02, 0x13], "asr w10, w8, 0x2"),
- ([0x00, 0x7c, 0x0c, 0x13], "asr w0, w0, 0xc"),
- ([0x20, 0x04, 0x81, 0x13], "ror w0, w1, 0x1"),
+ ([0x94, 0x7c, 0x01, 0x13], "asr w20, w4, #0x1"),
+ ([0x0a, 0x7d, 0x02, 0x13], "asr w10, w8, #0x2"),
+ ([0x00, 0x7c, 0x0c, 0x13], "asr w0, w0, #0xc"),
+ ([0x20, 0x04, 0x81, 0x13], "ror w0, w1, #0x1"),
([0x61, 0x21, 0xc0, 0x1a], "lsl w1, w11, w0"),
([0x00, 0x20, 0xc1, 0x1a], "lsl w0, w0, w1"),
([0x94, 0x22, 0xc1, 0x1a], "lsl w20, w20, w1"),
([0x63, 0x20, 0xc2, 0x1a], "lsl w3, w3, w2"),
- ([0x03, 0x7c, 0x01, 0x53], "lsr w3, w0, 0x1"),
- ([0x23, 0x7c, 0x02, 0x53], "lsr w3, w1, 0x2"),
- ([0x00, 0x7c, 0x06, 0x53], "lsr w0, w0, 0x6"),
- ([0x42, 0x7c, 0x07, 0x53], "lsr w2, w2, 0x7"),
- ([0x00, 0x4c, 0x14, 0x53], "lsl w0, w0, 0xc"),
- ([0xe0, 0x56, 0x16, 0x53], "lsl w0, w23, 0xa"),
- ([0x20, 0x7c, 0x18, 0x53], "lsr w0, w1, 0x18"),
- ([0x35, 0x6c, 0x1c, 0x53], "lsl w21, w1, 0x4"),
- ([0x2c, 0x70, 0x1d, 0x53], "lsl w12, w1, 0x3"),
- ([0xa8, 0x74, 0x1e, 0x53], "lsl w8, w5, 0x2"),
- ([0x23, 0x7b, 0x1f, 0x53], "lsl w3, w25, 0x1"),
- ([0x04, 0x7f, 0x1f, 0x53], "lsr w4, w24, 0x1f"),
- ([0x05, 0xfe, 0x41, 0xd3], "lsr x5, x16, 0x1"),
- ([0x22, 0x3c, 0x44, 0xd3], "ubfx x2, x1, 0x4, 0xc"),
- ([0xb5, 0xfe, 0x46, 0xd3], "lsr x21, x21, 0x6"),
- ([0xe7, 0xfc, 0x60, 0xd3], "lsr x7, x7, 0x20"),
- ([0x21, 0xfc, 0x61, 0xd3], "lsr x1, x1, 0x21"),
- ([0x00, 0xfc, 0x63, 0xd3], "lsr x0, x0, 0x23"),
- ([0xa6, 0xd4, 0x76, 0xd3], "lsl x6, x5, 0xa"),
- ([0x03, 0x08, 0x7a, 0xd3], "ubfiz x3, x0, 0x6, 0x3"),
- ([0xa1, 0x7e, 0x79, 0x93], "sbfiz x1, x21, 0x7, 0x20"),
- ([0x01, 0x7c, 0x7a, 0x93], "sbfiz x1, x0, 0x6, 0x20"),
- ([0x9a, 0x7c, 0x7d, 0x93], "sbfiz x26, x4, 0x3, 0x20"),
- ([0xc3, 0x0f, 0x7a, 0xd3], "ubfiz x3, x30, 0x6, 0x4"),
- ([0x01, 0xe4, 0x7a, 0xd3], "lsl x1, x0, 0x6"),
- ([0x65, 0xe8, 0x7b, 0xd3], "lsl x5, x3, 0x5"),
- ([0x79, 0xf3, 0x7d, 0xd3], "lsl x25, x27, 0x3"),
- ([0x81, 0x7d, 0x7f, 0xd3], "ubfiz x1, x12, 0x1, 0x20"),
- ([0x0e, 0xf8, 0x7f, 0xd3], "lsl x14, x0, 0x1"),
+ ([0x03, 0x7c, 0x01, 0x53], "lsr w3, w0, #0x1"),
+ ([0x23, 0x7c, 0x02, 0x53], "lsr w3, w1, #0x2"),
+ ([0x00, 0x7c, 0x06, 0x53], "lsr w0, w0, #0x6"),
+ ([0x42, 0x7c, 0x07, 0x53], "lsr w2, w2, #0x7"),
+ ([0x00, 0x4c, 0x14, 0x53], "lsl w0, w0, #0xc"),
+ ([0xe0, 0x56, 0x16, 0x53], "lsl w0, w23, #0xa"),
+ ([0x20, 0x7c, 0x18, 0x53], "lsr w0, w1, #0x18"),
+ ([0x35, 0x6c, 0x1c, 0x53], "lsl w21, w1, #0x4"),
+ ([0x2c, 0x70, 0x1d, 0x53], "lsl w12, w1, #0x3"),
+ ([0xa8, 0x74, 0x1e, 0x53], "lsl w8, w5, #0x2"),
+ ([0x23, 0x7b, 0x1f, 0x53], "lsl w3, w25, #0x1"),
+ ([0x04, 0x7f, 0x1f, 0x53], "lsr w4, w24, #0x1f"),
+ ([0x05, 0xfe, 0x41, 0xd3], "lsr x5, x16, #0x1"),
+ ([0x22, 0x3c, 0x44, 0xd3], "ubfx x2, x1, #0x4, #0xc"),
+ ([0xb5, 0xfe, 0x46, 0xd3], "lsr x21, x21, #0x6"),
+ ([0xe7, 0xfc, 0x60, 0xd3], "lsr x7, x7, #0x20"),
+ ([0x21, 0xfc, 0x61, 0xd3], "lsr x1, x1, #0x21"),
+ ([0x00, 0xfc, 0x63, 0xd3], "lsr x0, x0, #0x23"),
+ ([0xa6, 0xd4, 0x76, 0xd3], "lsl x6, x5, #0xa"),
+ ([0x03, 0x08, 0x7a, 0xd3], "ubfiz x3, x0, #0x6, #0x3"),
+ ([0xa1, 0x7e, 0x79, 0x93], "sbfiz x1, x21, #0x7, #0x20"),
+ ([0x01, 0x7c, 0x7a, 0x93], "sbfiz x1, x0, #0x6, #0x20"),
+ ([0x9a, 0x7c, 0x7d, 0x93], "sbfiz x26, x4, #0x3, #0x20"),
+ ([0xc3, 0x0f, 0x7a, 0xd3], "ubfiz x3, x30, #0x6, #0x4"),
+ ([0x01, 0xe4, 0x7a, 0xd3], "lsl x1, x0, #0x6"),
+ ([0x65, 0xe8, 0x7b, 0xd3], "lsl x5, x3, #0x5"),
+ ([0x79, 0xf3, 0x7d, 0xd3], "lsl x25, x27, #0x3"),
+ ([0x81, 0x7d, 0x7f, 0xd3], "ubfiz x1, x12, #0x1, #0x20"),
+ ([0x0e, 0xf8, 0x7f, 0xd3], "lsl x14, x0, #0x1"),
([0xe9, 0x22, 0xce, 0x9a], "lsl x9, x23, x14"),
- ([0xca, 0xff, 0x7f, 0xd3], "lsr x10, x30, 0x3f"),
+ ([0xca, 0xff, 0x7f, 0xd3], "lsr x10, x30, #0x3f"),
([0xd3, 0x7f, 0x40, 0x93], "sxtw x19, w30"),
- ([0x00, 0xfc, 0x62, 0x93], "asr x0, x0, 0x22"),
+ ([0x00, 0xfc, 0x62, 0x93], "asr x0, x0, #0x22"),
([0x20, 0x00, 0x00, 0x0a], "and w0, w1, w0"),
([0x28, 0x00, 0x00, 0x0a], "and w8, w1, w0"),
([0x29, 0x00, 0x00, 0x0a], "and w9, w1, w0"),
([0xb5, 0x02, 0x22, 0x0a], "bic w21, w21, w2"),
- ([0x00, 0x2c, 0x00, 0x12], "and w0, w0, 0xfff"),
- ([0x42, 0x2c, 0x00, 0x12], "and w2, w2, 0xfff"),
- ([0x00, 0x00, 0x01, 0x12], "and w0, w0, 0x80000000"),
- ([0x21, 0x00, 0x01, 0x12], "and w1, w1, 0x80000000"),
- ([0x10, 0x00, 0x18, 0x12], "and w16, w0, 0x100"),
- ([0x11, 0x00, 0x18, 0x12], "and w17, w0, 0x100"),
- ([0x06, 0x79, 0x1a, 0x12], "and w6, w8, 0xffffffdf"),
- ([0x08, 0x79, 0x1a, 0x12], "and w8, w8, 0xffffffdf"),
- ([0x02, 0x70, 0x1d, 0x12], "and w2, w0, 0xfffffff8"),
- ([0x00, 0x74, 0x1e, 0x12], "and w0, w0, 0xfffffffc"),
- ([0x02, 0x74, 0x1e, 0x12], "and w2, w0, 0xfffffffc"),
- ([0x00, 0x78, 0x1e, 0x12], "and w0, w0, 0xfffffffd"),
- ([0x02, 0x78, 0x1e, 0x12], "and w2, w0, 0xfffffffd"),
- ([0xc6, 0x78, 0x1e, 0x12], "and w6, w6, 0xfffffffd"),
- ([0x10, 0x7a, 0x1e, 0x12], "and w16, w16, 0xfffffffd"),
- ([0x39, 0x7b, 0x1f, 0x12], "and w25, w25, 0xfffffffe"),
+ ([0x00, 0x2c, 0x00, 0x12], "and w0, w0, #0xfff"),
+ ([0x42, 0x2c, 0x00, 0x12], "and w2, w2, #0xfff"),
+ ([0x00, 0x00, 0x01, 0x12], "and w0, w0, #0x80000000"),
+ ([0x21, 0x00, 0x01, 0x12], "and w1, w1, #0x80000000"),
+ ([0x10, 0x00, 0x18, 0x12], "and w16, w0, #0x100"),
+ ([0x11, 0x00, 0x18, 0x12], "and w17, w0, #0x100"),
+ ([0x06, 0x79, 0x1a, 0x12], "and w6, w8, #0xffffffdf"),
+ ([0x08, 0x79, 0x1a, 0x12], "and w8, w8, #0xffffffdf"),
+ ([0x02, 0x70, 0x1d, 0x12], "and w2, w0, #0xfffffff8"),
+ ([0x00, 0x74, 0x1e, 0x12], "and w0, w0, #0xfffffffc"),
+ ([0x02, 0x74, 0x1e, 0x12], "and w2, w0, #0xfffffffc"),
+ ([0x00, 0x78, 0x1e, 0x12], "and w0, w0, #0xfffffffd"),
+ ([0x02, 0x78, 0x1e, 0x12], "and w2, w0, #0xfffffffd"),
+ ([0xc6, 0x78, 0x1e, 0x12], "and w6, w6, #0xfffffffd"),
+ ([0x10, 0x7a, 0x1e, 0x12], "and w16, w16, #0xfffffffd"),
+ ([0x39, 0x7b, 0x1f, 0x12], "and w25, w25, #0xfffffffe"),
([0x63, 0x00, 0x05, 0x6a], "ands w3, w3, w5"),
- ([0x00, 0x04, 0x00, 0x72], "ands w0, w0, 0x3"),
- ([0xc6, 0x04, 0x00, 0x72], "ands w6, w6, 0x3"),
- ([0x00, 0x78, 0x1e, 0x72], "ands w0, w0, 0xfffffffd"),
- ([0x21, 0x78, 0x1e, 0x72], "ands w1, w1, 0xfffffffd"),
+ ([0x00, 0x04, 0x00, 0x72], "ands w0, w0, #0x3"),
+ ([0xc6, 0x04, 0x00, 0x72], "ands w6, w6, #0x3"),
+ ([0x00, 0x78, 0x1e, 0x72], "ands w0, w0, #0xfffffffd"),
+ ([0x21, 0x78, 0x1e, 0x72], "ands w1, w1, #0xfffffffd"),
([0x40, 0x00, 0x00, 0x8a], "and x0, x2, x0"),
([0x84, 0x00, 0x1c, 0x8a], "and x4, x4, x28"),
- ([0x01, 0x00, 0x40, 0x92], "and x1, x0, 0x1"),
- ([0x02, 0x00, 0x40, 0x92], "and x2, x0, 0x1"),
- ([0xa5, 0xf0, 0x7d, 0x92], "and x5, x5, 0xfffffffffffffff8"),
- ([0x00, 0x03, 0x7e, 0x92], "and x0, x24, 0x4"),
- ([0xc1, 0x06, 0x7e, 0x92], "and x1, x22, 0xc"),
- ([0x42, 0xf4, 0x7e, 0x92], "and x2, x2, 0xfffffffffffffffc"),
- ([0x01, 0x00, 0x7f, 0x92], "and x1, x0, 0x2"),
- ([0xe0, 0x01, 0x7f, 0x92], "and x0, x15, 0x2"),
- ([0x75, 0x02, 0x7f, 0x92], "and x21, x19, 0x2"),
- ([0x76, 0x02, 0x7f, 0x92], "and x22, x19, 0x2"),
- ([0x8e, 0x02, 0x7f, 0x92], "and x14, x20, 0x2"),
- ([0x9a, 0x02, 0x7f, 0x92], "and x26, x20, 0x2"),
- ([0x9b, 0x02, 0x7f, 0x92], "and x27, x20, 0x2"),
- ([0xc1, 0x06, 0x7f, 0x92], "and x1, x22, 0x6"),
- ([0x00, 0x07, 0x7f, 0x92], "and x0, x24, 0x6"),
- ([0x01, 0x08, 0x7f, 0x92], "and x1, x0, 0xe"),
- ([0xc1, 0x0a, 0x7f, 0x92], "and x1, x22, 0xe"),
- ([0x6b, 0xfa, 0x7f, 0x92], "and x11, x19, 0xfffffffffffffffe"),
- ([0x80, 0xfb, 0x7f, 0x92], "and x0, x28, 0xfffffffffffffffe"),
- ([0x0c, 0x04, 0x40, 0xf2], "ands x12, x0, 0x3"),
- ([0x88, 0x0a, 0x40, 0xf2], "ands x8, x20, 0x7"),
- ([0x01, 0x10, 0x40, 0xf2], "ands x1, x0, 0x1f"),
- ([0x05, 0x10, 0x40, 0xf2], "ands x5, x0, 0x1f"),
- ([0x0c, 0x10, 0x40, 0xf2], "ands x12, x0, 0x1f"),
- ([0x48, 0x10, 0x40, 0xf2], "ands x8, x2, 0x1f"),
- ([0x05, 0x14, 0x40, 0xf2], "ands x5, x0, 0x3f"),
- ([0x48, 0x18, 0x40, 0xf2], "ands x8, x2, 0x7f"),
- ([0x02, 0xe8, 0x7b, 0xf2], "ands x2, x0, 0xffffffffffffffe0"),
- ([0x07, 0xf4, 0x7e, 0xf2], "ands x7, x0, 0xfffffffffffffffc"),
+ ([0x01, 0x00, 0x40, 0x92], "and x1, x0, #0x1"),
+ ([0x02, 0x00, 0x40, 0x92], "and x2, x0, #0x1"),
+ ([0xa5, 0xf0, 0x7d, 0x92], "and x5, x5, #0xfffffffffffffff8"),
+ ([0x00, 0x03, 0x7e, 0x92], "and x0, x24, #0x4"),
+ ([0xc1, 0x06, 0x7e, 0x92], "and x1, x22, #0xc"),
+ ([0x42, 0xf4, 0x7e, 0x92], "and x2, x2, #0xfffffffffffffffc"),
+ ([0x01, 0x00, 0x7f, 0x92], "and x1, x0, #0x2"),
+ ([0xe0, 0x01, 0x7f, 0x92], "and x0, x15, #0x2"),
+ ([0x75, 0x02, 0x7f, 0x92], "and x21, x19, #0x2"),
+ ([0x76, 0x02, 0x7f, 0x92], "and x22, x19, #0x2"),
+ ([0x8e, 0x02, 0x7f, 0x92], "and x14, x20, #0x2"),
+ ([0x9a, 0x02, 0x7f, 0x92], "and x26, x20, #0x2"),
+ ([0x9b, 0x02, 0x7f, 0x92], "and x27, x20, #0x2"),
+ ([0xc1, 0x06, 0x7f, 0x92], "and x1, x22, #0x6"),
+ ([0x00, 0x07, 0x7f, 0x92], "and x0, x24, #0x6"),
+ ([0x01, 0x08, 0x7f, 0x92], "and x1, x0, #0xe"),
+ ([0xc1, 0x0a, 0x7f, 0x92], "and x1, x22, #0xe"),
+ ([0x6b, 0xfa, 0x7f, 0x92], "and x11, x19, #0xfffffffffffffffe"),
+ ([0x80, 0xfb, 0x7f, 0x92], "and x0, x28, #0xfffffffffffffffe"),
+ ([0x0c, 0x04, 0x40, 0xf2], "ands x12, x0, #0x3"),
+ ([0x88, 0x0a, 0x40, 0xf2], "ands x8, x20, #0x7"),
+ ([0x01, 0x10, 0x40, 0xf2], "ands x1, x0, #0x1f"),
+ ([0x05, 0x10, 0x40, 0xf2], "ands x5, x0, #0x1f"),
+ ([0x0c, 0x10, 0x40, 0xf2], "ands x12, x0, #0x1f"),
+ ([0x48, 0x10, 0x40, 0xf2], "ands x8, x2, #0x1f"),
+ ([0x05, 0x14, 0x40, 0xf2], "ands x5, x0, #0x3f"),
+ ([0x48, 0x18, 0x40, 0xf2], "ands x8, x2, #0x7f"),
+ ([0x02, 0xe8, 0x7b, 0xf2], "ands x2, x0, #0xffffffffffffffe0"),
+ ([0x07, 0xf4, 0x7e, 0xf2], "ands x7, x0, #0xfffffffffffffffc"),
([0x20, 0x00, 0x00, 0x4a], "eor w0, w1, w0"),
([0x99, 0x02, 0x04, 0x4a], "eor w25, w20, w4"),
- ([0xa6, 0x00, 0x00, 0x52], "eor w6, w5, 0x1"),
+ ([0xa6, 0x00, 0x00, 0x52], "eor w6, w5, #0x1"),
([0x48, 0x01, 0x08, 0xca], "eor x8, x10, x8"),
- ([0xe7, 0xf0, 0x7d, 0xd2], "eor x7, x7, 0xfffffffffffffff8"),
- ([0x81, 0x12, 0x17, 0x2a], "orr w1, w20, w23, lsl 4"),
+ ([0xe7, 0xf0, 0x7d, 0xd2], "eor x7, x7, #0xfffffffffffffff8"),
+ ([0x81, 0x12, 0x17, 0x2a], "orr w1, w20, w23, lsl #4"),
([0x29, 0x03, 0x1c, 0x2a], "orr w9, w25, w28"),
- ([0x73, 0x7d, 0x4d, 0x2a], "orr w19, w11, w13, lsr 31"),
- ([0x00, 0x7c, 0x54, 0x2a], "orr w0, w0, w20, lsr 31"),
- ([0x20, 0x00, 0x00, 0x32], "orr w0, w1, 0x1"),
- ([0x80, 0x02, 0x00, 0x32], "orr w0, w20, 0x1"),
- ([0x12, 0x00, 0x11, 0x32], "orr w18, w0, 0x8000"),
- ([0x1e, 0x00, 0x11, 0x32], "orr w30, w0, 0x8000"),
- ([0x08, 0x01, 0x1c, 0x32], "orr w8, w8, 0x10"),
- ([0x81, 0x02, 0x1c, 0x32], "orr w1, w20, 0x10"),
- ([0x82, 0x02, 0x1c, 0x32], "orr w2, w20, 0x10"),
- ([0x94, 0x02, 0x1c, 0x32], "orr w20, w20, 0x10"),
- ([0x20, 0x00, 0x1e, 0x32], "orr w0, w1, 0x4"),
- ([0x73, 0x02, 0x1e, 0x32], "orr w19, w19, 0x4"),
- ([0x80, 0x02, 0x1e, 0x32], "orr w0, w20, 0x4"),
- ([0x94, 0x02, 0x1e, 0x32], "orr w20, w20, 0x4"),
+ ([0x73, 0x7d, 0x4d, 0x2a], "orr w19, w11, w13, lsr #31"),
+ ([0x00, 0x7c, 0x54, 0x2a], "orr w0, w0, w20, lsr #31"),
+ ([0x20, 0x00, 0x00, 0x32], "orr w0, w1, #0x1"),
+ ([0x80, 0x02, 0x00, 0x32], "orr w0, w20, #0x1"),
+ ([0x12, 0x00, 0x11, 0x32], "orr w18, w0, #0x8000"),
+ ([0x1e, 0x00, 0x11, 0x32], "orr w30, w0, #0x8000"),
+ ([0x08, 0x01, 0x1c, 0x32], "orr w8, w8, #0x10"),
+ ([0x81, 0x02, 0x1c, 0x32], "orr w1, w20, #0x10"),
+ ([0x82, 0x02, 0x1c, 0x32], "orr w2, w20, #0x10"),
+ ([0x94, 0x02, 0x1c, 0x32], "orr w20, w20, #0x10"),
+ ([0x20, 0x00, 0x1e, 0x32], "orr w0, w1, #0x4"),
+ ([0x73, 0x02, 0x1e, 0x32], "orr w19, w19, #0x4"),
+ ([0x80, 0x02, 0x1e, 0x32], "orr w0, w20, #0x4"),
+ ([0x94, 0x02, 0x1e, 0x32], "orr w20, w20, #0x4"),
];
let errs = run_tests(TESTS);
@@ -2736,7 +2736,7 @@ fn test_openblas_simd_loadstore() {
([0xac, 0x02, 0x22, 0x1e], "scvtf s12, w21"),
([0x00, 0x00, 0x62, 0x1e], "scvtf d0, w0"),
([0x8a, 0x03, 0x62, 0x1e], "scvtf d10, w28"),
- ([0x03, 0xe4, 0x00, 0x2f], "movi d3, 0x0"),
+ ([0x03, 0xe4, 0x00, 0x2f], "movi d3, #0x0"),
([0x88, 0x28, 0x00, 0x0c], "st1 {v8.2s, v9.2s, v10.2s, v11.2s}, [x4]"),
([0x80, 0x2c, 0x00, 0x0c], "st1 {v0.1d, v1.1d, v2.1d, v3.1d}, [x4]"),
([0x84, 0x2c, 0x00, 0x0c], "st1 {v4.1d, v5.1d, v6.1d, v7.1d}, [x4]"),
@@ -2764,9 +2764,9 @@ fn test_openblas_simd_loadstore() {
([0xa4, 0x89, 0x40, 0x0c], "ld2 {v4.2s, v5.2s}, [x13]"),
([0xa2, 0xa9, 0x40, 0x0c], "ld1 {v2.2s, v3.2s}, [x13]"),
([0xac, 0xa9, 0x40, 0x0c], "ld1 {v12.2s, v13.2s}, [x13]"),
- ([0xa5, 0x79, 0x9f, 0x0c], "st1 {v5.2s}, [x13], 0x8"),
+ ([0xa5, 0x79, 0x9f, 0x0c], "st1 {v5.2s}, [x13], #0x8"),
([0x45, 0x79, 0xc2, 0x0c], "ld1 {v5.2s}, [x10], x2"),
- ([0x20, 0x78, 0xdf, 0x0c], "ld1 {v0.2s}, [x1], 0x8"),
+ ([0x20, 0x78, 0xdf, 0x0c], "ld1 {v0.2s}, [x1], #0x8"),
([0xcc, 0x85, 0x00, 0x0d], "st1 {v12.d}[0], [x14]"),
([0xa8, 0x91, 0x00, 0x0d], "st1 {v8.s}[1], [x13]"),
([0xa0, 0x81, 0x20, 0x0d], "st2 {v0.s, v1.s}[0], [x13]"),
@@ -2774,10 +2774,10 @@ fn test_openblas_simd_loadstore() {
([0xa8, 0x91, 0x40, 0x0d], "ld1 {v8.s}[1], [x13]"),
([0xa0, 0x85, 0x60, 0x0d], "ld2 {v0.d, v1.d}[0], [x13]"),
([0x43, 0x81, 0x82, 0x0d], "st1 {v3.s}[0], [x10], x2"),
- ([0x64, 0x90, 0x9f, 0x0d], "st1 {v4.s}[1], [x3], 0x4"),
+ ([0x64, 0x90, 0x9f, 0x0d], "st1 {v4.s}[1], [x3], #0x4"),
([0x22, 0x84, 0xc2, 0x0d], "ld1 {v2.d}[0], [x1], x2"),
([0x61, 0x80, 0xc4, 0x0d], "ld1 {v1.s}[0], [x3], x4"),
- ([0x24, 0xc9, 0xdf, 0x0d], "ld1r {v4.2s}, [x9], 0x4"), // TODO: could use a test for "ld1r {v4.2s}, [x9]"
+ ([0x24, 0xc9, 0xdf, 0x0d], "ld1r {v4.2s}, [x9], #0x4"), // TODO: could use a test for "ld1r {v4.2s}, [x9]"
([0x88, 0x28, 0x00, 0x4c], "st1 {v8.4s, v9.4s, v10.4s, v11.4s}, [x4]"),
([0x60, 0x2d, 0x00, 0x4c], "st1 {v0.2d, v1.2d, v2.2d, v3.2d}, [x11]"),
([0x9c, 0x2e, 0x00, 0x4c], "st1 {v28.2d, v29.2d, v30.2d, v31.2d}, [x20]"),
@@ -2816,22 +2816,22 @@ fn test_openblas_simd_loadstore() {
([0xa4, 0x8d, 0x40, 0x4c], "ld2 {v4.2d, v5.2d}, [x13]"),
([0xa6, 0x8d, 0x40, 0x4c], "ld2 {v6.2d, v7.2d}, [x13]"),
([0xa3, 0x7c, 0x86, 0x4c], "st1 {v3.2d}, [x5], x6"),
- ([0x61, 0x2c, 0x9f, 0x4c], "st1 {v1.2d, v2.2d, v3.2d, v4.2d}, [x3], 0x40"),
- ([0xb0, 0x2c, 0x9f, 0x4c], "st1 {v16.2d, v17.2d, v18.2d, v19.2d}, [x5], 0x40"),
- ([0x24, 0x78, 0x9f, 0x4c], "st1 {v4.4s}, [x1], 0x10"),
- ([0xa5, 0x7d, 0x9f, 0x4c], "st1 {v5.2d}, [x13], 0x10"),
- ([0xa4, 0x88, 0x9f, 0x4c], "st2 {v4.4s, v5.4s}, [x5], 0x20"),
- ([0xc4, 0x88, 0x9f, 0x4c], "st2 {v4.4s, v5.4s}, [x6], 0x20"),
- ([0xb0, 0xad, 0x9f, 0x4c], "st1 {v16.2d, v17.2d}, [x13], 0x20"),
+ ([0x61, 0x2c, 0x9f, 0x4c], "st1 {v1.2d, v2.2d, v3.2d, v4.2d}, [x3], #0x40"),
+ ([0xb0, 0x2c, 0x9f, 0x4c], "st1 {v16.2d, v17.2d, v18.2d, v19.2d}, [x5], #0x40"),
+ ([0x24, 0x78, 0x9f, 0x4c], "st1 {v4.4s}, [x1], #0x10"),
+ ([0xa5, 0x7d, 0x9f, 0x4c], "st1 {v5.2d}, [x13], #0x10"),
+ ([0xa4, 0x88, 0x9f, 0x4c], "st2 {v4.4s, v5.4s}, [x5], #0x20"),
+ ([0xc4, 0x88, 0x9f, 0x4c], "st2 {v4.4s, v5.4s}, [x6], #0x20"),
+ ([0xb0, 0xad, 0x9f, 0x4c], "st1 {v16.2d, v17.2d}, [x13], #0x20"),
([0x20, 0x7c, 0xc2, 0x4c], "ld1 {v0.2d}, [x1], x2"),
([0x46, 0x7d, 0xc6, 0x4c], "ld1 {v6.2d}, [x10], x6"),
- ([0x20, 0x0c, 0xdf, 0x4c], "ld4 {v0.2d, v1.2d, v2.2d, v3.2d}, [x1], 0x40"),
- ([0x51, 0x2d, 0xdf, 0x4c], "ld1 {v17.2d, v18.2d, v19.2d, v20.2d}, [x10], 0x40"),
- ([0x20, 0x78, 0xdf, 0x4c], "ld1 {v0.4s}, [x1], 0x10"),
- ([0x21, 0x78, 0xdf, 0x4c], "ld1 {v1.4s}, [x1], 0x10"),
- ([0x46, 0x7d, 0xdf, 0x4c], "ld1 {v6.2d}, [x10], 0x10"),
- ([0x20, 0x88, 0xdf, 0x4c], "ld2 {v0.4s, v1.4s}, [x1], 0x20"),
- ([0x50, 0xad, 0xdf, 0x4c], "ld1 {v16.2d, v17.2d}, [x10], 0x20"),
+ ([0x20, 0x0c, 0xdf, 0x4c], "ld4 {v0.2d, v1.2d, v2.2d, v3.2d}, [x1], #0x40"),
+ ([0x51, 0x2d, 0xdf, 0x4c], "ld1 {v17.2d, v18.2d, v19.2d, v20.2d}, [x10], #0x40"),
+ ([0x20, 0x78, 0xdf, 0x4c], "ld1 {v0.4s}, [x1], #0x10"),
+ ([0x21, 0x78, 0xdf, 0x4c], "ld1 {v1.4s}, [x1], #0x10"),
+ ([0x46, 0x7d, 0xdf, 0x4c], "ld1 {v6.2d}, [x10], #0x10"),
+ ([0x20, 0x88, 0xdf, 0x4c], "ld2 {v0.4s, v1.4s}, [x1], #0x20"),
+ ([0x50, 0xad, 0xdf, 0x4c], "ld1 {v16.2d, v17.2d}, [x10], #0x20"),
([0xa8, 0x85, 0x00, 0x4d], "st1 {v8.d}[1], [x13]"),
([0xac, 0x85, 0x00, 0x4d], "st1 {v12.d}[1], [x13]"),
([0xec, 0x85, 0x00, 0x4d], "st1 {v12.d}[1], [x15]"),
@@ -2839,27 +2839,27 @@ fn test_openblas_simd_loadstore() {
([0xa8, 0x85, 0x40, 0x4d], "ld1 {v8.d}[1], [x13]"),
([0xec, 0x85, 0x40, 0x4d], "ld1 {v12.d}[1], [x15]"),
([0x64, 0x84, 0x84, 0x4d], "st1 {v4.d}[1], [x3], x4"),
- ([0x64, 0x84, 0x9f, 0x4d], "st1 {v4.d}[1], [x3], 0x8"),
- ([0x24, 0xcd, 0xdf, 0x4d], "ld1r {v4.2d}, [x9], 0x8"),
- ([0x60, 0x04, 0x81, 0x3c], "str q0, [x3], 0x10"),
- ([0x61, 0x00, 0x9f, 0x3c], "stur q1, [x3, -0x10]"),
- ([0xa0, 0x00, 0x9f, 0x3c], "stur q0, [x5, -0x10]"),
+ ([0x64, 0x84, 0x9f, 0x4d], "st1 {v4.d}[1], [x3], #0x8"),
+ ([0x24, 0xcd, 0xdf, 0x4d], "ld1r {v4.2d}, [x9], #0x8"),
+ ([0x60, 0x04, 0x81, 0x3c], "str q0, [x3], #0x10"),
+ ([0x61, 0x00, 0x9f, 0x3c], "stur q1, [x3, #-0x10]"),
+ ([0xa0, 0x00, 0x9f, 0x3c], "stur q0, [x5, #-0x10]"),
([0x30, 0x00, 0xc0, 0x3c], "ldur q16, [x1]"),
([0x68, 0x01, 0xc0, 0x3c], "ldur q8, [x11]"),
([0x6c, 0x01, 0xc0, 0x3c], "ldur q12, [x11]"),
([0x04, 0x02, 0xc0, 0x3c], "ldur q4, [x16]"),
- ([0x32, 0x00, 0xc1, 0x3c], "ldur q18, [x1, 0x10]"),
- ([0x6c, 0x01, 0xc1, 0x3c], "ldur q12, [x11, 0x10]"),
- ([0x05, 0x02, 0xc1, 0x3c], "ldur q5, [x16, 0x10]"),
- ([0x20, 0x04, 0xc1, 0x3c], "ldr q0, [x1], 0x10"),
- ([0x04, 0x06, 0xc1, 0x3c], "ldr q4, [x16], 0x10"),
- ([0x05, 0x06, 0xc1, 0x3c], "ldr q5, [x16], 0x10"),
- ([0x34, 0x00, 0xc2, 0x3c], "ldur q20, [x1, 0x20]"),
- ([0x3c, 0x00, 0xc6, 0x3c], "ldur q28, [x1, 0x60]"),
- ([0x06, 0x02, 0xc6, 0x3c], "ldur q6, [x16, 0x60]"),
- ([0x3e, 0x00, 0xc7, 0x3c], "ldur q30, [x1, 0x70]"),
- ([0x07, 0x02, 0xc7, 0x3c], "ldur q7, [x16, 0x70]"),
- ([0x44, 0x00, 0xdf, 0x3c], "ldur q4, [x2, -0x10]"),
+ ([0x32, 0x00, 0xc1, 0x3c], "ldur q18, [x1, #0x10]"),
+ ([0x6c, 0x01, 0xc1, 0x3c], "ldur q12, [x11, #0x10]"),
+ ([0x05, 0x02, 0xc1, 0x3c], "ldur q5, [x16, #0x10]"),
+ ([0x20, 0x04, 0xc1, 0x3c], "ldr q0, [x1], #0x10"),
+ ([0x04, 0x06, 0xc1, 0x3c], "ldr q4, [x16], #0x10"),
+ ([0x05, 0x06, 0xc1, 0x3c], "ldr q5, [x16], #0x10"),
+ ([0x34, 0x00, 0xc2, 0x3c], "ldur q20, [x1, #0x20]"),
+ ([0x3c, 0x00, 0xc6, 0x3c], "ldur q28, [x1, #0x60]"),
+ ([0x06, 0x02, 0xc6, 0x3c], "ldur q6, [x16, #0x60]"),
+ ([0x3e, 0x00, 0xc7, 0x3c], "ldur q30, [x1, #0x70]"),
+ ([0x07, 0x02, 0xc7, 0x3c], "ldur q7, [x16, #0x70]"),
+ ([0x44, 0x00, 0xdf, 0x3c], "ldur q4, [x2, #-0x10]"),
([0x60, 0x00, 0x80, 0x3d], "str q0, [x3]"),
([0x61, 0x00, 0x80, 0x3d], "str q1, [x3]"),
([0xa0, 0x00, 0x80, 0x3d], "str q0, [x5]"),
@@ -2870,14 +2870,14 @@ fn test_openblas_simd_loadstore() {
([0xe0, 0x01, 0x80, 0x3d], "str q0, [x15]"),
([0xe3, 0x01, 0x80, 0x3d], "str q3, [x15]"),
([0x00, 0x02, 0x80, 0x3d], "str q0, [x16]"),
- ([0xe0, 0x27, 0x80, 0x3d], "str q0, [sp, 0x90]"),
- ([0xe1, 0x2b, 0x80, 0x3d], "str q1, [sp, 0xa0]"),
- ([0xe2, 0x2f, 0x80, 0x3d], "str q2, [sp, 0xb0]"),
- ([0xe3, 0x33, 0x80, 0x3d], "str q3, [sp, 0xc0]"),
- ([0xe4, 0x37, 0x80, 0x3d], "str q4, [sp, 0xd0]"),
- ([0xe5, 0x3b, 0x80, 0x3d], "str q5, [sp, 0xe0]"),
- ([0xe6, 0x3f, 0x80, 0x3d], "str q6, [sp, 0xf0]"),
- ([0xe7, 0x43, 0x80, 0x3d], "str q7, [sp, 0x100]"),
+ ([0xe0, 0x27, 0x80, 0x3d], "str q0, [sp, #0x90]"),
+ ([0xe1, 0x2b, 0x80, 0x3d], "str q1, [sp, #0xa0]"),
+ ([0xe2, 0x2f, 0x80, 0x3d], "str q2, [sp, #0xb0]"),
+ ([0xe3, 0x33, 0x80, 0x3d], "str q3, [sp, #0xc0]"),
+ ([0xe4, 0x37, 0x80, 0x3d], "str q4, [sp, #0xd0]"),
+ ([0xe5, 0x3b, 0x80, 0x3d], "str q5, [sp, #0xe0]"),
+ ([0xe6, 0x3f, 0x80, 0x3d], "str q6, [sp, #0xf0]"),
+ ([0xe7, 0x43, 0x80, 0x3d], "str q7, [sp, #0x100]"),
([0x20, 0x00, 0xc0, 0x3d], "ldr q0, [x1]"),
([0x21, 0x00, 0xc0, 0x3d], "ldr q1, [x1]"),
([0x24, 0x00, 0xc0, 0x3d], "ldr q4, [x1]"),
@@ -2891,117 +2891,117 @@ fn test_openblas_simd_loadstore() {
([0x02, 0x01, 0xc0, 0x3d], "ldr q2, [x8]"),
([0x23, 0x01, 0xc0, 0x3d], "ldr q3, [x9]"),
([0x44, 0x01, 0xc0, 0x3d], "ldr q4, [x10]"),
- ([0xc1, 0x05, 0xc0, 0x3d], "ldr q1, [x14, 0x10]"),
- ([0xe5, 0x05, 0xc0, 0x3d], "ldr q5, [x15, 0x10]"),
- ([0xc2, 0x09, 0xc0, 0x3d], "ldr q2, [x14, 0x20]"),
- ([0xe6, 0x09, 0xc0, 0x3d], "ldr q6, [x15, 0x20]"),
- ([0x33, 0x0c, 0xc0, 0x3d], "ldr q19, [x1, 0x30]"),
- ([0x85, 0x0c, 0xc0, 0x3d], "ldr q5, [x4, 0x30]"),
- ([0x83, 0x0d, 0xc0, 0x3d], "ldr q3, [x12, 0x30]"),
- ([0xa7, 0x0d, 0xc0, 0x3d], "ldr q7, [x13, 0x30]"),
- ([0xc3, 0x0d, 0xc0, 0x3d], "ldr q3, [x14, 0x30]"),
- ([0xe7, 0x0d, 0xc0, 0x3d], "ldr q7, [x15, 0x30]"),
- ([0x00, 0x06, 0xc1, 0xac], "ldp q0, q1, [x16], 0x20"),
- ([0xbe, 0x7d, 0xc1, 0xac], "ldp q30, q31, [x13], 0x20"),
+ ([0xc1, 0x05, 0xc0, 0x3d], "ldr q1, [x14, #0x10]"),
+ ([0xe5, 0x05, 0xc0, 0x3d], "ldr q5, [x15, #0x10]"),
+ ([0xc2, 0x09, 0xc0, 0x3d], "ldr q2, [x14, #0x20]"),
+ ([0xe6, 0x09, 0xc0, 0x3d], "ldr q6, [x15, #0x20]"),
+ ([0x33, 0x0c, 0xc0, 0x3d], "ldr q19, [x1, #0x30]"),
+ ([0x85, 0x0c, 0xc0, 0x3d], "ldr q5, [x4, #0x30]"),
+ ([0x83, 0x0d, 0xc0, 0x3d], "ldr q3, [x12, #0x30]"),
+ ([0xa7, 0x0d, 0xc0, 0x3d], "ldr q7, [x13, #0x30]"),
+ ([0xc3, 0x0d, 0xc0, 0x3d], "ldr q3, [x14, #0x30]"),
+ ([0xe7, 0x0d, 0xc0, 0x3d], "ldr q7, [x15, #0x30]"),
+ ([0x00, 0x06, 0xc1, 0xac], "ldp q0, q1, [x16], #0x20"),
+ ([0xbe, 0x7d, 0xc1, 0xac], "ldp q30, q31, [x13], #0x20"),
([0xb0, 0x44, 0x00, 0xad], "stp q16, q17, [x5]"),
- ([0x82, 0x0d, 0x01, 0xad], "stp q2, q3, [x12, 0x20]"),
- ([0xc2, 0x0d, 0x01, 0xad], "stp q2, q3, [x14, 0x20]"),
- ([0xb8, 0x64, 0x02, 0xad], "stp q24, q25, [x5, 0x40]"),
- ([0xba, 0x6c, 0x03, 0xad], "stp q26, q27, [x5, 0x60]"),
+ ([0x82, 0x0d, 0x01, 0xad], "stp q2, q3, [x12, #0x20]"),
+ ([0xc2, 0x0d, 0x01, 0xad], "stp q2, q3, [x14, #0x20]"),
+ ([0xb8, 0x64, 0x02, 0xad], "stp q24, q25, [x5, #0x40]"),
+ ([0xba, 0x6c, 0x03, 0xad], "stp q26, q27, [x5, #0x60]"),
([0xc0, 0x04, 0x40, 0xad], "ldp q0, q1, [x6]"),
([0xb0, 0x44, 0x40, 0xad], "ldp q16, q17, [x5]"),
- ([0x02, 0x0e, 0x41, 0xad], "ldp q2, q3, [x16, 0x20]"),
- ([0x68, 0x25, 0x41, 0xad], "ldp q8, q9, [x11, 0x20]"),
- ([0x6c, 0x35, 0x41, 0xad], "ldp q12, q13, [x11, 0x20]"),
- ([0x7c, 0x74, 0x42, 0xad], "ldp q28, q29, [x3, 0x40]"),
- ([0x02, 0x0e, 0x43, 0xad], "ldp q2, q3, [x16, 0x60]"),
- ([0x06, 0x1e, 0x43, 0xad], "ldp q6, q7, [x16, 0x60]"),
- ([0x30, 0x44, 0x43, 0xad], "ldp q16, q17, [x1, 0x60]"),
- ([0x3e, 0x7c, 0x47, 0xad], "ldp q30, q31, [x1, 0xe0]"),
- ([0x6e, 0x3d, 0xc1, 0x6c], "ldp d14, d15, [x11], 0x10"),
- ([0xe8, 0x27, 0xc4, 0x6c], "ldp d8, d9, [sp], 0x40"),
+ ([0x02, 0x0e, 0x41, 0xad], "ldp q2, q3, [x16, #0x20]"),
+ ([0x68, 0x25, 0x41, 0xad], "ldp q8, q9, [x11, #0x20]"),
+ ([0x6c, 0x35, 0x41, 0xad], "ldp q12, q13, [x11, #0x20]"),
+ ([0x7c, 0x74, 0x42, 0xad], "ldp q28, q29, [x3, #0x40]"),
+ ([0x02, 0x0e, 0x43, 0xad], "ldp q2, q3, [x16, #0x60]"),
+ ([0x06, 0x1e, 0x43, 0xad], "ldp q6, q7, [x16, #0x60]"),
+ ([0x30, 0x44, 0x43, 0xad], "ldp q16, q17, [x1, #0x60]"),
+ ([0x3e, 0x7c, 0x47, 0xad], "ldp q30, q31, [x1, #0xe0]"),
+ ([0x6e, 0x3d, 0xc1, 0x6c], "ldp d14, d15, [x11], #0x10"),
+ ([0xe8, 0x27, 0xc4, 0x6c], "ldp d8, d9, [sp], #0x40"),
([0x81, 0x01, 0x00, 0x6d], "stp d1, d0, [x12]"),
([0x39, 0x60, 0x00, 0x6d], "stp d25, d24, [x1]"),
- ([0xdd, 0x71, 0x01, 0x6d], "stp d29, d28, [x14, 0x10]"),
- ([0xfd, 0x70, 0x31, 0x6d], "stp d29, d28, [x7, -0xf0]"),
- ([0x86, 0xd8, 0x3f, 0x6d], "stp d6, d22, [x4, -0x8]"),
+ ([0xdd, 0x71, 0x01, 0x6d], "stp d29, d28, [x14, #0x10]"),
+ ([0xfd, 0x70, 0x31, 0x6d], "stp d29, d28, [x7, #-0xf0]"),
+ ([0x86, 0xd8, 0x3f, 0x6d], "stp d6, d22, [x4, #-0x8]"),
([0x24, 0x00, 0x40, 0x6d], "ldp d4, d0, [x1]"),
([0xe1, 0x02, 0x40, 0x6d], "ldp d1, d0, [x23]"),
- ([0xb2, 0x45, 0x7f, 0x6d], "ldp d18, d17, [x13, -0x10]"),
- ([0x32, 0xc4, 0x7f, 0x6d], "ldp d18, d17, [x1, -0x8]"),
- ([0x33, 0xd0, 0x7f, 0x6d], "ldp d19, d20, [x1, -0x8]"),
- ([0x00, 0x84, 0x00, 0xfc], "str d0, [x0], 0x8"),
- ([0xc2, 0x87, 0x00, 0xfc], "str d2, [x30], 0x8"),
- ([0x40, 0x8f, 0x00, 0xfc], "str d0, [x26, 0x8]!"),
- ([0x15, 0x04, 0x01, 0xfc], "str d21, [x0], 0x10"),
- ([0xc2, 0x07, 0x01, 0xfc], "str d2, [x30], 0x10"),
- ([0x20, 0x84, 0x02, 0xfc], "str d0, [x1], 0x28"),
- ([0x66, 0x00, 0x15, 0xfc], "stur d6, [x3, -0xb0]"),
- ([0x29, 0x03, 0x1f, 0xfc], "stur d9, [x25, -0x10]"),
- ([0xe8, 0x0f, 0x1f, 0xfc], "str d8, [sp, -0x10]!"),
- ([0x6d, 0x83, 0x1f, 0xfc], "stur d13, [x27, -0x8]"),
- ([0xc3, 0x83, 0x1f, 0xfc], "stur d3, [x30, -0x8]"),
- ([0x0d, 0x84, 0x1f, 0xfc], "str d13, [x0], -0x8"),
- ([0x61, 0x8e, 0x1f, 0xfc], "str d1, [x19, -0x8]!"),
- ([0xa3, 0x68, 0x20, 0xfc], "str d3, [x5, x0]"),
- ([0xd2, 0x68, 0x20, 0xfc], "str d18, [x6, x0]"),
- ([0x94, 0x6b, 0x20, 0xfc], "str d20, [x28, x0]"),
- ([0x48, 0x78, 0x20, 0xfc], "str d8, [x2, x0, lsl 3]"),
- ([0x83, 0x7b, 0x77, 0xfc], "ldr d3, [x28, x23, lsl 3]"),
- ([0x80, 0xda, 0x77, 0xfc], "ldr d0, [x20, w23, sxtw 3]"),
- ([0x22, 0x6b, 0x78, 0xfc], "ldr d2, [x25, x24]"),
- ([0x08, 0x78, 0x78, 0xfc], "ldr d8, [x0, x24, lsl 3]"),
- ([0xf3, 0x9b, 0x41, 0xfd], "ldr d19, [sp, 0x330]"),
- ([0x4a, 0x44, 0x47, 0xfd], "ldr d10, [x2, 0xe88]"),
- ([0x01, 0xd0, 0x47, 0xfd], "ldr d1, [x0, 0xfa0]"),
- ([0xe8, 0x27, 0xbc, 0x6d], "stp d8, d9, [sp, -0x40]!"),
- ([0xe8, 0x27, 0xbf, 0x6d], "stp d8, d9, [sp, -0x10]!"),
- ([0xa2, 0x0f, 0x32, 0x3d], "str b2, [x29, 0xc83]"),
+ ([0xb2, 0x45, 0x7f, 0x6d], "ldp d18, d17, [x13, #-0x10]"),
+ ([0x32, 0xc4, 0x7f, 0x6d], "ldp d18, d17, [x1, #-0x8]"),
+ ([0x33, 0xd0, 0x7f, 0x6d], "ldp d19, d20, [x1, #-0x8]"),
+ ([0x00, 0x84, 0x00, 0xfc], "str d0, [x0], #0x8"),
+ ([0xc2, 0x87, 0x00, 0xfc], "str d2, [x30], #0x8"),
+ ([0x40, 0x8f, 0x00, 0xfc], "str d0, [x26, #0x8]!"),
+ ([0x15, 0x04, 0x01, 0xfc], "str d21, [x0], #0x10"),
+ ([0xc2, 0x07, 0x01, 0xfc], "str d2, [x30], #0x10"),
+ ([0x20, 0x84, 0x02, 0xfc], "str d0, [x1], #0x28"),
+ ([0x66, 0x00, 0x15, 0xfc], "stur d6, [x3, #-0xb0]"),
+ ([0x29, 0x03, 0x1f, 0xfc], "stur d9, [x25, #-0x10]"),
+ ([0xe8, 0x0f, 0x1f, 0xfc], "str d8, [sp, #-0x10]!"),
+ ([0x6d, 0x83, 0x1f, 0xfc], "stur d13, [x27, #-0x8]"),
+ ([0xc3, 0x83, 0x1f, 0xfc], "stur d3, [x30, #-0x8]"),
+ ([0x0d, 0x84, 0x1f, 0xfc], "str d13, [x0], #-0x8"),
+ ([0x61, 0x8e, 0x1f, 0xfc], "str d1, [x19, #-0x8]!"),
+ ([0xa3, 0x68, 0x20, 0xfc], "str d3, [x5, x0, lsl #0]"),
+ ([0xd2, 0x68, 0x20, 0xfc], "str d18, [x6, x0, lsl #0]"),
+ ([0x94, 0x6b, 0x20, 0xfc], "str d20, [x28, x0, lsl #0]"),
+ ([0x48, 0x78, 0x20, 0xfc], "str d8, [x2, x0, lsl #3]"),
+ ([0x83, 0x7b, 0x77, 0xfc], "ldr d3, [x28, x23, lsl #3]"),
+ ([0x80, 0xda, 0x77, 0xfc], "ldr d0, [x20, w23, sxtw #3]"),
+ ([0x22, 0x6b, 0x78, 0xfc], "ldr d2, [x25, x24, lsl #0]"),
+ ([0x08, 0x78, 0x78, 0xfc], "ldr d8, [x0, x24, lsl #3]"),
+ ([0xf3, 0x9b, 0x41, 0xfd], "ldr d19, [sp, #0x330]"),
+ ([0x4a, 0x44, 0x47, 0xfd], "ldr d10, [x2, #0xe88]"),
+ ([0x01, 0xd0, 0x47, 0xfd], "ldr d1, [x0, #0xfa0]"),
+ ([0xe8, 0x27, 0xbc, 0x6d], "stp d8, d9, [sp, #-0x40]!"),
+ ([0xe8, 0x27, 0xbf, 0x6d], "stp d8, d9, [sp, #-0x10]!"),
+ ([0xa2, 0x0f, 0x32, 0x3d], "str b2, [x29, #0xc83]"),
([0x97, 0xff, 0xff, 0x1c], "ldr s23, $-0x10"),
- ([0x6e, 0x3d, 0xc1, 0x2c], "ldp s14, s15, [x11], 0x8"),
+ ([0x6e, 0x3d, 0xc1, 0x2c], "ldp s14, s15, [x11], #0x8"),
([0xef, 0x7e, 0x40, 0x2d], "ldp s15, s31, [x23]"),
- ([0x41, 0x80, 0x40, 0x2d], "ldp s1, s0, [x2, 0x4]"),
- ([0x33, 0xd0, 0x7f, 0x2d], "ldp s19, s20, [x1, -0x4]"),
- ([0x60, 0x47, 0x00, 0xbc], "str s0, [x27], 0x4"),
- ([0x81, 0x47, 0x00, 0xbc], "str s1, [x28], 0x4"),
- ([0xc2, 0x47, 0x00, 0xbc], "str s2, [x30], 0x4"),
- ([0x00, 0x4d, 0x00, 0xbc], "str s0, [x8, 0x4]!"),
- ([0x40, 0x4f, 0x00, 0xbc], "str s0, [x26, 0x4]!"),
- ([0x15, 0x84, 0x00, 0xbc], "str s21, [x0], 0x8"),
- ([0x80, 0x87, 0x00, 0xbc], "str s0, [x28], 0x8"),
- ([0xf1, 0x00, 0x1c, 0xbc], "stur s17, [x7, -0x40]"),
- ([0x01, 0x04, 0x1f, 0xbc], "str s1, [x0], -0x10"),
- ([0x8d, 0xc3, 0x1f, 0xbc], "stur s13, [x28, -0x4]"),
- ([0x0d, 0xc4, 0x1f, 0xbc], "str s13, [x0], -0x4"),
- ([0x61, 0xce, 0x1f, 0xbc], "str s1, [x19, -0x4]!"),
- ([0x82, 0x6b, 0x20, 0xbc], "str s2, [x28, x0]"),
- ([0xad, 0x7a, 0x20, 0xbc], "str s13, [x21, x0, lsl 2]"),
- ([0x88, 0x7b, 0x21, 0xbc], "str s8, [x28, x1, lsl 2]"),
- ([0x60, 0xda, 0x21, 0xbc], "str s0, [x19, w1, sxtw 2]"),
- ([0xc0, 0x5a, 0x32, 0xbc], "str s0, [x22, w18, uxtw 2]"),
- ([0xb3, 0x85, 0x40, 0xbc], "ldr s19, [x13], 0x8"),
- ([0x02, 0x8f, 0x40, 0xbc], "ldr s2, [x24, 0x8]!"),
- ([0x71, 0x05, 0x41, 0xbc], "ldr s17, [x11], 0x10"),
- ([0xe0, 0x42, 0x5d, 0xbc], "ldur s0, [x23, -0x2c]"),
- ([0x27, 0x80, 0x5d, 0xbc], "ldur s7, [x1, -0x28]"),
- ([0x21, 0x84, 0x5f, 0xbc], "ldr s1, [x1], -0x8"),
- ([0x22, 0x87, 0x5f, 0xbc], "ldr s2, [x25], -0x8"),
- ([0xe0, 0x8e, 0x5f, 0xbc], "ldr s0, [x23, -0x8]!"),
- ([0x79, 0x6a, 0x60, 0xbc], "ldr s25, [x19, x0]"),
- ([0x6a, 0x78, 0x60, 0xbc], "ldr s10, [x3, x0, lsl 2]"),
- ([0xeb, 0x7a, 0x60, 0xbc], "ldr s11, [x23, x0, lsl 2]"),
- ([0x96, 0x7b, 0x61, 0xbc], "ldr s22, [x28, x1, lsl 2]"),
- ([0x68, 0xdb, 0x61, 0xbc], "ldr s8, [x27, w1, sxtw 2]"),
+ ([0x41, 0x80, 0x40, 0x2d], "ldp s1, s0, [x2, #0x4]"),
+ ([0x33, 0xd0, 0x7f, 0x2d], "ldp s19, s20, [x1, #-0x4]"),
+ ([0x60, 0x47, 0x00, 0xbc], "str s0, [x27], #0x4"),
+ ([0x81, 0x47, 0x00, 0xbc], "str s1, [x28], #0x4"),
+ ([0xc2, 0x47, 0x00, 0xbc], "str s2, [x30], #0x4"),
+ ([0x00, 0x4d, 0x00, 0xbc], "str s0, [x8, #0x4]!"),
+ ([0x40, 0x4f, 0x00, 0xbc], "str s0, [x26, #0x4]!"),
+ ([0x15, 0x84, 0x00, 0xbc], "str s21, [x0], #0x8"),
+ ([0x80, 0x87, 0x00, 0xbc], "str s0, [x28], #0x8"),
+ ([0xf1, 0x00, 0x1c, 0xbc], "stur s17, [x7, #-0x40]"),
+ ([0x01, 0x04, 0x1f, 0xbc], "str s1, [x0], #-0x10"),
+ ([0x8d, 0xc3, 0x1f, 0xbc], "stur s13, [x28, #-0x4]"),
+ ([0x0d, 0xc4, 0x1f, 0xbc], "str s13, [x0], #-0x4"),
+ ([0x61, 0xce, 0x1f, 0xbc], "str s1, [x19, #-0x4]!"),
+ ([0x82, 0x6b, 0x20, 0xbc], "str s2, [x28, x0, lsl #0]"),
+ ([0xad, 0x7a, 0x20, 0xbc], "str s13, [x21, x0, lsl #2]"),
+ ([0x88, 0x7b, 0x21, 0xbc], "str s8, [x28, x1, lsl #2]"),
+ ([0x60, 0xda, 0x21, 0xbc], "str s0, [x19, w1, sxtw #2]"),
+ ([0xc0, 0x5a, 0x32, 0xbc], "str s0, [x22, w18, uxtw #2]"),
+ ([0xb3, 0x85, 0x40, 0xbc], "ldr s19, [x13], #0x8"),
+ ([0x02, 0x8f, 0x40, 0xbc], "ldr s2, [x24, #0x8]!"),
+ ([0x71, 0x05, 0x41, 0xbc], "ldr s17, [x11], #0x10"),
+ ([0xe0, 0x42, 0x5d, 0xbc], "ldur s0, [x23, #-0x2c]"),
+ ([0x27, 0x80, 0x5d, 0xbc], "ldur s7, [x1, #-0x28]"),
+ ([0x21, 0x84, 0x5f, 0xbc], "ldr s1, [x1], #-0x8"),
+ ([0x22, 0x87, 0x5f, 0xbc], "ldr s2, [x25], #-0x8"),
+ ([0xe0, 0x8e, 0x5f, 0xbc], "ldr s0, [x23, #-0x8]!"),
+ ([0x79, 0x6a, 0x60, 0xbc], "ldr s25, [x19, x0, lsl #0]"),
+ ([0x6a, 0x78, 0x60, 0xbc], "ldr s10, [x3, x0, lsl #2]"),
+ ([0xeb, 0x7a, 0x60, 0xbc], "ldr s11, [x23, x0, lsl #2]"),
+ ([0x96, 0x7b, 0x61, 0xbc], "ldr s22, [x28, x1, lsl #2]"),
+ ([0x68, 0xdb, 0x61, 0xbc], "ldr s8, [x27, w1, sxtw #2]"),
([0x49, 0x03, 0x00, 0xbd], "str s9, [x26]"),
- ([0x62, 0x78, 0x00, 0xbd], "str s2, [x3, 0x78]"),
- ([0x6c, 0x78, 0x00, 0xbd], "str s12, [x3, 0x78]"),
- ([0xea, 0x7f, 0x00, 0xbd], "str s10, [sp, 0x7c]"),
- ([0xe9, 0x87, 0x04, 0xbd], "str s9, [sp, 0x484]"),
- ([0xc0, 0x8a, 0x0a, 0xbd], "str s0, [x22, 0xa88]"),
- ([0x41, 0x58, 0x4f, 0xbd], "ldr s1, [x2, 0xf58]"),
+ ([0x62, 0x78, 0x00, 0xbd], "str s2, [x3, #0x78]"),
+ ([0x6c, 0x78, 0x00, 0xbd], "str s12, [x3, #0x78]"),
+ ([0xea, 0x7f, 0x00, 0xbd], "str s10, [sp, #0x7c]"),
+ ([0xe9, 0x87, 0x04, 0xbd], "str s9, [sp, #0x484]"),
+ ([0xc0, 0x8a, 0x0a, 0xbd], "str s0, [x22, #0xa88]"),
+ ([0x41, 0x58, 0x4f, 0xbd], "ldr s1, [x2, #0xf58]"),
([0x88, 0x7c, 0x00, 0x2d], "stp s8, s31, [x4]"),
- ([0x03, 0x84, 0x00, 0x2d], "stp s3, s1, [x0, 0x4]"),
- ([0x13, 0xdc, 0x3f, 0x2d], "stp s19, s23, [x0, -0x4]"),
+ ([0x03, 0x84, 0x00, 0x2d], "stp s3, s1, [x0, #0x4]"),
+ ([0x13, 0xdc, 0x3f, 0x2d], "stp s19, s23, [x0, #-0x4]"),
];
let errs = run_tests(TESTS);
@@ -3016,136 +3016,136 @@ fn test_openblas_simd_loadstore() {
#[test]
fn test_openblas_loadstore() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x83, 0x68, 0x60, 0x38], "ldrb w3, [x4, x0]"),
+ ([0x83, 0x68, 0x60, 0x38], "ldrb w3, [x4, x0, lsl #0]"),
([0x63, 0x03, 0x40, 0x29], "ldp w3, w0, [x27]"),
([0x49, 0x00, 0x40, 0x39], "ldrb w9, [x2]"),
([0x4a, 0x00, 0x40, 0x39], "ldrb w10, [x2]"),
- ([0x82, 0x08, 0x40, 0x39], "ldrb w2, [x4, 0x2]"),
- ([0x82, 0x0a, 0x40, 0x39], "ldrb w2, [x20, 0x2]"),
- ([0x41, 0x0b, 0x40, 0x39], "ldrb w1, [x26, 0x2]"),
- ([0x88, 0x10, 0x40, 0x39], "ldrb w8, [x4, 0x4]"),
- ([0xc1, 0x16, 0x40, 0x39], "ldrb w1, [x22, 0x5]"),
- ([0xc2, 0x16, 0x40, 0x39], "ldrb w2, [x22, 0x5]"),
- ([0x00, 0x40, 0x40, 0x39], "ldrb w0, [x0, 0x10]"),
- ([0xe1, 0x43, 0x41, 0x39], "ldrb w1, [sp, 0x50]"),
- ([0xe0, 0x83, 0x41, 0x39], "ldrb w0, [sp, 0x60]"),
- ([0xe1, 0x8b, 0x41, 0x39], "ldrb w1, [sp, 0x62]"),
- ([0xe2, 0x8b, 0x41, 0x39], "ldrb w2, [sp, 0x62]"),
- ([0xe2, 0xa3, 0x41, 0x39], "ldrb w2, [sp, 0x68]"),
- ([0xe1, 0xb7, 0x41, 0x39], "ldrb w1, [sp, 0x6d]"),
- ([0xe2, 0xb7, 0x41, 0x39], "ldrb w2, [sp, 0x6d]"),
- ([0xf3, 0xcb, 0x41, 0x39], "ldrb w19, [sp, 0x72]"),
- ([0xe2, 0xeb, 0x41, 0x39], "ldrb w2, [sp, 0x7a]"),
- ([0xe1, 0x13, 0x42, 0x39], "ldrb w1, [sp, 0x84]"),
- ([0xe3, 0x13, 0x42, 0x39], "ldrb w3, [sp, 0x84]"),
- ([0xe7, 0x23, 0x42, 0x39], "ldrb w7, [sp, 0x88]"),
- ([0xe3, 0x37, 0x42, 0x39], "ldrb w3, [sp, 0x8d]"),
- ([0xe1, 0x4f, 0x42, 0x39], "ldrb w1, [sp, 0x93]"),
- ([0x60, 0x02, 0x72, 0x39], "ldrb w0, [x19, 0xc80]"),
+ ([0x82, 0x08, 0x40, 0x39], "ldrb w2, [x4, #0x2]"),
+ ([0x82, 0x0a, 0x40, 0x39], "ldrb w2, [x20, #0x2]"),
+ ([0x41, 0x0b, 0x40, 0x39], "ldrb w1, [x26, #0x2]"),
+ ([0x88, 0x10, 0x40, 0x39], "ldrb w8, [x4, #0x4]"),
+ ([0xc1, 0x16, 0x40, 0x39], "ldrb w1, [x22, #0x5]"),
+ ([0xc2, 0x16, 0x40, 0x39], "ldrb w2, [x22, #0x5]"),
+ ([0x00, 0x40, 0x40, 0x39], "ldrb w0, [x0, #0x10]"),
+ ([0xe1, 0x43, 0x41, 0x39], "ldrb w1, [sp, #0x50]"),
+ ([0xe0, 0x83, 0x41, 0x39], "ldrb w0, [sp, #0x60]"),
+ ([0xe1, 0x8b, 0x41, 0x39], "ldrb w1, [sp, #0x62]"),
+ ([0xe2, 0x8b, 0x41, 0x39], "ldrb w2, [sp, #0x62]"),
+ ([0xe2, 0xa3, 0x41, 0x39], "ldrb w2, [sp, #0x68]"),
+ ([0xe1, 0xb7, 0x41, 0x39], "ldrb w1, [sp, #0x6d]"),
+ ([0xe2, 0xb7, 0x41, 0x39], "ldrb w2, [sp, #0x6d]"),
+ ([0xf3, 0xcb, 0x41, 0x39], "ldrb w19, [sp, #0x72]"),
+ ([0xe2, 0xeb, 0x41, 0x39], "ldrb w2, [sp, #0x7a]"),
+ ([0xe1, 0x13, 0x42, 0x39], "ldrb w1, [sp, #0x84]"),
+ ([0xe3, 0x13, 0x42, 0x39], "ldrb w3, [sp, #0x84]"),
+ ([0xe7, 0x23, 0x42, 0x39], "ldrb w7, [sp, #0x88]"),
+ ([0xe3, 0x37, 0x42, 0x39], "ldrb w3, [sp, #0x8d]"),
+ ([0xe1, 0x4f, 0x42, 0x39], "ldrb w1, [sp, #0x93]"),
+ ([0x60, 0x02, 0x72, 0x39], "ldrb w0, [x19, #0xc80]"),
([0x22, 0x04, 0x40, 0x69], "ldpsw x2, x1, [x1]"),
([0x38, 0x15, 0x40, 0x69], "ldpsw x24, x5, [x9]"),
([0x38, 0x1d, 0x40, 0x69], "ldpsw x24, x7, [x9]"),
- ([0x43, 0x80, 0x40, 0x69], "ldpsw x3, x0, [x2, 0x4]"),
- ([0x05, 0x90, 0x40, 0x69], "ldpsw x5, x4, [x0, 0x4]"),
- ([0x39, 0x90, 0x40, 0x69], "ldpsw x25, x4, [x1, 0x4]"),
- ([0x05, 0x98, 0x40, 0x69], "ldpsw x5, x6, [x0, 0x4]"),
- ([0xe1, 0x13, 0x5f, 0x69], "ldpsw x1, x4, [sp, 0xf8]"),
- ([0xe3, 0x33, 0x45, 0x78], "ldurh w3, [sp, 0x53]"),
- ([0xe1, 0x13, 0x46, 0x78], "ldurh w1, [sp, 0x61]"),
- ([0xe2, 0x93, 0x46, 0x78], "ldurh w2, [sp, 0x69]"),
- ([0xe2, 0xb3, 0x46, 0x78], "ldurh w2, [sp, 0x6b]"),
- ([0xe5, 0xb3, 0x48, 0x78], "ldurh w5, [sp, 0x8b]"),
- ([0xe5, 0x8b, 0x00, 0x79], "strh w5, [sp, 0x44]"),
- ([0xe2, 0xa3, 0x00, 0x79], "strh w2, [sp, 0x50]"),
- ([0xe0, 0xab, 0x00, 0x79], "strh w0, [sp, 0x54]"),
- ([0xe1, 0xb3, 0x00, 0x79], "strh w1, [sp, 0x58]"),
- ([0xe2, 0xc3, 0x00, 0x79], "strh w2, [sp, 0x60]"),
- ([0xe5, 0xf3, 0x00, 0x79], "strh w5, [sp, 0x78]"),
+ ([0x43, 0x80, 0x40, 0x69], "ldpsw x3, x0, [x2, #0x4]"),
+ ([0x05, 0x90, 0x40, 0x69], "ldpsw x5, x4, [x0, #0x4]"),
+ ([0x39, 0x90, 0x40, 0x69], "ldpsw x25, x4, [x1, #0x4]"),
+ ([0x05, 0x98, 0x40, 0x69], "ldpsw x5, x6, [x0, #0x4]"),
+ ([0xe1, 0x13, 0x5f, 0x69], "ldpsw x1, x4, [sp, #0xf8]"),
+ ([0xe3, 0x33, 0x45, 0x78], "ldurh w3, [sp, #0x53]"),
+ ([0xe1, 0x13, 0x46, 0x78], "ldurh w1, [sp, #0x61]"),
+ ([0xe2, 0x93, 0x46, 0x78], "ldurh w2, [sp, #0x69]"),
+ ([0xe2, 0xb3, 0x46, 0x78], "ldurh w2, [sp, #0x6b]"),
+ ([0xe5, 0xb3, 0x48, 0x78], "ldurh w5, [sp, #0x8b]"),
+ ([0xe5, 0x8b, 0x00, 0x79], "strh w5, [sp, #0x44]"),
+ ([0xe2, 0xa3, 0x00, 0x79], "strh w2, [sp, #0x50]"),
+ ([0xe0, 0xab, 0x00, 0x79], "strh w0, [sp, #0x54]"),
+ ([0xe1, 0xb3, 0x00, 0x79], "strh w1, [sp, #0x58]"),
+ ([0xe2, 0xc3, 0x00, 0x79], "strh w2, [sp, #0x60]"),
+ ([0xe5, 0xf3, 0x00, 0x79], "strh w5, [sp, #0x78]"),
([0x01, 0x00, 0x40, 0x79], "ldrh w1, [x0]"),
([0x02, 0x00, 0x40, 0x79], "ldrh w2, [x0]"),
([0x22, 0x00, 0x40, 0x79], "ldrh w2, [x1]"),
([0x83, 0x02, 0x40, 0x79], "ldrh w3, [x20]"),
([0x42, 0x03, 0x40, 0x79], "ldrh w2, [x26]"),
- ([0x20, 0x08, 0x40, 0x79], "ldrh w0, [x1, 0x4]"),
- ([0xe0, 0xa3, 0x40, 0x79], "ldrh w0, [sp, 0x50]"),
- ([0xe1, 0xa3, 0x40, 0x79], "ldrh w1, [sp, 0x50]"),
- ([0xe0, 0xb3, 0x40, 0x79], "ldrh w0, [sp, 0x58]"),
- ([0xe0, 0xc3, 0x40, 0x79], "ldrh w0, [sp, 0x60]"),
- ([0xe2, 0xc3, 0x40, 0x79], "ldrh w2, [sp, 0x60]"),
- ([0xe3, 0xf3, 0x40, 0x79], "ldrh w3, [sp, 0x78]"),
- ([0xfd, 0x7b, 0xc1, 0xa8], "ldp x29, x30, [sp], 0x10"),
- ([0xfd, 0x7b, 0xd9, 0xa8], "ldp x29, x30, [sp], 0x190"),
- ([0xfd, 0x7b, 0xda, 0xa8], "ldp x29, x30, [sp], 0x1a0"),
+ ([0x20, 0x08, 0x40, 0x79], "ldrh w0, [x1, #0x4]"),
+ ([0xe0, 0xa3, 0x40, 0x79], "ldrh w0, [sp, #0x50]"),
+ ([0xe1, 0xa3, 0x40, 0x79], "ldrh w1, [sp, #0x50]"),
+ ([0xe0, 0xb3, 0x40, 0x79], "ldrh w0, [sp, #0x58]"),
+ ([0xe0, 0xc3, 0x40, 0x79], "ldrh w0, [sp, #0x60]"),
+ ([0xe2, 0xc3, 0x40, 0x79], "ldrh w2, [sp, #0x60]"),
+ ([0xe3, 0xf3, 0x40, 0x79], "ldrh w3, [sp, #0x78]"),
+ ([0xfd, 0x7b, 0xc1, 0xa8], "ldp x29, x30, [sp], #0x10"),
+ ([0xfd, 0x7b, 0xd9, 0xa8], "ldp x29, x30, [sp], #0x190"),
+ ([0xfd, 0x7b, 0xda, 0xa8], "ldp x29, x30, [sp], #0x1a0"),
([0x3c, 0x61, 0x00, 0xa9], "stp x28, x24, [x9]"),
([0xba, 0x61, 0x00, 0xa9], "stp x26, x24, [x13]"),
([0xed, 0x6f, 0x00, 0xa9], "stp x13, x27, [sp]"),
- ([0xea, 0x9f, 0x1c, 0xa9], "stp x10, x7, [sp, 0x1c8]"),
- ([0xff, 0x7c, 0x3e, 0xa9], "stp xzr, xzr, [x7, -0x20]"),
+ ([0xea, 0x9f, 0x1c, 0xa9], "stp x10, x7, [sp, #0x1c8]"),
+ ([0xff, 0x7c, 0x3e, 0xa9], "stp xzr, xzr, [x7, #-0x20]"),
([0x03, 0x00, 0x40, 0xa9], "ldp x3, x0, [x0]"),
([0x2a, 0x00, 0x40, 0xa9], "ldp x10, x0, [x1]"),
([0x5a, 0x28, 0x40, 0xa9], "ldp x26, x10, [x2]"),
- ([0x16, 0x87, 0x7f, 0xa9], "ldp x22, x1, [x24, -0x8]"),
- ([0xc1, 0x46, 0x00, 0xb8], "str w1, [x22], 0x4"),
- ([0x3f, 0x47, 0x00, 0xb8], "str wzr, [x25], 0x4"),
- ([0x7f, 0x4c, 0x00, 0xb8], "str wzr, [x3, 0x4]!"),
- ([0x1f, 0x4d, 0x00, 0xb8], "str wzr, [x8, 0x4]!"),
- ([0x3f, 0x84, 0x00, 0xb8], "str wzr, [x1], 0x8"),
- ([0x7f, 0x0e, 0x04, 0xb8], "str wzr, [x19, 0x40]!"),
- ([0x9f, 0x0e, 0x04, 0xb8], "str wzr, [x20, 0x40]!"),
- ([0xe9, 0x93, 0x08, 0xb8], "stur w9, [sp, 0x89]"),
- ([0x1f, 0x40, 0x10, 0xb8], "stur wzr, [x0, -0xfc]"),
- ([0x1f, 0xc0, 0x11, 0xb8], "stur wzr, [x0, -0xe4]"),
- ([0xff, 0x82, 0x14, 0xb8], "stur wzr, [x23, -0xb8]"),
- ([0x0b, 0x83, 0x14, 0xb8], "stur w11, [x24, -0xb8]"),
- ([0xff, 0x69, 0x20, 0xb8], "str wzr, [x15, x0]"),
- ([0x57, 0x78, 0x20, 0xb8], "str w23, [x2, x0, lsl 2]"),
- ([0x7f, 0x68, 0x21, 0xb8], "str wzr, [x3, x1]"),
- ([0xa8, 0x68, 0x21, 0xb8], "str w8, [x5, x1]"),
- ([0xe0, 0xda, 0x34, 0xb8], "str w0, [x23, w20, sxtw 2]"),
- ([0x48, 0x7b, 0x35, 0xb8], "str w8, [x26, x21, lsl 2]"),
- ([0x23, 0x44, 0x40, 0xb8], "ldr w3, [x1], 0x4"),
- ([0xe1, 0x13, 0x45, 0xb8], "ldur w1, [sp, 0x51]"),
- ([0xe2, 0xf3, 0x48, 0xb8], "ldur w2, [sp, 0x8f]"),
- ([0x27, 0x80, 0x5f, 0xb8], "ldur w7, [x1, -0x8]"),
- ([0xe3, 0x68, 0x61, 0xb8], "ldr w3, [x7, x1]"),
- ([0x0e, 0x79, 0x61, 0xb8], "ldr w14, [x8, x1, lsl 2]"),
- ([0xf2, 0x6a, 0x62, 0xb8], "ldr w18, [x23, x2]"),
- ([0x63, 0x7b, 0x7c, 0xb8], "ldr w3, [x27, x28, lsl 2]"),
- ([0xe5, 0x44, 0x80, 0xb8], "ldrsw x5, [x7], 0x4"),
- ([0xa3, 0xc0, 0x9f, 0xb8], "ldursw x3, [x5, -0x4]"),
- ([0x04, 0x78, 0xa2, 0xb8], "ldrsw x4, [x0, x2, lsl 2]"),
- ([0xe4, 0x68, 0xa3, 0xb8], "ldrsw x4, [x7, x3]"),
- ([0xe5, 0x6a, 0xb3, 0xb8], "ldrsw x5, [x23, x19]"),
+ ([0x16, 0x87, 0x7f, 0xa9], "ldp x22, x1, [x24, #-0x8]"),
+ ([0xc1, 0x46, 0x00, 0xb8], "str w1, [x22], #0x4"),
+ ([0x3f, 0x47, 0x00, 0xb8], "str wzr, [x25], #0x4"),
+ ([0x7f, 0x4c, 0x00, 0xb8], "str wzr, [x3, #0x4]!"),
+ ([0x1f, 0x4d, 0x00, 0xb8], "str wzr, [x8, #0x4]!"),
+ ([0x3f, 0x84, 0x00, 0xb8], "str wzr, [x1], #0x8"),
+ ([0x7f, 0x0e, 0x04, 0xb8], "str wzr, [x19, #0x40]!"),
+ ([0x9f, 0x0e, 0x04, 0xb8], "str wzr, [x20, #0x40]!"),
+ ([0xe9, 0x93, 0x08, 0xb8], "stur w9, [sp, #0x89]"),
+ ([0x1f, 0x40, 0x10, 0xb8], "stur wzr, [x0, #-0xfc]"),
+ ([0x1f, 0xc0, 0x11, 0xb8], "stur wzr, [x0, #-0xe4]"),
+ ([0xff, 0x82, 0x14, 0xb8], "stur wzr, [x23, #-0xb8]"),
+ ([0x0b, 0x83, 0x14, 0xb8], "stur w11, [x24, #-0xb8]"),
+ ([0xff, 0x69, 0x20, 0xb8], "str wzr, [x15, x0, lsl #0]"),
+ ([0x57, 0x78, 0x20, 0xb8], "str w23, [x2, x0, lsl #2]"),
+ ([0x7f, 0x68, 0x21, 0xb8], "str wzr, [x3, x1, lsl #0]"),
+ ([0xa8, 0x68, 0x21, 0xb8], "str w8, [x5, x1, lsl #0]"),
+ ([0xe0, 0xda, 0x34, 0xb8], "str w0, [x23, w20, sxtw #2]"),
+ ([0x48, 0x7b, 0x35, 0xb8], "str w8, [x26, x21, lsl #2]"),
+ ([0x23, 0x44, 0x40, 0xb8], "ldr w3, [x1], #0x4"),
+ ([0xe1, 0x13, 0x45, 0xb8], "ldur w1, [sp, #0x51]"),
+ ([0xe2, 0xf3, 0x48, 0xb8], "ldur w2, [sp, #0x8f]"),
+ ([0x27, 0x80, 0x5f, 0xb8], "ldur w7, [x1, #-0x8]"),
+ ([0xe3, 0x68, 0x61, 0xb8], "ldr w3, [x7, x1, lsl #0]"),
+ ([0x0e, 0x79, 0x61, 0xb8], "ldr w14, [x8, x1, lsl #2]"),
+ ([0xf2, 0x6a, 0x62, 0xb8], "ldr w18, [x23, x2, lsl #0]"),
+ ([0x63, 0x7b, 0x7c, 0xb8], "ldr w3, [x27, x28, lsl #2]"),
+ ([0xe5, 0x44, 0x80, 0xb8], "ldrsw x5, [x7], #0x4"),
+ ([0xa3, 0xc0, 0x9f, 0xb8], "ldursw x3, [x5, #-0x4]"),
+ ([0x04, 0x78, 0xa2, 0xb8], "ldrsw x4, [x0, x2, lsl #2]"),
+ ([0xe4, 0x68, 0xa3, 0xb8], "ldrsw x4, [x7, x3, lsl #0]"),
+ ([0xe5, 0x6a, 0xb3, 0xb8], "ldrsw x5, [x23, x19, lsl #0]"),
([0x65, 0x02, 0x00, 0xb9], "str w5, [x19]"),
([0xff, 0x03, 0x00, 0xb9], "str wzr, [sp]"),
- ([0xe9, 0x23, 0x00, 0xb9], "str w9, [sp, 0x20]"),
- ([0x01, 0x3c, 0x0c, 0xb9], "str w1, [x0, 0xc3c]"),
- ([0x60, 0x4a, 0x0c, 0xb9], "str w0, [x19, 0xc48]"),
- ([0x7f, 0x4a, 0x0c, 0xb9], "str wzr, [x19, 0xc48]"),
- ([0x40, 0xf0, 0x0d, 0xb9], "str w0, [x2, 0xdf0]"),
+ ([0xe9, 0x23, 0x00, 0xb9], "str w9, [sp, #0x20]"),
+ ([0x01, 0x3c, 0x0c, 0xb9], "str w1, [x0, #0xc3c]"),
+ ([0x60, 0x4a, 0x0c, 0xb9], "str w0, [x19, #0xc48]"),
+ ([0x7f, 0x4a, 0x0c, 0xb9], "str wzr, [x19, #0xc48]"),
+ ([0x40, 0xf0, 0x0d, 0xb9], "str w0, [x2, #0xdf0]"),
([0x89, 0x00, 0x40, 0xb9], "ldr w9, [x4]"),
- ([0xa0, 0x6f, 0x40, 0xb9], "ldr w0, [x29, 0x6c]"),
- ([0xe4, 0x6f, 0x40, 0xb9], "ldr w4, [sp, 0x6c]"),
- ([0xea, 0xc3, 0x6e, 0xb9], "ldr w10, [sp, 0x2ec0]"),
- ([0xeb, 0xc3, 0x6e, 0xb9], "ldr w11, [sp, 0x2ec0]"),
- ([0xea, 0xcb, 0x6e, 0xb9], "ldr w10, [sp, 0x2ec8]"),
- ([0xf9, 0x03, 0x6f, 0xb9], "ldr w25, [sp, 0x2f00]"),
- ([0xf9, 0x0b, 0x6f, 0xb9], "ldr w25, [sp, 0x2f08]"),
- ([0xf7, 0x33, 0x6f, 0xb9], "ldr w23, [sp, 0x2f30]"),
- ([0xf7, 0x3b, 0x6f, 0xb9], "ldr w23, [sp, 0x2f38]"),
- ([0xec, 0x1b, 0x71, 0xb9], "ldr w12, [sp, 0x3118]"),
- ([0xeb, 0x23, 0x71, 0xb9], "ldr w11, [sp, 0x3120]"),
- ([0xe0, 0x73, 0x71, 0xb9], "ldr w0, [sp, 0x3170]"),
- ([0xe0, 0x7b, 0x71, 0xb9], "ldr w0, [sp, 0x3178]"),
- ([0xe0, 0x83, 0x71, 0xb9], "ldr w0, [sp, 0x3180]"),
- ([0xe0, 0x8b, 0x71, 0xb9], "ldr w0, [sp, 0x3188]"),
- ([0xe9, 0x1b, 0x72, 0xb9], "ldr w9, [sp, 0x3218]"),
- ([0xeb, 0x23, 0x72, 0xb9], "ldr w11, [sp, 0x3220]"),
- ([0xea, 0x2b, 0x72, 0xb9], "ldr w10, [sp, 0x3228]"),
- ([0xeb, 0x33, 0x72, 0xb9], "ldr w11, [sp, 0x3230]"),
+ ([0xa0, 0x6f, 0x40, 0xb9], "ldr w0, [x29, #0x6c]"),
+ ([0xe4, 0x6f, 0x40, 0xb9], "ldr w4, [sp, #0x6c]"),
+ ([0xea, 0xc3, 0x6e, 0xb9], "ldr w10, [sp, #0x2ec0]"),
+ ([0xeb, 0xc3, 0x6e, 0xb9], "ldr w11, [sp, #0x2ec0]"),
+ ([0xea, 0xcb, 0x6e, 0xb9], "ldr w10, [sp, #0x2ec8]"),
+ ([0xf9, 0x03, 0x6f, 0xb9], "ldr w25, [sp, #0x2f00]"),
+ ([0xf9, 0x0b, 0x6f, 0xb9], "ldr w25, [sp, #0x2f08]"),
+ ([0xf7, 0x33, 0x6f, 0xb9], "ldr w23, [sp, #0x2f30]"),
+ ([0xf7, 0x3b, 0x6f, 0xb9], "ldr w23, [sp, #0x2f38]"),
+ ([0xec, 0x1b, 0x71, 0xb9], "ldr w12, [sp, #0x3118]"),
+ ([0xeb, 0x23, 0x71, 0xb9], "ldr w11, [sp, #0x3120]"),
+ ([0xe0, 0x73, 0x71, 0xb9], "ldr w0, [sp, #0x3170]"),
+ ([0xe0, 0x7b, 0x71, 0xb9], "ldr w0, [sp, #0x3178]"),
+ ([0xe0, 0x83, 0x71, 0xb9], "ldr w0, [sp, #0x3180]"),
+ ([0xe0, 0x8b, 0x71, 0xb9], "ldr w0, [sp, #0x3188]"),
+ ([0xe9, 0x1b, 0x72, 0xb9], "ldr w9, [sp, #0x3218]"),
+ ([0xeb, 0x23, 0x72, 0xb9], "ldr w11, [sp, #0x3220]"),
+ ([0xea, 0x2b, 0x72, 0xb9], "ldr w10, [sp, #0x3228]"),
+ ([0xeb, 0x33, 0x72, 0xb9], "ldr w11, [sp, #0x3230]"),
([0x24, 0x03, 0x80, 0xb9], "ldrsw x4, [x25]"),
- ([0x34, 0x10, 0x80, 0xb9], "ldrsw x20, [x1, 0x10]"),
- ([0xc8, 0x7c, 0x89, 0xb9], "ldrsw x8, [x6, 0x97c]"),
+ ([0x34, 0x10, 0x80, 0xb9], "ldrsw x20, [x1, #0x10]"),
+ ([0xc8, 0x7c, 0x89, 0xb9], "ldrsw x8, [x6, #0x97c]"),
([0x7f, 0xfe, 0x01, 0xc8], "stlxr w1, xzr, [x19]"),
([0xbf, 0xfe, 0x01, 0xc8], "stlxr w1, xzr, [x21]"),
([0x64, 0x7e, 0x03, 0xc8], "stxr w3, x4, [x19]"),
@@ -3154,37 +3154,37 @@ fn test_openblas_loadstore() {
([0x3f, 0xfc, 0x9f, 0xc8], "stlr xzr, [x1]"),
([0x81, 0xfd, 0x9f, 0xc8], "stlr x1, [x12]"),
([0x77, 0xfe, 0xdf, 0xc8], "ldar x23, [x19]"),
- ([0xff, 0x42, 0x00, 0xf8], "stur xzr, [x23, 0x4]"),
- ([0x3f, 0x84, 0x00, 0xf8], "str xzr, [x1], 0x8"),
- ([0x3f, 0x87, 0x00, 0xf8], "str xzr, [x25], 0x8"),
- ([0x1f, 0x8c, 0x00, 0xf8], "str xzr, [x0, 0x8]!"),
- ([0x02, 0x8f, 0x00, 0xf8], "str x2, [x24, 0x8]!"),
- ([0x20, 0xc0, 0x00, 0xf8], "stur x0, [x1, 0xc]"),
- ([0x3f, 0x04, 0x01, 0xf8], "str xzr, [x1], 0x10"),
- ([0xe1, 0xc3, 0x07, 0xf8], "stur x1, [sp, 0x7c]"),
- ([0x7f, 0x80, 0x10, 0xf8], "stur xzr, [x3, -0xf8]"),
- ([0xc3, 0x00, 0x1c, 0xf8], "stur x3, [x6, -0x40]"),
- ([0x02, 0x87, 0x1f, 0xf8], "str x2, [x24], -0x8"),
- ([0x1f, 0xc3, 0x1f, 0xf8], "stur xzr, [x24, -0x4]"),
- ([0xbf, 0x68, 0x20, 0xf8], "str xzr, [x5, x0]"),
- ([0xff, 0x6a, 0x38, 0xf8], "str xzr, [x23, x24]"),
- ([0x7f, 0x7b, 0x3c, 0xf8], "str xzr, [x27, x28, lsl 3]"),
- ([0xc7, 0x40, 0x40, 0xf8], "ldur x7, [x6, 0x4]"),
- ([0x01, 0x87, 0x40, 0xf8], "ldr x1, [x24], 0x8"),
- ([0x98, 0x83, 0x5f, 0xf8], "ldur x24, [x28, -0x8]"),
- ([0x80, 0x86, 0x5f, 0xf8], "ldr x0, [x20], -0x8"),
- ([0xe3, 0x6a, 0x60, 0xf8], "ldr x3, [x23, x0]"),
- ([0xc5, 0x6a, 0x7b, 0xf8], "ldr x5, [x22, x27]"),
- ([0xa0, 0x7a, 0x7c, 0xf8], "ldr x0, [x21, x28, lsl 3]"),
- ([0x08, 0xdb, 0x7c, 0xf8], "ldr x8, [x24, w28, sxtw 3]"),
+ ([0xff, 0x42, 0x00, 0xf8], "stur xzr, [x23, #0x4]"),
+ ([0x3f, 0x84, 0x00, 0xf8], "str xzr, [x1], #0x8"),
+ ([0x3f, 0x87, 0x00, 0xf8], "str xzr, [x25], #0x8"),
+ ([0x1f, 0x8c, 0x00, 0xf8], "str xzr, [x0, #0x8]!"),
+ ([0x02, 0x8f, 0x00, 0xf8], "str x2, [x24, #0x8]!"),
+ ([0x20, 0xc0, 0x00, 0xf8], "stur x0, [x1, #0xc]"),
+ ([0x3f, 0x04, 0x01, 0xf8], "str xzr, [x1], #0x10"),
+ ([0xe1, 0xc3, 0x07, 0xf8], "stur x1, [sp, #0x7c]"),
+ ([0x7f, 0x80, 0x10, 0xf8], "stur xzr, [x3, #-0xf8]"),
+ ([0xc3, 0x00, 0x1c, 0xf8], "stur x3, [x6, #-0x40]"),
+ ([0x02, 0x87, 0x1f, 0xf8], "str x2, [x24], #-0x8"),
+ ([0x1f, 0xc3, 0x1f, 0xf8], "stur xzr, [x24, #-0x4]"),
+ ([0xbf, 0x68, 0x20, 0xf8], "str xzr, [x5, x0, lsl #0]"),
+ ([0xff, 0x6a, 0x38, 0xf8], "str xzr, [x23, x24, lsl #0]"),
+ ([0x7f, 0x7b, 0x3c, 0xf8], "str xzr, [x27, x28, lsl #3]"),
+ ([0xc7, 0x40, 0x40, 0xf8], "ldur x7, [x6, #0x4]"),
+ ([0x01, 0x87, 0x40, 0xf8], "ldr x1, [x24], #0x8"),
+ ([0x98, 0x83, 0x5f, 0xf8], "ldur x24, [x28, #-0x8]"),
+ ([0x80, 0x86, 0x5f, 0xf8], "ldr x0, [x20], #-0x8"),
+ ([0xe3, 0x6a, 0x60, 0xf8], "ldr x3, [x23, x0, lsl #0]"),
+ ([0xc5, 0x6a, 0x7b, 0xf8], "ldr x5, [x22, x27, lsl #0]"),
+ ([0xa0, 0x7a, 0x7c, 0xf8], "ldr x0, [x21, x28, lsl #3]"),
+ ([0x08, 0xdb, 0x7c, 0xf8], "ldr x8, [x24, w28, sxtw #3]"),
([0x5f, 0x00, 0x00, 0xf9], "str xzr, [x2]"),
- ([0x2a, 0x6d, 0x04, 0xf9], "str x10, [x9, 0x8d8]"),
- ([0xeb, 0x1f, 0x18, 0xf9], "str x11, [sp, 0x3038]"),
- ([0xff, 0x7f, 0x18, 0xf9], "str xzr, [sp, 0x30f8]"),
- ([0xe9, 0x2f, 0x25, 0xf9], "str x9, [sp, 0x4a58]"),
- ([0xe1, 0xd7, 0x26, 0xf9], "str x1, [sp, 0x4da8]"),
+ ([0x2a, 0x6d, 0x04, 0xf9], "str x10, [x9, #0x8d8]"),
+ ([0xeb, 0x1f, 0x18, 0xf9], "str x11, [sp, #0x3038]"),
+ ([0xff, 0x7f, 0x18, 0xf9], "str xzr, [sp, #0x30f8]"),
+ ([0xe9, 0x2f, 0x25, 0xf9], "str x9, [sp, #0x4a58]"),
+ ([0xe1, 0xd7, 0x26, 0xf9], "str x1, [sp, #0x4da8]"),
([0x42, 0x01, 0x40, 0xf9], "ldr x2, [x10]"),
- ([0xf7, 0xef, 0x66, 0xf9], "ldr x23, [sp, 0x4dd8]"),
+ ([0xf7, 0xef, 0x66, 0xf9], "ldr x23, [sp, #0x4dd8]"),
([0x01, 0x00, 0x00, 0xb0], "adrp x1, $+0x1000"),
([0xea, 0x6e, 0x00, 0xb0], "adrp x10, $+0xddd000"),
([0x13, 0x70, 0x00, 0xb0], "adrp x19, $+0xe01000"),
@@ -3194,10 +3194,10 @@ fn test_openblas_loadstore() {
([0x01, 0x00, 0x00, 0xd0], "adrp x1, $+0x2000"),
([0x13, 0x70, 0x00, 0xd0], "adrp x19, $+0xe02000"),
([0xfc, 0xff, 0xff, 0xf0], "adrp x28, $-0x1000"),
- ([0xfd, 0x7b, 0xa1, 0xa9], "stp x29, x30, [sp, -0x1f0]!"),
- ([0xfd, 0x7b, 0xa2, 0xa9], "stp x29, x30, [sp, -0x1e0]!"),
- ([0xfd, 0x7b, 0xbf, 0xa9], "stp x29, x30, [sp, -0x10]!"),
- ([0x23, 0xf0, 0x1f, 0x38], "sturb w3, [x1, -0x1]"),
+ ([0xfd, 0x7b, 0xa1, 0xa9], "stp x29, x30, [sp, #-0x1f0]!"),
+ ([0xfd, 0x7b, 0xa2, 0xa9], "stp x29, x30, [sp, #-0x1e0]!"),
+ ([0xfd, 0x7b, 0xbf, 0xa9], "stp x29, x30, [sp, #-0x10]!"),
+ ([0x23, 0xf0, 0x1f, 0x38], "sturb w3, [x1, #-0x1]"),
([0x01, 0x00, 0x00, 0x39], "strb w1, [x0]"),
([0x20, 0x00, 0x00, 0x39], "strb w0, [x1]"),
([0x80, 0x00, 0x00, 0x39], "strb w0, [x4]"),
@@ -3207,32 +3207,32 @@ fn test_openblas_loadstore() {
([0xe0, 0x02, 0x00, 0x39], "strb w0, [x23]"),
([0x20, 0x03, 0x00, 0x39], "strb w0, [x25]"),
([0x40, 0x03, 0x00, 0x39], "strb w0, [x26]"),
- ([0x68, 0x13, 0x00, 0x39], "strb w8, [x27, 0x4]"),
- ([0xe0, 0x03, 0x01, 0x39], "strb w0, [sp, 0x40]"),
- ([0xe1, 0x43, 0x01, 0x39], "strb w1, [sp, 0x50]"),
- ([0xe1, 0x8b, 0x01, 0x39], "strb w1, [sp, 0x62]"),
- ([0xe2, 0xa3, 0x01, 0x39], "strb w2, [sp, 0x68]"),
- ([0xe5, 0x03, 0x0c, 0x39], "strb w5, [sp, 0x300]"),
- ([0xe0, 0xe3, 0x0d, 0x39], "strb w0, [sp, 0x378]"),
- ([0xe1, 0xe3, 0x0d, 0x39], "strb w1, [sp, 0x378]"),
- ([0xe2, 0xe3, 0x0d, 0x39], "strb w2, [sp, 0x378]"),
- ([0xe0, 0x03, 0x0e, 0x39], "strb w0, [sp, 0x380]"),
- ([0xe0, 0x23, 0x0e, 0x39], "strb w0, [sp, 0x388]"),
- ([0xe1, 0x23, 0x0e, 0x39], "strb w1, [sp, 0x388]"),
- ([0xe2, 0x23, 0x0e, 0x39], "strb w2, [sp, 0x388]"),
- ([0xe0, 0x43, 0x0e, 0x39], "strb w0, [sp, 0x390]"),
- ([0xe0, 0x23, 0x0f, 0x39], "strb w0, [sp, 0x3c8]"),
- ([0xe1, 0x23, 0x0f, 0x39], "strb w1, [sp, 0x3c8]"),
- ([0xe2, 0x23, 0x0f, 0x39], "strb w2, [sp, 0x3c8]"),
- ([0xe0, 0x43, 0x0f, 0x39], "strb w0, [sp, 0x3d0]"),
- ([0xe0, 0xa3, 0x0f, 0x39], "strb w0, [sp, 0x3e8]"),
- ([0xe1, 0xa3, 0x0f, 0x39], "strb w1, [sp, 0x3e8]"),
- ([0xe2, 0xa3, 0x0f, 0x39], "strb w2, [sp, 0x3e8]"),
- ([0xe0, 0xc3, 0x0f, 0x39], "strb w0, [sp, 0x3f0]"),
- ([0x60, 0x02, 0x32, 0x39], "strb w0, [x19, 0xc80]"),
- ([0x13, 0xb8, 0x00, 0x29], "stp w19, w14, [x0, 0x4]"),
- ([0xeb, 0x9f, 0x1f, 0x29], "stp w11, w7, [sp, 0xfc]"),
- ([0x7f, 0x7c, 0x3f, 0x29], "stp wzr, wzr, [x3, -0x8]"),
+ ([0x68, 0x13, 0x00, 0x39], "strb w8, [x27, #0x4]"),
+ ([0xe0, 0x03, 0x01, 0x39], "strb w0, [sp, #0x40]"),
+ ([0xe1, 0x43, 0x01, 0x39], "strb w1, [sp, #0x50]"),
+ ([0xe1, 0x8b, 0x01, 0x39], "strb w1, [sp, #0x62]"),
+ ([0xe2, 0xa3, 0x01, 0x39], "strb w2, [sp, #0x68]"),
+ ([0xe5, 0x03, 0x0c, 0x39], "strb w5, [sp, #0x300]"),
+ ([0xe0, 0xe3, 0x0d, 0x39], "strb w0, [sp, #0x378]"),
+ ([0xe1, 0xe3, 0x0d, 0x39], "strb w1, [sp, #0x378]"),
+ ([0xe2, 0xe3, 0x0d, 0x39], "strb w2, [sp, #0x378]"),
+ ([0xe0, 0x03, 0x0e, 0x39], "strb w0, [sp, #0x380]"),
+ ([0xe0, 0x23, 0x0e, 0x39], "strb w0, [sp, #0x388]"),
+ ([0xe1, 0x23, 0x0e, 0x39], "strb w1, [sp, #0x388]"),
+ ([0xe2, 0x23, 0x0e, 0x39], "strb w2, [sp, #0x388]"),
+ ([0xe0, 0x43, 0x0e, 0x39], "strb w0, [sp, #0x390]"),
+ ([0xe0, 0x23, 0x0f, 0x39], "strb w0, [sp, #0x3c8]"),
+ ([0xe1, 0x23, 0x0f, 0x39], "strb w1, [sp, #0x3c8]"),
+ ([0xe2, 0x23, 0x0f, 0x39], "strb w2, [sp, #0x3c8]"),
+ ([0xe0, 0x43, 0x0f, 0x39], "strb w0, [sp, #0x3d0]"),
+ ([0xe0, 0xa3, 0x0f, 0x39], "strb w0, [sp, #0x3e8]"),
+ ([0xe1, 0xa3, 0x0f, 0x39], "strb w1, [sp, #0x3e8]"),
+ ([0xe2, 0xa3, 0x0f, 0x39], "strb w2, [sp, #0x3e8]"),
+ ([0xe0, 0xc3, 0x0f, 0x39], "strb w0, [sp, #0x3f0]"),
+ ([0x60, 0x02, 0x32, 0x39], "strb w0, [x19, #0xc80]"),
+ ([0x13, 0xb8, 0x00, 0x29], "stp w19, w14, [x0, #0x4]"),
+ ([0xeb, 0x9f, 0x1f, 0x29], "stp w11, w7, [sp, #0xfc]"),
+ ([0x7f, 0x7c, 0x3f, 0x29], "stp wzr, wzr, [x3, #-0x8]"),
];
let errs = run_tests(TESTS);
@@ -3250,277 +3250,277 @@ fn test_openblas_data_ops() {
([0xe5, 0x03, 0x1e, 0x2a], "mov w5, w30"),
([0xe7, 0x03, 0x1e, 0x2a], "mov w7, w30"),
([0xe0, 0x03, 0x1f, 0x2a], "mov w0, wzr"),
- ([0x20, 0x0f, 0x80, 0x52], "mov w0, 0x79"),
- ([0x41, 0x0f, 0x80, 0x52], "mov w1, 0x7a"),
- ([0x01, 0x10, 0x80, 0x52], "mov w1, 0x80"),
- ([0x02, 0x10, 0x80, 0x52], "mov w2, 0x80"),
- ([0x08, 0x10, 0x80, 0x52], "mov w8, 0x80"),
- ([0x0a, 0x10, 0x80, 0x52], "mov w10, 0x80"),
- ([0x13, 0x10, 0x80, 0x52], "mov w19, 0x80"),
- ([0x15, 0x10, 0x80, 0x52], "mov w21, 0x80"),
- ([0x60, 0x10, 0x80, 0x52], "mov w0, 0x83"),
- ([0x81, 0x10, 0x80, 0x52], "mov w1, 0x84"),
- ([0x05, 0x16, 0x80, 0x52], "mov w5, 0xb0"),
- ([0x06, 0x16, 0x80, 0x52], "mov w6, 0xb0"),
- ([0x08, 0x16, 0x80, 0x52], "mov w8, 0xb0"),
- ([0x00, 0x18, 0x80, 0x52], "mov w0, 0xc0"),
- ([0x82, 0x18, 0x80, 0x52], "mov w2, 0xc4"),
- ([0x60, 0x1a, 0x80, 0x52], "mov w0, 0xd3"),
- ([0x80, 0x1a, 0x80, 0x52], "mov w0, 0xd4"),
- ([0xa0, 0x1a, 0x80, 0x52], "mov w0, 0xd5"),
- ([0xc0, 0x1a, 0x80, 0x52], "mov w0, 0xd6"),
- ([0x22, 0x1e, 0x80, 0x52], "mov w2, 0xf1"),
- ([0x00, 0x20, 0x80, 0x52], "mov w0, 0x100"),
- ([0x02, 0x20, 0x80, 0x52], "mov w2, 0x100"),
- ([0x20, 0x20, 0x80, 0x52], "mov w0, 0x101"),
- ([0x22, 0x20, 0x80, 0x52], "mov w2, 0x101"),
- ([0x80, 0x20, 0x80, 0x52], "mov w0, 0x104"),
- ([0xa0, 0x20, 0x80, 0x52], "mov w0, 0x105"),
- ([0xc2, 0x21, 0x80, 0x52], "mov w2, 0x10e"),
- ([0x42, 0x22, 0x80, 0x52], "mov w2, 0x112"),
- ([0xc6, 0x31, 0x80, 0x52], "mov w6, 0x18e"),
- ([0x25, 0x60, 0x80, 0x52], "mov w5, 0x301"),
- ([0x00, 0x82, 0x80, 0x52], "mov w0, 0x410"),
- ([0x20, 0x82, 0x80, 0x52], "mov w0, 0x411"),
- ([0x80, 0x82, 0x80, 0x52], "mov w0, 0x414"),
- ([0xa0, 0x82, 0x80, 0x52], "mov w0, 0x415"),
- ([0x60, 0x9e, 0x80, 0x52], "mov w0, 0x4f3"),
- ([0x02, 0x00, 0x81, 0x52], "mov w2, 0x800"),
- ([0x00, 0x02, 0x81, 0x52], "mov w0, 0x810"),
- ([0x20, 0x02, 0x81, 0x52], "mov w0, 0x811"),
- ([0x80, 0x02, 0x81, 0x52], "mov w0, 0x814"),
- ([0xa0, 0x02, 0x81, 0x52], "mov w0, 0x815"),
- ([0x00, 0x82, 0x81, 0x52], "mov w0, 0xc10"),
- ([0x20, 0x82, 0x81, 0x52], "mov w0, 0xc11"),
- ([0x80, 0x82, 0x81, 0x52], "mov w0, 0xc14"),
- ([0xa0, 0x82, 0x81, 0x52], "mov w0, 0xc15"),
- ([0x60, 0xfb, 0x81, 0x52], "mov w0, 0xfdb"),
- ([0x64, 0xfb, 0x81, 0x52], "mov w4, 0xfdb"),
- ([0x01, 0x00, 0x82, 0x52], "mov w1, 0x1000"),
- ([0xe2, 0x07, 0x82, 0x52], "mov w2, 0x103f"),
- ([0xe3, 0x07, 0x82, 0x52], "mov w3, 0x103f"),
- ([0xe4, 0x07, 0x82, 0x52], "mov w4, 0x103f"),
- ([0xea, 0x07, 0x82, 0x52], "mov w10, 0x103f"),
- ([0xeb, 0x07, 0x82, 0x52], "mov w11, 0x103f"),
- ([0x01, 0x08, 0x82, 0x52], "mov w1, 0x1040"),
- ([0x02, 0x08, 0x82, 0x52], "mov w2, 0x1040"),
- ([0x03, 0x08, 0x82, 0x52], "mov w3, 0x1040"),
- ([0x80, 0x46, 0x82, 0x52], "mov w0, 0x1234"),
- ([0xe0, 0x4d, 0x82, 0x52], "mov w0, 0x126f"),
- ([0xe2, 0xed, 0x82, 0x52], "mov w2, 0x176f"),
- ([0x04, 0x00, 0x84, 0x52], "mov w4, 0x2000"),
- ([0x05, 0x00, 0x84, 0x52], "mov w5, 0x2000"),
- ([0x25, 0x00, 0x84, 0x52], "mov w5, 0x2001"),
- ([0x85, 0x00, 0x84, 0x52], "mov w5, 0x2004"),
- ([0xa5, 0x00, 0x84, 0x52], "mov w5, 0x2005"),
- ([0xa0, 0x18, 0x84, 0x52], "mov w0, 0x20c5"),
- ([0xa1, 0x18, 0x84, 0x52], "mov w1, 0x20c5"),
- ([0xa2, 0x18, 0x84, 0x52], "mov w2, 0x20c5"),
- ([0x03, 0xe2, 0x84, 0x52], "mov w3, 0x2710"),
- ([0x05, 0xe2, 0x84, 0x52], "mov w5, 0x2710"),
- ([0x06, 0x00, 0x86, 0x52], "mov w6, 0x3000"),
- ([0x61, 0x66, 0x86, 0x52], "mov w1, 0x3333"),
- ([0x06, 0x00, 0x88, 0x52], "mov w6, 0x4000"),
- ([0x80, 0x29, 0x88, 0x52], "mov w0, 0x414c"),
- ([0x81, 0x29, 0x88, 0x52], "mov w1, 0x414c"),
- ([0xe0, 0x48, 0x88, 0x52], "mov w0, 0x4247"),
- ([0x00, 0x4a, 0x88, 0x52], "mov w0, 0x4250"),
- ([0xe1, 0xa8, 0x88, 0x52], "mov w1, 0x4547"),
- ([0xe2, 0xa8, 0x88, 0x52], "mov w2, 0x4547"),
- ([0x00, 0xa9, 0x88, 0x52], "mov w0, 0x4548"),
- ([0xe0, 0xe8, 0x88, 0x52], "mov w0, 0x4747"),
- ([0xc0, 0xf5, 0x88, 0x52], "mov w0, 0x47ae"),
- ([0x21, 0x8a, 0x89, 0x52], "mov w1, 0x4c51"),
- ([0xa0, 0xca, 0x89, 0x52], "mov w0, 0x4e55"),
- ([0x02, 0xea, 0x89, 0x52], "mov w2, 0x4f50"),
- ([0x81, 0x29, 0x8a, 0x52], "mov w1, 0x514c"),
- ([0x41, 0x2a, 0x8a, 0x52], "mov w1, 0x5152"),
- ([0x41, 0x48, 0x8a, 0x52], "mov w1, 0x5242"),
- ([0x01, 0x49, 0x8a, 0x52], "mov w1, 0x5248"),
- ([0xe0, 0x49, 0x8a, 0x52], "mov w0, 0x524f"),
- ([0x21, 0x4a, 0x8a, 0x52], "mov w1, 0x5251"),
- ([0x80, 0x4a, 0x8a, 0x52], "mov w0, 0x5254"),
- ([0x81, 0x4a, 0x8a, 0x52], "mov w1, 0x5254"),
- ([0x60, 0x8a, 0x8a, 0x52], "mov w0, 0x5453"),
- ([0xc0, 0xaa, 0x8a, 0x52], "mov w0, 0x5556"),
- ([0xc1, 0xaa, 0x8a, 0x52], "mov w1, 0x5556"),
- ([0xc4, 0xaa, 0x8a, 0x52], "mov w4, 0x5556"),
- ([0xc6, 0xaa, 0x8a, 0x52], "mov w6, 0x5556"),
- ([0xc8, 0xaa, 0x8a, 0x52], "mov w8, 0x5556"),
- ([0xca, 0xaa, 0x8a, 0x52], "mov w10, 0x5556"),
- ([0xd7, 0xaa, 0x8a, 0x52], "mov w23, 0x5556"),
- ([0xd8, 0xaa, 0x8a, 0x52], "mov w24, 0x5556"),
- ([0xd9, 0xaa, 0x8a, 0x52], "mov w25, 0x5556"),
- ([0x61, 0x2a, 0x8b, 0x52], "mov w1, 0x5953"),
- ([0x62, 0x2a, 0x8b, 0x52], "mov w2, 0x5953"),
- ([0xc0, 0xcc, 0x8c, 0x52], "mov w0, 0x6666"),
- ([0xc1, 0xcc, 0x8c, 0x52], "mov w1, 0x6666"),
- ([0xe0, 0xcc, 0x8c, 0x52], "mov w0, 0x6667"),
- ([0x00, 0x43, 0x8e, 0x52], "mov w0, 0x7218"),
- ([0x02, 0x43, 0x8e, 0x52], "mov w2, 0x7218"),
- ([0x40, 0xdf, 0x8f, 0x52], "mov w0, 0x7efa"),
- ([0x13, 0x00, 0x90, 0x52], "mov w19, 0x8000"),
- ([0x20, 0xc7, 0x91, 0x52], "mov w0, 0x8e39"),
- ([0x23, 0xc7, 0x91, 0x52], "mov w3, 0x8e39"),
- ([0x3b, 0xc7, 0x91, 0x52], "mov w27, 0x8e39"),
- ([0x42, 0x55, 0x95, 0x52], "mov w2, 0xaaaa"),
- ([0x64, 0x55, 0x95, 0x52], "mov w4, 0xaaab"),
- ([0xe3, 0xce, 0x97, 0x52], "mov w3, 0xbe77"),
- ([0xa2, 0x99, 0x99, 0x52], "mov w2, 0xcccd"),
- ([0x42, 0xe1, 0x9a, 0x52], "mov w2, 0xd70a"),
- ([0x62, 0x0f, 0x9e, 0x52], "mov w2, 0xf07b"),
- ([0x05, 0x70, 0xa6, 0x52], "mov w5, 0x33800000"),
- ([0x04, 0x30, 0xa7, 0x52], "mov w4, 0x39800000"),
- ([0x00, 0x50, 0xa8, 0x52], "mov w0, 0x42800000"),
- ([0x02, 0x59, 0xa8, 0x52], "mov w2, 0x42c80000"),
- ([0x40, 0x9f, 0xa8, 0x52], "mov w0, 0x44fa0000"),
- ([0x04, 0xb0, 0xa8, 0x52], "mov w4, 0x45800000"),
- ([0x05, 0x70, 0xa9, 0x52], "mov w5, 0x4b800000"),
- ([0x00, 0xf8, 0xaf, 0x52], "mov w0, 0x7fc00000"),
- ([0x41, 0x5f, 0xb8, 0x52], "mov w1, 0xc2fa0000"),
- ([0x06, 0x00, 0x80, 0x92], "mov x6, 0xffffffffffffffff"),
- ([0xfb, 0x01, 0x80, 0x92], "mov x27, 0xfffffffffffffff0"),
- ([0xe3, 0x02, 0x80, 0x92], "mov x3, 0xffffffffffffffe8"),
- ([0xf8, 0x02, 0x80, 0x92], "mov x24, 0xffffffffffffffe8"),
- ([0xfa, 0x03, 0x80, 0x92], "mov x26, 0xffffffffffffffe0"),
- ([0x6b, 0x21, 0x88, 0x92], "mov x11, 0xffffffffffffbef4"),
- ([0xe7, 0x41, 0x90, 0x92], "mov x7, 0xffffffffffff7df0"),
- ([0xe8, 0x41, 0x90, 0x92], "mov x8, 0xffffffffffff7df0"),
- ([0x00, 0x02, 0xe0, 0x92], "mov x0, 0xffefffffffffffff"),
- ([0x00, 0x02, 0xf0, 0x92], "mov x0, 0x7fefffffffffffff"),
- ([0xe0, 0x03, 0x00, 0xb2], "mov x0, 0x100000001"),
- ([0xe1, 0x03, 0x00, 0xb2], "mov x1, 0x100000001"),
- ([0xe2, 0x03, 0x00, 0xb2], "mov x2, 0x100000001"),
- ([0xe4, 0x03, 0x00, 0xb2], "mov x4, 0x100000001"),
- ([0xe1, 0xe7, 0x03, 0xb2], "mov x1, 0x6666666666666666"),
- ([0xe0, 0x1b, 0x09, 0xb2], "mov x0, 0x3f8000003f800000"),
- ([0xe0, 0x7f, 0x60, 0xb2], "mov x0, 0xffffffff00000000"),
- ([0x1b, 0x00, 0x80, 0xd2], "mov x27, 0x0"),
- ([0x8e, 0x01, 0x80, 0xd2], "mov x14, 0xc"),
- ([0x12, 0x10, 0x80, 0xd2], "mov x18, 0x80"),
- ([0x05, 0x14, 0x80, 0xd2], "mov x5, 0xa0"),
- ([0x60, 0x1d, 0x80, 0xd2], "mov x0, 0xeb"),
- ([0x02, 0x20, 0x80, 0xd2], "mov x2, 0x100"),
- ([0x15, 0x40, 0x80, 0xd2], "mov x21, 0x200"),
- ([0x14, 0xc0, 0x81, 0xd2], "mov x20, 0xe00"),
- ([0x00, 0x00, 0x82, 0xd2], "mov x0, 0x1000"),
- ([0x0c, 0x3a, 0x82, 0xd2], "mov x12, 0x11d0"),
- ([0x00, 0x4a, 0x82, 0xd2], "mov x0, 0x1250"),
- ([0x05, 0x4b, 0x82, 0xd2], "mov x5, 0x1258"),
- ([0x03, 0x4d, 0x82, 0xd2], "mov x3, 0x1268"),
- ([0x00, 0x4f, 0x82, 0xd2], "mov x0, 0x1278"),
- ([0x02, 0x4f, 0x82, 0xd2], "mov x2, 0x1278"),
- ([0x02, 0x51, 0x82, 0xd2], "mov x2, 0x1288"),
- ([0xe1, 0x7f, 0x82, 0xd2], "mov x1, 0x13ff"),
- ([0x07, 0x90, 0x82, 0xd2], "mov x7, 0x1480"),
- ([0x08, 0xdb, 0x82, 0xd2], "mov x8, 0x16d8"),
- ([0xe1, 0xff, 0x82, 0xd2], "mov x1, 0x17ff"),
- ([0x09, 0xcf, 0x83, 0xd2], "mov x9, 0x1e78"),
- ([0xe5, 0xff, 0x83, 0xd2], "mov x5, 0x1fff"),
- ([0x03, 0x00, 0x84, 0xd2], "mov x3, 0x2000"),
- ([0x0c, 0x4a, 0x84, 0xd2], "mov x12, 0x2250"),
- ([0xe2, 0x7f, 0x84, 0xd2], "mov x2, 0x23ff"),
- ([0x01, 0x80, 0x84, 0xd2], "mov x1, 0x2400"),
- ([0x05, 0xe2, 0x84, 0xd2], "mov x5, 0x2710"),
- ([0x00, 0xec, 0x84, 0xd2], "mov x0, 0x2760"),
- ([0x0c, 0xee, 0x84, 0xd2], "mov x12, 0x2770"),
- ([0x0c, 0x8a, 0x85, 0xd2], "mov x12, 0x2c50"),
- ([0x0c, 0xc6, 0x85, 0xd2], "mov x12, 0x2e30"),
- ([0x0c, 0xd6, 0x85, 0xd2], "mov x12, 0x2eb0"),
- ([0x0c, 0xd8, 0x85, 0xd2], "mov x12, 0x2ec0"),
- ([0x0c, 0xdc, 0x85, 0xd2], "mov x12, 0x2ee0"),
- ([0x0c, 0xde, 0x85, 0xd2], "mov x12, 0x2ef0"),
- ([0x0c, 0xe0, 0x85, 0xd2], "mov x12, 0x2f00"),
- ([0x0c, 0xe4, 0x85, 0xd2], "mov x12, 0x2f20"),
- ([0x0c, 0xe6, 0x85, 0xd2], "mov x12, 0x2f30"),
- ([0x0c, 0x08, 0x86, 0xd2], "mov x12, 0x3040"),
- ([0x0c, 0x20, 0x86, 0xd2], "mov x12, 0x3100"),
- ([0x02, 0x21, 0x86, 0xd2], "mov x2, 0x3108"),
- ([0x0c, 0x22, 0x86, 0xd2], "mov x12, 0x3110"),
- ([0x01, 0x29, 0x86, 0xd2], "mov x1, 0x3148"),
- ([0x0c, 0x2a, 0x86, 0xd2], "mov x12, 0x3150"),
- ([0x00, 0x2d, 0x86, 0xd2], "mov x0, 0x3168"),
- ([0x0c, 0x2e, 0x86, 0xd2], "mov x12, 0x3170"),
- ([0x0c, 0x30, 0x86, 0xd2], "mov x12, 0x3180"),
- ([0x0c, 0x42, 0x86, 0xd2], "mov x12, 0x3210"),
- ([0x0c, 0x44, 0x86, 0xd2], "mov x12, 0x3220"),
- ([0x06, 0x4d, 0x86, 0xd2], "mov x6, 0x3268"),
- ([0x0c, 0x4e, 0x86, 0xd2], "mov x12, 0x3270"),
- ([0xe1, 0xff, 0x87, 0xd2], "mov x1, 0x3fff"),
- ([0xe2, 0xff, 0x87, 0xd2], "mov x2, 0x3fff"),
- ([0x08, 0x02, 0x88, 0xd2], "mov x8, 0x4010"),
- ([0x04, 0x51, 0x88, 0xd2], "mov x4, 0x4288"),
- ([0x0c, 0x52, 0x88, 0xd2], "mov x12, 0x4290"),
- ([0x04, 0x53, 0x88, 0xd2], "mov x4, 0x4298"),
- ([0x0c, 0x54, 0x88, 0xd2], "mov x12, 0x42a0"),
- ([0x8c, 0x58, 0x88, 0xd2], "mov x12, 0x42c4"),
- ([0x02, 0x59, 0x88, 0xd2], "mov x2, 0x42c8"),
- ([0x06, 0x59, 0x88, 0xd2], "mov x6, 0x42c8"),
- ([0x08, 0x59, 0x88, 0xd2], "mov x8, 0x42c8"),
- ([0x09, 0x59, 0x88, 0xd2], "mov x9, 0x42c8"),
- ([0x0c, 0x6a, 0x88, 0xd2], "mov x12, 0x4350"),
- ([0x0c, 0x4a, 0x89, 0xd2], "mov x12, 0x4a50"),
- ([0x0c, 0x4c, 0x89, 0xd2], "mov x12, 0x4a60"),
- ([0x00, 0xb4, 0x89, 0xd2], "mov x0, 0x4da0"),
- ([0x0c, 0xb6, 0x89, 0xd2], "mov x12, 0x4db0"),
- ([0x00, 0x0a, 0x90, 0xd2], "mov x0, 0x8050"),
- ([0x01, 0x20, 0x90, 0xd2], "mov x1, 0x8100"),
- ([0x0d, 0x20, 0x90, 0xd2], "mov x13, 0x8100"),
- ([0x0a, 0x7a, 0x90, 0xd2], "mov x10, 0x83d0"),
- ([0x0c, 0x7a, 0x90, 0xd2], "mov x12, 0x83d0"),
- ([0x08, 0x7c, 0x90, 0xd2], "mov x8, 0x83e0"),
- ([0x07, 0x7d, 0x90, 0xd2], "mov x7, 0x83e8"),
- ([0x01, 0x46, 0x93, 0xd2], "mov x1, 0x9a30"),
- ([0x0c, 0x48, 0x93, 0xd2], "mov x12, 0x9a40"),
- ([0x01, 0x20, 0xa0, 0xd2], "mov x1, 0x1000000"),
- ([0x00, 0xf0, 0xa7, 0xd2], "mov x0, 0x3f800000"),
- ([0x1c, 0xf0, 0xa7, 0xd2], "mov x28, 0x3f800000"),
- ([0x00, 0xf0, 0xb7, 0xd2], "mov x0, 0xbf800000"),
- ([0x05, 0xf0, 0xb7, 0xd2], "mov x5, 0xbf800000"),
- ([0x00, 0x00, 0xc8, 0xd2], "mov x0, 0x400000000000"),
- ([0x00, 0x00, 0xd0, 0xd2], "mov x0, 0x800000000000"),
- ([0x00, 0x00, 0xdd, 0xd2], "mov x0, 0xe80000000000"),
- ([0x00, 0x02, 0xe0, 0xd2], "mov x0, 0x10000000000000"),
- ([0x01, 0x94, 0xe7, 0xd2], "mov x1, 0x3ca0000000000000"),
- ([0x01, 0x96, 0xe7, 0xd2], "mov x1, 0x3cb0000000000000"),
- ([0x02, 0xce, 0xe7, 0xd2], "mov x2, 0x3e70000000000000"),
- ([0x00, 0xe6, 0xe7, 0xd2], "mov x0, 0x3f30000000000000"),
- ([0x13, 0xf0, 0xe7, 0xd2], "mov x19, 0x3f80000000000000"),
- ([0x00, 0x0a, 0xe8, 0xd2], "mov x0, 0x4050000000000000"),
- ([0x20, 0x0b, 0xe8, 0xd2], "mov x0, 0x4059000000000000"),
- ([0x00, 0x12, 0xe8, 0xd2], "mov x0, 0x4090000000000000"),
- ([0x04, 0x16, 0xe8, 0xd2], "mov x4, 0x40b0000000000000"),
- ([0x40, 0x18, 0xe8, 0xd2], "mov x0, 0x40c2000000000000"),
- ([0x01, 0x1c, 0xe8, 0xd2], "mov x1, 0x40e0000000000000"),
- ([0x01, 0x22, 0xe8, 0xd2], "mov x1, 0x4110000000000000"),
- ([0x00, 0x2e, 0xe8, 0xd2], "mov x0, 0x4170000000000000"),
- ([0x00, 0xff, 0xef, 0xd2], "mov x0, 0x7ff8000000000000"),
- ([0x00, 0x00, 0xf0, 0xd2], "mov x0, 0x8000000000000000"),
- ([0x02, 0xfe, 0xff, 0xd2], "mov x2, 0xfff0000000000000"),
- ([0x1b, 0x00, 0x80, 0x12], "mov w27, 0xffffffff"),
- ([0x84, 0x00, 0x80, 0x12], "mov w4, 0xfffffffb"),
- ([0x00, 0x19, 0x80, 0x12], "mov w0, 0xffffff37"),
- ([0xe0, 0x07, 0x82, 0x12], "mov w0, 0xffffefc0"),
- ([0xe1, 0x07, 0x82, 0x12], "mov w1, 0xffffefc0"),
- ([0x00, 0x10, 0xb0, 0x12], "mov w0, 0x7f7fffff"),
+ ([0x20, 0x0f, 0x80, 0x52], "mov w0, #0x79"),
+ ([0x41, 0x0f, 0x80, 0x52], "mov w1, #0x7a"),
+ ([0x01, 0x10, 0x80, 0x52], "mov w1, #0x80"),
+ ([0x02, 0x10, 0x80, 0x52], "mov w2, #0x80"),
+ ([0x08, 0x10, 0x80, 0x52], "mov w8, #0x80"),
+ ([0x0a, 0x10, 0x80, 0x52], "mov w10, #0x80"),
+ ([0x13, 0x10, 0x80, 0x52], "mov w19, #0x80"),
+ ([0x15, 0x10, 0x80, 0x52], "mov w21, #0x80"),
+ ([0x60, 0x10, 0x80, 0x52], "mov w0, #0x83"),
+ ([0x81, 0x10, 0x80, 0x52], "mov w1, #0x84"),
+ ([0x05, 0x16, 0x80, 0x52], "mov w5, #0xb0"),
+ ([0x06, 0x16, 0x80, 0x52], "mov w6, #0xb0"),
+ ([0x08, 0x16, 0x80, 0x52], "mov w8, #0xb0"),
+ ([0x00, 0x18, 0x80, 0x52], "mov w0, #0xc0"),
+ ([0x82, 0x18, 0x80, 0x52], "mov w2, #0xc4"),
+ ([0x60, 0x1a, 0x80, 0x52], "mov w0, #0xd3"),
+ ([0x80, 0x1a, 0x80, 0x52], "mov w0, #0xd4"),
+ ([0xa0, 0x1a, 0x80, 0x52], "mov w0, #0xd5"),
+ ([0xc0, 0x1a, 0x80, 0x52], "mov w0, #0xd6"),
+ ([0x22, 0x1e, 0x80, 0x52], "mov w2, #0xf1"),
+ ([0x00, 0x20, 0x80, 0x52], "mov w0, #0x100"),
+ ([0x02, 0x20, 0x80, 0x52], "mov w2, #0x100"),
+ ([0x20, 0x20, 0x80, 0x52], "mov w0, #0x101"),
+ ([0x22, 0x20, 0x80, 0x52], "mov w2, #0x101"),
+ ([0x80, 0x20, 0x80, 0x52], "mov w0, #0x104"),
+ ([0xa0, 0x20, 0x80, 0x52], "mov w0, #0x105"),
+ ([0xc2, 0x21, 0x80, 0x52], "mov w2, #0x10e"),
+ ([0x42, 0x22, 0x80, 0x52], "mov w2, #0x112"),
+ ([0xc6, 0x31, 0x80, 0x52], "mov w6, #0x18e"),
+ ([0x25, 0x60, 0x80, 0x52], "mov w5, #0x301"),
+ ([0x00, 0x82, 0x80, 0x52], "mov w0, #0x410"),
+ ([0x20, 0x82, 0x80, 0x52], "mov w0, #0x411"),
+ ([0x80, 0x82, 0x80, 0x52], "mov w0, #0x414"),
+ ([0xa0, 0x82, 0x80, 0x52], "mov w0, #0x415"),
+ ([0x60, 0x9e, 0x80, 0x52], "mov w0, #0x4f3"),
+ ([0x02, 0x00, 0x81, 0x52], "mov w2, #0x800"),
+ ([0x00, 0x02, 0x81, 0x52], "mov w0, #0x810"),
+ ([0x20, 0x02, 0x81, 0x52], "mov w0, #0x811"),
+ ([0x80, 0x02, 0x81, 0x52], "mov w0, #0x814"),
+ ([0xa0, 0x02, 0x81, 0x52], "mov w0, #0x815"),
+ ([0x00, 0x82, 0x81, 0x52], "mov w0, #0xc10"),
+ ([0x20, 0x82, 0x81, 0x52], "mov w0, #0xc11"),
+ ([0x80, 0x82, 0x81, 0x52], "mov w0, #0xc14"),
+ ([0xa0, 0x82, 0x81, 0x52], "mov w0, #0xc15"),
+ ([0x60, 0xfb, 0x81, 0x52], "mov w0, #0xfdb"),
+ ([0x64, 0xfb, 0x81, 0x52], "mov w4, #0xfdb"),
+ ([0x01, 0x00, 0x82, 0x52], "mov w1, #0x1000"),
+ ([0xe2, 0x07, 0x82, 0x52], "mov w2, #0x103f"),
+ ([0xe3, 0x07, 0x82, 0x52], "mov w3, #0x103f"),
+ ([0xe4, 0x07, 0x82, 0x52], "mov w4, #0x103f"),
+ ([0xea, 0x07, 0x82, 0x52], "mov w10, #0x103f"),
+ ([0xeb, 0x07, 0x82, 0x52], "mov w11, #0x103f"),
+ ([0x01, 0x08, 0x82, 0x52], "mov w1, #0x1040"),
+ ([0x02, 0x08, 0x82, 0x52], "mov w2, #0x1040"),
+ ([0x03, 0x08, 0x82, 0x52], "mov w3, #0x1040"),
+ ([0x80, 0x46, 0x82, 0x52], "mov w0, #0x1234"),
+ ([0xe0, 0x4d, 0x82, 0x52], "mov w0, #0x126f"),
+ ([0xe2, 0xed, 0x82, 0x52], "mov w2, #0x176f"),
+ ([0x04, 0x00, 0x84, 0x52], "mov w4, #0x2000"),
+ ([0x05, 0x00, 0x84, 0x52], "mov w5, #0x2000"),
+ ([0x25, 0x00, 0x84, 0x52], "mov w5, #0x2001"),
+ ([0x85, 0x00, 0x84, 0x52], "mov w5, #0x2004"),
+ ([0xa5, 0x00, 0x84, 0x52], "mov w5, #0x2005"),
+ ([0xa0, 0x18, 0x84, 0x52], "mov w0, #0x20c5"),
+ ([0xa1, 0x18, 0x84, 0x52], "mov w1, #0x20c5"),
+ ([0xa2, 0x18, 0x84, 0x52], "mov w2, #0x20c5"),
+ ([0x03, 0xe2, 0x84, 0x52], "mov w3, #0x2710"),
+ ([0x05, 0xe2, 0x84, 0x52], "mov w5, #0x2710"),
+ ([0x06, 0x00, 0x86, 0x52], "mov w6, #0x3000"),
+ ([0x61, 0x66, 0x86, 0x52], "mov w1, #0x3333"),
+ ([0x06, 0x00, 0x88, 0x52], "mov w6, #0x4000"),
+ ([0x80, 0x29, 0x88, 0x52], "mov w0, #0x414c"),
+ ([0x81, 0x29, 0x88, 0x52], "mov w1, #0x414c"),
+ ([0xe0, 0x48, 0x88, 0x52], "mov w0, #0x4247"),
+ ([0x00, 0x4a, 0x88, 0x52], "mov w0, #0x4250"),
+ ([0xe1, 0xa8, 0x88, 0x52], "mov w1, #0x4547"),
+ ([0xe2, 0xa8, 0x88, 0x52], "mov w2, #0x4547"),
+ ([0x00, 0xa9, 0x88, 0x52], "mov w0, #0x4548"),
+ ([0xe0, 0xe8, 0x88, 0x52], "mov w0, #0x4747"),
+ ([0xc0, 0xf5, 0x88, 0x52], "mov w0, #0x47ae"),
+ ([0x21, 0x8a, 0x89, 0x52], "mov w1, #0x4c51"),
+ ([0xa0, 0xca, 0x89, 0x52], "mov w0, #0x4e55"),
+ ([0x02, 0xea, 0x89, 0x52], "mov w2, #0x4f50"),
+ ([0x81, 0x29, 0x8a, 0x52], "mov w1, #0x514c"),
+ ([0x41, 0x2a, 0x8a, 0x52], "mov w1, #0x5152"),
+ ([0x41, 0x48, 0x8a, 0x52], "mov w1, #0x5242"),
+ ([0x01, 0x49, 0x8a, 0x52], "mov w1, #0x5248"),
+ ([0xe0, 0x49, 0x8a, 0x52], "mov w0, #0x524f"),
+ ([0x21, 0x4a, 0x8a, 0x52], "mov w1, #0x5251"),
+ ([0x80, 0x4a, 0x8a, 0x52], "mov w0, #0x5254"),
+ ([0x81, 0x4a, 0x8a, 0x52], "mov w1, #0x5254"),
+ ([0x60, 0x8a, 0x8a, 0x52], "mov w0, #0x5453"),
+ ([0xc0, 0xaa, 0x8a, 0x52], "mov w0, #0x5556"),
+ ([0xc1, 0xaa, 0x8a, 0x52], "mov w1, #0x5556"),
+ ([0xc4, 0xaa, 0x8a, 0x52], "mov w4, #0x5556"),
+ ([0xc6, 0xaa, 0x8a, 0x52], "mov w6, #0x5556"),
+ ([0xc8, 0xaa, 0x8a, 0x52], "mov w8, #0x5556"),
+ ([0xca, 0xaa, 0x8a, 0x52], "mov w10, #0x5556"),
+ ([0xd7, 0xaa, 0x8a, 0x52], "mov w23, #0x5556"),
+ ([0xd8, 0xaa, 0x8a, 0x52], "mov w24, #0x5556"),
+ ([0xd9, 0xaa, 0x8a, 0x52], "mov w25, #0x5556"),
+ ([0x61, 0x2a, 0x8b, 0x52], "mov w1, #0x5953"),
+ ([0x62, 0x2a, 0x8b, 0x52], "mov w2, #0x5953"),
+ ([0xc0, 0xcc, 0x8c, 0x52], "mov w0, #0x6666"),
+ ([0xc1, 0xcc, 0x8c, 0x52], "mov w1, #0x6666"),
+ ([0xe0, 0xcc, 0x8c, 0x52], "mov w0, #0x6667"),
+ ([0x00, 0x43, 0x8e, 0x52], "mov w0, #0x7218"),
+ ([0x02, 0x43, 0x8e, 0x52], "mov w2, #0x7218"),
+ ([0x40, 0xdf, 0x8f, 0x52], "mov w0, #0x7efa"),
+ ([0x13, 0x00, 0x90, 0x52], "mov w19, #0x8000"),
+ ([0x20, 0xc7, 0x91, 0x52], "mov w0, #0x8e39"),
+ ([0x23, 0xc7, 0x91, 0x52], "mov w3, #0x8e39"),
+ ([0x3b, 0xc7, 0x91, 0x52], "mov w27, #0x8e39"),
+ ([0x42, 0x55, 0x95, 0x52], "mov w2, #0xaaaa"),
+ ([0x64, 0x55, 0x95, 0x52], "mov w4, #0xaaab"),
+ ([0xe3, 0xce, 0x97, 0x52], "mov w3, #0xbe77"),
+ ([0xa2, 0x99, 0x99, 0x52], "mov w2, #0xcccd"),
+ ([0x42, 0xe1, 0x9a, 0x52], "mov w2, #0xd70a"),
+ ([0x62, 0x0f, 0x9e, 0x52], "mov w2, #0xf07b"),
+ ([0x05, 0x70, 0xa6, 0x52], "mov w5, #0x33800000"),
+ ([0x04, 0x30, 0xa7, 0x52], "mov w4, #0x39800000"),
+ ([0x00, 0x50, 0xa8, 0x52], "mov w0, #0x42800000"),
+ ([0x02, 0x59, 0xa8, 0x52], "mov w2, #0x42c80000"),
+ ([0x40, 0x9f, 0xa8, 0x52], "mov w0, #0x44fa0000"),
+ ([0x04, 0xb0, 0xa8, 0x52], "mov w4, #0x45800000"),
+ ([0x05, 0x70, 0xa9, 0x52], "mov w5, #0x4b800000"),
+ ([0x00, 0xf8, 0xaf, 0x52], "mov w0, #0x7fc00000"),
+ ([0x41, 0x5f, 0xb8, 0x52], "mov w1, #0xc2fa0000"),
+ ([0x06, 0x00, 0x80, 0x92], "mov x6, #0xffffffffffffffff"),
+ ([0xfb, 0x01, 0x80, 0x92], "mov x27, #0xfffffffffffffff0"),
+ ([0xe3, 0x02, 0x80, 0x92], "mov x3, #0xffffffffffffffe8"),
+ ([0xf8, 0x02, 0x80, 0x92], "mov x24, #0xffffffffffffffe8"),
+ ([0xfa, 0x03, 0x80, 0x92], "mov x26, #0xffffffffffffffe0"),
+ ([0x6b, 0x21, 0x88, 0x92], "mov x11, #0xffffffffffffbef4"),
+ ([0xe7, 0x41, 0x90, 0x92], "mov x7, #0xffffffffffff7df0"),
+ ([0xe8, 0x41, 0x90, 0x92], "mov x8, #0xffffffffffff7df0"),
+ ([0x00, 0x02, 0xe0, 0x92], "mov x0, #0xffefffffffffffff"),
+ ([0x00, 0x02, 0xf0, 0x92], "mov x0, #0x7fefffffffffffff"),
+ ([0xe0, 0x03, 0x00, 0xb2], "mov x0, #0x100000001"),
+ ([0xe1, 0x03, 0x00, 0xb2], "mov x1, #0x100000001"),
+ ([0xe2, 0x03, 0x00, 0xb2], "mov x2, #0x100000001"),
+ ([0xe4, 0x03, 0x00, 0xb2], "mov x4, #0x100000001"),
+ ([0xe1, 0xe7, 0x03, 0xb2], "mov x1, #0x6666666666666666"),
+ ([0xe0, 0x1b, 0x09, 0xb2], "mov x0, #0x3f8000003f800000"),
+ ([0xe0, 0x7f, 0x60, 0xb2], "mov x0, #0xffffffff00000000"),
+ ([0x1b, 0x00, 0x80, 0xd2], "mov x27, #0x0"),
+ ([0x8e, 0x01, 0x80, 0xd2], "mov x14, #0xc"),
+ ([0x12, 0x10, 0x80, 0xd2], "mov x18, #0x80"),
+ ([0x05, 0x14, 0x80, 0xd2], "mov x5, #0xa0"),
+ ([0x60, 0x1d, 0x80, 0xd2], "mov x0, #0xeb"),
+ ([0x02, 0x20, 0x80, 0xd2], "mov x2, #0x100"),
+ ([0x15, 0x40, 0x80, 0xd2], "mov x21, #0x200"),
+ ([0x14, 0xc0, 0x81, 0xd2], "mov x20, #0xe00"),
+ ([0x00, 0x00, 0x82, 0xd2], "mov x0, #0x1000"),
+ ([0x0c, 0x3a, 0x82, 0xd2], "mov x12, #0x11d0"),
+ ([0x00, 0x4a, 0x82, 0xd2], "mov x0, #0x1250"),
+ ([0x05, 0x4b, 0x82, 0xd2], "mov x5, #0x1258"),
+ ([0x03, 0x4d, 0x82, 0xd2], "mov x3, #0x1268"),
+ ([0x00, 0x4f, 0x82, 0xd2], "mov x0, #0x1278"),
+ ([0x02, 0x4f, 0x82, 0xd2], "mov x2, #0x1278"),
+ ([0x02, 0x51, 0x82, 0xd2], "mov x2, #0x1288"),
+ ([0xe1, 0x7f, 0x82, 0xd2], "mov x1, #0x13ff"),
+ ([0x07, 0x90, 0x82, 0xd2], "mov x7, #0x1480"),
+ ([0x08, 0xdb, 0x82, 0xd2], "mov x8, #0x16d8"),
+ ([0xe1, 0xff, 0x82, 0xd2], "mov x1, #0x17ff"),
+ ([0x09, 0xcf, 0x83, 0xd2], "mov x9, #0x1e78"),
+ ([0xe5, 0xff, 0x83, 0xd2], "mov x5, #0x1fff"),
+ ([0x03, 0x00, 0x84, 0xd2], "mov x3, #0x2000"),
+ ([0x0c, 0x4a, 0x84, 0xd2], "mov x12, #0x2250"),
+ ([0xe2, 0x7f, 0x84, 0xd2], "mov x2, #0x23ff"),
+ ([0x01, 0x80, 0x84, 0xd2], "mov x1, #0x2400"),
+ ([0x05, 0xe2, 0x84, 0xd2], "mov x5, #0x2710"),
+ ([0x00, 0xec, 0x84, 0xd2], "mov x0, #0x2760"),
+ ([0x0c, 0xee, 0x84, 0xd2], "mov x12, #0x2770"),
+ ([0x0c, 0x8a, 0x85, 0xd2], "mov x12, #0x2c50"),
+ ([0x0c, 0xc6, 0x85, 0xd2], "mov x12, #0x2e30"),
+ ([0x0c, 0xd6, 0x85, 0xd2], "mov x12, #0x2eb0"),
+ ([0x0c, 0xd8, 0x85, 0xd2], "mov x12, #0x2ec0"),
+ ([0x0c, 0xdc, 0x85, 0xd2], "mov x12, #0x2ee0"),
+ ([0x0c, 0xde, 0x85, 0xd2], "mov x12, #0x2ef0"),
+ ([0x0c, 0xe0, 0x85, 0xd2], "mov x12, #0x2f00"),
+ ([0x0c, 0xe4, 0x85, 0xd2], "mov x12, #0x2f20"),
+ ([0x0c, 0xe6, 0x85, 0xd2], "mov x12, #0x2f30"),
+ ([0x0c, 0x08, 0x86, 0xd2], "mov x12, #0x3040"),
+ ([0x0c, 0x20, 0x86, 0xd2], "mov x12, #0x3100"),
+ ([0x02, 0x21, 0x86, 0xd2], "mov x2, #0x3108"),
+ ([0x0c, 0x22, 0x86, 0xd2], "mov x12, #0x3110"),
+ ([0x01, 0x29, 0x86, 0xd2], "mov x1, #0x3148"),
+ ([0x0c, 0x2a, 0x86, 0xd2], "mov x12, #0x3150"),
+ ([0x00, 0x2d, 0x86, 0xd2], "mov x0, #0x3168"),
+ ([0x0c, 0x2e, 0x86, 0xd2], "mov x12, #0x3170"),
+ ([0x0c, 0x30, 0x86, 0xd2], "mov x12, #0x3180"),
+ ([0x0c, 0x42, 0x86, 0xd2], "mov x12, #0x3210"),
+ ([0x0c, 0x44, 0x86, 0xd2], "mov x12, #0x3220"),
+ ([0x06, 0x4d, 0x86, 0xd2], "mov x6, #0x3268"),
+ ([0x0c, 0x4e, 0x86, 0xd2], "mov x12, #0x3270"),
+ ([0xe1, 0xff, 0x87, 0xd2], "mov x1, #0x3fff"),
+ ([0xe2, 0xff, 0x87, 0xd2], "mov x2, #0x3fff"),
+ ([0x08, 0x02, 0x88, 0xd2], "mov x8, #0x4010"),
+ ([0x04, 0x51, 0x88, 0xd2], "mov x4, #0x4288"),
+ ([0x0c, 0x52, 0x88, 0xd2], "mov x12, #0x4290"),
+ ([0x04, 0x53, 0x88, 0xd2], "mov x4, #0x4298"),
+ ([0x0c, 0x54, 0x88, 0xd2], "mov x12, #0x42a0"),
+ ([0x8c, 0x58, 0x88, 0xd2], "mov x12, #0x42c4"),
+ ([0x02, 0x59, 0x88, 0xd2], "mov x2, #0x42c8"),
+ ([0x06, 0x59, 0x88, 0xd2], "mov x6, #0x42c8"),
+ ([0x08, 0x59, 0x88, 0xd2], "mov x8, #0x42c8"),
+ ([0x09, 0x59, 0x88, 0xd2], "mov x9, #0x42c8"),
+ ([0x0c, 0x6a, 0x88, 0xd2], "mov x12, #0x4350"),
+ ([0x0c, 0x4a, 0x89, 0xd2], "mov x12, #0x4a50"),
+ ([0x0c, 0x4c, 0x89, 0xd2], "mov x12, #0x4a60"),
+ ([0x00, 0xb4, 0x89, 0xd2], "mov x0, #0x4da0"),
+ ([0x0c, 0xb6, 0x89, 0xd2], "mov x12, #0x4db0"),
+ ([0x00, 0x0a, 0x90, 0xd2], "mov x0, #0x8050"),
+ ([0x01, 0x20, 0x90, 0xd2], "mov x1, #0x8100"),
+ ([0x0d, 0x20, 0x90, 0xd2], "mov x13, #0x8100"),
+ ([0x0a, 0x7a, 0x90, 0xd2], "mov x10, #0x83d0"),
+ ([0x0c, 0x7a, 0x90, 0xd2], "mov x12, #0x83d0"),
+ ([0x08, 0x7c, 0x90, 0xd2], "mov x8, #0x83e0"),
+ ([0x07, 0x7d, 0x90, 0xd2], "mov x7, #0x83e8"),
+ ([0x01, 0x46, 0x93, 0xd2], "mov x1, #0x9a30"),
+ ([0x0c, 0x48, 0x93, 0xd2], "mov x12, #0x9a40"),
+ ([0x01, 0x20, 0xa0, 0xd2], "mov x1, #0x1000000"),
+ ([0x00, 0xf0, 0xa7, 0xd2], "mov x0, #0x3f800000"),
+ ([0x1c, 0xf0, 0xa7, 0xd2], "mov x28, #0x3f800000"),
+ ([0x00, 0xf0, 0xb7, 0xd2], "mov x0, #0xbf800000"),
+ ([0x05, 0xf0, 0xb7, 0xd2], "mov x5, #0xbf800000"),
+ ([0x00, 0x00, 0xc8, 0xd2], "mov x0, #0x400000000000"),
+ ([0x00, 0x00, 0xd0, 0xd2], "mov x0, #0x800000000000"),
+ ([0x00, 0x00, 0xdd, 0xd2], "mov x0, #0xe80000000000"),
+ ([0x00, 0x02, 0xe0, 0xd2], "mov x0, #0x10000000000000"),
+ ([0x01, 0x94, 0xe7, 0xd2], "mov x1, #0x3ca0000000000000"),
+ ([0x01, 0x96, 0xe7, 0xd2], "mov x1, #0x3cb0000000000000"),
+ ([0x02, 0xce, 0xe7, 0xd2], "mov x2, #0x3e70000000000000"),
+ ([0x00, 0xe6, 0xe7, 0xd2], "mov x0, #0x3f30000000000000"),
+ ([0x13, 0xf0, 0xe7, 0xd2], "mov x19, #0x3f80000000000000"),
+ ([0x00, 0x0a, 0xe8, 0xd2], "mov x0, #0x4050000000000000"),
+ ([0x20, 0x0b, 0xe8, 0xd2], "mov x0, #0x4059000000000000"),
+ ([0x00, 0x12, 0xe8, 0xd2], "mov x0, #0x4090000000000000"),
+ ([0x04, 0x16, 0xe8, 0xd2], "mov x4, #0x40b0000000000000"),
+ ([0x40, 0x18, 0xe8, 0xd2], "mov x0, #0x40c2000000000000"),
+ ([0x01, 0x1c, 0xe8, 0xd2], "mov x1, #0x40e0000000000000"),
+ ([0x01, 0x22, 0xe8, 0xd2], "mov x1, #0x4110000000000000"),
+ ([0x00, 0x2e, 0xe8, 0xd2], "mov x0, #0x4170000000000000"),
+ ([0x00, 0xff, 0xef, 0xd2], "mov x0, #0x7ff8000000000000"),
+ ([0x00, 0x00, 0xf0, 0xd2], "mov x0, #0x8000000000000000"),
+ ([0x02, 0xfe, 0xff, 0xd2], "mov x2, #0xfff0000000000000"),
+ ([0x1b, 0x00, 0x80, 0x12], "mov w27, #0xffffffff"),
+ ([0x84, 0x00, 0x80, 0x12], "mov w4, #0xfffffffb"),
+ ([0x00, 0x19, 0x80, 0x12], "mov w0, #0xffffff37"),
+ ([0xe0, 0x07, 0x82, 0x12], "mov w0, #0xffffefc0"),
+ ([0xe1, 0x07, 0x82, 0x12], "mov w1, #0xffffefc0"),
+ ([0x00, 0x10, 0xb0, 0x12], "mov w0, #0x7f7fffff"),
([0xf9, 0x03, 0x0a, 0xaa], "mov x25, x10"),
- ([0x01, 0x20, 0xa0, 0xf2], "movk x1, 0x100, lsl 16"),
- ([0x02, 0x0e, 0xc0, 0xf2], "movk x2, 0x70, lsl 32"),
- ([0x03, 0x0e, 0xc0, 0xf2], "movk x3, 0x70, lsl 32"),
- ([0x02, 0x0f, 0xc0, 0xf2], "movk x2, 0x78, lsl 32"),
- ([0x04, 0x10, 0xc0, 0xf2], "movk x4, 0x80, lsl 32"),
- ([0x05, 0x10, 0xc0, 0xf2], "movk x5, 0x80, lsl 32"),
- ([0x04, 0x1c, 0xc0, 0xf2], "movk x4, 0xe0, lsl 32"),
- ([0x07, 0x1e, 0xc0, 0xf2], "movk x7, 0xf0, lsl 32"),
- ([0x06, 0x2c, 0xc0, 0xf2], "movk x6, 0x160, lsl 32"),
- ([0xc1, 0xfd, 0xe7, 0xf2], "movk x1, 0x3fee, lsl 48"),
- ([0x40, 0x09, 0xe8, 0xf2], "movk x0, 0x404a, lsl 48"),
- ([0xe0, 0x13, 0xe8, 0xf2], "movk x0, 0x409f, lsl 48"),
- ([0xe0, 0x11, 0xf8, 0xf2], "movk x0, 0xc08f, lsl 48"),
- ([0x42, 0x55, 0xa5, 0x72], "movk w2, 0x2aaa, lsl 16"),
- ([0x60, 0x1c, 0xa7, 0x72], "movk w0, 0x38e3, lsl 16"),
- ([0x63, 0x1c, 0xa7, 0x72], "movk w3, 0x38e3, lsl 16"),
- ([0x80, 0x99, 0xb9, 0x72], "movk w0, 0xcccc, lsl 16"),
+ ([0x01, 0x20, 0xa0, 0xf2], "movk x1, #0x100, lsl #16"),
+ ([0x02, 0x0e, 0xc0, 0xf2], "movk x2, #0x70, lsl #32"),
+ ([0x03, 0x0e, 0xc0, 0xf2], "movk x3, #0x70, lsl #32"),
+ ([0x02, 0x0f, 0xc0, 0xf2], "movk x2, #0x78, lsl #32"),
+ ([0x04, 0x10, 0xc0, 0xf2], "movk x4, #0x80, lsl #32"),
+ ([0x05, 0x10, 0xc0, 0xf2], "movk x5, #0x80, lsl #32"),
+ ([0x04, 0x1c, 0xc0, 0xf2], "movk x4, #0xe0, lsl #32"),
+ ([0x07, 0x1e, 0xc0, 0xf2], "movk x7, #0xf0, lsl #32"),
+ ([0x06, 0x2c, 0xc0, 0xf2], "movk x6, #0x160, lsl #32"),
+ ([0xc1, 0xfd, 0xe7, 0xf2], "movk x1, #0x3fee, lsl #48"),
+ ([0x40, 0x09, 0xe8, 0xf2], "movk x0, #0x404a, lsl #48"),
+ ([0xe0, 0x13, 0xe8, 0xf2], "movk x0, #0x409f, lsl #48"),
+ ([0xe0, 0x11, 0xf8, 0xf2], "movk x0, #0xc08f, lsl #48"),
+ ([0x42, 0x55, 0xa5, 0x72], "movk w2, #0x2aaa, lsl #16"),
+ ([0x60, 0x1c, 0xa7, 0x72], "movk w0, #0x38e3, lsl #16"),
+ ([0x63, 0x1c, 0xa7, 0x72], "movk w3, #0x38e3, lsl #16"),
+ ([0x80, 0x99, 0xb9, 0x72], "movk w0, #0xcccc, lsl #16"),
([0xfa, 0x03, 0x3c, 0xaa], "mvn x26, x28"),
([0xfb, 0x03, 0x3c, 0xaa], "mvn x27, x28"),
([0xfe, 0x03, 0x3e, 0xaa], "mvn x30, x30"),
@@ -3542,61 +3542,61 @@ fn test_openblas_cmp_ops() {
([0xff, 0x01, 0x01, 0xeb], "cmp x15, x1"),
([0x1f, 0x02, 0x01, 0xeb], "cmp x16, x1"),
([0x9f, 0x02, 0x1b, 0xeb], "cmp x20, x27"),
- ([0xbf, 0x06, 0x1b, 0xeb], "cmp x21, x27, lsl 1"),
- ([0x7f, 0xc3, 0x20, 0xeb], "cmp x27, w0, sxtw 0"),
+ ([0xbf, 0x06, 0x1b, 0xeb], "cmp x21, x27, lsl #1"),
+ ([0x7f, 0xc3, 0x20, 0xeb], "cmp x27, w0, sxtw"),
([0xff, 0x63, 0x21, 0xeb], "cmp sp, x1"),
- ([0x1f, 0xc0, 0x21, 0xeb], "cmp x0, w1, sxtw 0"),
- ([0x5f, 0xc0, 0x21, 0xeb], "cmp x2, w1, sxtw 0"),
- ([0x5f, 0x0b, 0x00, 0xf1], "cmp x26, 0x2"),
- ([0x7f, 0x0d, 0x00, 0xf1], "cmp x11, 0x3"),
- ([0xdf, 0x0f, 0x00, 0xf1], "cmp x30, 0x3"),
- ([0x7f, 0x13, 0x00, 0xf1], "cmp x27, 0x4"),
- ([0xdf, 0x16, 0x00, 0xf1], "cmp x22, 0x5"),
- ([0x3f, 0x1b, 0x00, 0xf1], "cmp x25, 0x6"),
- ([0x7f, 0x1c, 0x00, 0xf1], "cmp x3, 0x7"),
- ([0x1f, 0x20, 0x00, 0xf1], "cmp x0, 0x8"),
- ([0x9f, 0x23, 0x00, 0xf1], "cmp x28, 0x8"),
- ([0x9f, 0x27, 0x00, 0xf1], "cmp x28, 0x9"),
- ([0x9f, 0x2b, 0x00, 0xf1], "cmp x28, 0xa"),
- ([0x1f, 0x2c, 0x00, 0xf1], "cmp x0, 0xb"),
- ([0x9f, 0x2f, 0x00, 0xf1], "cmp x28, 0xb"),
- ([0x1f, 0x30, 0x00, 0xf1], "cmp x0, 0xc"),
- ([0x9f, 0x33, 0x00, 0xf1], "cmp x28, 0xc"),
- ([0x1f, 0x34, 0x00, 0xf1], "cmp x0, 0xd"),
- ([0xbf, 0x36, 0x00, 0xf1], "cmp x21, 0xd"),
- ([0xdf, 0x36, 0x00, 0xf1], "cmp x22, 0xd"),
- ([0x1f, 0x3d, 0x00, 0xf1], "cmp x8, 0xf"),
- ([0xbf, 0x3e, 0x00, 0xf1], "cmp x21, 0xf"),
- ([0xdf, 0x3e, 0x00, 0xf1], "cmp x22, 0xf"),
- ([0x1f, 0x41, 0x00, 0xf1], "cmp x8, 0x10"),
- ([0x5f, 0x41, 0x00, 0xf1], "cmp x10, 0x10"),
- ([0xff, 0x80, 0x00, 0xf1], "cmp x7, 0x20"),
- ([0x3f, 0xfc, 0x00, 0xf1], "cmp x1, 0x3f"),
- ([0x1f, 0x01, 0x01, 0xf1], "cmp x8, 0x40"),
- ([0x3f, 0xfc, 0x07, 0xf1], "cmp x1, 0x1ff"),
- ([0x3f, 0xfc, 0x0f, 0xf1], "cmp x1, 0x3ff"),
- ([0x7f, 0xfc, 0x0f, 0xf1], "cmp x3, 0x3ff"),
- ([0x1f, 0x00, 0x10, 0xf1], "cmp x0, 0x400"),
- ([0x3f, 0x00, 0x10, 0xf1], "cmp x1, 0x400"),
- ([0x3f, 0x00, 0x24, 0xf1], "cmp x1, 0x900"),
- ([0x1f, 0xfc, 0x3f, 0xf1], "cmp x0, 0xfff"),
- ([0x3f, 0xfc, 0x3f, 0xf1], "cmp x1, 0xfff"),
- ([0x1f, 0x08, 0x40, 0xf1], "cmp x0, 0x2000"),
- ([0x3f, 0x08, 0x40, 0xf1], "cmp x1, 0x2000"),
- ([0x7f, 0x01, 0x00, 0xf1], "cmp x11, 0x0"),
- ([0x3f, 0x07, 0x00, 0xf1], "cmp x25, 0x1"),
- ([0x1f, 0x00, 0x00, 0x71], "cmp w0, 0x0"),
- ([0x3f, 0x04, 0x00, 0x6b], "cmp w1, w0, lsl 1"),
- ([0x5f, 0x05, 0x80, 0x6b], "cmp w10, w0, asr 1"),
- ([0x3f, 0x04, 0x00, 0x71], "cmp w1, 0x1"),
- ([0x5f, 0x24, 0x34, 0x71], "cmp w2, 0xd09"),
- ([0x7f, 0x0a, 0x40, 0x71], "cmp w19, 0x2000"),
- ([0x1f, 0x80, 0x40, 0x71], "cmp w0, 0x20000"),
- ([0x1f, 0x00, 0x44, 0x71], "cmp w0, 0x100000"),
+ ([0x1f, 0xc0, 0x21, 0xeb], "cmp x0, w1, sxtw"),
+ ([0x5f, 0xc0, 0x21, 0xeb], "cmp x2, w1, sxtw"),
+ ([0x5f, 0x0b, 0x00, 0xf1], "cmp x26, #0x2"),
+ ([0x7f, 0x0d, 0x00, 0xf1], "cmp x11, #0x3"),
+ ([0xdf, 0x0f, 0x00, 0xf1], "cmp x30, #0x3"),
+ ([0x7f, 0x13, 0x00, 0xf1], "cmp x27, #0x4"),
+ ([0xdf, 0x16, 0x00, 0xf1], "cmp x22, #0x5"),
+ ([0x3f, 0x1b, 0x00, 0xf1], "cmp x25, #0x6"),
+ ([0x7f, 0x1c, 0x00, 0xf1], "cmp x3, #0x7"),
+ ([0x1f, 0x20, 0x00, 0xf1], "cmp x0, #0x8"),
+ ([0x9f, 0x23, 0x00, 0xf1], "cmp x28, #0x8"),
+ ([0x9f, 0x27, 0x00, 0xf1], "cmp x28, #0x9"),
+ ([0x9f, 0x2b, 0x00, 0xf1], "cmp x28, #0xa"),
+ ([0x1f, 0x2c, 0x00, 0xf1], "cmp x0, #0xb"),
+ ([0x9f, 0x2f, 0x00, 0xf1], "cmp x28, #0xb"),
+ ([0x1f, 0x30, 0x00, 0xf1], "cmp x0, #0xc"),
+ ([0x9f, 0x33, 0x00, 0xf1], "cmp x28, #0xc"),
+ ([0x1f, 0x34, 0x00, 0xf1], "cmp x0, #0xd"),
+ ([0xbf, 0x36, 0x00, 0xf1], "cmp x21, #0xd"),
+ ([0xdf, 0x36, 0x00, 0xf1], "cmp x22, #0xd"),
+ ([0x1f, 0x3d, 0x00, 0xf1], "cmp x8, #0xf"),
+ ([0xbf, 0x3e, 0x00, 0xf1], "cmp x21, #0xf"),
+ ([0xdf, 0x3e, 0x00, 0xf1], "cmp x22, #0xf"),
+ ([0x1f, 0x41, 0x00, 0xf1], "cmp x8, #0x10"),
+ ([0x5f, 0x41, 0x00, 0xf1], "cmp x10, #0x10"),
+ ([0xff, 0x80, 0x00, 0xf1], "cmp x7, #0x20"),
+ ([0x3f, 0xfc, 0x00, 0xf1], "cmp x1, #0x3f"),
+ ([0x1f, 0x01, 0x01, 0xf1], "cmp x8, #0x40"),
+ ([0x3f, 0xfc, 0x07, 0xf1], "cmp x1, #0x1ff"),
+ ([0x3f, 0xfc, 0x0f, 0xf1], "cmp x1, #0x3ff"),
+ ([0x7f, 0xfc, 0x0f, 0xf1], "cmp x3, #0x3ff"),
+ ([0x1f, 0x00, 0x10, 0xf1], "cmp x0, #0x400"),
+ ([0x3f, 0x00, 0x10, 0xf1], "cmp x1, #0x400"),
+ ([0x3f, 0x00, 0x24, 0xf1], "cmp x1, #0x900"),
+ ([0x1f, 0xfc, 0x3f, 0xf1], "cmp x0, #0xfff"),
+ ([0x3f, 0xfc, 0x3f, 0xf1], "cmp x1, #0xfff"),
+ ([0x1f, 0x08, 0x40, 0xf1], "cmp x0, #0x2, lsl #12"),
+ ([0x3f, 0x08, 0x40, 0xf1], "cmp x1, #0x2, lsl #12"),
+ ([0x7f, 0x01, 0x00, 0xf1], "cmp x11, #0x0"),
+ ([0x3f, 0x07, 0x00, 0xf1], "cmp x25, #0x1"),
+ ([0x1f, 0x00, 0x00, 0x71], "cmp w0, #0x0"),
+ ([0x3f, 0x04, 0x00, 0x6b], "cmp w1, w0, lsl #1"),
+ ([0x5f, 0x05, 0x80, 0x6b], "cmp w10, w0, asr #1"),
+ ([0x3f, 0x04, 0x00, 0x71], "cmp w1, #0x1"),
+ ([0x5f, 0x24, 0x34, 0x71], "cmp w2, #0xd09"),
+ ([0x7f, 0x0a, 0x40, 0x71], "cmp w19, #0x2, lsl #12"),
+ ([0x1f, 0x80, 0x40, 0x71], "cmp w0, #0x20, lsl #12"),
+ ([0x1f, 0x00, 0x44, 0x71], "cmp w0, #0x100, lsl #12"),
([0x9f, 0x02, 0x1a, 0x2b], "cmn w20, w26"),
- ([0x1f, 0x58, 0x00, 0x31], "cmn w0, 0x16"),
- ([0x1f, 0x04, 0x00, 0xb1], "cmn x0, 0x1"),
- ([0xdf, 0x38, 0x00, 0xb1], "cmn x6, 0xe"),
+ ([0x1f, 0x58, 0x00, 0x31], "cmn w0, #0x16"),
+ ([0x1f, 0x04, 0x00, 0xb1], "cmn x0, #0x1"),
+ ([0xdf, 0x38, 0x00, 0xb1], "cmn x6, #0xe"),
];
let errs = run_tests(TESTS);
@@ -3612,15 +3612,15 @@ fn test_openblas_cmp_ops() {
fn test_openblas_tst_ops() {
const TESTS: &[([u8; 4], &'static str)] = &[
([0x9f, 0x02, 0x05, 0x6a], "tst w20, w5"),
- ([0x1f, 0x78, 0x1e, 0x72], "tst w0, 0xfffffffd"),
- ([0x3f, 0x78, 0x1e, 0x72], "tst w1, 0xfffffffd"),
+ ([0x1f, 0x78, 0x1e, 0x72], "tst w0, #0xfffffffd"),
+ ([0x3f, 0x78, 0x1e, 0x72], "tst w1, #0xfffffffd"),
([0x5f, 0x03, 0x13, 0xea], "tst x26, x19"),
- ([0x3f, 0x01, 0x40, 0xf2], "tst x9, 0x1"),
- ([0x5f, 0x01, 0x40, 0xf2], "tst x10, 0x1"),
- ([0x1f, 0x04, 0x40, 0xf2], "tst x0, 0x3"),
- ([0x3f, 0x09, 0x40, 0xf2], "tst x9, 0x7"),
- ([0x3f, 0x01, 0x7e, 0xf2], "tst x9, 0x4"),
- ([0x5f, 0x04, 0x7f, 0xf2], "tst x2, 0x6"),
+ ([0x3f, 0x01, 0x40, 0xf2], "tst x9, #0x1"),
+ ([0x5f, 0x01, 0x40, 0xf2], "tst x10, #0x1"),
+ ([0x1f, 0x04, 0x40, 0xf2], "tst x0, #0x3"),
+ ([0x3f, 0x09, 0x40, 0xf2], "tst x9, #0x7"),
+ ([0x3f, 0x01, 0x7e, 0xf2], "tst x9, #0x4"),
+ ([0x5f, 0x04, 0x7f, 0xf2], "tst x2, #0x6"),
];
let errs = run_tests(TESTS);
@@ -3664,20 +3664,20 @@ fn test_openblas_conditional_ops() {
([0x7b, 0x13, 0x9f, 0x5a], "csinv w27, w27, wzr, ne"),
([0xc6, 0xb0, 0x9f, 0x5a], "csinv w6, w6, wzr, lt"),
([0x63, 0xc0, 0x9f, 0x5a], "csinv w3, w3, wzr, gt"),
- ([0x84, 0x1b, 0x40, 0xfa], "ccmp x28, 0x0, 0x4, ne"),
- ([0x84, 0xca, 0x40, 0xfa], "ccmp x20, 0x0, 0x4, gt"),
- ([0x80, 0x08, 0x41, 0xfa], "ccmp x4, 0x1, 0x0, eq"),
- ([0x64, 0x12, 0x43, 0xfa], "ccmp x19, x3, 0x4, ne"),
- ([0x04, 0x10, 0x45, 0xfa], "ccmp x0, x5, 0x4, ne"),
- ([0x24, 0xd3, 0x5b, 0xfa], "ccmp x25, x27, 0x4, le"),
- ([0x00, 0x08, 0x40, 0x7a], "ccmp w0, 0x0, 0x0, eq"),
- ([0x01, 0xc0, 0x5c, 0x7a], "ccmp w0, w28, 0x1, gt"),
- ([0x04, 0x08, 0x41, 0x3a], "ccmn w0, 0x1, 0x4, eq"),
- ([0x84, 0xbb, 0x41, 0x3a], "ccmn w28, 0x1, 0x4, lt"),
- ([0x04, 0xc8, 0x41, 0x3a], "ccmn w0, 0x1, 0x4, gt"),
- ([0xa4, 0xc8, 0x41, 0x3a], "ccmn w5, 0x1, 0x4, gt"),
- ([0x84, 0xdb, 0x41, 0x3a], "ccmn w28, 0x1, 0x4, le"),
- ([0x84, 0x1b, 0x4a, 0x3a], "ccmn w28, 0xa, 0x4, ne"),
+ ([0x84, 0x1b, 0x40, 0xfa], "ccmp x28, #0x0, #0x4, ne"),
+ ([0x84, 0xca, 0x40, 0xfa], "ccmp x20, #0x0, #0x4, gt"),
+ ([0x80, 0x08, 0x41, 0xfa], "ccmp x4, #0x1, #0x0, eq"),
+ ([0x64, 0x12, 0x43, 0xfa], "ccmp x19, x3, #0x4, ne"),
+ ([0x04, 0x10, 0x45, 0xfa], "ccmp x0, x5, #0x4, ne"),
+ ([0x24, 0xd3, 0x5b, 0xfa], "ccmp x25, x27, #0x4, le"),
+ ([0x00, 0x08, 0x40, 0x7a], "ccmp w0, #0x0, #0x0, eq"),
+ ([0x01, 0xc0, 0x5c, 0x7a], "ccmp w0, w28, #0x1, gt"),
+ ([0x04, 0x08, 0x41, 0x3a], "ccmn w0, #0x1, #0x4, eq"),
+ ([0x84, 0xbb, 0x41, 0x3a], "ccmn w28, #0x1, #0x4, lt"),
+ ([0x04, 0xc8, 0x41, 0x3a], "ccmn w0, #0x1, #0x4, gt"),
+ ([0xa4, 0xc8, 0x41, 0x3a], "ccmn w5, #0x1, #0x4, gt"),
+ ([0x84, 0xdb, 0x41, 0x3a], "ccmn w28, #0x1, #0x4, le"),
+ ([0x84, 0x1b, 0x4a, 0x3a], "ccmn w28, #0xa, #0x4, ne"),
([0x08, 0x41, 0x80, 0x9a], "csel x8, x8, x0, mi"),
([0x8c, 0xb1, 0x8f, 0x9a], "csel x12, x12, x15, lt"),
([0xc6, 0x50, 0x97, 0x9a], "csel x6, x6, x23, pl"),
@@ -3760,11 +3760,11 @@ fn test_openblas_branch_ops() {
([0x40, 0x00, 0x00, 0x35], "cbnz w0, $+0x8"),
([0x19, 0xfd, 0xff, 0x35], "cbnz w25, $-0x60"),
([0xc1, 0xff, 0xff, 0x35], "cbnz w1, $-0x8"),
- ([0x61, 0x00, 0x00, 0x36], "tbz w1, 0x0, $+0xc"),
- ([0x20, 0x01, 0x00, 0x36], "tbz w0, 0x0, $+0x24"),
- ([0x73, 0x00, 0xf8, 0x36], "tbz w19, 0x1f, $+0xc"),
- ([0x27, 0xff, 0xff, 0x36], "tbz w7, 0x1f, $-0x1c"),
- ([0xf3, 0x05, 0x00, 0x37], "tbnz w19, 0x0, $+0xbc"),
+ ([0x61, 0x00, 0x00, 0x36], "tbz w1, #0x0, $+0xc"),
+ ([0x20, 0x01, 0x00, 0x36], "tbz w0, #0x0, $+0x24"),
+ ([0x73, 0x00, 0xf8, 0x36], "tbz w19, #0x1f, $+0xc"),
+ ([0x27, 0xff, 0xff, 0x36], "tbz w7, #0x1f, $-0x1c"),
+ ([0xf3, 0x05, 0x00, 0x37], "tbnz w19, #0x0, $+0xbc"),
([0xfb, 0xff, 0xff, 0x17], "b $-0x14"),
([0xfd, 0xff, 0xff, 0x17], "b $-0xc"),
([0x6d, 0x02, 0x00, 0x54], "b.le $+0x4c"),
@@ -3775,9 +3775,9 @@ fn test_openblas_branch_ops() {
([0x7c, 0x00, 0x00, 0xb4], "cbz x28, $+0xc"),
([0x96, 0x00, 0x00, 0xb5], "cbnz x22, $+0x10"),
([0x98, 0x00, 0x00, 0xb5], "cbnz x24, $+0x10"),
- ([0xa6, 0x00, 0xf8, 0xb6], "tbz x6, 0x3f, $+0x14"),
- ([0x73, 0x03, 0xf8, 0xb7], "tbnz x19, 0x3f, $+0x6c"),
- ([0x23, 0xf8, 0xff, 0xb7], "tbnz x3, 0x3f, $-0xfc"),
+ ([0xa6, 0x00, 0xf8, 0xb6], "tbz x6, #0x3f, $+0x14"),
+ ([0x73, 0x03, 0xf8, 0xb7], "tbnz x19, #0x3f, $+0x6c"),
+ ([0x23, 0xf8, 0xff, 0xb7], "tbnz x3, #0x3f, $-0xfc"),
([0x40, 0x00, 0x1f, 0xd6], "br x2"),
([0x00, 0x02, 0x1f, 0xd6], "br x16"),
([0x20, 0x02, 0x1f, 0xd6], "br x17"),
@@ -3816,7 +3816,7 @@ fn test_openblas_simd_ops() {
([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]"),
- ([0x00, 0x06, 0x20, 0x1e], "fccmp s16, s0, 0x0, eq"),
+ ([0x00, 0x06, 0x20, 0x1e], "fccmp s16, s0, #0x0, eq"),
([0x05, 0x08, 0x22, 0x1e], "fmul s5, s0, s2"),
([0x35, 0x88, 0x24, 0x1e], "fnmul s21, s1, s4"),
([0x42, 0x88, 0x24, 0x1e], "fnmul s2, s2, s4"),
@@ -3832,24 +3832,24 @@ fn test_openblas_simd_ops() {
([0x59, 0x18, 0x3d, 0x1e], "fdiv s25, s2, s29"),
([0x26, 0x08, 0x3e, 0x1e], "fmul s6, s1, s30"),
([0x39, 0x3b, 0x3f, 0x1e], "fsub s25, s25, s31"),
- ([0x20, 0x04, 0x60, 0x1e], "fccmp d1, d0, 0x0, eq"),
- ([0x20, 0x06, 0x60, 0x1e], "fccmp d17, d0, 0x0, eq"),
+ ([0x20, 0x04, 0x60, 0x1e], "fccmp d1, d0, #0x0, eq"),
+ ([0x20, 0x06, 0x60, 0x1e], "fccmp d17, d0, #0x0, eq"),
([0x00, 0x08, 0x60, 0x1e], "fmul d0, d0, d0"),
([0xe8, 0x0b, 0x60, 0x1e], "fmul d8, d31, d0"),
([0xf3, 0x0b, 0x60, 0x1e], "fmul d19, d31, d0"),
([0x40, 0x0c, 0x60, 0x1e], "fcsel d0, d2, d0, eq"),
([0x08, 0x0d, 0x60, 0x1e], "fcsel d8, d8, d0, eq"),
- ([0xc4, 0x14, 0x60, 0x1e], "fccmp d6, d0, 0x4, ne"),
- ([0x72, 0x15, 0x60, 0x1e], "fccmpe d11, d0, 0x2, ne"),
- ([0xa4, 0x15, 0x60, 0x1e], "fccmp d13, d0, 0x4, ne"),
- ([0xe4, 0x15, 0x60, 0x1e], "fccmp d15, d0, 0x4, ne"),
+ ([0xc4, 0x14, 0x60, 0x1e], "fccmp d6, d0, #0x4, ne"),
+ ([0x72, 0x15, 0x60, 0x1e], "fccmpe d11, d0, #0x2, ne"),
+ ([0xa4, 0x15, 0x60, 0x1e], "fccmp d13, d0, #0x4, ne"),
+ ([0xe4, 0x15, 0x60, 0x1e], "fccmp d15, d0, #0x4, ne"),
([0x20, 0x18, 0x60, 0x1e], "fdiv d0, d1, d0"),
([0xc6, 0x1a, 0x60, 0x1e], "fdiv d6, d22, d0"),
([0x20, 0x1c, 0x60, 0x1e], "fcsel d0, d1, d0, ne"),
([0xef, 0x1d, 0x60, 0x1e], "fcsel d15, d15, d0, ne"),
([0x70, 0x22, 0x60, 0x1e], "fcmpe d19, d0"),
- ([0xd8, 0x22, 0x60, 0x1e], "fcmpe d22, 0x0"), // note, 0x0, not 0.0
- ([0x08, 0x23, 0x60, 0x1e], "fcmp d24, 0x0"), // note, 0x0, not 0.0
+ ([0xd8, 0x22, 0x60, 0x1e], "fcmpe d22, #0.0"),
+ ([0x08, 0x23, 0x60, 0x1e], "fcmp d24, #0.0"),
([0x80, 0x28, 0x60, 0x1e], "fadd d0, d4, d0"),
([0x22, 0x4c, 0x60, 0x1e], "fcsel d2, d1, d0, mi"),
([0x21, 0x5c, 0x60, 0x1e], "fcsel d1, d1, d0, pl"),
@@ -3864,7 +3864,7 @@ fn test_openblas_simd_ops() {
([0x6b, 0xdd, 0x60, 0x1e], "fcsel d11, d11, d0, le"),
([0xec, 0x0b, 0x61, 0x1e], "fmul d12, d31, d1"),
([0x41, 0x0c, 0x61, 0x1e], "fcsel d1, d2, d1, eq"),
- ([0x04, 0x14, 0x61, 0x1e], "fccmp d0, d1, 0x4, ne"),
+ ([0x04, 0x14, 0x61, 0x1e], "fccmp d0, d1, #0x4, ne"),
([0xe1, 0x1b, 0x61, 0x1e], "fdiv d1, d31, d1"),
([0x00, 0x1c, 0x61, 0x1e], "fcsel d0, d0, d1, ne"),
([0xd0, 0x22, 0x61, 0x1e], "fcmpe d22, d1"),
@@ -3879,21 +3879,21 @@ fn test_openblas_simd_ops() {
([0x01, 0x9c, 0x61, 0x1e], "fcsel d1, d0, d1, ls"),
([0x02, 0xac, 0x61, 0x1e], "fcsel d2, d0, d1, ge"),
([0x84, 0xbc, 0x61, 0x1e], "fcsel d4, d4, d1, lt"),
- ([0x04, 0xc4, 0x61, 0x1e], "fccmp d0, d1, 0x4, gt"),
- ([0x11, 0xc4, 0x61, 0x1e], "fccmpe d0, d1, 0x1, gt"),
+ ([0x04, 0xc4, 0x61, 0x1e], "fccmp d0, d1, #0x4, gt"),
+ ([0x11, 0xc4, 0x61, 0x1e], "fccmpe d0, d1, #0x1, gt"),
([0x50, 0xcc, 0x61, 0x1e], "fcsel d16, d2, d1, gt"),
([0x92, 0xcc, 0x61, 0x1e], "fcsel d18, d4, d1, gt"),
([0x00, 0xdc, 0x61, 0x1e], "fcsel d0, d0, d1, le"),
- ([0x20, 0x04, 0x62, 0x1e], "fccmp d1, d2, 0x0, eq"),
+ ([0x20, 0x04, 0x62, 0x1e], "fccmp d1, d2, #0x0, eq"),
([0x00, 0x08, 0x62, 0x1e], "fmul d0, d0, d2"),
([0x8b, 0x09, 0x62, 0x1e], "fmul d11, d12, d2"),
- ([0x04, 0x14, 0x6a, 0x1e], "fccmp d0, d10, 0x4, ne"),
- ([0x72, 0x15, 0x6a, 0x1e], "fccmpe d11, d10, 0x2, ne"),
+ ([0x04, 0x14, 0x6a, 0x1e], "fccmp d0, d10, #0x4, ne"),
+ ([0x72, 0x15, 0x6a, 0x1e], "fccmpe d11, d10, #0x2, ne"),
([0x00, 0x18, 0x6a, 0x1e], "fdiv d0, d0, d10"),
([0xf5, 0x5e, 0x75, 0x1e], "fcsel d21, d23, d21, pl"),
([0xa5, 0x68, 0x75, 0x1e], "fmaxnm d5, d5, d21"),
([0x42, 0x88, 0x75, 0x1e], "fnmul d2, d2, d21"),
- ([0x20, 0x06, 0x76, 0x1e], "fccmp d17, d22, 0x0, eq"),
+ ([0x20, 0x06, 0x76, 0x1e], "fccmp d17, d22, #0x0, eq"),
([0x41, 0x18, 0x76, 0x1e], "fdiv d1, d2, d22"),
([0xa5, 0x18, 0x76, 0x1e], "fdiv d5, d5, d22"),
([0xf0, 0x22, 0x76, 0x1e], "fcmpe d23, d22"),
@@ -4075,7 +4075,7 @@ fn test_openblas_simd_ops() {
([0x94, 0xd6, 0x35, 0x6e], "faddp v20.4s, v20.4s, v21.4s"),
([0xd6, 0xd6, 0x37, 0x6e], "faddp v22.4s, v22.4s, v23.4s"),
([0x18, 0xd7, 0x39, 0x6e], "faddp v24.4s, v24.4s, v25.4s"),
- ([0xc7, 0x20, 0x06, 0x2e], "ext v7.8b, v6.8b, v6.8b, 0x4"),
+ ([0xc7, 0x20, 0x06, 0x2e], "ext v7.8b, v6.8b, v6.8b, #0x4"),
([0x27, 0x1c, 0x20, 0x2e], "eor v7.8b, v1.8b, v0.8b"),
([0x22, 0x1c, 0x22, 0x2e], "eor v2.8b, v1.8b, v2.8b"),
([0x42, 0x1c, 0x32, 0x2e], "eor v2.8b, v2.8b, v18.8b"),
@@ -4097,12 +4097,12 @@ fn test_openblas_simd_ops() {
([0x7b, 0x1f, 0x3b, 0x6e], "eor v27.16b, v27.16b, v27.16b"),
([0xbd, 0x1f, 0x3d, 0x6e], "eor v29.16b, v29.16b, v29.16b"),
([0xff, 0x1f, 0x3f, 0x6e], "eor v31.16b, v31.16b, v31.16b"),
- ([0xa5, 0x40, 0x05, 0x6e], "ext v5.16b, v5.16b, v5.16b, 0x8"),
- ([0xc7, 0x40, 0x06, 0x6e], "ext v7.16b, v6.16b, v6.16b, 0x8"),
+ ([0xa5, 0x40, 0x05, 0x6e], "ext v5.16b, v5.16b, v5.16b, #0x8"),
+ ([0xc7, 0x40, 0x06, 0x6e], "ext v7.16b, v6.16b, v6.16b, #0x8"),
([0x02, 0x1d, 0x21, 0x0e], "and v2.8b, v8.8b, v1.8b"),
([0x21, 0x1c, 0x22, 0x0e], "and v1.8b, v1.8b, v2.8b"),
([0x21, 0x1c, 0x32, 0x0e], "and v1.8b, v1.8b, v18.8b"),
- ([0x08, 0x54, 0x22, 0x0f], "shl v8.2s, v0.2s, 0x2"),
+ ([0x08, 0x54, 0x22, 0x0f], "shl v8.2s, v0.2s, #0x2"),
([0xfe, 0x43, 0x60, 0x1e], "fmov d30, d31"),
([0x54, 0xc2, 0x20, 0x1e], "fabs s20, s18"),
([0xf7, 0xc3, 0x60, 0x1e], "fabs d23, d31"),
@@ -4110,15 +4110,15 @@ fn test_openblas_simd_ops() {
([0x06, 0x40, 0x61, 0x1e], "fneg d6, d0"),
([0x00, 0xc0, 0x61, 0x1e], "fsqrt d0, d0"),
([0x02, 0xc2, 0x61, 0x1e], "fsqrt d2, d16"),
- ([0x08, 0x90, 0x26, 0x1e], "fmov s8, 20"),
- ([0x00, 0x10, 0x2e, 0x1e], "fmov s0, 1"),
- ([0x08, 0x90, 0x3b, 0x1e], "fmov s8, -0.4375"),
- ([0x01, 0x10, 0x3c, 0x1e], "fmov s1, -0.5"),
- ([0x00, 0x10, 0x3e, 0x1e], "fmov s0, -1"),
- ([0x13, 0x10, 0x3e, 0x1e], "fmov s19, -1"),
- ([0x14, 0x10, 0x60, 0x1e], "fmov d20, 2"),
- ([0x18, 0x10, 0x61, 0x1e], "fmov d24, 3"),
- ([0x13, 0x10, 0x7e, 0x1e], "fmov d19, -1"),
+ ([0x08, 0x90, 0x26, 0x1e], "fmov s8, #20.0"),
+ ([0x00, 0x10, 0x2e, 0x1e], "fmov s0, #1.0"),
+ ([0x08, 0x90, 0x3b, 0x1e], "fmov s8, #-0.4375"),
+ ([0x01, 0x10, 0x3c, 0x1e], "fmov s1, #-0.5"),
+ ([0x00, 0x10, 0x3e, 0x1e], "fmov s0, #-1.0"),
+ ([0x13, 0x10, 0x3e, 0x1e], "fmov s19, #-1.0"),
+ ([0x14, 0x10, 0x60, 0x1e], "fmov d20, #2.0"),
+ ([0x18, 0x10, 0x61, 0x1e], "fmov d24, #3.0"),
+ ([0x13, 0x10, 0x7e, 0x1e], "fmov d19, #-1.0"),
];
let errs = run_tests(TESTS);
@@ -4133,8 +4133,8 @@ fn test_openblas_simd_ops() {
#[test]
fn test_openblas_simd_movs() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x55, 0x04, 0x04, 0x4e], "dup v21.4s, v2.s[0]"),
- ([0x38, 0x07, 0x08, 0x4e], "dup v24.2d, v25.d[0]"),
+ ([0x55, 0x04, 0x04, 0x4e], "mov v21.4s, v2.s[0]"),
+ ([0x38, 0x07, 0x08, 0x4e], "mov v24.2d, v25.d[0]"),
([0x64, 0x64, 0x04, 0x6e], "mov v4.s[0], v3.s[3]"),
([0x67, 0x64, 0x04, 0x6e], "mov v7.s[0], v3.s[3]"),
([0x4b, 0x64, 0x14, 0x6e], "mov v11.s[2], v2.s[3]"),
@@ -4156,12 +4156,12 @@ fn test_openblas_simd_movs() {
([0x6a, 0x44, 0x1c, 0x6e], "mov v10.s[3], v3.s[2]"),
([0x6b, 0x64, 0x1c, 0x6e], "mov v11.s[3], v3.s[3]"),
([0x43, 0x1c, 0xa2, 0x4e], "mov v3.16b, v2.16b"),
- ([0x1c, 0x04, 0x00, 0x0f], "movi v28.2s, 0x0"),
- ([0x28, 0x04, 0x00, 0x0f], "movi v8.2s, 0x1"),
- ([0x80, 0x66, 0x01, 0x0f], "movi v0.2s, 0x34, lsl 24"),
- ([0x17, 0x64, 0x04, 0x0f], "movi v23.2s, 0x80, lsl 24"),
- ([0x01, 0xe4, 0x00, 0x6f], "movi v1.2d, 0x0"),
- ([0x02, 0xe4, 0x00, 0x6f], "movi v2.2d, 0x0"),
+ ([0x1c, 0x04, 0x00, 0x0f], "movi v28.2s, #0x0"),
+ ([0x28, 0x04, 0x00, 0x0f], "movi v8.2s, #0x1"),
+ ([0x80, 0x66, 0x01, 0x0f], "movi v0.2s, #0x34, lsl #24"),
+ ([0x17, 0x64, 0x04, 0x0f], "movi v23.2s, #0x80, lsl #24"),
+ ([0x01, 0xe4, 0x00, 0x6f], "movi v1.2d, #0x0"),
+ ([0x02, 0xe4, 0x00, 0x6f], "movi v2.2d, #0x0"),
];
let errs = run_tests(TESTS);
@@ -4176,7 +4176,7 @@ fn test_openblas_simd_movs() {
#[test]
fn test_openblas_misc_ops() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x1f, 0x20, 0x03, 0xd5], "nop"),
+ ([0x1f, 0x20, 0x03, 0xd5], "esb"), // executes as nop, but also a barrier
([0xbf, 0x3a, 0x03, 0xd5], "dmb ishst"),
([0xbf, 0x3b, 0x03, 0xd5], "dmb ish"),
([0xdf, 0x3f, 0x03, 0xd5], "isb"),
@@ -4184,19 +4184,19 @@ fn test_openblas_misc_ops() {
([0x54, 0xd0, 0x3b, 0xd5], "mrs x20, tpidr_el0"),
([0x41, 0xe0, 0x3b, 0xd5], "mrs x1, cntvct_el0"),
([0x55, 0xe0, 0x3b, 0xd5], "mrs x21, cntvct_el0"),
- ([0xe2, 0x69, 0xb6, 0xf8], "prfm pldl2keep, [x15, x22]"),
- ([0x00, 0x6a, 0xb7, 0xf8], "prfm pldl1keep, [x16, x23]"),
+ ([0xe2, 0x69, 0xb6, 0xf8], "prfm pldl2keep, [x15, x22, lsl #0]"),
+ ([0x00, 0x6a, 0xb7, 0xf8], "prfm pldl1keep, [x16, x23, lsl #0]"),
([0x80, 0x00, 0x80, 0xf9], "prfm pldl1keep, [x4]"),
([0x81, 0x00, 0x80, 0xf9], "prfm pldl1strm, [x4]"),
([0x00, 0x02, 0x80, 0xf9], "prfm pldl1keep, [x16]"),
- ([0x21, 0x20, 0x80, 0xf9], "prfm pldl1strm, [x1, 0x40]"),
- ([0x00, 0x22, 0x80, 0xf9], "prfm pldl1keep, [x16, 0x40]"),
- ([0x61, 0x30, 0x80, 0xf9], "prfm pldl1strm, [x3, 0x60]"),
- ([0xa2, 0x51, 0x80, 0xf9], "prfm pldl2keep, [x13, 0xa0]"),
- ([0xc2, 0x51, 0x80, 0xf9], "prfm pldl2keep, [x14, 0xa0]"),
- ([0xe2, 0x51, 0x80, 0xf9], "prfm pldl2keep, [x15, 0xa0]"),
- ([0xa1, 0x00, 0x82, 0xf9], "prfm pldl1strm, [x5, 0x400]"),
- ([0x00, 0x82, 0x87, 0xf9], "prfm pldl1keep, [x16, 0xf00]"),
+ ([0x21, 0x20, 0x80, 0xf9], "prfm pldl1strm, [x1, #0x40]"),
+ ([0x00, 0x22, 0x80, 0xf9], "prfm pldl1keep, [x16, #0x40]"),
+ ([0x61, 0x30, 0x80, 0xf9], "prfm pldl1strm, [x3, #0x60]"),
+ ([0xa2, 0x51, 0x80, 0xf9], "prfm pldl2keep, [x13, #0xa0]"),
+ ([0xc2, 0x51, 0x80, 0xf9], "prfm pldl2keep, [x14, #0xa0]"),
+ ([0xe2, 0x51, 0x80, 0xf9], "prfm pldl2keep, [x15, #0xa0]"),
+ ([0xa1, 0x00, 0x82, 0xf9], "prfm pldl1strm, [x5, #0x400]"),
+ ([0x00, 0x82, 0x87, 0xf9], "prfm pldl1keep, [x16, #0xf00]"),
];
let errs = run_tests(TESTS);
@@ -4276,9 +4276,9 @@ fn test_fabd_general() {
#[test]
fn test_ext() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0xa5, 0x40, 0x05, 0x6e], "ext v5.16b, v5.16b, v5.16b, 0x8"),
- ([0xc7, 0x40, 0x06, 0x6e], "ext v7.16b, v6.16b, v6.16b, 0x8"),
- ([0xc7, 0x20, 0x06, 0x2e], "ext v7.8b, v6.8b, v6.8b, 0x4"),
+ ([0xa5, 0x40, 0x05, 0x6e], "ext v5.16b, v5.16b, v5.16b, #0x8"),
+ ([0xc7, 0x40, 0x06, 0x6e], "ext v7.16b, v6.16b, v6.16b, #0x8"),
+ ([0xc7, 0x20, 0x06, 0x2e], "ext v7.8b, v6.8b, v6.8b, #0x4"),
];
let errs = run_tests(TESTS);
@@ -4329,13 +4329,13 @@ fn test_simd_abs() {
#[test]
fn test_movi() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x1c, 0x04, 0x00, 0x0f], "movi v28.2s, 0x0"),
- ([0x28, 0x04, 0x00, 0x0f], "movi v8.2s, 0x1"),
- ([0x80, 0x66, 0x01, 0x0f], "movi v0.2s, 0x34, lsl 24"),
- ([0x17, 0x64, 0x04, 0x0f], "movi v23.2s, 0x80, lsl 24"),
- ([0x01, 0xe4, 0x00, 0x6f], "movi v1.2d, 0x0"),
- ([0x02, 0xe4, 0x00, 0x6f], "movi v2.2d, 0x0"),
- ([0x03, 0xe4, 0x00, 0x2f], "movi d3, 0x0"),
+ ([0x1c, 0x04, 0x00, 0x0f], "movi v28.2s, #0x0"),
+ ([0x28, 0x04, 0x00, 0x0f], "movi v8.2s, #0x1"),
+ ([0x80, 0x66, 0x01, 0x0f], "movi v0.2s, #0x34, lsl #24"),
+ ([0x17, 0x64, 0x04, 0x0f], "movi v23.2s, #0x80, lsl #24"),
+ ([0x01, 0xe4, 0x00, 0x6f], "movi v1.2d, #0x0"),
+ ([0x02, 0xe4, 0x00, 0x6f], "movi v2.2d, #0x0"),
+ ([0x03, 0xe4, 0x00, 0x2f], "movi d3, #0x0"),
];
let errs = run_tests(TESTS);
@@ -4349,7 +4349,7 @@ fn test_movi() {
#[test]
fn test_weird_str() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x08, 0xdb, 0x7c, 0xf8], "ldr x8, [x24, w28, sxtw 3]"),
+ ([0x08, 0xdb, 0x7c, 0xf8], "ldr x8, [x24, w28, sxtw #3]"),
];
let errs = run_tests(TESTS);
@@ -4450,7 +4450,7 @@ fn test_saddw() {
#[test]
fn test_vector_cmge() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x00, 0x98, 0x20, 0x0e], "cmeq v0.8b, v0.8b, #0"),
+ ([0x00, 0x98, 0x20, 0x0e], "cmeq v0.8b, v0.8b, #0x0"),
([0x00, 0xc8, 0xa0, 0x0e], "fcmgt v0.2s, v0.2s, #0.0"),
];
let errs = run_tests(TESTS);
@@ -4521,7 +4521,7 @@ fn test_simd_two_register_misc_fp16() {
#[test]
fn test_simd_three_same_extra() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x00, 0x94, 0x90, 0x0e], "sdot v0.2s, v0.8b, v0.8b"),
+ ([0x00, 0x94, 0x90, 0x0e], "sdot v0.2s, v0.8b, v16.8b"),
];
let errs = run_tests(TESTS);
@@ -4550,7 +4550,7 @@ fn test_rev64() {
fn test_adds_aliases() {
const TESTS: &[([u8; 4], &'static str)] = &[
([0x1f, 0x00, 0x20, 0x2b], "cmn w0, w0, uxtb"),
- ([0x1f, 0x00, 0x40, 0x2b], "cmn w0, w0, uxtb"),
+ ([0x1f, 0x00, 0x40, 0x2b], "cmn w0, w0, lsr"),
];
let errs = run_tests(TESTS);
@@ -4565,9 +4565,7 @@ fn test_adds_aliases() {
fn test_mov_aliases() {
const TESTS: &[([u8; 4], &'static str)] = &[
// does not alias when lsl #12
- ([0x00, 0x00, 0x40, 0x11], "add w0, w0, #0, lsl #12"),
- // aliases for unhifted imm
- ([0x00, 0x00, 0x00, 0x11], "mov w0, w0"),
+ ([0x00, 0x00, 0x40, 0x11], "add w0, w0, #0x0, lsl #12"),
// shift makes this not alias mov
([0xe0, 0x07, 0x00, 0x2a], "orr w0, wzr, w0, lsl #1"),
];
@@ -4583,7 +4581,7 @@ fn test_mov_aliases() {
#[test]
fn test_sbfm_aliases() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x00, 0x7c, 0x00, 0x13], "asr w0, w0, #0"),
+ ([0x00, 0x7c, 0x00, 0x13], "asr w0, w0, #0x0"),
];
let errs = run_tests(TESTS);
@@ -4669,7 +4667,7 @@ fn test_stnp() {
#[test]
fn test_preindex() {
const TESTS: &[([u8; 4], &'static str)] = &[
- ([0x00, 0x00, 0x80, 0x2d], "stp s0, s0, [x0, #0]!"),
+ ([0x00, 0x00, 0x80, 0x2d], "stp s0, s0, [x0, #0x0]!"),
];
let errs = run_tests(TESTS);
@@ -4804,19 +4802,19 @@ fn test_sha() {
fn test_misc() {
const TESTS: &[([u8; 4], &'static str)] = &[
([0x00, 0x98, 0x00, 0x2f], "fmulx v0.4h, v0.4h, v0.h[4]"),
- ([0x00, 0xc4, 0x00, 0x2f], "mvni v0.2s, #0x0, msl #0x8"),
- ([0x00, 0xd4, 0x00, 0x2f], "mvni v0.2s, #0x0, msl #0x16"),
+ ([0x00, 0xc4, 0x00, 0x2f], "mvni v0.2s, #0x0, msl #8"),
+ ([0x00, 0xd4, 0x00, 0x2f], "mvni v0.2s, #0x0, msl #16"),
([0x00, 0xe0, 0x80, 0x2f], "udot v0.2s, v0.8b, v0.4b[0]"),
- ([0x00, 0x03, 0x00, 0x32], "orr w0, wzr, #0x1"),
- ([0x00, 0x00, 0x00, 0x33], "bfxil w0, w0, #0, #1"),
- ([0xe0, 0x03, 0x00, 0x33], "bfc w0, #0, #1"),
+ ([0x00, 0x03, 0x00, 0x32], "orr w0, w24, #0x1"),
+ ([0x00, 0x00, 0x00, 0x33], "bfxil w0, w0, #0x0, #0x1"),
+// ([0xe0, 0x03, 0x00, 0x33], "bfc w0, #0x0, #0x1"),
([0x00, 0x00, 0x01, 0x33], "bfi w0, w0, #0x1f, #0x1"),
([0x00, 0x08, 0x00, 0x38], "sttrb w0, [x0]"),
([0x1f, 0x00, 0x20, 0x38], "staddb w0, [x0]"),
- ([0x00, 0x58, 0x20, 0x38], "strb w0, [x0, w0, uxtw #0x0]"),
+ ([0x00, 0x58, 0x20, 0x38], "strb w0, [x0, w0, uxtw]"),
([0x00, 0xc0, 0xbf, 0x38], "ldaprb w0, [x0]"),
([0x0d, 0x08, 0x00, 0x3a], "setf8 w0"),
- ([0x00, 0x58, 0xbf, 0x3c], "str q0, [x0, wzr, uxtw #0x4]"),
+ ([0x00, 0x58, 0xbf, 0x3c], "str q0, [x0, wzr, uxtw #4]"),
([0x00, 0x04, 0x01, 0x4e], "mov v0.16b, v0.b[0]"), // "The alias is always the preferred disassembly."
([0x00, 0x38, 0x20, 0x4e], "suqadd v0.16b, v0.16b"),
([0x00, 0x88, 0x20, 0x4e], "cmgt v0.16b, v0.16b, #0x0"),
@@ -4849,7 +4847,7 @@ fn test_misc() {
([0x00, 0x4c, 0xc0, 0x9a], "crc32x w0, w0, x0"),
([0x00, 0x00, 0x40, 0x9b], "smulh x0, x0, x0"),
([0x00, 0x08, 0x40, 0xce], "sm3ss1 v0.4s, v0.4s, v0.4s, v2.4s"),
- ([0x00, 0x1c, 0x40, 0xd3], "ubfx x0, x0, #0x0, #0x8"),
+// ([0x00, 0x1c, 0x40, 0xd3], "ubfx x0, x0, #0x0, #0x8"),
([0x00, 0x08, 0x00, 0xf8], "sttr x0, [x0]"),
([0x00, 0x14, 0x20, 0xf8], "ldraa x0, [x0, #0x8]"),
([0x00, 0x00, 0x80, 0xf8], "prfum pldl1keep, [x0]"),
@@ -4858,8 +4856,8 @@ fn test_misc() {
([0x00, 0xc0, 0x40, 0x0f], "sqdmulh v0.4h, v0.4h, v0.h[0]"),
([0x00, 0xd0, 0x40, 0x0f], "sqrdmulh v0.4h, v0.4h, v0.h[0]"),
([0x00, 0xc0, 0x40, 0x5f], "sqdmulh h0, h0, v0.h[0]"),
- ([0x00, 0x10, 0x40, 0x6f], "fcmla v0.8h, v0.8h, v0.h[0]"),
- ([0x00, 0x10, 0x80, 0x6f], "fcmla v0.4s, v0.4s, v0.s[0]"),
+ ([0x00, 0x10, 0x40, 0x6f], "fcmla v0.8h, v0.8h, v0.h[0], #0x0"),
+ ([0x00, 0x10, 0x80, 0x6f], "fcmla v0.4s, v0.4s, v0.s[0], #0x0"),
([0x00, 0x14, 0xc0, 0x7e], "fabd h0, h0, h0"),
([0x00, 0x24, 0xc0, 0x7e], "fcmgt h0, h0, h0"),
([0x00, 0xd0, 0x40, 0x7f], "sqrdmlah h0, h0, v0.h[0]"),