AArch64/GlobalISel: Fix verifier error after selecting returnaddress

This was caching the wrong register to re-use later.
This commit is contained in:
Matt Arsenault 2020-08-06 13:10:08 -04:00
parent 3b93464dcf
commit eae9c54148
2 changed files with 32 additions and 1 deletions

View File

@ -4793,7 +4793,7 @@ bool AArch64InstructionSelector::selectIntrinsic(MachineInstr &I,
AArch64::GPR64spRegClass);
MIRBuilder.buildCopy(DstReg, LiveInLR);
MFReturnAddr = DstReg;
MFReturnAddr = LiveInLR;
I.eraseFromParent();
return true;
}

View File

@ -4,6 +4,7 @@
--- |
define void @lr_other_block() { ret void }
define void @already_live_in() { ret void }
define void @multi_use() { ret void }
declare i8* @llvm.returnaddress(i32 immarg)
...
---
@ -61,3 +62,33 @@ body: |
$x0 = COPY %4
RET_ReallyLR implicit $x0
...
# Check copies are inserted in the right places when selecting
# multiple uses in different blocks
---
name: multi_use
alignment: 4
legalized: true
regBankSelected: true
tracksRegLiveness: true
body: |
; CHECK-LABEL: name: multi_use
; CHECK: bb.0:
; CHECK: successors: %bb.1(0x80000000)
; CHECK: liveins: $w0, $x0, $lr
; CHECK: [[COPY:%[0-9]+]]:gpr64sp = COPY $lr
; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY [[COPY]]
; CHECK: B %bb.1
; CHECK: bb.1:
; CHECK: $x0 = COPY [[COPY1]]
; CHECK: [[COPY2:%[0-9]+]]:gpr64 = COPY [[COPY]]
; CHECK: RET_ReallyLR implicit [[COPY2]]
bb.0:
liveins: $w0, $x0, $lr
%0:gpr(p0) = G_INTRINSIC intrinsic(@llvm.returnaddress), 0
G_BR %bb.1
bb.1:
$x0 = COPY %0
%1:gpr(p0) = G_INTRINSIC intrinsic(@llvm.returnaddress), 0
RET_ReallyLR implicit %1
...