brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · aca107f Raw
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 <8 x float> @llvm.loongarch.lasx.xvfmul.s(<8 x float>, <8 x float>)6 7define <8 x float> @lasx_xvfmul_s(<8 x float> %va, <8 x float> %vb) nounwind {8; CHECK-LABEL: lasx_xvfmul_s:9; CHECK:       # %bb.0: # %entry10; CHECK-NEXT:    xvfmul.s $xr0, $xr0, $xr111; CHECK-NEXT:    ret12entry:13  %res = call <8 x float> @llvm.loongarch.lasx.xvfmul.s(<8 x float> %va, <8 x float> %vb)14  ret <8 x float> %res15}16 17declare <4 x double> @llvm.loongarch.lasx.xvfmul.d(<4 x double>, <4 x double>)18 19define <4 x double> @lasx_xvfmul_d(<4 x double> %va, <4 x double> %vb) nounwind {20; CHECK-LABEL: lasx_xvfmul_d:21; CHECK:       # %bb.0: # %entry22; CHECK-NEXT:    xvfmul.d $xr0, $xr0, $xr123; CHECK-NEXT:    ret24entry:25  %res = call <4 x double> @llvm.loongarch.lasx.xvfmul.d(<4 x double> %va, <4 x double> %vb)26  ret <4 x double> %res27}28