mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-23 11:04:49 +00:00
Make LiveIntervals::handleMove() bundle aware.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2de3ff5043
commit
cc2037be2c
@ -234,6 +234,11 @@ public:
|
|||||||
/// if either itself or its following instruction is marked "InsideBundle".
|
/// if either itself or its following instruction is marked "InsideBundle".
|
||||||
bool isBundled() const;
|
bool isBundled() const;
|
||||||
|
|
||||||
|
/// getBundleStart - If this instruction is inside a bundle return the
|
||||||
|
/// instruction at the start of the bundle. Otherwise just returns the
|
||||||
|
/// instruction itself.
|
||||||
|
MachineInstr* getBundleStart();
|
||||||
|
|
||||||
/// getDebugLoc - Returns the debug location id of this MachineInstr.
|
/// getDebugLoc - Returns the debug location id of this MachineInstr.
|
||||||
///
|
///
|
||||||
DebugLoc getDebugLoc() const { return debugLoc; }
|
DebugLoc getDebugLoc() const { return debugLoc; }
|
||||||
|
@ -963,13 +963,15 @@ static void handleMoveUses(const MachineBasicBlock *mbb,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void LiveIntervals::handleMove(MachineInstr *mi) {
|
|
||||||
|
|
||||||
|
void LiveIntervals::handleMove(MachineInstr* mi) {
|
||||||
SlotIndex origIdx = indexes_->getInstructionIndex(mi);
|
SlotIndex origIdx = indexes_->getInstructionIndex(mi);
|
||||||
indexes_->removeMachineInstrFromMaps(mi);
|
indexes_->removeMachineInstrFromMaps(mi);
|
||||||
SlotIndex miIdx = indexes_->insertMachineInstrInMaps(mi);
|
SlotIndex miIdx = mi->isInsideBundle() ?
|
||||||
|
indexes_->getInstructionIndex(mi->getBundleStart()) :
|
||||||
|
indexes_->insertMachineInstrInMaps(mi);
|
||||||
MachineBasicBlock* mbb = mi->getParent();
|
MachineBasicBlock* mbb = mi->getParent();
|
||||||
|
|
||||||
assert(getMBBStartIdx(mbb) <= origIdx && origIdx < getMBBEndIdx(mbb) &&
|
assert(getMBBStartIdx(mbb) <= origIdx && origIdx < getMBBEndIdx(mbb) &&
|
||||||
"Cannot handle moves across basic block boundaries.");
|
"Cannot handle moves across basic block boundaries.");
|
||||||
assert(!mi->isBundled() && "Can't handle bundled instructions yet.");
|
assert(!mi->isBundled() && "Can't handle bundled instructions yet.");
|
||||||
|
@ -900,6 +900,16 @@ bool MachineInstr::isBundled() const {
|
|||||||
return nextMI != Parent->instr_end() && nextMI->isInsideBundle();
|
return nextMI != Parent->instr_end() && nextMI->isInsideBundle();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MachineInstr* MachineInstr::getBundleStart() {
|
||||||
|
if (!isInsideBundle())
|
||||||
|
return this;
|
||||||
|
MachineBasicBlock::reverse_instr_iterator MII(this);
|
||||||
|
--MII;
|
||||||
|
while (MII->isInsideBundle())
|
||||||
|
--MII;
|
||||||
|
return &*MII;
|
||||||
|
}
|
||||||
|
|
||||||
bool MachineInstr::isStackAligningInlineAsm() const {
|
bool MachineInstr::isStackAligningInlineAsm() const {
|
||||||
if (isInlineAsm()) {
|
if (isInlineAsm()) {
|
||||||
unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm();
|
unsigned ExtraInfo = getOperand(InlineAsm::MIOp_ExtraInfo).getImm();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user