File: control-flow-sink-test.mlir

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (44 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download | duplicates (18)
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
// Invoke the test control-flow sink pass to test the utilities.
// RUN: mlir-opt -test-control-flow-sink %s | FileCheck %s

// CHECK-LABEL: func @test_sink
func.func @test_sink() {
  %0 = "test.sink_me"() : () -> i32
  // CHECK-NEXT: test.sink_target
  "test.sink_target"() ({
    // CHECK-NEXT: %[[V0:.*]] = "test.sink_me"() {was_sunk = 0 : i32}
    // CHECK-NEXT: "test.use"(%[[V0]])
    "test.use"(%0) : (i32) -> ()
  }) : () -> ()
  return
}

// CHECK-LABEL: func @test_sink_first_region_only
func.func @test_sink_first_region_only() {
  %0 = "test.sink_me"() {first} : () -> i32
  // CHECK-NEXT: %[[V1:.*]] = "test.sink_me"() {second}
  %1 = "test.sink_me"() {second} : () -> i32
  // CHECK-NEXT: test.sink_target
  "test.sink_target"() ({
    // CHECK-NEXT: %[[V0:.*]] = "test.sink_me"() {first, was_sunk = 0 : i32}
    // CHECK-NEXT: "test.use"(%[[V0]])
    "test.use"(%0) : (i32) -> ()
  }, {
    "test.use"(%1) : (i32) -> ()
  }) : () -> ()
  return
}

// CHECK-LABEL: func @test_sink_targeted_op_only
func.func @test_sink_targeted_op_only() {
  %0 = "test.sink_me"() : () -> i32
  // CHECK-NEXT: %[[V1:.*]] = "test.dont_sink_me"
  %1 = "test.dont_sink_me"() : () -> i32
  // CHECK-NEXT: test.sink_target
  "test.sink_target"() ({
    // CHECK-NEXT: %[[V0:.*]] = "test.sink_me"
    // CHECK-NEXT: "test.use"(%[[V0]], %[[V1]])
    "test.use"(%0, %1) : (i32, i32) -> ()
  }) : () -> ()
  return
}