Files
llvm/lib/Analysis/IntervalPartition.cpp
T

115 lines
4.3 KiB
C++
Raw Normal View History

2003-10-13 03:32:08 +00:00
//===- IntervalPartition.cpp - Interval Partition module code -------------===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
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"
#include "Support/STLExtras.h"
2001-06-24 04:07:44 +00:00
namespace llvm {
2002-07-26 21:12:44 +00:00
static RegisterAnalysis<IntervalPartition>
X("intervals", "Interval Partition Construction", true);
2002-07-26 21:12:44 +00:00
2001-06-24 04:07:44 +00:00
//===----------------------------------------------------------------------===//
// IntervalPartition Implementation
//===----------------------------------------------------------------------===//
// destroy - Reset state back to before function was analyzed
2002-01-31 00:42:27 +00:00
void IntervalPartition::destroy() {
2002-08-09 22:52:08 +00:00
for_each(Intervals.begin(), Intervals.end(), deleter<Interval>);
2002-01-31 00:42:27 +00:00
IntervalMap.clear();
RootInterval = 0;
2001-06-24 04:07:44 +00:00
}
2002-07-31 19:32:01 +00:00
void IntervalPartition::print(std::ostream &O) const {
2002-08-09 22:52:08 +00:00
std::copy(Intervals.begin(), Intervals.end(),
std::ostream_iterator<const Interval *>(O, "\n"));
}
// 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 (Interval::succ_iterator I = Int->Successors.begin(),
E = Int->Successors.end(); I != E; ++I)
getBlockInterval(*I)->Predecessors.push_back(Header);
}
// 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...
2002-06-25 16:13:24 +00:00
for_each(I, intervals_end(&F),
2001-06-27 23:41:11 +00:00
bind_obj(this, &IntervalPartition::addIntervalToPartition));
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
2001-06-24 04:07:44 +00:00
// predecessors for each block...
2002-08-09 22:52:08 +00:00
for_each(Intervals.begin(), Intervals.end(),
2001-06-27 23:41:11 +00:00
bind_obj(this, &IntervalPartition::updatePredecessors));
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) {
Interval *FunctionStart = IP.getRootInterval();
assert(FunctionStart && "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_each(I, intervals_end(IP),
bind_obj(this, &IntervalPartition::addIntervalToPartition));
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
2001-06-24 04:07:44 +00:00
// predecessors for each block...
2002-08-09 22:52:08 +00:00
for_each(Intervals.begin(), Intervals.end(),
2001-06-27 23:41:11 +00:00
bind_obj(this, &IntervalPartition::updatePredecessors));
2001-06-24 04:07:44 +00:00
}
} // End llvm namespace