File: multiple_tails.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,235,796 kB
  • sloc: cpp: 7,617,614; ansic: 1,433,901; asm: 1,058,726; python: 252,096; f90: 94,671; objc: 70,753; lisp: 42,813; pascal: 18,401; sh: 10,032; ml: 5,111; perl: 4,720; awk: 3,523; makefile: 3,401; javascript: 2,272; xml: 892; fortran: 770
file content (62 lines) | stat: -rw-r--r-- 2,356 bytes parent folder | download | duplicates (4)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
; RUN: opt -mtriple=amdgcn-amd-amdhsa -mcpu=hawaii -passes=load-store-vectorizer -S -o - %s | FileCheck -check-prefixes=GCN %s
; RUN: opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -passes=load-store-vectorizer -S -o - %s | FileCheck -check-prefixes=GCN %s

; Checks that there is no crash when there are multiple tails
; for a the same head starting a chain.
@0 = internal addrspace(3) global [16384 x i32] undef

; GCN-LABEL: @no_crash(
; GCN: store <2 x i32> zeroinitializer
; GCN: store i32 0
; GCN: store i32 0

define amdgpu_kernel void @no_crash(i32 %arg) {
  %tmp2 = add i32 %arg, 14
  %tmp3 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %tmp2
  %tmp4 = add i32 %arg, 15
  %tmp5 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %tmp4

  store i32 0, ptr addrspace(3) %tmp3, align 4
  store i32 0, ptr addrspace(3) %tmp5, align 4
  store i32 0, ptr addrspace(3) %tmp5, align 4
  store i32 0, ptr addrspace(3) %tmp5, align 4

  ret void
}

; Check adjacent memory locations are properly matched and the
; longest chain vectorized

; GCN-LABEL: @interleave_get_longest

; GCN: load <2 x i32>{{.*}} %tmp1
; GCN: store <2 x i32> zeroinitializer{{.*}} %tmp1
; GCN: load <2 x i32>{{.*}} %tmp2
; GCN: load <2 x i32>{{.*}} %tmp4
; GCN: load i32{{.*}} %tmp5
; GCN: load i32{{.*}} %tmp5

define amdgpu_kernel void @interleave_get_longest(i32 %arg) {
  %a1 = add i32 %arg, 1
  %a2 = add i32 %arg, 2
  %a3 = add i32 %arg, 3
  %a4 = add i32 %arg, 4
  %tmp1 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %arg
  %tmp2 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %a1
  %tmp3 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %a2
  %tmp4 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %a3
  %tmp5 = getelementptr [16384 x i32], ptr addrspace(3) @0, i32 0, i32 %a4

  %l1 = load i32, ptr addrspace(3) %tmp2, align 4
  %l2 = load i32, ptr addrspace(3) %tmp1, align 4
  store i32 0, ptr addrspace(3) %tmp2, align 4
  store i32 0, ptr addrspace(3) %tmp1, align 4
  %l3 = load i32, ptr addrspace(3) %tmp2, align 4
  %l4 = load i32, ptr addrspace(3) %tmp3, align 4
  %l5 = load i32, ptr addrspace(3) %tmp4, align 4
  %l6 = load i32, ptr addrspace(3) %tmp5, align 4
  %l7 = load i32, ptr addrspace(3) %tmp5, align 4
  %l8 = load i32, ptr addrspace(3) %tmp5, align 4

  ret void
}