blob: 4bff950a82e9528a9b942a91610f5d26edfdf9be [file] [log] [blame]
Chris Lattner2d676c92001-06-24 04:07:44 +00001//===- IntervalPartition.cpp - Interval Partition module code ----*- C++ -*--=//
2//
3// This file contains the definition of the cfg::IntervalPartition class, which
4// calculates and represent the interval partition of a method.
5//
6//===----------------------------------------------------------------------===//
7
8#include "llvm/Analysis/IntervalIterator.h"
Chris Lattner57dbb3a2001-07-23 17:46:59 +00009#include "llvm/Support/STLExtras.h"
Chris Lattner2d676c92001-06-24 04:07:44 +000010
11using namespace cfg;
12
13//===----------------------------------------------------------------------===//
14// IntervalPartition Implementation
15//===----------------------------------------------------------------------===//
16
Chris Lattner2d676c92001-06-24 04:07:44 +000017// Destructor - Free memory
18IntervalPartition::~IntervalPartition() {
19 for_each(begin(), end(), deleter<cfg::Interval>);
20}
21
Chris Lattner23e36622001-06-25 03:55:04 +000022// addIntervalToPartition - Add an interval to the internal list of intervals,
23// and then add mappings from all of the basic blocks in the interval to the
24// interval itself (in the IntervalMap).
Chris Lattner2d676c92001-06-24 04:07:44 +000025//
Chris Lattner23e36622001-06-25 03:55:04 +000026void IntervalPartition::addIntervalToPartition(Interval *I) {
Chris Lattnere6850232001-07-03 15:28:35 +000027 push_back(I);
Chris Lattner2d676c92001-06-24 04:07:44 +000028
29 // Add mappings for all of the basic blocks in I to the IntervalPartition
30 for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
31 It != End; ++It)
Chris Lattner23e36622001-06-25 03:55:04 +000032 IntervalMap.insert(make_pair(*It, I));
Chris Lattner2d676c92001-06-24 04:07:44 +000033}
34
Chris Lattner2d676c92001-06-24 04:07:44 +000035// updatePredecessors - Interval generation only sets the successor fields of
36// the interval data structures. After interval generation is complete,
37// run through all of the intervals and propogate successor info as
38// predecessor info.
39//
40void IntervalPartition::updatePredecessors(cfg::Interval *Int) {
41 BasicBlock *Header = Int->getHeaderNode();
42 for (Interval::succ_iterator I = Int->Successors.begin(),
43 E = Int->Successors.end(); I != E; ++I)
44 getBlockInterval(*I)->Predecessors.push_back(Header);
45}
46
Chris Lattner2d676c92001-06-24 04:07:44 +000047// IntervalPartition ctor - Build the first level interval partition for the
48// specified method...
49//
50IntervalPartition::IntervalPartition(Method *M) {
Chris Lattner7fc9fe32001-06-27 23:41:11 +000051 assert(M->front() && "Cannot operate on prototypes!");
Chris Lattner2d676c92001-06-24 04:07:44 +000052
Chris Lattner23e36622001-06-25 03:55:04 +000053 // Pass false to intervals_begin because we take ownership of it's memory
54 method_interval_iterator I = intervals_begin(M, false);
Chris Lattner7fc9fe32001-06-27 23:41:11 +000055 assert(I != intervals_end(M) && "No intervals in method!?!?!");
Chris Lattner23e36622001-06-25 03:55:04 +000056
57 addIntervalToPartition(RootInterval = *I);
58
Chris Lattner7fc9fe32001-06-27 23:41:11 +000059 ++I; // After the first one...
60
61 // Add the rest of the intervals to the partition...
62 for_each(I, intervals_end(M),
63 bind_obj(this, &IntervalPartition::addIntervalToPartition));
Chris Lattner2d676c92001-06-24 04:07:44 +000064
65 // Now that we know all of the successor information, propogate this to the
66 // predecessors for each block...
Chris Lattner7fc9fe32001-06-27 23:41:11 +000067 for_each(begin(), end(),
68 bind_obj(this, &IntervalPartition::updatePredecessors));
Chris Lattner2d676c92001-06-24 04:07:44 +000069}
70
71
72// IntervalPartition ctor - Build a reduced interval partition from an
73// existing interval graph. This takes an additional boolean parameter to
74// distinguish it from a copy constructor. Always pass in false for now.
75//
Chris Lattner23e36622001-06-25 03:55:04 +000076IntervalPartition::IntervalPartition(IntervalPartition &IP, bool) {
77 Interval *MethodStart = IP.getRootInterval();
Chris Lattner2d676c92001-06-24 04:07:44 +000078 assert(MethodStart && "Cannot operate on empty IntervalPartitions!");
79
Chris Lattner23e36622001-06-25 03:55:04 +000080 // Pass false to intervals_begin because we take ownership of it's memory
81 interval_part_interval_iterator I = intervals_begin(IP, false);
Chris Lattner7fc9fe32001-06-27 23:41:11 +000082 assert(I != intervals_end(IP) && "No intervals in interval partition!?!?!");
Chris Lattner23e36622001-06-25 03:55:04 +000083
84 addIntervalToPartition(RootInterval = *I);
85
Chris Lattner7fc9fe32001-06-27 23:41:11 +000086 ++I; // After the first one...
87
88 // Add the rest of the intervals to the partition...
89 for_each(I, intervals_end(IP),
90 bind_obj(this, &IntervalPartition::addIntervalToPartition));
Chris Lattner2d676c92001-06-24 04:07:44 +000091
92 // Now that we know all of the successor information, propogate this to the
93 // predecessors for each block...
Chris Lattner7fc9fe32001-06-27 23:41:11 +000094 for_each(begin(), end(),
95 bind_obj(this, &IntervalPartition::updatePredecessors));
Chris Lattner2d676c92001-06-24 04:07:44 +000096}