File: store-constant.ll

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,245,028 kB
  • sloc: cpp: 7,619,726; ansic: 1,434,018; asm: 1,058,748; python: 252,740; f90: 94,671; objc: 70,685; lisp: 42,813; pascal: 18,401; sh: 8,601; ml: 5,111; perl: 4,720; makefile: 3,675; awk: 3,523; javascript: 2,409; xml: 892; fortran: 770
file content (39 lines) | stat: -rw-r--r-- 2,539 bytes parent folder | download | duplicates (5)
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
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -S -mtriple=x86_64-- -passes=slp-vectorizer -mcpu=x86-64    | FileCheck %s
; RUN: opt < %s -S -mtriple=x86_64-- -passes=slp-vectorizer -mcpu=x86-64-v2 | FileCheck %s
; RUN: opt < %s -S -mtriple=x86_64-- -passes=slp-vectorizer -mcpu=x86-64-v3 | FileCheck %s
; RUN: opt < %s -S -mtriple=x86_64-- -passes=slp-vectorizer -mcpu=x86-64-v4 | FileCheck %s

@arr = global [20 x i64] zeroinitializer, align 16

define void @PR111126() {
; CHECK-LABEL: @PR111126(
; CHECK-NEXT:    store <4 x i64> splat (i64 1), ptr @arr, align 16
; CHECK-NEXT:    store <4 x i64> splat (i64 1), ptr getelementptr inbounds (i8, ptr @arr, i64 32), align 16
; CHECK-NEXT:    store <4 x i64> splat (i64 1), ptr getelementptr inbounds (i8, ptr @arr, i64 64), align 16
; CHECK-NEXT:    store <4 x i64> splat (i64 1), ptr getelementptr inbounds (i8, ptr @arr, i64 96), align 16
; CHECK-NEXT:    store <4 x i64> splat (i64 1), ptr getelementptr inbounds (i8, ptr @arr, i64 128), align 16
; CHECK-NEXT:    ret void
;
  store i64 1, ptr @arr, align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 8), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 16), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 24), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 32), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 40), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 48), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 56), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 64), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 72), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 80), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 88), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 96), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 104), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 112), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 120), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 128), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 136), align 8
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 144), align 16
  store i64 1, ptr getelementptr inbounds (i8, ptr @arr, i64 152), align 8
  ret void
}