Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / VE / VELIntrinsics / vrand.ll
blobb1b49a28ec821766e4c961edc83740522f9c95bb
1 ; RUN: llc < %s -mtriple=ve -mattr=+vpu | FileCheck %s
3 ;;; Test vector reduction and intrinsic instructions
4 ;;;
5 ;;; Note:
6 ;;;   We test VRAND*vl and VRAND*vml instructions.
8 ; Function Attrs: nounwind readnone
9 define fastcc <256 x double> @vrand_vvl(<256 x double> %0) {
10 ; CHECK-LABEL: vrand_vvl:
11 ; CHECK:       # %bb.0:
12 ; CHECK-NEXT:    lea %s0, 256
13 ; CHECK-NEXT:    lvl %s0
14 ; CHECK-NEXT:    vrand %v0, %v0
15 ; CHECK-NEXT:    b.l.t (, %s10)
16   %2 = tail call fast <256 x double> @llvm.ve.vl.vrand.vvl(<256 x double> %0, i32 256)
17   ret <256 x double> %2
20 ; Function Attrs: nounwind readnone
21 declare <256 x double> @llvm.ve.vl.vrand.vvl(<256 x double>, i32)
23 ; Function Attrs: nounwind readnone
24 define fastcc <256 x double> @vrand_vvml(<256 x double> %0, <256 x i1> %1) {
25 ; CHECK-LABEL: vrand_vvml:
26 ; CHECK:       # %bb.0:
27 ; CHECK-NEXT:    lea %s0, 256
28 ; CHECK-NEXT:    lvl %s0
29 ; CHECK-NEXT:    vrand %v0, %v0, %vm1
30 ; CHECK-NEXT:    b.l.t (, %s10)
31   %3 = tail call fast <256 x double> @llvm.ve.vl.vrand.vvml(<256 x double> %0, <256 x i1> %1, i32 256)
32   ret <256 x double> %3
35 ; Function Attrs: nounwind readnone
36 declare <256 x double> @llvm.ve.vl.vrand.vvml(<256 x double>, <256 x i1>, i32)