mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Verify two-address constraints more carefully.
Include <undef> operands and virtual registers after leaving SSA form. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160734 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
51004dff92
commit
eba2bbb58c
@ -685,6 +685,12 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
if (MRI->tracksLiveness() && !MI->isDebugValue())
|
||||
checkLiveness(MO, MONum);
|
||||
|
||||
// Verify two-address constraints after leaving SSA form.
|
||||
unsigned DefIdx;
|
||||
if (!MRI->isSSA() && MO->isUse() &&
|
||||
MI->isRegTiedToDefOperand(MONum, &DefIdx) &&
|
||||
Reg != MI->getOperand(DefIdx).getReg())
|
||||
report("Two-address instruction operands must be identical", MO, MONum);
|
||||
|
||||
// Check register classes.
|
||||
if (MONum < MCID.getNumOperands() && !MO->isImplicit()) {
|
||||
@ -786,20 +792,7 @@ void MachineVerifier::checkLiveness(const MachineOperand *MO, unsigned MONum) {
|
||||
if (MO->readsReg()) {
|
||||
regsLiveInButUnused.erase(Reg);
|
||||
|
||||
bool isKill = false;
|
||||
unsigned defIdx;
|
||||
if (MI->isRegTiedToDefOperand(MONum, &defIdx)) {
|
||||
// A two-addr use counts as a kill if use and def are the same.
|
||||
unsigned DefReg = MI->getOperand(defIdx).getReg();
|
||||
if (Reg == DefReg)
|
||||
isKill = true;
|
||||
else if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
|
||||
report("Two-address instruction operands must be identical", MO, MONum);
|
||||
}
|
||||
} else
|
||||
isKill = MO->isKill();
|
||||
|
||||
if (isKill)
|
||||
if (MO->isKill())
|
||||
addRegWithSubRegs(regsKilled, Reg);
|
||||
|
||||
// Check that LiveVars knows this kill.
|
||||
|
Loading…
x
Reference in New Issue
Block a user