Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / VE / VELIntrinsics / andm.ll
blobbce8d21ef4dc22db6a45d50628d7721688332453
1 ; RUN: llc < %s -mtriple=ve -mattr=+vpu | FileCheck %s
3 ;;; Test and vm intrinsic instructions
4 ;;;
5 ;;; Note:
6 ;;;   We test ANDM*mm and ANDM*yy instructions.
8 ; Function Attrs: nounwind readnone
9 define fastcc <256 x i1> @andm_mmm(<256 x i1> %0, <256 x i1> %1) {
10 ; CHECK-LABEL: andm_mmm:
11 ; CHECK:       # %bb.0:
12 ; CHECK-NEXT:    andm %vm1, %vm1, %vm2
13 ; CHECK-NEXT:    b.l.t (, %s10)
14   %3 = tail call <256 x i1> @llvm.ve.vl.andm.mmm(<256 x i1> %0, <256 x i1> %1)
15   ret <256 x i1> %3
18 ; Function Attrs: nounwind readnone
19 declare <256 x i1> @llvm.ve.vl.andm.mmm(<256 x i1>, <256 x i1>)
21 ; Function Attrs: nounwind readnone
22 define fastcc <512 x i1> @andm_MMM(<512 x i1> %0, <512 x i1> %1) {
23 ; CHECK-LABEL: andm_MMM:
24 ; CHECK:       # %bb.0:
25 ; CHECK-NEXT:    andm %vm2, %vm2, %vm4
26 ; CHECK-NEXT:    andm %vm3, %vm3, %vm5
27 ; CHECK-NEXT:    b.l.t (, %s10)
28   %3 = tail call <512 x i1> @llvm.ve.vl.andm.MMM(<512 x i1> %0, <512 x i1> %1)
29   ret <512 x i1> %3
32 ; Function Attrs: nounwind readnone
33 declare <512 x i1> @llvm.ve.vl.andm.MMM(<512 x i1>, <512 x i1>)