File: pr27315.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-6~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,418,812 kB
  • sloc: cpp: 5,290,827; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,900; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,892; xml: 953; cs: 573; fortran: 539
file content (32 lines) | stat: -rw-r--r-- 1,004 bytes parent folder | download | duplicates (3)
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
; RUN: opt -analyze -enable-new-pm=0 -scalar-evolution < %s | FileCheck %s
; RUN: opt -disable-output "-passes=print<scalar-evolution>" < %s 2>&1 | FileCheck %s

declare i1 @use(i64)

define void @f_0() {
; CHECK-LABEL: Classifying expressions for: @f_0

; CHECK:  %iv = phi i32 [ 0, %entry ], [ %iv.inc.nowrap, %be ]
; CHECK-NEXT: -->  {0,+,1}<nuw><nsw><%loop>
; CHECK: %iv.inc.maywrap = add i32 %iv, 1
; CHECK-NEXT: -->  {1,+,1}<nuw><%loop>
; CHECK:  %iv.inc.maywrap.sext = sext i32 %iv.inc.maywrap to i64
; CHECK-NEXT:  -->  (sext i32 {1,+,1}<nuw><%loop> to i64)
entry:
  br label %loop

loop:
  %iv = phi i32 [ 0, %entry ], [ %iv.inc.nowrap, %be ]
  %iv.inc.maywrap = add i32 %iv, 1
  %iv.inc.maywrap.sext = sext i32 %iv.inc.maywrap to i64
  %cond0 = call i1 @use(i64 %iv.inc.maywrap.sext)
  br i1 %cond0, label %be, label %leave

be:
  %iv.inc.nowrap = add nsw i32 %iv, 1
  %be.cond = call i1 @use(i64 0) ;; Get an unanalyzable value
  br i1 %be.cond, label %loop, label %leave

leave:
  ret void
}