Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llvm/lib/CodeGen/MachineSink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ bool MachineSinking::PerformSinkAndFold(MachineInstr &MI,
continue;
}

if (Reg.isPhysical() &&
if (Reg.isPhysical() && MO.isUse() &&
(MRI->isConstantPhysReg(Reg) || TII->isIgnorableUse(MO)))
continue;

Expand Down
39 changes: 39 additions & 0 deletions llvm/test/CodeGen/RISCV/sink-and-fold-crash.mir
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py UTC_ARGS: --version 5
# RUN: llc %s -mtriple=riscv64 -run-pass=machine-sink -o - | FileCheck %s

---
name: main
tracksRegLiveness: true
registers:
- { id: 0, class: fpr32 }
- { id: 1, class: fpr32 }
- { id: 2, class: gpr }
- { id: 3, class: gpr }
liveins:
- { reg: '$f10_f', virtual-reg: '%0' }
- { reg: '$f11_f', virtual-reg: '%1' }
body: |
bb.0.entry:
liveins: $f10_f, $f11_f

; CHECK-LABEL: name: main
; CHECK: liveins: $f10_f, $f11_f
; CHECK-NEXT: {{ $}}
; CHECK-NEXT: [[COPY:%[0-9]+]]:fpr32 = COPY $f11_f
; CHECK-NEXT: [[COPY1:%[0-9]+]]:fpr32 = COPY $f10_f
; CHECK-NEXT: [[ReadFFLAGS:%[0-9]+]]:gpr = ReadFFLAGS implicit $fflags
; CHECK-NEXT: [[FLE_S:%[0-9]+]]:gpr = nofpexcept FLE_S [[COPY1]], [[COPY]]
; CHECK-NEXT: WriteFFLAGS killed [[ReadFFLAGS]], implicit-def $fflags
; CHECK-NEXT: $x0 = nofpexcept FEQ_S [[COPY1]], [[COPY]]
; CHECK-NEXT: $x10 = COPY [[FLE_S]]
; CHECK-NEXT: PseudoRET implicit $x10
%1:fpr32 = COPY $f11_f
%0:fpr32 = COPY $f10_f
%3:gpr = ReadFFLAGS implicit $fflags
%2:gpr = nofpexcept FLE_S %0, %1
WriteFFLAGS killed %3, implicit-def $fflags
$x0 = nofpexcept FEQ_S %0, %1
$x10 = COPY %2
PseudoRET implicit $x10

...