llvm-project/mlir/test/Transforms/cse.mlir

201 lines
5.5 KiB
MLIR
Raw Normal View History

// RUN: mlir-opt %s -cse | FileCheck %s
// CHECK-DAG: #map0 = (d0) -> (d0 mod 2, d0 mod 2)
#map0 = (d0) -> (d0 mod 2, d0 mod 2)
// CHECK-LABEL: @simple_constant_ml
mlfunc @simple_constant_ml() -> (i32, i32) {
// CHECK: %c1_i32 = constant 1 : i32
%0 = constant 1 : i32
%1 = constant 1 : i32
// CHECK-NEXT: return %c1_i32, %c1_i32 : i32, i32
return %0, %1 : i32, i32
}
// CHECK-LABEL: @simple_constant_cfg
cfgfunc @simple_constant_cfg() -> (i32, i32) {
bb0: // CHECK: bb0
// CHECK-NEXT: %c1_i32 = constant 1 : i32
%0 = constant 1 : i32
// CHECK-NEXT: return %c1_i32, %c1_i32 : i32, i32
%1 = constant 1 : i32
return %0, %1 : i32, i32
}
// CHECK-LABEL: @basic_ml
mlfunc @basic_ml() -> (index, index) {
// CHECK: %c0 = constant 0 : index
%c0 = constant 0 : index
%c1 = constant 0 : index
// CHECK-NEXT: %0 = affine_apply #map0(%c0)
%0 = affine_apply #map0(%c0)
%1 = affine_apply #map0(%c1)
// CHECK-NEXT: return %0#0, %0#0 : index, index
return %0, %1 : index, index
}
// CHECK-LABEL: @many_cfg
cfgfunc @many_cfg(f32, f32) -> (f32) {
bb0(%a : f32, %b : f32): // CHECK: bb0
// CHECK-NEXT: %0 = addf %arg0, %arg1 : f32
%c = addf %a, %b : f32
%d = addf %a, %b : f32
%e = addf %a, %b : f32
%f = addf %a, %b : f32
// CHECK-NEXT: %1 = addf %0, %0 : f32
%g = addf %c, %d : f32
%h = addf %e, %f : f32
%i = addf %c, %e : f32
// CHECK-NEXT: %2 = addf %1, %1 : f32
%j = addf %g, %h : f32
%k = addf %h, %i : f32
// CHECK-NEXT: %3 = addf %2, %2 : f32
%l = addf %j, %k : f32
// CHECK-NEXT: return %3 : f32
return %l : f32
}
/// Check that operations are not eliminated if they have different operands.
// CHECK-LABEL: @different_ops_ml
mlfunc @different_ops_ml() -> (i32, i32) {
// CHECK: %c0_i32 = constant 0 : i32
// CHECK: %c1_i32 = constant 1 : i32
%0 = constant 0 : i32
%1 = constant 1 : i32
// CHECK-NEXT: return %c0_i32, %c1_i32 : i32, i32
return %0, %1 : i32, i32
}
/// Check that operations are not eliminated if they have different result
/// types.
// CHECK-LABEL: @different_results_ml
mlfunc @different_results_ml(%arg0 : tensor<*xf32>) -> (tensor<?x?xf32>, tensor<4x?xf32>) {
// CHECK: %0 = tensor_cast %arg0 : tensor<*xf32> to tensor<?x?xf32>
// CHECK-NEXT: %1 = tensor_cast %arg0 : tensor<*xf32> to tensor<4x?xf32>
%0 = tensor_cast %arg0 : tensor<*xf32> to tensor<?x?xf32>
%1 = tensor_cast %arg0 : tensor<*xf32> to tensor<4x?xf32>
// CHECK-NEXT: return %0, %1 : tensor<?x?xf32>, tensor<4x?xf32>
return %0, %1 : tensor<?x?xf32>, tensor<4x?xf32>
}
/// Check that operations are not eliminated if they have different attributes.
// CHECK-LABEL: @different_attributes_cfg
cfgfunc @different_attributes_cfg(index, index) -> (i1, i1, i1) {
bb0(%a : index, %b : index): // CHECK: bb0
// CHECK: %0 = cmpi "slt", %arg0, %arg1 : index
%0 = cmpi "slt", %a, %b : index
// CHECK-NEXT: %1 = cmpi "ne", %arg0, %arg1 : index
/// Predicate 1 means inequality comparison.
%1 = cmpi "ne", %a, %b : index
%2 = "cmpi"(%a, %b) {predicate: 1} : (index, index) -> i1
// CHECK-NEXT: return %0, %1, %1 : i1, i1, i1
return %0, %1, %2 : i1, i1, i1
}
/// Check that operations with side effects are not eliminated.
// CHECK-LABEL: @side_effect_ml
mlfunc @side_effect_ml() -> (memref<2x1xf32>, memref<2x1xf32>) {
// CHECK: %0 = alloc() : memref<2x1xf32>
%0 = alloc() : memref<2x1xf32>
// CHECK-NEXT: %1 = alloc() : memref<2x1xf32>
%1 = alloc() : memref<2x1xf32>
// CHECK-NEXT: return %0, %1 : memref<2x1xf32>, memref<2x1xf32>
return %0, %1 : memref<2x1xf32>, memref<2x1xf32>
}
/// Check that operation definitions are properly propagated down the dominance
/// tree.
// CHECK-LABEL: @down_propagate_for_ml
mlfunc @down_propagate_for_ml() {
// CHECK: %c1_i32 = constant 1 : i32
%0 = constant 1 : i32
// CHECK-NEXT: for %i0 = 0 to 4 {
for %i = 0 to 4 {
// CHECK-NEXT: "foo"(%c1_i32, %c1_i32) : (i32, i32) -> ()
%1 = constant 1 : i32
"foo"(%0, %1) : (i32, i32) -> ()
}
return
}
cfgfunc @down_propagate_cfg() -> i32 {
bb0: // CHECK: bb0:
// CHECK-NEXT: %c1_i32 = constant 1 : i32
%0 = constant 1 : i32
// CHECK-NEXT: %true = constant 1 : i1
%cond = constant 1 : i1
// CHECK-NEXT: cond_br %true, bb1, bb2(%c1_i32 : i32)
cond_br %cond, bb1, bb2(%0 : i32)
bb1: // CHECK: bb1:
// CHECK-NEXT: br bb2(%c1_i32 : i32)
%1 = constant 1 : i32
br bb2(%1 : i32)
bb2(%arg : i32):
return %arg : i32
}
/// Check that operation definitions are NOT propagated up the dominance tree.
// CHECK-LABEL: @up_propagate_ml
mlfunc @up_propagate_ml() -> i32 {
// CHECK: for %i0 = 0 to 4 {
for %i = 0 to 4 {
// CHECK-NEXT: %c1_i32 = constant 1 : i32
// CHECK-NEXT: "foo"(%c1_i32) : (i32) -> ()
%0 = constant 1 : i32
"foo"(%0) : (i32) -> ()
}
// CHECK: %c1_i32_0 = constant 1 : i32
// CHECK-NEXT: return %c1_i32_0 : i32
%1 = constant 1 : i32
return %1 : i32
}
cfgfunc @up_propagate_cfg() -> i32 {
bb0: // CHECK: bb0:
// CHECK-NEXT: %c0_i32 = constant 0 : i32
%0 = constant 0 : i32
// CHECK-NEXT: %true = constant 1 : i1
%cond = constant 1 : i1
// CHECK-NEXT: cond_br %true, bb1, bb2(%c0_i32 : i32)
cond_br %cond, bb1, bb2(%0 : i32)
bb1: // CHECK: bb1:
// CHECK-NEXT: %c1_i32 = constant 1 : i32
%1 = constant 1 : i32
// CHECK-NEXT: br bb2(%c1_i32 : i32)
br bb2(%1 : i32)
bb2(%arg : i32): // CHECK: bb2
// CHECK-NEXT: %c1_i32_0 = constant 1 : i32
%2 = constant 1 : i32
// CHECK-NEXT: %1 = addi %0, %c1_i32_0 : i32
%add = addi %arg, %2 : i32
// CHECK-NEXT: return %1 : i32
return %add : i32
}