File: pr25051.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 (44 lines) | stat: -rw-r--r-- 1,851 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
; RUN: opt -S -passes=indvars < %s | FileCheck %s

target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.11.0"

define i32 @somefunc(ptr %arr) {
; CHECK-LABEL: @somefunc(
entry:
  br label %for.cond.1.preheader

for.cond.1.preheader:                             ; preds = %for.inc.9, %entry
  %index3.013 = phi i32 [ 0, %entry ], [ %index3.1.lcssa, %for.inc.9 ]
  %index.012 = phi i32 [ 0, %entry ], [ %inc10, %for.inc.9 ]
  %cmp2.9 = icmp sgt i32 %index.012, 0
  br i1 %cmp2.9, label %for.body.3.lr.ph, label %for.inc.9

for.body.3.lr.ph:                                 ; preds = %for.cond.1.preheader
  %idxprom5 = sext i32 %index.012 to i64 
  br label %for.body.3

for.body.3:                                       ; preds = %for.body.3, %for.body.3.lr.ph
  %index3.111 = phi i32 [ %index3.013, %for.body.3.lr.ph ], [ %inc, %for.body.3 ]
  %index2.010 = phi i32 [ 0, %for.body.3.lr.ph ], [ %inc8, %for.body.3 ]
  %inc = add nsw i32 %index3.111, 1
  %idxprom = sext i32 %index3.111 to i64
  %arrayidx = getelementptr inbounds double, ptr %arr, i64 %idxprom
  %idxprom4 = sext i32 %index2.010 to i64
  %inc8 = add nsw i32 %index2.010, 1
  %cmp2 = icmp slt i32 %inc8, %index.012
  br i1 %cmp2, label %for.body.3, label %for.inc.9.loopexit

for.inc.9.loopexit:                               ; preds = %for.body.3
  %inc.lcssa = phi i32 [ %inc, %for.body.3 ]
  br label %for.inc.9

for.inc.9:                                        ; preds = %for.inc.9.loopexit, %for.cond.1.preheader
  %index3.1.lcssa = phi i32 [ %index3.013, %for.cond.1.preheader ], [ %inc.lcssa, %for.inc.9.loopexit ]
  %inc10 = add nsw i32 %index.012, 1
  %cmp = icmp slt i32 %inc10, 10
  br i1 %cmp, label %for.cond.1.preheader, label %for.end.11

for.end.11:                                       ; preds = %for.inc.9
  ret i32 1
}