1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
// RUN: not mlir-pdll %s -split-input-file 2>&1 | FileCheck %s
//===----------------------------------------------------------------------===//
// Rewrite Structure
//===----------------------------------------------------------------------===//
// CHECK: expected identifier name
Rewrite {}
// -----
// CHECK: :6:9: error: `Foo` has already been defined
// CHECK: :5:9: note: see previous definition here
Rewrite Foo();
Rewrite Foo();
// -----
Rewrite Foo() -> Value {
// CHECK: `return` terminated the `Rewrite` body, but found trailing statements afterwards
return _: Value;
return _: Value;
}
// -----
// CHECK: missing return in a `Rewrite` expected to return `Value`
Rewrite Foo() -> Value {
let value: Value;
}
// -----
// CHECK: missing return in a `Rewrite` expected to return `Value`
Rewrite Foo() -> Value => erase op<my_dialect.foo>;
// -----
// CHECK: unable to convert expression of type `Op<my_dialect.foo>` to the expected type of `Attr`
Rewrite Foo() -> Attr => op<my_dialect.foo>;
// -----
// CHECK: expected `Rewrite` lambda body to contain a single expression or an operation rewrite statement; such as `erase`, `replace`, or `rewrite`
Rewrite Foo() => let foo = op<my_dialect.foo>;
// -----
Constraint ValueConstraint(value: Value);
// CHECK: unable to invoke `Constraint` within a rewrite section
Rewrite Foo(value: Value) {
ValueConstraint(value);
}
// -----
Rewrite Bar();
// CHECK: `Bar` has already been defined
Rewrite Foo() {
Rewrite Bar() {};
}
// -----
//===----------------------------------------------------------------------===//
// Arguments
//===----------------------------------------------------------------------===//
// CHECK: expected `(` to start argument list
Rewrite Foo {}
// -----
// CHECK: expected identifier argument name
Rewrite Foo(10{}
// -----
// CHECK: expected `:` before argument constraint
Rewrite Foo(arg{}
// -----
// CHECK: inline `Attr`, `Value`, and `ValueRange` type constraints are not permitted on arguments or results
Rewrite Foo(arg: Value<type>){}
// -----
// CHECK: expected `)` to end argument list
Rewrite Foo(arg: Value{}
// -----
//===----------------------------------------------------------------------===//
// Results
//===----------------------------------------------------------------------===//
// CHECK: expected identifier constraint
Rewrite Foo() -> {}
// -----
// CHECK: cannot create a single-element tuple with an element label
Rewrite Foo() -> result: Value;
// -----
// CHECK: cannot create a single-element tuple with an element label
Rewrite Foo() -> (result: Value);
// -----
// CHECK: expected identifier constraint
Rewrite Foo() -> ();
// -----
// CHECK: expected `:` before result constraint
Rewrite Foo() -> (result{};
// -----
// CHECK: expected `)` to end result list
Rewrite Foo() -> (Op{};
// -----
// CHECK: inline `Attr`, `Value`, and `ValueRange` type constraints are not permitted on arguments or results
Rewrite Foo() -> Value<type>){}
// -----
//===----------------------------------------------------------------------===//
// Native Rewrites
//===----------------------------------------------------------------------===//
Pattern {
// CHECK: external declarations must be declared in global scope
Rewrite ExternalConstraint();
}
// -----
// CHECK: expected `;` after native declaration
Rewrite Foo() [{}]
|