First chunk of MachineInstr bundle support.

1. Added opcode BUNDLE
2. Taught MachineInstr class to deal with bundled MIs
3. Changed MachineBasicBlock iterator to skip over bundled MIs; added an iterator to walk all the MIs
4. Taught MachineBasicBlock methods about bundled MIs


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145975 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2011-12-06 22:12:01 +00:00
parent 3d5d8f6b76
commit 7c2a4a30e0
19 changed files with 369 additions and 69 deletions

View File

@ -129,10 +129,89 @@ public:
const MachineFunction *getParent() const { return xParent; } const MachineFunction *getParent() const { return xParent; }
MachineFunction *getParent() { return xParent; } MachineFunction *getParent() { return xParent; }
typedef Instructions::iterator iterator;
typedef Instructions::const_iterator const_iterator; /// bundle_iterator - MachineBasicBlock iterator that automatically skips over
typedef std::reverse_iterator<const_iterator> const_reverse_iterator; /// MIs that are inside bundles (i.e. walk top level MIs only).
typedef std::reverse_iterator<iterator> reverse_iterator; template<typename Ty, typename IterTy>
class bundle_iterator
: public std::iterator<std::bidirectional_iterator_tag, Ty, ptrdiff_t> {
IterTy MII;
public:
bundle_iterator(IterTy mii) : MII(mii) {
assert(!MII->isInsideBundle() &&
"It's not legal to initialize bundle_iterator with a bundled MI");
}
bundle_iterator(Ty &mi) : MII(mi) {
assert(!mi.isInsideBundle() &&
"It's not legal to initialize bundle_iterator with a bundled MI");
}
bundle_iterator(Ty *mi) : MII(mi) {
assert((!mi || !mi->isInsideBundle()) &&
"It's not legal to initialize bundle_iterator with a bundled MI");
}
bundle_iterator(const bundle_iterator &I) : MII(I.MII) {}
bundle_iterator() : MII(0) {}
Ty &operator*() const { return *MII; }
Ty *operator->() const { return &operator*(); }
operator Ty*() const { return MII; }
bool operator==(const bundle_iterator &x) const {
return MII == x.MII;
}
bool operator!=(const bundle_iterator &x) const {
return !operator==(x);
}
// Increment and decrement operators...
bundle_iterator &operator--() { // predecrement - Back up
do {
--MII;
} while (MII->isInsideBundle());
return *this;
}
bundle_iterator &operator++() { // preincrement - Advance
do {
++MII;
} while (MII->isInsideBundle());
return *this;
}
bundle_iterator operator--(int) { // postdecrement operators...
bundle_iterator tmp = *this;
do {
--MII;
} while (MII->isInsideBundle());
return tmp;
}
bundle_iterator operator++(int) { // postincrement operators...
bundle_iterator tmp = *this;
do {
++MII;
} while (MII->isInsideBundle());
return tmp;
}
IterTy getInsnIterator() const {
return MII;
}
};
typedef Instructions::iterator insn_iterator;
typedef Instructions::const_iterator const_insn_iterator;
typedef std::reverse_iterator<insn_iterator> reverse_insn_iterator;
typedef
std::reverse_iterator<const_insn_iterator> const_reverse_insn_iterator;
typedef
bundle_iterator<MachineInstr,insn_iterator> iterator;
typedef
bundle_iterator<const MachineInstr,const_insn_iterator> const_iterator;
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
typedef std::reverse_iterator<iterator> reverse_iterator;
unsigned size() const { return (unsigned)Insts.size(); } unsigned size() const { return (unsigned)Insts.size(); }
bool empty() const { return Insts.empty(); } bool empty() const { return Insts.empty(); }
@ -142,15 +221,53 @@ public:
const MachineInstr& front() const { return Insts.front(); } const MachineInstr& front() const { return Insts.front(); }
const MachineInstr& back() const { return Insts.back(); } const MachineInstr& back() const { return Insts.back(); }
insn_iterator insn_begin() { return Insts.begin(); }
const_insn_iterator insn_begin() const { return Insts.begin(); }
insn_iterator insn_end() { return Insts.end(); }
const_insn_iterator insn_end() const { return Insts.end(); }
reverse_insn_iterator insn_rbegin() { return Insts.rbegin(); }
const_reverse_insn_iterator insn_rbegin() const { return Insts.rbegin(); }
reverse_insn_iterator insn_rend () { return Insts.rend(); }
const_reverse_insn_iterator insn_rend () const { return Insts.rend(); }
iterator begin() { return Insts.begin(); } iterator begin() { return Insts.begin(); }
const_iterator begin() const { return Insts.begin(); } const_iterator begin() const { return Insts.begin(); }
iterator end() { return Insts.end(); } iterator end() {
const_iterator end() const { return Insts.end(); } insn_iterator II = insn_end();
reverse_iterator rbegin() { return Insts.rbegin(); } if (II != insn_begin()) {
const_reverse_iterator rbegin() const { return Insts.rbegin(); } while (II->isInsideBundle())
--II;
}
return II;
}
const_iterator end() const {
const_insn_iterator II = insn_end();
if (II != insn_begin()) {
while (II->isInsideBundle())
--II;
}
return II;
}
reverse_iterator rbegin() {
reverse_insn_iterator II = insn_rbegin();
if (II != insn_rend()) {
while (II->isInsideBundle())
++II;
}
return II;
}
const_reverse_iterator rbegin() const {
const_reverse_insn_iterator II = insn_rbegin();
if (II != insn_rend()) {
while (II->isInsideBundle())
++II;
}
return II;
}
reverse_iterator rend () { return Insts.rend(); } reverse_iterator rend () { return Insts.rend(); }
const_reverse_iterator rend () const { return Insts.rend(); } const_reverse_iterator rend () const { return Insts.rend(); }
// Machine-CFG iterators // Machine-CFG iterators
typedef std::vector<MachineBasicBlock *>::iterator pred_iterator; typedef std::vector<MachineBasicBlock *>::iterator pred_iterator;
typedef std::vector<MachineBasicBlock *>::const_iterator const_pred_iterator; typedef std::vector<MachineBasicBlock *>::const_iterator const_pred_iterator;
@ -323,18 +440,16 @@ public:
/// instruction of this basic block. If a terminator does not exist, /// instruction of this basic block. If a terminator does not exist,
/// it returns end() /// it returns end()
iterator getFirstTerminator(); iterator getFirstTerminator();
const_iterator getFirstTerminator() const;
const_iterator getFirstTerminator() const { /// getFirstInsnTerminator - Same getFirstTerminator but it ignores bundles
return const_cast<MachineBasicBlock*>(this)->getFirstTerminator(); /// and return an insn_iterator instead.
} insn_iterator getFirstInsnTerminator();
/// getLastNonDebugInstr - returns an iterator to the last non-debug /// getLastNonDebugInstr - returns an iterator to the last non-debug
/// instruction in the basic block, or end() /// instruction in the basic block, or end()
iterator getLastNonDebugInstr(); iterator getLastNonDebugInstr();
const_iterator getLastNonDebugInstr() const;
const_iterator getLastNonDebugInstr() const {
return const_cast<MachineBasicBlock*>(this)->getLastNonDebugInstr();
}
/// SplitCriticalEdge - Split the critical edge from this block to the /// SplitCriticalEdge - Split the critical edge from this block to the
/// given successor block, and return the newly created block, or null /// given successor block, and return the newly created block, or null
@ -347,32 +462,70 @@ public:
void pop_front() { Insts.pop_front(); } void pop_front() { Insts.pop_front(); }
void pop_back() { Insts.pop_back(); } void pop_back() { Insts.pop_back(); }
void push_back(MachineInstr *MI) { Insts.push_back(MI); } void push_back(MachineInstr *MI) { Insts.push_back(MI); }
template<typename IT> template<typename IT>
void insert(iterator I, IT S, IT E) { Insts.insert(I, S, E); } void insert(insn_iterator I, IT S, IT E) {
iterator insert(iterator I, MachineInstr *M) { return Insts.insert(I, M); } Insts.insert(I, S, E);
iterator insertAfter(iterator I, MachineInstr *M) { }
insn_iterator insert(insn_iterator I, MachineInstr *M) {
return Insts.insert(I, M);
}
insn_iterator insertAfter(insn_iterator I, MachineInstr *M) {
return Insts.insertAfter(I, M); return Insts.insertAfter(I, M);
} }
template<typename IT>
void insert(iterator I, IT S, IT E) {
Insts.insert(I.getInsnIterator(), S, E);
}
iterator insert(iterator I, MachineInstr *M) {
return Insts.insert(I.getInsnIterator(), M);
}
iterator insertAfter(iterator I, MachineInstr *M) {
return Insts.insertAfter(I.getInsnIterator(), M);
}
// erase - Remove the specified element or range from the instruction list. // erase - Remove the specified element or range from the instruction list.
// These functions delete any instructions removed. // These functions delete any instructions removed.
// //
iterator erase(iterator I) { return Insts.erase(I); } insn_iterator erase(insn_iterator I) {
iterator erase(iterator I, iterator E) { return Insts.erase(I, E); } return Insts.erase(I);
}
insn_iterator erase(insn_iterator I, insn_iterator E) {
return Insts.erase(I, E);
}
iterator erase(iterator I) {
return Insts.erase(I.getInsnIterator());
}
iterator erase(iterator I, iterator E) {
return Insts.erase(I.getInsnIterator(), E.getInsnIterator());
}
iterator erase(MachineInstr *I) { iterator MII(I); return erase(MII); }
MachineInstr *remove(MachineInstr *I) { return Insts.remove(I); } MachineInstr *remove(MachineInstr *I) { return Insts.remove(I); }
void clear() { Insts.clear(); } void clear() { Insts.clear(); }
/// splice - Take an instruction from MBB 'Other' at the position From, /// splice - Take an instruction from MBB 'Other' at the position From,
/// and insert it into this MBB right before 'where'. /// and insert it into this MBB right before 'where'.
void splice(iterator where, MachineBasicBlock *Other, iterator From) { void splice(insn_iterator where, MachineBasicBlock *Other,
insn_iterator From) {
Insts.splice(where, Other->Insts, From); Insts.splice(where, Other->Insts, From);
} }
void splice(iterator where, MachineBasicBlock *Other, iterator From) {
Insts.splice(where.getInsnIterator(), Other->Insts, From.getInsnIterator());
}
/// splice - Take a block of instructions from MBB 'Other' in the range [From, /// splice - Take a block of instructions from MBB 'Other' in the range [From,
/// To), and insert them into this MBB right before 'where'. /// To), and insert them into this MBB right before 'where'.
void splice(insn_iterator where, MachineBasicBlock *Other, insn_iterator From,
insn_iterator To) {
Insts.splice(where, Other->Insts, From, To);
}
void splice(iterator where, MachineBasicBlock *Other, iterator From, void splice(iterator where, MachineBasicBlock *Other, iterator From,
iterator To) { iterator To) {
Insts.splice(where, Other->Insts, From, To); Insts.splice(where.getInsnIterator(), Other->Insts,
From.getInsnIterator(), To.getInsnIterator());
} }
/// removeFromParent - This method unlinks 'this' from the containing /// removeFromParent - This method unlinks 'this' from the containing
@ -399,7 +552,10 @@ public:
/// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping /// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping
/// any DBG_VALUE instructions. Return UnknownLoc if there is none. /// any DBG_VALUE instructions. Return UnknownLoc if there is none.
DebugLoc findDebugLoc(MachineBasicBlock::iterator &MBBI); DebugLoc findDebugLoc(insn_iterator MBBI);
DebugLoc findDebugLoc(iterator MBBI) {
return findDebugLoc(MBBI.getInsnIterator());
}
// Debugging methods. // Debugging methods.
void dump() const; void dump() const;

View File

@ -53,9 +53,11 @@ public:
}; };
enum MIFlag { enum MIFlag {
NoFlags = 0, NoFlags = 0,
FrameSetup = 1 << 0 // Instruction is used as a part of FrameSetup = 1 << 0, // Instruction is used as a part of
// function frame setup code. // function frame setup code.
InsideBundle = 1 << 1 // Instruction is inside a bundle (not
// the first MI in a bundle)
}; };
private: private:
const MCInstrDesc *MCID; // Instruction descriptor. const MCInstrDesc *MCID; // Instruction descriptor.
@ -148,6 +150,12 @@ public:
AsmPrinterFlags |= (uint8_t)Flag; AsmPrinterFlags |= (uint8_t)Flag;
} }
/// clearAsmPrinterFlag - clear specific AsmPrinter flags
///
void clearAsmPrinterFlag(CommentFlag Flag) {
AsmPrinterFlags &= ~Flag;
}
/// getFlags - Return the MI flags bitvector. /// getFlags - Return the MI flags bitvector.
uint8_t getFlags() const { uint8_t getFlags() const {
return Flags; return Flags;
@ -167,10 +175,44 @@ public:
Flags = flags; Flags = flags;
} }
/// clearAsmPrinterFlag - clear specific AsmPrinter flags /// isInsideBundle - Return true if MI is in a bundle (but not the first MI
/// in a bundle).
/// ///
void clearAsmPrinterFlag(CommentFlag Flag) { /// A bundle looks like this before it's finalized:
AsmPrinterFlags &= ~Flag; /// ----------------
/// | MI |
/// ----------------
/// |
/// ----------------
/// | MI * |
/// ----------------
/// |
/// ----------------
/// | MI * |
/// ----------------
/// In this case, the first MI starts a bundle but is not inside a bundle, the
/// next 2 MIs are considered "inside" the bundle.
///
/// After a bundle is finalized, it looks like this:
/// ----------------
/// | Bundle |
/// ----------------
/// |
/// ----------------
/// | MI * |
/// ----------------
/// |
/// ----------------
/// | MI * |
/// ----------------
/// |
/// ----------------
/// | MI * |
/// ----------------
/// The first instruction has the special opcode "BUNDLE". It's not "inside"
/// a bundle, but the next three MIs are.
bool isInsideBundle() const {
return getFlag(InsideBundle);
} }
/// getDebugLoc - Returns the debug location id of this MachineInstr. /// getDebugLoc - Returns the debug location id of this MachineInstr.
@ -232,6 +274,14 @@ public:
return MemRefsEnd - MemRefs == 1; return MemRefsEnd - MemRefs == 1;
} }
/// API for querying MachineInstr properties. These are bundle aware.
///
bool hasProperty(unsigned short Flag) const;
bool isTerminator() const {
return hasProperty(MCID::Terminator);
}
enum MICheckType { enum MICheckType {
CheckDefs, // Check all operands for equality CheckDefs, // Check all operands for equality
CheckKillDead, // Check all operands including kill / dead markers CheckKillDead, // Check all operands including kill / dead markers

View File

@ -184,6 +184,10 @@ public:
return NumDefs; return NumDefs;
} }
/// getFlags - Return flags of this instruction.
///
unsigned short getFlags() const { return Flags; }
/// isVariadic - Return true if this instruction can have a variable number of /// isVariadic - Return true if this instruction can have a variable number of
/// operands. In this case, the variable operands will be after the normal /// operands. In this case, the variable operands will be after the normal
/// operands but before the implicit definitions and uses (if any are /// operands but before the implicit definitions and uses (if any are

View File

@ -688,6 +688,11 @@ def COPY : Instruction {
let neverHasSideEffects = 1; let neverHasSideEffects = 1;
let isAsCheapAsAMove = 1; let isAsCheapAsAMove = 1;
} }
def BUNDLE : Instruction {
let OutOperandList = (outs);
let InOperandList = (ins variable_ops);
let AsmString = "BUNDLE";
}
} }
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//

View File

@ -82,7 +82,12 @@ namespace TargetOpcode {
/// COPY - Target-independent register copy. This instruction can also be /// COPY - Target-independent register copy. This instruction can also be
/// used to copy between subregisters of virtual registers. /// used to copy between subregisters of virtual registers.
COPY = 13 COPY = 13,
/// BUNDLE - This instruction represents an instruction bundle. Instructions
/// which immediately follow a BUNDLE instruction which are marked with
/// 'InsideBundle' flag are inside the bundle.
BUNDLE
}; };
} // end namespace TargetOpcode } // end namespace TargetOpcode
} // end namespace llvm } // end namespace llvm

View File

@ -754,7 +754,7 @@ void LiveVariables::addNewBlock(MachineBasicBlock *BB,
const unsigned NumNew = BB->getNumber(); const unsigned NumNew = BB->getNumber();
// All registers used by PHI nodes in SuccBB must be live through BB. // All registers used by PHI nodes in SuccBB must be live through BB.
for (MachineBasicBlock::const_iterator BBI = SuccBB->begin(), for (MachineBasicBlock::iterator BBI = SuccBB->begin(),
BBE = SuccBB->end(); BBI != BBE && BBI->isPHI(); ++BBI) BBE = SuccBB->end(); BBI != BBE && BBI->isPHI(); ++BBI)
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
if (BBI->getOperand(i+1).getMBB() == BB) if (BBI->getOperand(i+1).getMBB() == BB)

View File

@ -73,7 +73,8 @@ void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N) {
// Make sure the instructions have their operands in the reginfo lists. // Make sure the instructions have their operands in the reginfo lists.
MachineRegisterInfo &RegInfo = MF.getRegInfo(); MachineRegisterInfo &RegInfo = MF.getRegInfo();
for (MachineBasicBlock::iterator I = N->begin(), E = N->end(); I != E; ++I) for (MachineBasicBlock::insn_iterator I = N->insn_begin(), E = N->insn_end();
I != E; ++I)
I->AddRegOperandsToUseLists(RegInfo); I->AddRegOperandsToUseLists(RegInfo);
LeakDetector::removeGarbageObject(N); LeakDetector::removeGarbageObject(N);
@ -120,8 +121,8 @@ void ilist_traits<MachineInstr>::removeNodeFromList(MachineInstr *N) {
/// lists. /// lists.
void ilist_traits<MachineInstr>:: void ilist_traits<MachineInstr>::
transferNodesFromList(ilist_traits<MachineInstr> &fromList, transferNodesFromList(ilist_traits<MachineInstr> &fromList,
MachineBasicBlock::iterator first, ilist_iterator<MachineInstr> first,
MachineBasicBlock::iterator last) { ilist_iterator<MachineInstr> last) {
assert(Parent->getParent() == fromList.Parent->getParent() && assert(Parent->getParent() == fromList.Parent->getParent() &&
"MachineInstr parent mismatch!"); "MachineInstr parent mismatch!");
@ -140,9 +141,10 @@ void ilist_traits<MachineInstr>::deleteNode(MachineInstr* MI) {
} }
MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() { MachineBasicBlock::iterator MachineBasicBlock::getFirstNonPHI() {
iterator I = begin(); insn_iterator I = insn_begin();
while (I != end() && I->isPHI()) while (I != end() && I->isPHI())
++I; ++I;
assert(!I->isInsideBundle() && "First non-phi MI cannot be inside a bundle!");
return I; return I;
} }
@ -150,23 +152,63 @@ MachineBasicBlock::iterator
MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) { MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
while (I != end() && (I->isPHI() || I->isLabel() || I->isDebugValue())) while (I != end() && (I->isPHI() || I->isLabel() || I->isDebugValue()))
++I; ++I;
// FIXME: This needs to change if we wish to bundle labels / dbg_values
// inside the bundle.
assert(!I->isInsideBundle() &&
"First non-phi / non-label instruction is inside a bundle!");
return I; return I;
} }
MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() { MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
iterator I = end(); iterator I = end();
while (I != begin() && ((--I)->getDesc().isTerminator() || I->isDebugValue())) while (I != begin() && ((--I)->isTerminator() || I->isDebugValue()))
; /*noop */ ; /*noop */
while (I != end() && !I->getDesc().isTerminator()) while (I != end() && !I->isTerminator())
++I;
return I;
}
MachineBasicBlock::const_iterator
MachineBasicBlock::getFirstTerminator() const {
const_iterator I = end();
while (I != begin() && ((--I)->isTerminator() || I->isDebugValue()))
; /*noop */
while (I != end() && !I->isTerminator())
++I;
return I;
}
MachineBasicBlock::insn_iterator MachineBasicBlock::getFirstInsnTerminator() {
insn_iterator I = insn_end();
while (I != insn_begin() && ((--I)->isTerminator() || I->isDebugValue()))
; /*noop */
while (I != insn_end() && !I->isTerminator())
++I; ++I;
return I; return I;
} }
MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() { MachineBasicBlock::iterator MachineBasicBlock::getLastNonDebugInstr() {
iterator B = begin(), I = end(); // Skip over end-of-block dbg_value instructions.
insn_iterator B = insn_begin(), I = insn_end();
while (I != B) { while (I != B) {
--I; --I;
if (I->isDebugValue()) // Return instruction that starts a bundle.
if (I->isDebugValue() || I->isInsideBundle())
continue;
return I;
}
// The block is all debug values.
return end();
}
MachineBasicBlock::const_iterator
MachineBasicBlock::getLastNonDebugInstr() const {
// Skip over end-of-block dbg_value instructions.
const_insn_iterator B = insn_begin(), I = insn_end();
while (I != B) {
--I;
// Return instruction that starts a bundle.
if (I->isDebugValue() || I->isInsideBundle())
continue; continue;
return I; return I;
} }
@ -453,8 +495,8 @@ MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) {
fromMBB->removeSuccessor(Succ); fromMBB->removeSuccessor(Succ);
// Fix up any PHI nodes in the successor. // Fix up any PHI nodes in the successor.
for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end(); for (MachineBasicBlock::insn_iterator MI = Succ->insn_begin(),
MI != ME && MI->isPHI(); ++MI) ME = Succ->insn_end(); MI != ME && MI->isPHI(); ++MI)
for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) { for (unsigned i = 2, e = MI->getNumOperands()+1; i != e; i += 2) {
MachineOperand &MO = MI->getOperand(i); MachineOperand &MO = MI->getOperand(i);
if (MO.getMBB() == fromMBB) if (MO.getMBB() == fromMBB)
@ -556,7 +598,8 @@ MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
// Collect a list of virtual registers killed by the terminators. // Collect a list of virtual registers killed by the terminators.
SmallVector<unsigned, 4> KilledRegs; SmallVector<unsigned, 4> KilledRegs;
if (LV) if (LV)
for (iterator I = getFirstTerminator(), E = end(); I != E; ++I) { for (insn_iterator I = getFirstInsnTerminator(), E = insn_end();
I != E; ++I) {
MachineInstr *MI = I; MachineInstr *MI = I;
for (MachineInstr::mop_iterator OI = MI->operands_begin(), for (MachineInstr::mop_iterator OI = MI->operands_begin(),
OE = MI->operands_end(); OI != OE; ++OI) { OE = MI->operands_end(); OI != OE; ++OI) {
@ -583,8 +626,8 @@ MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
} }
// Fix PHI nodes in Succ so they refer to NMBB instead of this // Fix PHI nodes in Succ so they refer to NMBB instead of this
for (MachineBasicBlock::iterator i = Succ->begin(), e = Succ->end(); for (MachineBasicBlock::insn_iterator
i != e && i->isPHI(); ++i) i = Succ->insn_begin(),e = Succ->insn_end(); i != e && i->isPHI(); ++i)
for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2) for (unsigned ni = 1, ne = i->getNumOperands(); ni != ne; ni += 2)
if (i->getOperand(ni+1).getMBB() == this) if (i->getOperand(ni+1).getMBB() == this)
i->getOperand(ni+1).setMBB(NMBB); i->getOperand(ni+1).setMBB(NMBB);
@ -599,7 +642,7 @@ MachineBasicBlock::SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P) {
// Restore kills of virtual registers that were killed by the terminators. // Restore kills of virtual registers that were killed by the terminators.
while (!KilledRegs.empty()) { while (!KilledRegs.empty()) {
unsigned Reg = KilledRegs.pop_back_val(); unsigned Reg = KilledRegs.pop_back_val();
for (iterator I = end(), E = begin(); I != E;) { for (insn_iterator I = insn_end(), E = insn_begin(); I != E;) {
if (!(--I)->addRegisterKilled(Reg, NULL, /* addIfNotFound= */ false)) if (!(--I)->addRegisterKilled(Reg, NULL, /* addIfNotFound= */ false))
continue; continue;
LV->getVarInfo(Reg).Kills.push_back(I); LV->getVarInfo(Reg).Kills.push_back(I);
@ -691,8 +734,8 @@ void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
MachineBasicBlock *New) { MachineBasicBlock *New) {
assert(Old != New && "Cannot replace self with self!"); assert(Old != New && "Cannot replace self with self!");
MachineBasicBlock::iterator I = end(); MachineBasicBlock::insn_iterator I = insn_end();
while (I != begin()) { while (I != insn_begin()) {
--I; --I;
if (!I->getDesc().isTerminator()) break; if (!I->getDesc().isTerminator()) break;
@ -773,17 +816,17 @@ bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
/// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping /// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping
/// any DBG_VALUE instructions. Return UnknownLoc if there is none. /// any DBG_VALUE instructions. Return UnknownLoc if there is none.
DebugLoc DebugLoc
MachineBasicBlock::findDebugLoc(MachineBasicBlock::iterator &MBBI) { MachineBasicBlock::findDebugLoc(insn_iterator MBBI) {
DebugLoc DL; DebugLoc DL;
MachineBasicBlock::iterator E = end(); insn_iterator E = insn_end();
if (MBBI != E) { if (MBBI == E)
// Skip debug declarations, we don't want a DebugLoc from them. return DL;
MachineBasicBlock::iterator MBBI2 = MBBI;
while (MBBI2 != E && MBBI2->isDebugValue()) // Skip debug declarations, we don't want a DebugLoc from them.
MBBI2++; while (MBBI != E && MBBI->isDebugValue())
if (MBBI2 != E) MBBI++;
DL = MBBI2->getDebugLoc(); if (MBBI != E)
} DL = MBBI->getDebugLoc();
return DL; return DL;
} }

View File

@ -735,6 +735,20 @@ void MachineInstr::addMemOperand(MachineFunction &MF,
MemRefsEnd = NewMemRefsEnd; MemRefsEnd = NewMemRefsEnd;
} }
bool MachineInstr::hasProperty(unsigned short MCFlag) const {
if (getOpcode() != TargetOpcode::BUNDLE)
return getDesc().getFlags() & (1 << MCFlag);
const MachineBasicBlock *MBB = getParent();
MachineBasicBlock::const_insn_iterator MII = *this; ++MII;
while (MII != MBB->end() && MII->isInsideBundle()) {
if (MII->getDesc().getFlags() & (1 << MCFlag))
return true;
++MII;
}
return false;
}
bool MachineInstr::isIdenticalTo(const MachineInstr *Other, bool MachineInstr::isIdenticalTo(const MachineInstr *Other,
MICheckType Check) const { MICheckType Check) const {
// If opcodes or number of operands are not the same then the two // If opcodes or number of operands are not the same then the two
@ -789,6 +803,17 @@ bool MachineInstr::isIdenticalTo(const MachineInstr *Other,
/// block, and returns it, but does not delete it. /// block, and returns it, but does not delete it.
MachineInstr *MachineInstr::removeFromParent() { MachineInstr *MachineInstr::removeFromParent() {
assert(getParent() && "Not embedded in a basic block!"); assert(getParent() && "Not embedded in a basic block!");
// If it's a bundle then remove the MIs inside the bundle as well.
if (getOpcode() == TargetOpcode::BUNDLE) {
MachineBasicBlock *MBB = getParent();
MachineBasicBlock::insn_iterator MII = *this; ++MII;
while (MII != MBB->end() && MII->isInsideBundle()) {
MachineInstr *MI = &*MII;
++MII;
MBB->remove(MI);
}
}
getParent()->remove(this); getParent()->remove(this);
return this; return this;
} }
@ -798,6 +823,16 @@ MachineInstr *MachineInstr::removeFromParent() {
/// block, and deletes it. /// block, and deletes it.
void MachineInstr::eraseFromParent() { void MachineInstr::eraseFromParent() {
assert(getParent() && "Not embedded in a basic block!"); assert(getParent() && "Not embedded in a basic block!");
// If it's a bundle then remove the MIs inside the bundle as well.
if (getOpcode() == TargetOpcode::BUNDLE) {
MachineBasicBlock *MBB = getParent();
MachineBasicBlock::insn_iterator MII = *this; ++MII;
while (MII != MBB->end() && MII->isInsideBundle()) {
MachineInstr *MI = &*MII;
++MII;
MBB->erase(MI);
}
}
getParent()->erase(this); getParent()->erase(this);
} }

View File

@ -1141,8 +1141,9 @@ MachineInstr *MachineLICM::ExtractHoistableLoad(MachineInstr *MI) {
assert(NewMIs.size() == 2 && assert(NewMIs.size() == 2 &&
"Unfolded a load into multiple instructions!"); "Unfolded a load into multiple instructions!");
MachineBasicBlock *MBB = MI->getParent(); MachineBasicBlock *MBB = MI->getParent();
MBB->insert(MI, NewMIs[0]); MachineBasicBlock::iterator Pos = MI;
MBB->insert(MI, NewMIs[1]); MBB->insert(Pos, NewMIs[0]);
MBB->insert(Pos, NewMIs[1]);
// If unfolding produced a load that wasn't loop-invariant or profitable to // If unfolding produced a load that wasn't loop-invariant or profitable to
// hoist, discard the new instructions and bail. // hoist, discard the new instructions and bail.
if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) { if (!IsLoopInvariantInst(*NewMIs[0]) || !IsProfitableToHoist(*NewMIs[0])) {

View File

@ -410,7 +410,7 @@ bool PHIElimination::SplitPHIEdges(MachineFunction &MF,
return false; // Quick exit for basic blocks without PHIs. return false; // Quick exit for basic blocks without PHIs.
bool Changed = false; bool Changed = false;
for (MachineBasicBlock::const_iterator BBI = MBB.begin(), BBE = MBB.end(); for (MachineBasicBlock::iterator BBI = MBB.begin(), BBE = MBB.end();
BBI != BBE && BBI->isPHI(); ++BBI) { BBI != BBE && BBI->isPHI(); ++BBI) {
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) { for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
unsigned Reg = BBI->getOperand(i).getReg(); unsigned Reg = BBI->getOperand(i).getReg();

View File

@ -710,7 +710,8 @@ bool RegisterCoalescer::RemoveCopyByCommutingDef(const CoalescerPair &CP,
return false; return false;
if (NewMI != DefMI) { if (NewMI != DefMI) {
LIS->ReplaceMachineInstrInMaps(DefMI, NewMI); LIS->ReplaceMachineInstrInMaps(DefMI, NewMI);
MBB->insert(DefMI, NewMI); MachineBasicBlock::iterator Pos = DefMI;
MBB->insert(Pos, NewMI);
MBB->erase(DefMI); MBB->erase(DefMI);
} }
unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false); unsigned OpIdx = NewMI->findRegisterUseOperandIdx(IntA.reg, false);

View File

@ -689,7 +689,7 @@ MachineBasicBlock *ScheduleDAGInstrs::EmitSchedule() {
DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) { DI = DbgValues.end(), DE = DbgValues.begin(); DI != DE; --DI) {
std::pair<MachineInstr *, MachineInstr *> P = *prior(DI); std::pair<MachineInstr *, MachineInstr *> P = *prior(DI);
MachineInstr *DbgValue = P.first; MachineInstr *DbgValue = P.first;
MachineInstr *OrigPrivMI = P.second; MachineBasicBlock::iterator OrigPrivMI = P.second;
BB->insertAfter(OrigPrivMI, DbgValue); BB->insertAfter(OrigPrivMI, DbgValue);
} }
DbgValues.clear(); DbgValues.clear();

View File

@ -346,7 +346,8 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
TII.get(TargetOpcode::DBG_VALUE)) TII.get(TargetOpcode::DBG_VALUE))
.addReg(CopyUseMI->getOperand(0).getReg(), RegState::Debug) .addReg(CopyUseMI->getOperand(0).getReg(), RegState::Debug)
.addImm(Offset).addMetadata(Variable); .addImm(Offset).addMetadata(Variable);
EntryMBB->insertAfter(CopyUseMI, NewMI); MachineBasicBlock::iterator Pos = CopyUseMI;
EntryMBB->insertAfter(Pos, NewMI);
} }
} }
} }

View File

@ -561,8 +561,7 @@ TailDuplicatePass::shouldTailDuplicate(const MachineFunction &MF,
// Check the instructions in the block to determine whether tail-duplication // Check the instructions in the block to determine whether tail-duplication
// is invalid or unlikely to be profitable. // is invalid or unlikely to be profitable.
unsigned InstrCount = 0; unsigned InstrCount = 0;
for (MachineBasicBlock::const_iterator I = TailBB.begin(); I != TailBB.end(); for (MachineBasicBlock::iterator I = TailBB.begin(); I != TailBB.end(); ++I) {
++I) {
// Non-duplicable things shouldn't be tail-duplicated. // Non-duplicable things shouldn't be tail-duplicated.
if (I->getDesc().isNotDuplicable()) if (I->getDesc().isNotDuplicable())
return false; return false;

View File

@ -1762,8 +1762,7 @@ OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpMask,
// Check that CPSR isn't set between the comparison instruction and the one we // Check that CPSR isn't set between the comparison instruction and the one we
// want to change. // want to change.
MachineBasicBlock::const_iterator I = CmpInstr, E = MI, MachineBasicBlock::iterator I = CmpInstr,E = MI, B = MI->getParent()->begin();
B = MI->getParent()->begin();
// Early exit if CmpInstr is at the beginning of the BB. // Early exit if CmpInstr is at the beginning of the BB.
if (I == B) return false; if (I == B) return false;

View File

@ -386,7 +386,7 @@ bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
for (MachineFunction::iterator MBB = MF.begin(), E = MF.end(); for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
MBB != E; ++MBB) { MBB != E; ++MBB) {
MCE.StartMachineBasicBlock(MBB); MCE.StartMachineBasicBlock(MBB);
for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end(); for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
I != E; ++I) I != E; ++I)
emitInstruction(*I); emitInstruction(*I);
} }

View File

@ -144,7 +144,7 @@ bool MipsCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
for (MachineFunction::iterator MBB = MF.begin(), E = MF.end(); for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
MBB != E; ++MBB){ MBB != E; ++MBB){
MCE.StartMachineBasicBlock(MBB); MCE.StartMachineBasicBlock(MBB);
for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end(); for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
I != E; ++I) I != E; ++I)
emitInstruction(*I); emitInstruction(*I);
} }

View File

@ -184,7 +184,7 @@ AnalyzeBranch(MachineBasicBlock &MBB,
if (MBB.empty()) if (MBB.empty())
return true; return true;
MachineBasicBlock::const_iterator iter = MBB.end(); MachineBasicBlock::iterator iter = MBB.end();
const MachineInstr& instLast1 = *--iter; const MachineInstr& instLast1 = *--iter;
const MCInstrDesc &desc1 = instLast1.getDesc(); const MCInstrDesc &desc1 = instLast1.getDesc();
// for special case that MBB has only 1 instruction // for special case that MBB has only 1 instruction

View File

@ -267,6 +267,7 @@ void CodeGenTarget::ComputeInstrsByEnum() const {
"DBG_VALUE", "DBG_VALUE",
"REG_SEQUENCE", "REG_SEQUENCE",
"COPY", "COPY",
"BUNDLE",
0 0
}; };
const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions(); const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();