2009-06-02 17:52:33 +00:00
|
|
|
//===- MachineLoopInfo.cpp - Natural Loop Calculator ----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the MachineLoopInfo class that is used to identify natural
|
|
|
|
// loops and determine the loop depth of various nodes of the CFG. Note that
|
2012-08-15 19:34:23 +00:00
|
|
|
// the loops identified may actually be several natural loops that share the
|
2009-06-02 17:52:33 +00:00
|
|
|
// same header node... not just a single natural loop.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Analysis/LoopInfoImpl.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
#include "llvm/CodeGen/MachineDominators.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2010-01-15 15:37:28 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2015-05-27 18:44:32 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-08-15 19:34:23 +00:00
|
|
|
// Explicitly instantiate methods in LoopInfoImpl.h for MI-level Loops.
|
|
|
|
template class llvm::LoopBase<MachineBasicBlock, MachineLoop>;
|
|
|
|
template class llvm::LoopInfoBase<MachineBasicBlock, MachineLoop>;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
char MachineLoopInfo::ID = 0;
|
2011-02-20 12:57:14 +00:00
|
|
|
INITIALIZE_PASS_BEGIN(MachineLoopInfo, "machine-loops",
|
|
|
|
"Machine Natural Loop Construction", true, true)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
|
|
|
|
INITIALIZE_PASS_END(MachineLoopInfo, "machine-loops",
|
|
|
|
"Machine Natural Loop Construction", true, true)
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2010-09-17 15:48:55 +00:00
|
|
|
char &llvm::MachineLoopInfoID = MachineLoopInfo::ID;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
bool MachineLoopInfo::runOnMachineFunction(MachineFunction &) {
|
|
|
|
releaseMemory();
|
2015-12-30 11:46:15 +00:00
|
|
|
LI.analyze(getAnalysis<MachineDominatorTree>().getBase());
|
2009-06-02 17:52:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineLoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
AU.addRequired<MachineDominatorTree>();
|
2009-10-14 17:57:32 +00:00
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
2009-10-23 14:19:52 +00:00
|
|
|
|
|
|
|
MachineBasicBlock *MachineLoop::getTopBlock() {
|
|
|
|
MachineBasicBlock *TopMBB = getHeader();
|
|
|
|
MachineFunction::iterator Begin = TopMBB->getParent()->begin();
|
2016-07-23 20:41:05 +00:00
|
|
|
if (TopMBB->getIterator() != Begin) {
|
2015-12-30 11:46:15 +00:00
|
|
|
MachineBasicBlock *PriorMBB = &*std::prev(TopMBB->getIterator());
|
2009-10-23 14:19:52 +00:00
|
|
|
while (contains(PriorMBB)) {
|
|
|
|
TopMBB = PriorMBB;
|
2016-07-23 20:41:05 +00:00
|
|
|
if (TopMBB->getIterator() == Begin)
|
|
|
|
break;
|
2015-12-30 11:46:15 +00:00
|
|
|
PriorMBB = &*std::prev(TopMBB->getIterator());
|
2009-10-23 14:19:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return TopMBB;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachineBasicBlock *MachineLoop::getBottomBlock() {
|
|
|
|
MachineBasicBlock *BotMBB = getHeader();
|
|
|
|
MachineFunction::iterator End = BotMBB->getParent()->end();
|
2016-07-23 20:41:05 +00:00
|
|
|
if (BotMBB->getIterator() != std::prev(End)) {
|
2015-12-30 11:46:15 +00:00
|
|
|
MachineBasicBlock *NextMBB = &*std::next(BotMBB->getIterator());
|
2009-10-23 14:19:52 +00:00
|
|
|
while (contains(NextMBB)) {
|
|
|
|
BotMBB = NextMBB;
|
2015-12-30 11:46:15 +00:00
|
|
|
if (BotMBB == &*std::next(BotMBB->getIterator()))
|
|
|
|
break;
|
|
|
|
NextMBB = &*std::next(BotMBB->getIterator());
|
2009-10-23 14:19:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return BotMBB;
|
|
|
|
}
|
2010-01-15 15:37:28 +00:00
|
|
|
|
2012-12-02 13:10:19 +00:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-07-23 20:41:05 +00:00
|
|
|
LLVM_DUMP_METHOD void MachineLoop::dump() const {
|
2010-01-15 15:37:28 +00:00
|
|
|
print(dbgs());
|
|
|
|
}
|
2012-12-02 13:10:19 +00:00
|
|
|
#endif
|