2003-10-13 05:32:08 +02:00
|
|
|
//===- IntervalPartition.cpp - Interval Partition module code -------------===//
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// 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.
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-24 06:07:44 +02:00
|
|
|
//
|
2002-04-28 18:21:30 +02:00
|
|
|
// This file contains the definition of the IntervalPartition class, which
|
2002-04-07 22:49:59 +02:00
|
|
|
// calculates and represent the interval partition of a function.
|
2001-06-24 06:07:44 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/IntervalIterator.h"
|
2005-02-23 00:27:21 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2007-05-03 03:11:54 +02:00
|
|
|
char IntervalPartition::ID = 0;
|
2010-07-22 00:09:45 +02:00
|
|
|
INITIALIZE_PASS(IntervalPartition, "intervals",
|
2010-10-08 00:25:06 +02:00
|
|
|
"Interval Partition Construction", true, true)
|
2002-07-26 23:12:44 +02:00
|
|
|
|
2001-06-24 06:07:44 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// IntervalPartition Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-29 00:56:53 +02:00
|
|
|
// releaseMemory - Reset state back to before function was analyzed
|
|
|
|
void IntervalPartition::releaseMemory() {
|
2005-02-23 00:27:21 +01:00
|
|
|
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
|
|
|
|
delete Intervals[i];
|
2002-01-31 01:42:27 +01:00
|
|
|
IntervalMap.clear();
|
2008-08-28 05:33:03 +02:00
|
|
|
Intervals.clear();
|
2002-01-31 01:42:27 +01:00
|
|
|
RootInterval = 0;
|
2001-06-24 06:07:44 +02:00
|
|
|
}
|
|
|
|
|
2009-08-23 08:03:38 +02:00
|
|
|
void IntervalPartition::print(raw_ostream &O, const Module*) const {
|
2005-04-26 16:48:28 +02:00
|
|
|
for(unsigned i = 0, e = Intervals.size(); i != e; ++i)
|
|
|
|
Intervals[i]->print(O);
|
2002-07-27 03:12:17 +02:00
|
|
|
}
|
|
|
|
|
2001-06-25 05:55:04 +02: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 06:07:44 +02:00
|
|
|
//
|
2001-06-25 05:55:04 +02:00
|
|
|
void IntervalPartition::addIntervalToPartition(Interval *I) {
|
2002-08-10 00:52:08 +02:00
|
|
|
Intervals.push_back(I);
|
2001-06-24 06:07:44 +02: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 05:32:08 +02:00
|
|
|
IntervalMap.insert(std::make_pair(*It, I));
|
2001-06-24 06:07:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// updatePredecessors - Interval generation only sets the successor fields of
|
|
|
|
// the interval data structures. After interval generation is complete,
|
2002-10-30 00:06:16 +01:00
|
|
|
// run through all of the intervals and propagate successor info as
|
2001-06-24 06:07:44 +02:00
|
|
|
// predecessor info.
|
|
|
|
//
|
2002-04-28 18:21:30 +02:00
|
|
|
void IntervalPartition::updatePredecessors(Interval *Int) {
|
2001-06-24 06:07:44 +02:00
|
|
|
BasicBlock *Header = Int->getHeaderNode();
|
2005-04-21 23:13:18 +02:00
|
|
|
for (Interval::succ_iterator I = Int->Successors.begin(),
|
2005-04-22 06:01:18 +02:00
|
|
|
E = Int->Successors.end(); I != E; ++I)
|
2001-06-24 06:07:44 +02:00
|
|
|
getBlockInterval(*I)->Predecessors.push_back(Header);
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntervalPartition ctor - Build the first level interval partition for the
|
2002-04-07 22:49:59 +02:00
|
|
|
// specified function...
|
2001-06-24 06:07:44 +02:00
|
|
|
//
|
2002-06-25 18:13:24 +02:00
|
|
|
bool IntervalPartition::runOnFunction(Function &F) {
|
2001-06-25 05:55:04 +02:00
|
|
|
// Pass false to intervals_begin because we take ownership of it's memory
|
2002-06-25 18:13:24 +02:00
|
|
|
function_interval_iterator I = intervals_begin(&F, false);
|
|
|
|
assert(I != intervals_end(&F) && "No intervals in function!?!?!");
|
2001-06-24 06:07:44 +02:00
|
|
|
|
2001-06-25 05:55:04 +02:00
|
|
|
addIntervalToPartition(RootInterval = *I);
|
|
|
|
|
2001-06-28 01:41:11 +02:00
|
|
|
++I; // After the first one...
|
|
|
|
|
2005-02-23 00:27:21 +01: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 06:07:44 +02:00
|
|
|
|
2002-10-30 00:06:16 +01:00
|
|
|
// Now that we know all of the successor information, propagate this to the
|
2005-02-23 00:27:21 +01:00
|
|
|
// predecessors for each block.
|
|
|
|
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
|
|
|
|
updatePredecessors(Intervals[i]);
|
2002-01-31 01:42:27 +01:00
|
|
|
return false;
|
2001-06-24 06:07:44 +02: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 23:15:47 +02:00
|
|
|
IntervalPartition::IntervalPartition(IntervalPartition &IP, bool)
|
2010-08-06 20:33:48 +02:00
|
|
|
: FunctionPass(ID) {
|
2008-06-21 21:48:22 +02:00
|
|
|
assert(IP.getRootInterval() && "Cannot operate on empty IntervalPartitions!");
|
2001-06-24 06:07:44 +02:00
|
|
|
|
2001-06-25 05:55:04 +02: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-28 01:41:11 +02:00
|
|
|
assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
|
2001-06-25 05:55:04 +02:00
|
|
|
|
|
|
|
addIntervalToPartition(RootInterval = *I);
|
|
|
|
|
2001-06-28 01:41:11 +02:00
|
|
|
++I; // After the first one...
|
|
|
|
|
2005-02-23 00:27:21 +01: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 06:07:44 +02:00
|
|
|
|
2002-10-30 00:06:16 +01:00
|
|
|
// Now that we know all of the successor information, propagate this to the
|
2005-02-23 00:27:21 +01:00
|
|
|
// predecessors for each block.
|
|
|
|
for (unsigned i = 0, e = Intervals.size(); i != e; ++i)
|
|
|
|
updatePredecessors(Intervals[i]);
|
2001-06-24 06:07:44 +02:00
|
|
|
}
|
2003-11-11 23:41:34 +01:00
|
|
|
|