37 lines · plain
1// RUN: not llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2-sm4 2>&1 < %s| FileCheck %s2 3 4// --------------------------------------------------------------------------//5// Invalid element width6 7sm4ekey z0.b, z0.b, z0.b8// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid element width9// CHECK-NEXT: sm4ekey z0.b, z0.b, z0.b10// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:11 12sm4ekey z0.h, z0.h, z0.h13// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid element width14// CHECK-NEXT: sm4ekey z0.h, z0.h, z0.h15// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:16 17sm4ekey z0.d, z0.d, z0.d18// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: invalid element width19// CHECK-NEXT: sm4ekey z0.d, z0.d, z0.d20// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:21 22 23// --------------------------------------------------------------------------//24// Negative tests for instructions that are incompatible with movprfx25 26movprfx z0.s, p0/z, z7.s27sm4ekey z0.s, z1.s, z2.s28// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: instruction is unpredictable when following a movprfx, suggest replacing movprfx with mov29// CHECK-NEXT: sm4ekey z0.s, z1.s, z2.s30// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:31 32movprfx z0, z733sm4ekey z0.s, z1.s, z2.s34// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: instruction is unpredictable when following a movprfx, suggest replacing movprfx with mov35// CHECK-NEXT: sm4ekey z0.s, z1.s, z2.s36// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:37