reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
; REQUIRES: asserts
; RUN: opt -regions -analyze < %s | FileCheck %s
; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s

; RUN: opt < %s -passes='print<regions>' 2>&1 | FileCheck %s

define void @meread_() nounwind {
entry:
  br label %bb23

bb23:
  br label %bb.i

bb.i:                                             ; preds = %bb.i, %bb54
  br label %pflini_.exit

pflini_.exit:                                     ; preds = %bb.i
  br label %bb58thread-split

bb58thread-split:                                 ; preds = %bb64, %bb61, %pflini_.exit
  br label %bb58

bb58:                                             ; preds = %bb60, %bb58thread-split
  br i1 1, label %bb59, label %bb23

bb59:                                             ; preds = %bb58
  switch i32 1, label %bb60 [
    i32 1, label %l98
  ]

bb60:                                             ; preds = %bb59
  br i1 1, label %bb61, label %bb58

bb61:                                             ; preds = %bb60
  br label %bb58thread-split

l98:                                   ; preds = %bb69, %bb59
  ret void
}
; CHECK-NOT: =>
; CHECK: [0] entry => <Function Return>
; CHECK: [1] bb23 => l98
; STAT: 2 region - The # of regions
; STAT: 1 region - The # of simple regions

; BBIT: entry, bb23, bb.i, pflini_.exit, bb58thread-split, bb58, bb59, bb60, bb61, l98,
; BBIT: bb23, bb.i, pflini_.exit, bb58thread-split, bb58, bb59, bb60, bb61,

; RNIT: entry, bb23 => l98, l98,
; RNIT: bb23, bb.i, pflini_.exit, bb58thread-split, bb58, bb59, bb60, bb61,