diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2003-12-14 13:24:17 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2003-12-14 13:24:17 +0000 |
commit | aaba4639f8b4e4b516b5d0534e726fe596c21081 (patch) | |
tree | 1b5d6e541d3ff5c644c4a2e7b5534e5137499573 /llvm/lib/CodeGen/RegAllocLinearScan.cpp | |
parent | fbeb3b02c3d0012b3c56f166905cabd2e4b09706 (diff) | |
download | bcm5719-llvm-aaba4639f8b4e4b516b5d0534e726fe596c21081.tar.gz bcm5719-llvm-aaba4639f8b4e4b516b5d0534e726fe596c21081.zip |
Change interface of MachineOperand as follows:
a) remove opIsUse(), opIsDefOnly(), opIsDefAndUse()
b) add isUse(), isDef()
c) rename opHiBits32() to isHiBits32(),
opLoBits32() to isLoBits32(),
opHiBits64() to isHiBits64(),
opLoBits64() to isLoBits64().
This results to much more readable code, for example compare
"op.opIsDef() || op.opIsDefAndUse()" to "op.isDef()" a pattern used
very often in the code.
llvm-svn: 10461
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index dd94ad31c1f..9e8089a35e5 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/lib/CodeGen/RegAllocLinearScan.cpp @@ -213,7 +213,7 @@ bool RA::runOnMachineFunction(MachineFunction &fn) { ii = mbb->begin(), ie = mbb->end(); ii != ie; ++ii) { MachineInstr* instr = *ii; - + std::cerr << i++ << "\t"; instr->print(std::cerr, *tm_); } @@ -245,7 +245,6 @@ bool RA::runOnMachineFunction(MachineFunction &fn) { DEBUG(printIntervals("\tactive", active_.begin(), active_.end())); DEBUG(printIntervals("\tinactive", inactive_.begin(), inactive_.end())); - processActiveIntervals(i); // processInactiveIntervals(i); @@ -281,7 +280,7 @@ bool RA::runOnMachineFunction(MachineFunction &fn) { } // remove interval from active } - + DEBUG(std::cerr << "finished register allocation\n"); DEBUG(printVirt2PhysMap()); @@ -322,7 +321,7 @@ bool RA::runOnMachineFunction(MachineFunction &fn) { for (unsigned i = 0, e = (*currentInstr_)->getNumOperands(); i != e; ++i) { MachineOperand& op = (*currentInstr_)->getOperand(i); - if (op.isVirtualRegister() && op.opIsUse()) { + if (op.isVirtualRegister() && op.isUse()) { unsigned virtReg = op.getAllocatedRegNum(); unsigned physReg = v2pMap_[virtReg]; if (!physReg) { @@ -345,13 +344,13 @@ bool RA::runOnMachineFunction(MachineFunction &fn) { for (unsigned i = 0, e = (*currentInstr_)->getNumOperands(); i != e; ++i) { MachineOperand& op = (*currentInstr_)->getOperand(i); - if (op.isVirtualRegister() && !op.opIsUse()) { + if (op.isVirtualRegister() && op.isDef()) { unsigned virtReg = op.getAllocatedRegNum(); unsigned physReg = v2pMap_[virtReg]; if (!physReg) { physReg = getFreeTempPhysReg(virtReg); } - if (op.opIsDefAndUse()) { + if (op.isUse()) { // def and use loadVirt2PhysReg(virtReg, physReg); } else { @@ -373,7 +372,7 @@ bool RA::runOnMachineFunction(MachineFunction &fn) { (*currentInstr_)->getOperand(1).getAllocatedRegNum()) { assert((*currentInstr_)->getOperand(1).isRegister() && (*currentInstr_)->getOperand(1).getAllocatedRegNum() && - (*currentInstr_)->getOperand(1).opIsUse() && + (*currentInstr_)->getOperand(1).isUse() && "Two address instruction invalid"); unsigned regA = |