File: vec-const-04.ll

package info (click to toggle)
llvm-toolchain-6.0 1%3A6.0.1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 598,080 kB
  • sloc: cpp: 3,046,253; ansic: 595,057; asm: 271,965; python: 128,926; objc: 106,554; sh: 21,906; lisp: 10,191; pascal: 6,094; ml: 5,544; perl: 5,265; makefile: 2,227; cs: 2,027; xml: 686; php: 212; csh: 117
file content (43 lines) | stat: -rw-r--r-- 1,012 bytes parent folder | download | duplicates (45)
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
; Test vector byte masks, v2i64 version.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s

; Test an all-zeros vector.
define <2 x i64> @f1() {
; CHECK-LABEL: f1:
; CHECK: vgbm %v24, 0
; CHECK: br %r14
  ret <2 x i64> zeroinitializer
}

; Test an all-ones vector.
define <2 x i64> @f2() {
; CHECK-LABEL: f2:
; CHECK: vgbm %v24, 65535
; CHECK: br %r14
  ret <2 x i64> <i64 -1, i64 -1>
}

; Test a mixed vector (mask 0x8c76).
define <2 x i64> @f3() {
; CHECK-LABEL: f3:
; CHECK: vgbm %v24, 35958
; CHECK: br %r14
  ret <2 x i64> <i64 18374686483966525440, i64 72057589759737600>
}

; Test that undefs are treated as zero (mask 0x8c00).
define <2 x i64> @f4() {
; CHECK-LABEL: f4:
; CHECK: vgbm %v24, 35840
; CHECK: br %r14
  ret <2 x i64> <i64 18374686483966525440, i64 undef>
}

; Test that we don't use VGBM if one of the bytes is not 0 or 0xff.
define <2 x i64> @f5() {
; CHECK-LABEL: f5:
; CHECK-NOT: vgbm
; CHECK: br %r14
  ret <2 x i64> <i64 18374686483966525441, i64 72057589759737600>
}