28 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc --mtriple=loongarch32 --mattr=+32s,+lasx < %s | FileCheck %s3; RUN: llc --mtriple=loongarch64 --mattr=+lasx < %s | FileCheck %s4 5declare <16 x i16> @llvm.loongarch.lasx.xvfcvt.h.s(<8 x float>, <8 x float>)6 7define <16 x i16> @lasx_xvfcvt_h_s(<8 x float> %va, <8 x float> %vb) nounwind {8; CHECK-LABEL: lasx_xvfcvt_h_s:9; CHECK: # %bb.0: # %entry10; CHECK-NEXT: xvfcvt.h.s $xr0, $xr0, $xr111; CHECK-NEXT: ret12entry:13 %res = call <16 x i16> @llvm.loongarch.lasx.xvfcvt.h.s(<8 x float> %va, <8 x float> %vb)14 ret <16 x i16> %res15}16 17declare <8 x float> @llvm.loongarch.lasx.xvfcvt.s.d(<4 x double>, <4 x double>)18 19define <8 x float> @lasx_xvfcvt_s_d(<4 x double> %va, <4 x double> %vb) nounwind {20; CHECK-LABEL: lasx_xvfcvt_s_d:21; CHECK: # %bb.0: # %entry22; CHECK-NEXT: xvfcvt.s.d $xr0, $xr0, $xr123; CHECK-NEXT: ret24entry:25 %res = call <8 x float> @llvm.loongarch.lasx.xvfcvt.s.d(<4 x double> %va, <4 x double> %vb)26 ret <8 x float> %res27}28