File: skip_function_attribute.ll

package info (click to toggle)
llvm-toolchain-15 1%3A15.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,554,644 kB
  • sloc: cpp: 5,922,452; ansic: 1,012,136; asm: 674,362; python: 191,568; objc: 73,855; f90: 42,327; lisp: 31,913; pascal: 11,973; javascript: 10,144; sh: 9,421; perl: 7,447; ml: 5,527; awk: 3,523; makefile: 2,520; xml: 885; cs: 573; fortran: 567
file content (44 lines) | stat: -rw-r--r-- 1,449 bytes parent folder | download
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 %loadPolly -polly-print-detect -disable-output < %s | FileCheck %s
;
; Verify polly skips this function
;
; CHECK-NOT: Valid Region for Scop
;
;    void polly_skip_me(int *A, int N) {
;      for (int i = 0; i < N; i++)
;        A[i] = A[i] * A[i] + A[i];
;    }
;
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-n32-S64"

define void @polly_skip_me(i32* %A, i32 %N) #0 {
entry:
  br label %entry.split

entry.split:                                      ; preds = %entry
  %cmp1 = icmp sgt i32 %N, 0
  br i1 %cmp1, label %for.body.preheader, label %for.end

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

for.body:                                         ; preds = %for.body.preheader, %for.body
  %i.02 = phi i32 [ %inc, %for.body ], [ 0, %for.body.preheader ]
  %arrayidx = getelementptr inbounds i32, i32* %A, i32 %i.02
  %tmp = load i32, i32* %arrayidx, align 4
  %mul = mul nsw i32 %tmp, %tmp
  %add = add nsw i32 %mul, %tmp
  %arrayidx3 = getelementptr inbounds i32, i32* %A, i32 %i.02
  store i32 %add, i32* %arrayidx3, align 4
  %inc = add nsw i32 %i.02, 1
  %cmp = icmp slt i32 %inc, %N
  br i1 %cmp, label %for.body, label %for.end.loopexit

for.end.loopexit:                                 ; preds = %for.body
  br label %for.end

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

attributes #0 = { "polly.skip.fn" }