Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / livephysregs-regmask-clobber.mir
blob52213070f535672325fff4c27b41b279d77735bc
1 # RUN: llc -march=hexagon -verify-machineinstrs -run-pass prologepilog -o - %s | FileCheck %s
3 # The PS_vstorerw_ai of W0 would normally expand into stores of V0 and V1,
4 # but both are clobbered by the regmask. Only V0 is re-defined before the
5 # store, so only V0 should be stored. LivePhysRegs didn't correctly remove
6 # registers clobbered by regmasks, so V1 also appeared to be live and was
7 # stored as well. This resulted in the "using undefined physical register"
8 # error.
10 # This will fail to compile with -verify-machineinstrs, but we can also check
11 # directly if the output is correct.
13 # CHECK: J2_call &__hexagon_divsi3
14 # CHECK: $v0 = V6_lvsplatw
15 # CHECK: V6_vS32b_ai $r29, 128, {{.*}} $v0
16 # CHECK-NOT: V6_vS32b_ai $r29, 192, {{.*}} $v1
18 name: f0
19 tracksRegLiveness: true
20 frameInfo:
21   adjustsStack:    true
22 stack:
23   - { id: 0, offset: 0, size: 128, alignment: 128 }
24   - { id: 1, offset: 128, size: 128, alignment: 128 }
25   - { id: 2, offset: 384, size: 128, alignment: 128 }
26 body: |
27   bb.0:
28     renamable $r0 = PS_fi %stack.0, 0
29     ADJCALLSTACKDOWN 0, 0, implicit-def $r29, implicit-def dead $r30, implicit $r31, implicit $r30, implicit $r29
30     renamable $w0 = PS_vloadrw_ai %stack.2, 0 :: (load (s1024) from %stack.2)
31     V6_vS32b_ai killed renamable $r0, 0, renamable $v1 :: (store (s512) into %stack.0, align 128)
32     $r0 = A2_tfrsi 0
33     renamable $r1 = L2_loadri_io %stack.0, 4 :: (load (s32) from %stack.0 + 4)
34     J2_call &__hexagon_divsi3, hexagoncsr, implicit-def dead $pc, implicit-def dead $r31, implicit $r29, implicit killed $r0, implicit killed $r1, implicit-def $r29, implicit-def $r0
35     ADJCALLSTACKUP 0, 0, implicit-def dead $r29, implicit-def dead $r30, implicit-def dead $r31, implicit $r29
36     renamable $v0 = V6_lvsplatw killed renamable $r0
37     PS_vstorerw_ai %stack.1, 0, killed renamable $w0 :: (store (s1024) into %stack.1)
38 ...