2007-11-27 22:47:08 +00:00
|
|
|
//===- MachineLoopInfo.cpp - Natural Loop Calculator ----------------------===//
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
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"
|
2018-04-30 14:59:11 +00:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2010-01-05 21:08:02 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2015-03-23 19:32:43 +00:00
|
|
|
#include "llvm/Support/raw_ostream.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 &) {
|
2019-10-28 12:35:34 -07:00
|
|
|
calculate(getAnalysis<MachineDominatorTree>());
|
2019-10-20 20:39:33 +00:00
|
|
|
return false;
|
2019-10-18 16:46:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-28 12:35:34 -07:00
|
|
|
void MachineLoopInfo::calculate(MachineDominatorTree &MDT) {
|
|
|
|
releaseMemory();
|
|
|
|
LI.analyze(MDT.getBase());
|
|
|
|
}
|
|
|
|
|
2007-11-27 22:47:08 +00:00
|
|
|
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();
|
2016-02-21 20:39:50 +00:00
|
|
|
if (TopMBB->getIterator() != Begin) {
|
2015-10-09 19:40:45 +00:00
|
|
|
MachineBasicBlock *PriorMBB = &*std::prev(TopMBB->getIterator());
|
2009-10-20 04:16:37 +00:00
|
|
|
while (contains(PriorMBB)) {
|
|
|
|
TopMBB = PriorMBB;
|
2016-02-21 20:39:50 +00:00
|
|
|
if (TopMBB->getIterator() == Begin)
|
|
|
|
break;
|
2015-10-09 19:40:45 +00:00
|
|
|
PriorMBB = &*std::prev(TopMBB->getIterator());
|
2009-10-20 04:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return TopMBB;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachineBasicBlock *MachineLoop::getBottomBlock() {
|
|
|
|
MachineBasicBlock *BotMBB = getHeader();
|
|
|
|
MachineFunction::iterator End = BotMBB->getParent()->end();
|
2016-02-21 20:39:50 +00:00
|
|
|
if (BotMBB->getIterator() != std::prev(End)) {
|
2015-10-09 19:40:45 +00:00
|
|
|
MachineBasicBlock *NextMBB = &*std::next(BotMBB->getIterator());
|
2009-10-20 04:16:37 +00:00
|
|
|
while (contains(NextMBB)) {
|
|
|
|
BotMBB = NextMBB;
|
2015-10-09 19:40:45 +00:00
|
|
|
if (BotMBB == &*std::next(BotMBB->getIterator()))
|
|
|
|
break;
|
|
|
|
NextMBB = &*std::next(BotMBB->getIterator());
|
2009-10-20 04:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return BotMBB;
|
|
|
|
}
|
2010-01-05 21:08:02 +00:00
|
|
|
|
2016-08-15 08:22:42 +00:00
|
|
|
MachineBasicBlock *MachineLoop::findLoopControlBlock() {
|
|
|
|
if (MachineBasicBlock *Latch = getLoopLatch()) {
|
|
|
|
if (isLoopExiting(Latch))
|
|
|
|
return Latch;
|
|
|
|
else
|
|
|
|
return getExitingBlock();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-01-25 23:20:33 +00:00
|
|
|
DebugLoc MachineLoop::getStartLoc() const {
|
|
|
|
// Try the pre-header first.
|
|
|
|
if (MachineBasicBlock *PHeadMBB = getLoopPreheader())
|
|
|
|
if (const BasicBlock *PHeadBB = PHeadMBB->getBasicBlock())
|
|
|
|
if (DebugLoc DL = PHeadBB->getTerminator()->getDebugLoc())
|
|
|
|
return DL;
|
|
|
|
|
|
|
|
// If we have no pre-header or there are no instructions with debug
|
|
|
|
// info in it, try the header.
|
|
|
|
if (MachineBasicBlock *HeadMBB = getHeader())
|
|
|
|
if (const BasicBlock *HeadBB = HeadMBB->getBasicBlock())
|
|
|
|
return HeadBB->getTerminator()->getDebugLoc();
|
|
|
|
|
|
|
|
return DebugLoc();
|
|
|
|
}
|
|
|
|
|
2016-08-15 08:22:42 +00:00
|
|
|
MachineBasicBlock *
|
|
|
|
MachineLoopInfo::findLoopPreheader(MachineLoop *L,
|
|
|
|
bool SpeculativePreheader) const {
|
|
|
|
if (MachineBasicBlock *PB = L->getLoopPreheader())
|
|
|
|
return PB;
|
|
|
|
|
|
|
|
if (!SpeculativePreheader)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
MachineBasicBlock *HB = L->getHeader(), *LB = L->getLoopLatch();
|
|
|
|
if (HB->pred_size() != 2 || HB->hasAddressTaken())
|
|
|
|
return nullptr;
|
|
|
|
// Find the predecessor of the header that is not the latch block.
|
|
|
|
MachineBasicBlock *Preheader = nullptr;
|
|
|
|
for (MachineBasicBlock *P : HB->predecessors()) {
|
|
|
|
if (P == LB)
|
|
|
|
continue;
|
|
|
|
// Sanity.
|
|
|
|
if (Preheader)
|
|
|
|
return nullptr;
|
|
|
|
Preheader = P;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the preheader candidate is a successor of any other loop
|
|
|
|
// headers. We want to avoid having two loop setups in the same block.
|
|
|
|
for (MachineBasicBlock *S : Preheader->successors()) {
|
|
|
|
if (S == HB)
|
|
|
|
continue;
|
|
|
|
MachineLoop *T = getLoopFor(S);
|
|
|
|
if (T && T->getHeader() == S)
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return Preheader;
|
|
|
|
}
|
|
|
|
|
2017-10-15 14:32:27 +00:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2016-01-29 20:50:44 +00:00
|
|
|
LLVM_DUMP_METHOD void MachineLoop::dump() const {
|
2010-01-05 21:08:02 +00:00
|
|
|
print(dbgs());
|
|
|
|
}
|
2012-09-06 19:06:06 +00:00
|
|
|
#endif
|