mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
CodeGen: Bring back MachineBasicBlock::iterator::getInstrIterator()...
This is a little embarrassing. When I reverted r261504 (getIterator() => getInstrIterator()) in r261567, I did a `git grep` to see if there were new calls to `getInstrIterator()` that I needed to migrate. There were 10-20 hits, and I blindly did a `sed ...` before calling `ninja check`. However, these were `MachineInstrBundleIterator::getInstrIterator()`, which predated r261567. Perhaps coincidentally, these had an identical name and return type. This commit undoes my careless sed and restores `MachineBasicBlock::iterator::getInstrIterator()`. llvm-svn: 261577
This commit is contained in:
parent
369872c96c
commit
429a618d84
@ -517,7 +517,7 @@ public:
|
|||||||
void insert(iterator I, IT S, IT E) {
|
void insert(iterator I, IT S, IT E) {
|
||||||
assert((I == end() || I->getParent() == this) &&
|
assert((I == end() || I->getParent() == this) &&
|
||||||
"iterator points outside of basic block");
|
"iterator points outside of basic block");
|
||||||
Insts.insert(I.getIterator(), S, E);
|
Insts.insert(I.getInstrIterator(), S, E);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Insert MI into the instruction list before I.
|
/// Insert MI into the instruction list before I.
|
||||||
@ -526,7 +526,7 @@ public:
|
|||||||
"iterator points outside of basic block");
|
"iterator points outside of basic block");
|
||||||
assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
|
assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
|
||||||
"Cannot insert instruction with bundle flags");
|
"Cannot insert instruction with bundle flags");
|
||||||
return Insts.insert(I.getIterator(), MI);
|
return Insts.insert(I.getInstrIterator(), MI);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Insert MI into the instruction list after I.
|
/// Insert MI into the instruction list after I.
|
||||||
@ -535,7 +535,7 @@ public:
|
|||||||
"iterator points outside of basic block");
|
"iterator points outside of basic block");
|
||||||
assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
|
assert(!MI->isBundledWithPred() && !MI->isBundledWithSucc() &&
|
||||||
"Cannot insert instruction with bundle flags");
|
"Cannot insert instruction with bundle flags");
|
||||||
return Insts.insertAfter(I.getIterator(), MI);
|
return Insts.insertAfter(I.getInstrIterator(), MI);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Remove an instruction from the instruction list and delete it.
|
/// Remove an instruction from the instruction list and delete it.
|
||||||
@ -554,7 +554,7 @@ public:
|
|||||||
|
|
||||||
/// Remove a range of instructions from the instruction list and delete them.
|
/// Remove a range of instructions from the instruction list and delete them.
|
||||||
iterator erase(iterator I, iterator E) {
|
iterator erase(iterator I, iterator E) {
|
||||||
return Insts.erase(I.getIterator(), E.getIterator());
|
return Insts.erase(I.getInstrIterator(), E.getInstrIterator());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Remove an instruction or bundle from the instruction list and delete it.
|
/// Remove an instruction or bundle from the instruction list and delete it.
|
||||||
@ -610,8 +610,8 @@ public:
|
|||||||
/// instructions to move.
|
/// instructions to move.
|
||||||
void splice(iterator Where, MachineBasicBlock *Other,
|
void splice(iterator Where, MachineBasicBlock *Other,
|
||||||
iterator From, iterator To) {
|
iterator From, iterator To) {
|
||||||
Insts.splice(Where.getIterator(), Other->Insts, From.getIterator(),
|
Insts.splice(Where.getInstrIterator(), Other->Insts,
|
||||||
To.getIterator());
|
From.getInstrIterator(), To.getInstrIterator());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// This method unlinks 'this' from the containing function, and returns it,
|
/// This method unlinks 'this' from the containing function, and returns it,
|
||||||
@ -639,7 +639,7 @@ public:
|
|||||||
/// instructions. Return UnknownLoc if there is none.
|
/// instructions. Return UnknownLoc if there is none.
|
||||||
DebugLoc findDebugLoc(instr_iterator MBBI);
|
DebugLoc findDebugLoc(instr_iterator MBBI);
|
||||||
DebugLoc findDebugLoc(iterator MBBI) {
|
DebugLoc findDebugLoc(iterator MBBI) {
|
||||||
return findDebugLoc(MBBI.getIterator());
|
return findDebugLoc(MBBI.getInstrIterator());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Possible outcome of a register liveness query to computeRegisterLiveness()
|
/// Possible outcome of a register liveness query to computeRegisterLiveness()
|
||||||
|
@ -429,12 +429,12 @@ public:
|
|||||||
/// Create an MIBundleBuilder that inserts instructions into a new bundle in
|
/// Create an MIBundleBuilder that inserts instructions into a new bundle in
|
||||||
/// BB above the bundle or instruction at Pos.
|
/// BB above the bundle or instruction at Pos.
|
||||||
MIBundleBuilder(MachineBasicBlock &BB, MachineBasicBlock::iterator Pos)
|
MIBundleBuilder(MachineBasicBlock &BB, MachineBasicBlock::iterator Pos)
|
||||||
: MBB(BB), Begin(Pos.getIterator()), End(Begin) {}
|
: MBB(BB), Begin(Pos.getInstrIterator()), End(Begin) {}
|
||||||
|
|
||||||
/// Create a bundle from the sequence of instructions between B and E.
|
/// Create a bundle from the sequence of instructions between B and E.
|
||||||
MIBundleBuilder(MachineBasicBlock &BB, MachineBasicBlock::iterator B,
|
MIBundleBuilder(MachineBasicBlock &BB, MachineBasicBlock::iterator B,
|
||||||
MachineBasicBlock::iterator E)
|
MachineBasicBlock::iterator E)
|
||||||
: MBB(BB), Begin(B.getIterator()), End(E.getIterator()) {
|
: MBB(BB), Begin(B.getInstrIterator()), End(E.getInstrIterator()) {
|
||||||
assert(B != E && "No instructions to bundle");
|
assert(B != E && "No instructions to bundle");
|
||||||
++B;
|
++B;
|
||||||
while (B != E) {
|
while (B != E) {
|
||||||
|
@ -44,7 +44,7 @@ public:
|
|||||||
// Template allows conversion from const to nonconst.
|
// Template allows conversion from const to nonconst.
|
||||||
template <class OtherTy>
|
template <class OtherTy>
|
||||||
MachineInstrBundleIterator(const MachineInstrBundleIterator<OtherTy> &I)
|
MachineInstrBundleIterator(const MachineInstrBundleIterator<OtherTy> &I)
|
||||||
: MII(I.getIterator()) {}
|
: MII(I.getInstrIterator()) {}
|
||||||
MachineInstrBundleIterator() : MII(nullptr) {}
|
MachineInstrBundleIterator() : MII(nullptr) {}
|
||||||
|
|
||||||
Ty &operator*() const { return *MII; }
|
Ty &operator*() const { return *MII; }
|
||||||
@ -84,7 +84,7 @@ public:
|
|||||||
return Temp;
|
return Temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
instr_iterator getIterator() const { return MII; }
|
instr_iterator getInstrIterator() const { return MII; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
@ -397,7 +397,7 @@ private:
|
|||||||
std::vector<int64_t> Literals;
|
std::vector<int64_t> Literals;
|
||||||
if (I->isBundle()) {
|
if (I->isBundle()) {
|
||||||
MachineInstr *DeleteMI = I;
|
MachineInstr *DeleteMI = I;
|
||||||
MachineBasicBlock::instr_iterator BI = I.getIterator();
|
MachineBasicBlock::instr_iterator BI = I.getInstrIterator();
|
||||||
while (++BI != E && BI->isBundledWithPred()) {
|
while (++BI != E && BI->isBundledWithPred()) {
|
||||||
BI->unbundleFromPred();
|
BI->unbundleFromPred();
|
||||||
for (unsigned i = 0, e = BI->getNumOperands(); i != e; ++i) {
|
for (unsigned i = 0, e = BI->getNumOperands(); i != e; ++i) {
|
||||||
|
@ -75,7 +75,7 @@ private:
|
|||||||
I--;
|
I--;
|
||||||
if (!TII->isALUInstr(I->getOpcode()) && !I->isBundle())
|
if (!TII->isALUInstr(I->getOpcode()) && !I->isBundle())
|
||||||
return Result;
|
return Result;
|
||||||
MachineBasicBlock::instr_iterator BI = I.getIterator();
|
MachineBasicBlock::instr_iterator BI = I.getInstrIterator();
|
||||||
if (I->isBundle())
|
if (I->isBundle())
|
||||||
BI++;
|
BI++;
|
||||||
int LastDstChan = -1;
|
int LastDstChan = -1;
|
||||||
|
@ -3410,7 +3410,7 @@ static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
|
|||||||
Dist = 0;
|
Dist = 0;
|
||||||
|
|
||||||
MachineBasicBlock::const_iterator I = MI; ++I;
|
MachineBasicBlock::const_iterator I = MI; ++I;
|
||||||
MachineBasicBlock::const_instr_iterator II = std::prev(I.getIterator());
|
MachineBasicBlock::const_instr_iterator II = std::prev(I.getInstrIterator());
|
||||||
assert(II->isInsideBundle() && "Empty bundle?");
|
assert(II->isInsideBundle() && "Empty bundle?");
|
||||||
|
|
||||||
int Idx = -1;
|
int Idx = -1;
|
||||||
|
@ -256,7 +256,8 @@ bool Thumb2ITBlockPass::InsertITInstructions(MachineBasicBlock &MBB) {
|
|||||||
LastITMI->findRegisterUseOperand(ARM::ITSTATE)->setIsKill();
|
LastITMI->findRegisterUseOperand(ARM::ITSTATE)->setIsKill();
|
||||||
|
|
||||||
// Finalize the bundle.
|
// Finalize the bundle.
|
||||||
finalizeBundle(MBB, InsertPos.getIterator(), ++LastITMI->getIterator());
|
finalizeBundle(MBB, InsertPos.getInstrIterator(),
|
||||||
|
++LastITMI->getIterator());
|
||||||
|
|
||||||
Modified = true;
|
Modified = true;
|
||||||
++NumITs;
|
++NumITs;
|
||||||
|
@ -582,7 +582,7 @@ namespace {
|
|||||||
if (!It->isBundle())
|
if (!It->isBundle())
|
||||||
return It->getOpcode() == Hexagon::S2_allocframe;
|
return It->getOpcode() == Hexagon::S2_allocframe;
|
||||||
auto End = It->getParent()->instr_end();
|
auto End = It->getParent()->instr_end();
|
||||||
MachineBasicBlock::const_instr_iterator I = It.getIterator();
|
MachineBasicBlock::const_instr_iterator I = It.getInstrIterator();
|
||||||
while (++I != End && I->isBundled())
|
while (++I != End && I->isBundled())
|
||||||
if (I->getOpcode() == Hexagon::S2_allocframe)
|
if (I->getOpcode() == Hexagon::S2_allocframe)
|
||||||
return true;
|
return true;
|
||||||
|
@ -4071,7 +4071,7 @@ unsigned HexagonInstrInfo::nonDbgBBSize(const MachineBasicBlock *BB) const {
|
|||||||
unsigned HexagonInstrInfo::nonDbgBundleSize(
|
unsigned HexagonInstrInfo::nonDbgBundleSize(
|
||||||
MachineBasicBlock::const_iterator BundleHead) const {
|
MachineBasicBlock::const_iterator BundleHead) const {
|
||||||
assert(BundleHead->isBundle() && "Not a bundle header");
|
assert(BundleHead->isBundle() && "Not a bundle header");
|
||||||
auto MII = BundleHead.getIterator();
|
auto MII = BundleHead.getInstrIterator();
|
||||||
// Skip the bundle header.
|
// Skip the bundle header.
|
||||||
return nonDbgMICount(++MII, getBundleEnd(BundleHead));
|
return nonDbgMICount(++MII, getBundleEnd(BundleHead));
|
||||||
}
|
}
|
||||||
|
@ -126,9 +126,9 @@ static MachineBasicBlock::iterator moveInstrOut(MachineInstr *MI,
|
|||||||
MachineBasicBlock::iterator BundleIt, bool Before) {
|
MachineBasicBlock::iterator BundleIt, bool Before) {
|
||||||
MachineBasicBlock::instr_iterator InsertPt;
|
MachineBasicBlock::instr_iterator InsertPt;
|
||||||
if (Before)
|
if (Before)
|
||||||
InsertPt = BundleIt.getIterator();
|
InsertPt = BundleIt.getInstrIterator();
|
||||||
else
|
else
|
||||||
InsertPt = std::next(BundleIt).getIterator();
|
InsertPt = std::next(BundleIt).getInstrIterator();
|
||||||
|
|
||||||
MachineBasicBlock &B = *MI->getParent();
|
MachineBasicBlock &B = *MI->getParent();
|
||||||
// The instruction should at least be bundled with the preceding instruction
|
// The instruction should at least be bundled with the preceding instruction
|
||||||
|
Loading…
Reference in New Issue
Block a user