51 lines
1.4 KiB
LLVM
51 lines
1.4 KiB
LLVM
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||
|
; RUN: llc --mtriple=loongarch64 --mattr=+lsx < %s | FileCheck %s
|
||
|
|
||
|
declare <16 x i8> @llvm.loongarch.lsx.vclo.b(<16 x i8>)
|
||
|
|
||
|
define <16 x i8> @lsx_vclo_b(<16 x i8> %va) nounwind {
|
||
|
; CHECK-LABEL: lsx_vclo_b:
|
||
|
; CHECK: # %bb.0: # %entry
|
||
|
; CHECK-NEXT: vclo.b $vr0, $vr0
|
||
|
; CHECK-NEXT: ret
|
||
|
entry:
|
||
|
%res = call <16 x i8> @llvm.loongarch.lsx.vclo.b(<16 x i8> %va)
|
||
|
ret <16 x i8> %res
|
||
|
}
|
||
|
|
||
|
declare <8 x i16> @llvm.loongarch.lsx.vclo.h(<8 x i16>)
|
||
|
|
||
|
define <8 x i16> @lsx_vclo_h(<8 x i16> %va) nounwind {
|
||
|
; CHECK-LABEL: lsx_vclo_h:
|
||
|
; CHECK: # %bb.0: # %entry
|
||
|
; CHECK-NEXT: vclo.h $vr0, $vr0
|
||
|
; CHECK-NEXT: ret
|
||
|
entry:
|
||
|
%res = call <8 x i16> @llvm.loongarch.lsx.vclo.h(<8 x i16> %va)
|
||
|
ret <8 x i16> %res
|
||
|
}
|
||
|
|
||
|
declare <4 x i32> @llvm.loongarch.lsx.vclo.w(<4 x i32>)
|
||
|
|
||
|
define <4 x i32> @lsx_vclo_w(<4 x i32> %va) nounwind {
|
||
|
; CHECK-LABEL: lsx_vclo_w:
|
||
|
; CHECK: # %bb.0: # %entry
|
||
|
; CHECK-NEXT: vclo.w $vr0, $vr0
|
||
|
; CHECK-NEXT: ret
|
||
|
entry:
|
||
|
%res = call <4 x i32> @llvm.loongarch.lsx.vclo.w(<4 x i32> %va)
|
||
|
ret <4 x i32> %res
|
||
|
}
|
||
|
|
||
|
declare <2 x i64> @llvm.loongarch.lsx.vclo.d(<2 x i64>)
|
||
|
|
||
|
define <2 x i64> @lsx_vclo_d(<2 x i64> %va) nounwind {
|
||
|
; CHECK-LABEL: lsx_vclo_d:
|
||
|
; CHECK: # %bb.0: # %entry
|
||
|
; CHECK-NEXT: vclo.d $vr0, $vr0
|
||
|
; CHECK-NEXT: ret
|
||
|
entry:
|
||
|
%res = call <2 x i64> @llvm.loongarch.lsx.vclo.d(<2 x i64> %va)
|
||
|
ret <2 x i64> %res
|
||
|
}
|