File: pr38800.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 (34 lines) | stat: -rw-r--r-- 1,311 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
; RUN: opt -passes=loop-vectorize -force-vector-width=2 -pass-remarks-missed='loop-vectorize' -S < %s 2>&1 | FileCheck %s

; CHECK: remark: <unknown>:0:0: loop not vectorized: integer loop induction variable could not be identified

; Test-case ('-O2 -ffast-math') from PR38800.
; (Set '-force-vector-width=2' to enable vector code generation.)
;
; No integral induction variable in the source-code caused a compiler-crash
; when attempting to vectorize.  With the fix, a remark indicating why it
; wasn't vectorized is produced
;
;void foo(float *ptr, float val) {
;  float f;
;  for (f = 0.1f; f < 1.0f; f += 0.01f)
;    *ptr += val;
;}

define void @foo(ptr nocapture %ptr, float %val) local_unnamed_addr {
entry:
  %ptr.promoted = load float, ptr %ptr, align 4
  br label %for.body

for.body:                                         ; preds = %entry, %for.body
  %add5 = phi float [ %ptr.promoted, %entry ], [ %add, %for.body ]
  %f.04 = phi float [ 0x3FB99999A0000000, %entry ], [ %add1, %for.body ]
  %add = fadd fast float %add5, %val
  %add1 = fadd fast float %f.04, 0x3F847AE140000000
  %cmp = fcmp fast olt float %add1, 1.000000e+00
  br i1 %cmp, label %for.body, label %for.end

for.end:                                          ; preds = %for.body
  store float %add, ptr %ptr, align 4
  ret void
}