2003-10-13 03:32:08 +00:00
|
|
|
//===- IntervalPartition.cpp - Interval Partition module code -------------===//
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// 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.
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-24 04:07:44 +00:00
|
|
|
//
|
2002-04-28 16:21:30 +00:00
|
|
|
// This file contains the definition of the IntervalPartition class, which
|
2002-04-07 20:49:59 +00:00
|
|
|
// calculates and represent the interval partition of a function.
|
2001-06-24 04:07:44 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/IntervalIterator.h"
|
2005-02-22 23:27:21 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char IntervalPartition::ID = 0;
|
2006-08-27 22:30:17 +00:00
|
|
|
static RegisterPass<IntervalPartition>
|
2008-03-20 23:27:18 +00:00
|
|
|
X("intervals", "Interval Partition Construction", true, true);
|
2002-07-26 21:12:44 +00:00
|
|
|
|
2001-06-24 04:07:44 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// IntervalPartition Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-28 22:56:53 +00:00
|
|
|
// releaseMemory - Reset state back to before function was analyzed
|
|
|
|
void IntervalPartition::releaseMemory() {
|
2005-02-22 23:27:21 +00:00
|
|
|
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
|
|
|
|
delete Intervals[i];
|
2002-01-31 00:42:27 +00:00
|
|
|
IntervalMap.clear();
|
2008-08-28 03:33:03 +00:00
|
|
|
Intervals.clear();
|
2002-01-31 00:42:27 +00:00
|
|
|
RootInterval = 0;
|
2001-06-24 04:07:44 +00:00
|
|
|
}
|
|
|
|
|
2004-12-07 04:03:45 +00:00
|
|
|
void IntervalPartition::print(std::ostream &O, const Module*) const {
|
2005-04-26 14:48:28 +00:00
|
|
|
for(unsigned i = 0, e = Intervals.size(); i != e; ++i)
|
|
|
|
Intervals[i]->print(O);
|
2002-07-27 01:12:17 +00:00
|
|
|
}
|
|
|
|
|
2001-06-25 03:55:04 +00:00
|
|
|
// 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
|
|
|
//
|
2001-06-25 03:55:04 +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.
|
|
|
|
//
|
2002-04-28 16:21:30 +00:00
|
|
|
void IntervalPartition::updatePredecessors(Interval *Int) {
|
2001-06-24 04:07:44 +00:00
|
|
|
BasicBlock *Header = Int->getHeaderNode();
|
2005-04-21 21:13:18 +00:00
|
|
|
for (Interval::succ_iterator I = Int->Successors.begin(),
|
2005-04-22 04:01:18 +00:00
|
|
|
E = Int->Successors.end(); I != E; ++I)
|
2001-06-24 04:07:44 +00:00
|
|
|
getBlockInterval(*I)->Predecessors.push_back(Header);
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntervalPartition ctor - Build the first level interval partition for the
|
2002-04-07 20:49:59 +00:00
|
|
|
// specified function...
|
2001-06-24 04:07:44 +00:00
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
bool IntervalPartition::runOnFunction(Function &F) {
|
2001-06-25 03:55:04 +00:00
|
|
|
// 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!?!?!");
|
2001-06-24 04:07:44 +00:00
|
|
|
|
2001-06-25 03:55:04 +00:00
|
|
|
addIntervalToPartition(RootInterval = *I);
|
|
|
|
|
2001-06-27 23:41:11 +00:00
|
|
|
++I; // After the first one...
|
|
|
|
|
2005-02-22 23:27:21 +00:00
|
|
|
// 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
|
2005-02-22 23:27:21 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2007-05-01 21:15:47 +00:00
|
|
|
IntervalPartition::IntervalPartition(IntervalPartition &IP, bool)
|
2008-09-04 17:05:41 +00:00
|
|
|
: 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
|
|
|
|
2001-06-25 03:55:04 +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!?!?!");
|
2001-06-25 03:55:04 +00:00
|
|
|
|
|
|
|
addIntervalToPartition(RootInterval = *I);
|
|
|
|
|
2001-06-27 23:41:11 +00:00
|
|
|
++I; // After the first one...
|
|
|
|
|
2005-02-22 23:27:21 +00:00
|
|
|
// 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
|
2005-02-22 23:27:21 +00:00
|
|
|
// 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
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|