mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
When verifying two-address instructions, check the following:
- Kill is implicit when use and def registers are identical. - Only virtual registers can differ. Add a -verify-fast-regalloc to run the verifier before the fast allocator. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103797 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c3ce05c594
commit
1b2c761a9c
@ -47,7 +47,7 @@ namespace {
|
||||
MachineVerifier(Pass *pass, bool allowDoubleDefs) :
|
||||
PASS(pass),
|
||||
allowVirtDoubleDefs(allowDoubleDefs),
|
||||
allowPhysDoubleDefs(allowDoubleDefs),
|
||||
allowPhysDoubleDefs(true),
|
||||
OutFileName(getenv("LLVM_VERIFY_MACHINEINSTRS"))
|
||||
{}
|
||||
|
||||
@ -552,19 +552,23 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
regsLiveInButUnused.erase(Reg);
|
||||
|
||||
bool isKill = false;
|
||||
if (MO->isKill()) {
|
||||
isKill = true;
|
||||
// Tied operands on two-address instuctions MUST NOT have a <kill> flag.
|
||||
if (MI->isRegTiedToDefOperand(MONum))
|
||||
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;
|
||||
// ANd in that case an explicit kill flag is not allowed.
|
||||
if (MO->isKill())
|
||||
report("Illegal kill flag on two-address instruction operand",
|
||||
MO, MONum);
|
||||
} else {
|
||||
// TwoAddress instr modifying a reg is treated as kill+def.
|
||||
unsigned defIdx;
|
||||
if (MI->isRegTiedToDefOperand(MONum, &defIdx) &&
|
||||
MI->getOperand(defIdx).getReg() == Reg)
|
||||
isKill = true;
|
||||
}
|
||||
} else if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
|
||||
report("Two-address instruction operands must be identical",
|
||||
MO, MONum);
|
||||
}
|
||||
} else
|
||||
isKill = MO->isKill();
|
||||
|
||||
if (isKill) {
|
||||
addRegWithSubRegs(regsKilled, Reg);
|
||||
|
||||
|
@ -35,6 +35,9 @@
|
||||
#include <algorithm>
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<bool> VerifyFastRegalloc("verify-fast-regalloc", cl::Hidden,
|
||||
cl::desc("Verify machine code before fast regalloc"));
|
||||
|
||||
STATISTIC(NumStores, "Number of stores added");
|
||||
STATISTIC(NumLoads , "Number of loads added");
|
||||
|
||||
@ -778,6 +781,8 @@ bool RAFast::runOnMachineFunction(MachineFunction &Fn) {
|
||||
DEBUG(dbgs() << "********** FAST REGISTER ALLOCATION **********\n"
|
||||
<< "********** Function: "
|
||||
<< ((Value*)Fn.getFunction())->getName() << '\n');
|
||||
if (VerifyFastRegalloc)
|
||||
Fn.verify();
|
||||
MF = &Fn;
|
||||
MRI = &MF->getRegInfo();
|
||||
TM = &Fn.getTarget();
|
||||
|
Loading…
x
Reference in New Issue
Block a user