28 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py2; RUN: llc -O0 -mtriple=mipsel-linux-gnu -global-isel -mcpu=mips32r5 -mattr=+msa,+fp64,+nan2008 -stop-after=legalizer -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=P56003 4; Check there are no COPY instructions surrounding ADDVI_W instruction.5; All virtual registers were created with createGenericVirtualRegister6; which sets RegClassOrRegBank in VRegInfo.7; Constraining register classes when G_INTRINSIC intrinsic(@llvm.mips.addvi.w)8; gets selected into ADDVI_W works as expected.9; Check that setRegClassOrRegBank.mir has same output.10 11declare <4 x i32> @llvm.mips.addvi.w(<4 x i32>, i32 immarg)12define void @add_v4i32_builtin_imm(ptr %a, ptr %c) {13 ; P5600-LABEL: name: add_v4i32_builtin_imm14 ; P5600: bb.1.entry:15 ; P5600: liveins: $a0, $a116 ; P5600: [[COPY:%[0-9]+]]:_(p0) = COPY $a017 ; P5600: [[COPY1:%[0-9]+]]:_(p0) = COPY $a118 ; P5600: [[LOAD:%[0-9]+]]:msa128w(<4 x s32>) = G_LOAD [[COPY]](p0) :: (load (<4 x s32>) from %ir.a)19 ; P5600: [[ADDVI_W:%[0-9]+]]:msa128w(<4 x s32>) = ADDVI_W [[LOAD]](<4 x s32>), 2520 ; P5600: G_STORE [[ADDVI_W]](<4 x s32>), [[COPY1]](p0) :: (store (<4 x s32>) into %ir.c)21 ; P5600: RetRA22entry:23 %0 = load <4 x i32>, ptr %a, align 1624 %1 = tail call <4 x i32> @llvm.mips.addvi.w(<4 x i32> %0, i32 25)25 store <4 x i32> %1, ptr %c, align 1626 ret void27}28