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