1// RUN: mlir-opt %s -split-input-file -verify-diagnostics 2 3// ----- 4 5func.func @arm_sve_convert_from_svbool__bad_mask_type(%bool: vector<2x[16]xi1>) -> vector<2x[8]xi2> { 6 // expected-error@+1 {{'result' must be trailing scalable vector of 1-bit signless integer values with dim -1 having a size of {16, 8, 4, 2, 1}, but got 'vector<2x[8]xi2>'}} 7 %mask = arm_sve.convert_from_svbool %bool : vector<2x[8]xi2> 8 return %mask : vector<2x[8]xi2> 9} 10 11// ----- 12 13func.func @arm_sve_convert_from_svbool__bad_mask_shape(%bool : vector<[16]xi1>) -> vector<[7]xi1> { 14 // expected-error@+1 {{'result' must be trailing scalable vector of 1-bit signless integer values with dim -1 having a size of {16, 8, 4, 2, 1}, but got 'vector<[7]xi1>'}} 15 %mask = arm_sve.convert_from_svbool %bool : vector<[7]xi1> 16 return %mask : vector<[7]xi1> 17} 18 19// ----- 20 21func.func @arm_sve_convert_from_svbool__bad_mask_scalability(%bool : vector<[4]x[16]xi1>) -> vector<[4]x[8]xi1> { 22 // expected-error@+1 {{'result' must be trailing scalable vector of 1-bit signless integer values with dim -1 having a size of {16, 8, 4, 2, 1}, but got 'vector<[4]x[8]xi1>'}} 23 %mask = arm_sve.convert_from_svbool %bool : vector<[4]x[8]xi1> 24 return %mask : vector<[4]x[8]xi1> 25} 26 27// ----- 28 29func.func @arm_sve_convert_to_svbool__bad_mask_type(%mask: vector<2x[8]xi2>) -> vector<2x[16]xi1> { 30 // expected-error@+1 {{'source' must be trailing scalable vector of 1-bit signless integer values with dim -1 having a size of {16, 8, 4, 2, 1}, but got 'vector<2x[8]xi2>'}} 31 %bool = arm_sve.convert_to_svbool %mask : vector<2x[8]xi2> 32 return %bool : vector<2x[16]xi1> 33} 34 35// ----- 36 37func.func @arm_sve_convert_to_svbool__bad_mask_shape(%mask : vector<[7]xi1>) -> vector<[16]xi1> { 38 // expected-error@+1 {{'source' must be trailing scalable vector of 1-bit signless integer values with dim -1 having a size of {16, 8, 4, 2, 1}, but got 'vector<[7]xi1>'}} 39 %bool = arm_sve.convert_to_svbool %mask : vector<[7]xi1> 40 return 41} 42 43// ----- 44 45func.func @arm_sve_convert_to_svbool__bad_mask_scalability(%mask : vector<[4]x[8]xi1>) -> vector<[4]x[16]xi1> { 46 // expected-error@+1 {{'source' must be trailing scalable vector of 1-bit signless integer values with dim -1 having a size of {16, 8, 4, 2, 1}, but got 'vector<[4]x[8]xi1>'}} 47 %bool = arm_sve.convert_to_svbool %mask : vector<[4]x[8]xi1> 48 return 49} 50 51 52// ----- 53 54func.func @arm_sve_zip_x2_bad_vector_type(%a : vector<[7]xi8>) { 55 // expected-error@+1 {{op operand #0 must be an SVE vector with element size <= 64-bit, but got 'vector<[7]xi8>'}} 56 arm_sve.zip.x2 %a, %a : vector<[7]xi8> 57 return 58} 59 60// ----- 61 62func.func @arm_sve_zip_x4_bad_vector_type(%a : vector<[5]xf64>) { 63 // expected-error@+1 {{op operand #0 must be an SVE vector with element size <= 64-bit, but got 'vector<[5]xf64>'}} 64 arm_sve.zip.x4 %a, %a, %a, %a : vector<[5]xf64> 65 return 66} 67 68// ----- 69 70func.func @arm_sve_psel_bad_vector_type(%a : vector<[7]xi1>, %index: index) { 71 // expected-error@+1 {{op operand #0 must be vector<[1]xi1>, vector<[2]xi1>, vector<[4]xi1>, vector<[8]xi1>, or vector<[16]xi1>, but got 'vector<[7]xi1>'}} 72 arm_sve.psel %a, %a[%index] : vector<[7]xi1>, vector<[7]xi1> 73 return 74} 75