File: boxaddr-folding.fir

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (46 lines) | stat: -rw-r--r-- 1,714 bytes parent folder | download | duplicates (14)
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
// RUN: fir-opt --canonicalize %s -split-input-file | FileCheck %s

// CHECK-LABEL: func @check_no_folding
func.func @check_no_folding(%arg0 : !fir.ref<!fir.array<?xi32>>) {
  %0 = fir.alloca i32 {adapt.valuebyref}
  %c1_i32 = arith.constant 1 : i32
  %1 = fir.load %0 : !fir.ref<i32>
  %2 = arith.addi %1, %c1_i32 : i32
  %3 = fir.convert %2 : (i32) -> index
  %c1 = arith.constant 1 : index
  %5 = arith.subi %3, %c1 : index
  %6 = fir.shape %3 : (index) -> !fir.shape<1>
  %7 = fir.slice %3, %5, %3 : (index, index, index) -> !fir.slice<1>
  %8 = fir.embox %arg0(%6) [%7] : (!fir.ref<!fir.array<?xi32>>, !fir.shape<1>, !fir.slice<1>) -> !fir.box<!fir.array<?xi32>>
  %9 = fir.box_addr %8 : (!fir.box<!fir.array<?xi32>>) -> !fir.ref<!fir.array<?xi32>>
  // CHECK: %[[BOX_ADDR:.*]] = fir.box_addr
  // CHECK: fir.call @check(%[[BOX_ADDR]])
  fir.call @check(%9) : (!fir.ref<!fir.array<?xi32>>) -> ()
  return
}

func.func @check(%arg0: !fir.ref<!fir.array<?xi32>>) {
  return
}

// -----

// CHECK-LABEL: func @check_folding
func.func @check_folding(%arg0 : !fir.ref<!fir.array<?xi32>>) {
  %0 = fir.alloca i32 {adapt.valuebyref}
  %c1_i32 = arith.constant 1 : i32
  %1 = fir.load %0 : !fir.ref<i32>
  %2 = arith.addi %1, %c1_i32 : i32
  %3 = fir.convert %2 : (i32) -> index
  %c1 = arith.constant 1 : index
  %6 = fir.shape %3 : (index) -> !fir.shape<1>
  %7 = fir.embox %arg0(%6) : (!fir.ref<!fir.array<?xi32>>, !fir.shape<1>) -> !fir.box<!fir.array<?xi32>>
  %8 = fir.box_addr %7 : (!fir.box<!fir.array<?xi32>>) -> !fir.ref<!fir.array<?xi32>>
  // CHECK-NOT: fir.box_addr
  fir.call @check(%8) : (!fir.ref<!fir.array<?xi32>>) -> ()
  return
}

func.func @check(%arg0: !fir.ref<!fir.array<?xi32>>) {
  return
}