File: post-inc-optsize.ll

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (43 lines) | stat: -rw-r--r-- 1,709 bytes parent folder | download | duplicates (16)
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
; RUN: opt < %s -loop-reduce -S | FileCheck %s

target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
target triple = "thumbv7m-arm-none-eabi"

; Check that the IV updates (incdec.ptr{,1,2}) are kept in the latch block
; and not moved to the header/exiting block. Inserting them in the header
; doubles register pressure and adds moves.

; CHECK-LABEL: @f
; CHECK: while.cond:
; CHECK: icmp sgt i32 %n.addr.0, 0
; CHECK: while.body:
; CHECK: incdec.ptr =
; CHECK: incdec.ptr1 =
; CHECK: incdec.ptr2 =
; CHECK: dec = 
define void @f(float* nocapture readonly %a, float* nocapture readonly %b, float* nocapture %c, i32 %n) {
entry:
  br label %while.cond

while.cond:                                       ; preds = %while.body, %entry
  %a.addr.0 = phi float* [ %a, %entry ], [ %incdec.ptr, %while.body ]
  %b.addr.0 = phi float* [ %b, %entry ], [ %incdec.ptr1, %while.body ]
  %c.addr.0 = phi float* [ %c, %entry ], [ %incdec.ptr2, %while.body ]
  %n.addr.0 = phi i32 [ %n, %entry ], [ %dec, %while.body ]
  %cmp = icmp sgt i32 %n.addr.0, 0
  br i1 %cmp, label %while.body, label %while.end

while.body:                                       ; preds = %while.cond
  %incdec.ptr = getelementptr inbounds float, float* %a.addr.0, i32 1
  %tmp = load float, float* %a.addr.0, align 4
  %incdec.ptr1 = getelementptr inbounds float, float* %b.addr.0, i32 1
  %tmp1 = load float, float* %b.addr.0, align 4
  %add = fadd float %tmp, %tmp1
  %incdec.ptr2 = getelementptr inbounds float, float* %c.addr.0, i32 1
  store float %add, float* %c.addr.0, align 4
  %dec = add nsw i32 %n.addr.0, -1
  br label %while.cond

while.end:                                        ; preds = %while.cond
  ret void
}