brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 50723bb Raw
30 lines · plain
1; RUN: not llc --mtriple=loongarch32 --mattr=+32s,+lasx < %s 2>&1 | FileCheck %s2; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s3 4declare <8 x i32> @llvm.loongarch.lasx.xvpermi.w(<8 x i32>, <8 x i32>, i32)5 6define <8 x i32> @lasx_xvpermi_w(<8 x i32> %va, <8 x i32> %vb, i32 %c) nounwind {7; CHECK: immarg operand has non-immediate parameter8entry:9  %res = call <8 x i32> @llvm.loongarch.lasx.xvpermi.w(<8 x i32> %va, <8 x i32> %vb, i32 %c)10  ret <8 x i32> %res11}12 13declare <4 x i64> @llvm.loongarch.lasx.xvpermi.d(<4 x i64>, i32)14 15define <4 x i64> @lasx_xvpermi_d(<4 x i64> %va, i32 %b) nounwind {16; CHECK: immarg operand has non-immediate parameter17entry:18  %res = call <4 x i64> @llvm.loongarch.lasx.xvpermi.d(<4 x i64> %va, i32 %b)19  ret <4 x i64> %res20}21 22declare <32 x i8> @llvm.loongarch.lasx.xvpermi.q(<32 x i8>, <32 x i8>, i32)23 24define <32 x i8> @lasx_xvpermi_q(<32 x i8> %va, <32 x i8> %vb, i32 %c) nounwind {25; CHECK: immarg operand has non-immediate parameter26entry:27  %res = call <32 x i8> @llvm.loongarch.lasx.xvpermi.q(<32 x i8> %va, <32 x i8> %vb, i32 %c)28  ret <32 x i8> %res29}30