brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.0 KiB · 44f09b9 Raw
54 lines · plain
1// RUN: mlir-opt --arith-emulate-wide-int="widest-int-supported=32" \2// RUN:   --split-input-file --verify-diagnostics %s3 4// Make sure we do not crash on unsupported types.5 6// Unsupported result type in `arith.extsi`.7func.func @unsupported_result_integer(%arg0: i64) -> i64 {8  // expected-error@+1 {{failed to legalize operation 'arith.extsi' that was explicitly marked illegal}}9  %0 = arith.extsi %arg0: i64 to i12810  %2 = arith.muli %0, %0 : i12811  %3 = arith.trunci %2 : i128 to i6412  return %3 : i6413}14 15// -----16 17// Unsupported result type in `arith.extsi`.18func.func @unsupported_result_vector(%arg0: vector<4xi64>) -> vector<4xi64> {19  // expected-error@+1 {{failed to legalize operation 'arith.extsi' that was explicitly marked illegal}}20  %0 = arith.extsi %arg0: vector<4xi64> to vector<4xi128>21  %2 = arith.muli %0, %0 : vector<4xi128>22  %3 = arith.trunci %2 : vector<4xi128> to vector<4xi64>23  return %3 : vector<4xi64>24}25 26// -----27 28// Unsupported function return type.29// expected-error@+1 {{failed to legalize operation 'func.func' that was explicitly marked illegal}}30func.func @unsupported_return_type(%arg0: vector<4xi64>) -> vector<4xi128> {31  %0 = arith.extsi %arg0: vector<4xi64> to vector<4xi128>32  return %0 : vector<4xi128>33}34 35// -----36 37// Unsupported function argument type.38// expected-error@+1 {{failed to legalize operation 'func.func' that was explicitly marked illegal}}39func.func @unsupported_argument_type(%arg0: vector<4xi128>) -> vector<4xi64> {40  %0 = arith.trunci %arg0: vector<4xi128> to vector<4xi64>41  return %0 : vector<4xi64>42}43 44// -----45 46// Ensure this case not crash47func.func @unsupported_vector(%arg0: vector<2xi1>) {48  // expected-error@+1 {{failed to legalize unresolved materialization from ('vector<2x2xi32>') to ('vector<2xi64>') that remained live after conversion}}49  %cst_0 = arith.constant dense<0> : vector<2xi64>50  // expected-note@+1 {{see existing live user here}}51  %0 = vector.mask %arg0 { vector.multi_reduction <xor>, %cst_0, %cst_0 [] : vector<2xi64> to vector<2xi64> } : vector<2xi1> -> vector<2xi64>52  return53}54