Files

114 lines
4.2 KiB
C++
Raw Permalink Normal View History

2003-10-13 03:32:08 +00:00
//===- IntervalPartition.cpp - Interval Partition module code -------------===//
2005-04-21 21:13:18 +00:00
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
2005-04-21 21:13:18 +00:00
//
//===----------------------------------------------------------------------===//
2001-06-24 04:07:44 +00:00
//
// This file contains the definition of the IntervalPartition class, which
// calculates and represent the interval partition of a function.
2001-06-24 04:07:44 +00:00
//
//===----------------------------------------------------------------------===//
#include "llvm/Analysis/IntervalIterator.h"
using namespace llvm;
2007-05-03 01:11:54 +00:00
char IntervalPartition::ID = 0;
INITIALIZE_PASS(IntervalPartition, "intervals",
2010-10-07 22:25:06 +00:00
"Interval Partition Construction", true, true)
2002-07-26 21:12:44 +00:00
2001-06-24 04:07:44 +00:00
//===----------------------------------------------------------------------===//
// IntervalPartition Implementation
//===----------------------------------------------------------------------===//
// releaseMemory - Reset state back to before function was analyzed
void IntervalPartition::releaseMemory() {
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
delete Intervals[i];
2002-01-31 00:42:27 +00:00
IntervalMap.clear();
Intervals.clear();
RootInterval = nullptr;
2001-06-24 04:07:44 +00:00
}
void IntervalPartition::print(raw_ostream &O, const Module*) const {
for(unsigned i = 0, e = Intervals.size(); i != e; ++i)
Intervals[i]->print(O);
}
// addIntervalToPartition - Add an interval to the internal list of intervals,
// and then add mappings from all of the basic blocks in the interval to the
// interval itself (in the IntervalMap).
2001-06-24 04:07:44 +00:00
//
void IntervalPartition::addIntervalToPartition(Interval *I) {
2002-08-09 22:52:08 +00:00
Intervals.push_back(I);
2001-06-24 04:07:44 +00:00
// Add mappings for all of the basic blocks in I to the IntervalPartition
for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
It != End; ++It)
2003-10-13 03:32:08 +00:00
IntervalMap.insert(std::make_pair(*It, I));
2001-06-24 04:07:44 +00:00
}
// updatePredecessors - Interval generation only sets the successor fields of
// the interval data structures. After interval generation is complete,
2002-10-29 23:06:16 +00:00
// run through all of the intervals and propagate successor info as
2001-06-24 04:07:44 +00:00
// predecessor info.
//
void IntervalPartition::updatePredecessors(Interval *Int) {
2001-06-24 04:07:44 +00:00
BasicBlock *Header = Int->getHeaderNode();
for (BasicBlock *Successor : Int->Successors)
getBlockInterval(Successor)->Predecessors.push_back(Header);
2001-06-24 04:07:44 +00:00
}
// IntervalPartition ctor - Build the first level interval partition for the
// specified function...
2001-06-24 04:07:44 +00:00
//
2002-06-25 16:13:24 +00:00
bool IntervalPartition::runOnFunction(Function &F) {
// Pass false to intervals_begin because we take ownership of it's memory
2002-06-25 16:13:24 +00:00
function_interval_iterator I = intervals_begin(&F, false);
assert(I != intervals_end(&F) && "No intervals in function!?!?!");
addIntervalToPartition(RootInterval = *I);
2001-06-27 23:41:11 +00:00
++I; // After the first one...
// Add the rest of the intervals to the partition.
for (function_interval_iterator E = intervals_end(&F); I != E; ++I)
addIntervalToPartition(*I);
2001-06-24 04:07:44 +00:00
2002-10-29 23:06:16 +00:00
// Now that we know all of the successor information, propagate this to the
// predecessors for each block.
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
updatePredecessors(Intervals[i]);
2002-01-31 00:42:27 +00:00
return false;
2001-06-24 04:07:44 +00:00
}
// IntervalPartition ctor - Build a reduced interval partition from an
// existing interval graph. This takes an additional boolean parameter to
// distinguish it from a copy constructor. Always pass in false for now.
//
IntervalPartition::IntervalPartition(IntervalPartition &IP, bool)
: FunctionPass(ID) {
2008-06-21 19:48:22 +00:00
assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
2001-06-24 04:07:44 +00:00
// Pass false to intervals_begin because we take ownership of it's memory
interval_part_interval_iterator I = intervals_begin(IP, false);
2001-06-27 23:41:11 +00:00
assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
addIntervalToPartition(RootInterval = *I);
2001-06-27 23:41:11 +00:00
++I; // After the first one...
// Add the rest of the intervals to the partition.
for (interval_part_interval_iterator E = intervals_end(IP); I != E; ++I)
addIntervalToPartition(*I);
2001-06-24 04:07:44 +00:00
2002-10-29 23:06:16 +00:00
// Now that we know all of the successor information, propagate this to the
// predecessors for each block.
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
updatePredecessors(Intervals[i]);
2001-06-24 04:07:44 +00:00
}