File: eliminate-overflow-modified.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (46 lines) | stat: -rw-r--r-- 1,530 bytes parent folder | download | duplicates (12)
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: opt < %s -passes=indvars -S -o - | FileCheck %s

; When eliminating the overflow intrinsic the indvars pass would incorrectly
; return a false Modified status. This was caught by the pass return
; status check that is hidden under EXPENSIVE_CHECKS.

; CHECK-LABEL: for.body:
; CHECK-NEXT: %0 = phi i16 [ %1, %for.body ], [ undef, %for.body.preheader ]
; CHECK-NEXT: %1 = add nsw i16 %0, -1
; CHECK-NEXT: %cmp = icmp sgt i16 %1, 0
; CHECK-NEXT:  call void @llvm.assume(i1 %cmp)

; Function Attrs: nounwind
define void @foo() #0 {
entry:
  %cmp1 = icmp sgt i16 undef, 0
  br i1 %cmp1, label %for.body.preheader, label %for.end

for.body.preheader:                               ; preds = %entry
  br label %for.body

for.body:                                         ; preds = %for.body.preheader, %for.body
  %0 = phi i16 [ %2, %for.body ], [ undef, %for.body.preheader ]
  %1 = call { i16, i1 } @llvm.sadd.with.overflow.i16(i16 %0, i16 -1)
  %2 = extractvalue { i16, i1 } %1, 0
  %cmp = icmp sgt i16 %2, 0
  call void @llvm.assume(i1 %cmp)
  br label %for.body

for.end:                                          ; preds = %entry
  ret void
}

; Function Attrs: nounwind readnone speculatable willreturn
declare { i16, i1 } @llvm.sadd.with.overflow.i16(i16, i16) #1

; Function Attrs: nounwind willreturn
declare void @llvm.assume(i1) #2

attributes #0 = { nounwind }
attributes #1 = { nounwind readnone speculatable willreturn }
attributes #2 = { nounwind willreturn }

!llvm.ident = !{!0}

!0 = !{!"clang version 12.0.0"}