mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
Fix PR8811 by teaching MachineVerifier about optional defs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c44270dd6f
commit
22d67cf6ac
@ -555,6 +555,7 @@ void
|
||||
MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
const MachineInstr *MI = MO->getParent();
|
||||
const TargetInstrDesc &TI = MI->getDesc();
|
||||
const TargetOperandInfo &TOI = TI.OpInfo[MONum];
|
||||
|
||||
// The first TI.NumDefs operands must be explicit register defines
|
||||
if (MONum < TI.getNumDefs()) {
|
||||
@ -568,8 +569,8 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
// Don't check if it's the last operand in a variadic instruction. See,
|
||||
// e.g., LDM_RET in the arm back end.
|
||||
if (MO->isReg() && !(TI.isVariadic() && MONum == TI.getNumOperands()-1)) {
|
||||
if (MO->isDef())
|
||||
report("Explicit operand marked as def", MO, MONum);
|
||||
if (MO->isDef() && !TOI.isOptionalDef())
|
||||
report("Explicit operand marked as def", MO, MONum);
|
||||
if (MO->isImplicit())
|
||||
report("Explicit operand marked as implicit", MO, MONum);
|
||||
}
|
||||
@ -706,7 +707,6 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
|
||||
// Check register classes.
|
||||
if (MONum < TI.getNumOperands() && !MO->isImplicit()) {
|
||||
const TargetOperandInfo &TOI = TI.OpInfo[MONum];
|
||||
unsigned SubIdx = MO->getSubReg();
|
||||
|
||||
if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
|
||||
|
Loading…
Reference in New Issue
Block a user