File: control-flow-sink-test.mlir

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (44 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download | duplicates (16)
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
}