2007-11-27 22:47:08 +00:00
|
|
|
//===- MachineLoopInfo.cpp - Natural Loop Calculator ----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-11-27 22:47:08 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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-06-20 03:42:09 +00:00
|
|
|
// the loops identified may actually be several natural loops that share the
|
2007-11-27 22:47:08 +00:00
|
|
|
// same header node... not just a single natural loop.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Analysis/LoopInfoImpl.h"
|
2007-11-27 22:47:08 +00:00
|
|
|
#include "llvm/CodeGen/MachineDominators.h"
|
2008-01-04 20:54:55 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2010-01-05 21:08:02 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2007-11-27 22:47:08 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-06-20 03:42:09 +00:00
|
|
|
// Explicitly instantiate methods in LoopInfoImpl.h for MI-level Loops.
|
|
|
|
template class llvm::LoopBase<MachineBasicBlock, MachineLoop>;
|
|
|
|
template class llvm::LoopInfoBase<MachineBasicBlock, MachineLoop>;
|
2007-11-27 22:47:08 +00:00
|
|
|
|
2008-01-05 23:29:51 +00:00
|
|
|
char MachineLoopInfo::ID = 0;
|
2010-10-12 19:48:12 +00:00
|
|
|
INITIALIZE_PASS_BEGIN(MachineLoopInfo, "machine-loops",
|
|
|
|
"Machine Natural Loop Construction", true, true)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
|
|
|
|
INITIALIZE_PASS_END(MachineLoopInfo, "machine-loops",
|
2010-10-07 22:25:06 +00:00
|
|
|
"Machine Natural Loop Construction", true, true)
|
2008-01-04 20:54:55 +00:00
|
|
|
|
2010-08-06 18:33:48 +00:00
|
|
|
char &llvm::MachineLoopInfoID = MachineLoopInfo::ID;
|
2007-11-27 22:47:08 +00:00
|
|
|
|
|
|
|
bool MachineLoopInfo::runOnMachineFunction(MachineFunction &) {
|
|
|
|
releaseMemory();
|
2012-06-26 04:11:38 +00:00
|
|
|
LI.Analyze(getAnalysis<MachineDominatorTree>().getBase());
|
2007-11-27 22:47:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineLoopInfo::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
AU.addRequired<MachineDominatorTree>();
|
2009-07-31 18:16:33 +00:00
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
2007-11-27 22:47:08 +00:00
|
|
|
}
|
2009-10-20 04:16:37 +00:00
|
|
|
|
|
|
|
MachineBasicBlock *MachineLoop::getTopBlock() {
|
|
|
|
MachineBasicBlock *TopMBB = getHeader();
|
|
|
|
MachineFunction::iterator Begin = TopMBB->getParent()->begin();
|
|
|
|
if (TopMBB != Begin) {
|
2014-03-02 12:27:27 +00:00
|
|
|
MachineBasicBlock *PriorMBB = std::prev(MachineFunction::iterator(TopMBB));
|
2009-10-20 04:16:37 +00:00
|
|
|
while (contains(PriorMBB)) {
|
|
|
|
TopMBB = PriorMBB;
|
|
|
|
if (TopMBB == Begin) break;
|
2014-03-02 12:27:27 +00:00
|
|
|
PriorMBB = std::prev(MachineFunction::iterator(TopMBB));
|
2009-10-20 04:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return TopMBB;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachineBasicBlock *MachineLoop::getBottomBlock() {
|
|
|
|
MachineBasicBlock *BotMBB = getHeader();
|
|
|
|
MachineFunction::iterator End = BotMBB->getParent()->end();
|
2014-03-02 12:27:27 +00:00
|
|
|
if (BotMBB != std::prev(End)) {
|
|
|
|
MachineBasicBlock *NextMBB = std::next(MachineFunction::iterator(BotMBB));
|
2009-10-20 04:16:37 +00:00
|
|
|
while (contains(NextMBB)) {
|
|
|
|
BotMBB = NextMBB;
|
2014-03-02 12:27:27 +00:00
|
|
|
if (BotMBB == std::next(MachineFunction::iterator(BotMBB))) break;
|
|
|
|
NextMBB = std::next(MachineFunction::iterator(BotMBB));
|
2009-10-20 04:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return BotMBB;
|
|
|
|
}
|
2010-01-05 21:08:02 +00:00
|
|
|
|
2012-09-11 22:23:19 +00:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2010-01-05 21:08:02 +00:00
|
|
|
void MachineLoop::dump() const {
|
|
|
|
print(dbgs());
|
|
|
|
}
|
2012-09-06 19:06:06 +00:00
|
|
|
#endif
|