Skip to content

Commit 46112c5

Browse files
committed
[AArch64PostCoalescer] Propagate undef flag after replacing
When replacing the register, if the source register has undef flag, we should propagate the flag to all uses of the destination register.
1 parent 71d9c99 commit 46112c5

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

llvm/lib/Target/AArch64/AArch64PostCoalescerPass.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ bool AArch64PostCoalescer::runOnMachineFunction(MachineFunction &MF) {
7575
if (Src != Dst)
7676
MRI->replaceRegWith(Dst, Src);
7777

78+
if (MI.getOperand(1).isUndef())
79+
for (MachineOperand &MO : MRI->use_operands(Dst))
80+
MO.setIsUndef();
81+
7882
// MI must be erased from the basic block before recalculating the live
7983
// interval.
8084
LIS->RemoveMachineInstrFromMaps(MI);
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py UTC_ARGS: --version 6
2+
# RUN: llc -mtriple=aarch64 -mattr=+sme -run-pass=aarch64-post-coalescer-pass -o - %s | FileCheck %s
3+
4+
---
5+
name: foo
6+
body: |
7+
bb.0.entry:
8+
; CHECK-LABEL: name: foo
9+
; CHECK: RET_ReallyLR
10+
RET_ReallyLR
11+
...
12+
---
13+
name: bar
14+
machineFunctionInfo:
15+
hasStreamingModeChanges: true
16+
body: |
17+
bb.0.entry:
18+
; CHECK-LABEL: name: bar
19+
; CHECK: ADJCALLSTACKDOWN 0, 0, implicit-def dead $sp, implicit $sp
20+
; CHECK-NEXT: MSRpstatesvcrImm1 1, 1, csr_aarch64_smstartstop, implicit-def dead $nzcv, implicit-def $sp, implicit-def dead $d0, implicit $vg, implicit-def $vg, implicit-def $fpmr
21+
; CHECK-NEXT: $d0 = COPY undef %0:fpr64
22+
; CHECK-NEXT: BL @foo, csr_aarch64_aapcs, implicit-def dead $lr, implicit $sp, implicit killed $d0, implicit-def $sp
23+
; CHECK-NEXT: ADJCALLSTACKUP 0, 0, implicit-def dead $sp, implicit $sp
24+
; CHECK-NEXT: MSRpstatesvcrImm1 1, 0, csr_aarch64_smstartstop, implicit-def dead $nzcv, implicit $vg, implicit-def $vg, implicit-def $fpmr
25+
; CHECK-NEXT: RET_ReallyLR
26+
ADJCALLSTACKDOWN 0, 0, implicit-def dead $sp, implicit $sp
27+
%1:fpr64 = COALESCER_BARRIER_FPR64 undef %1
28+
MSRpstatesvcrImm1 1, 1, csr_aarch64_smstartstop, implicit-def dead $nzcv, implicit-def $sp, implicit-def dead $d0, implicit $vg, implicit-def $vg, implicit-def $fpmr
29+
$d0 = COPY %1
30+
BL @foo, csr_aarch64_aapcs, implicit-def dead $lr, implicit $sp, implicit killed $d0, implicit-def $sp
31+
ADJCALLSTACKUP 0, 0, implicit-def dead $sp, implicit $sp
32+
MSRpstatesvcrImm1 1, 0, csr_aarch64_smstartstop, implicit-def dead $nzcv, implicit $vg, implicit-def $vg, implicit-def $fpmr
33+
RET_ReallyLR
34+
...

0 commit comments

Comments
 (0)