mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 20:34:38 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3282 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
89f2aa5fd8
commit
389694834a
@ -21,13 +21,13 @@ AnalysisID IntervalPartition::ID = X;
|
|||||||
|
|
||||||
// destroy - Reset state back to before function was analyzed
|
// destroy - Reset state back to before function was analyzed
|
||||||
void IntervalPartition::destroy() {
|
void IntervalPartition::destroy() {
|
||||||
for_each(begin(), end(), deleter<Interval>);
|
for_each(Intervals.begin(), Intervals.end(), deleter<Interval>);
|
||||||
IntervalMap.clear();
|
IntervalMap.clear();
|
||||||
RootInterval = 0;
|
RootInterval = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntervalPartition::print(std::ostream &O) const {
|
void IntervalPartition::print(std::ostream &O) const {
|
||||||
std::copy(begin(), end(),
|
std::copy(Intervals.begin(), Intervals.end(),
|
||||||
std::ostream_iterator<const Interval *>(O, "\n"));
|
std::ostream_iterator<const Interval *>(O, "\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ void IntervalPartition::print(std::ostream &O) const {
|
|||||||
// interval itself (in the IntervalMap).
|
// interval itself (in the IntervalMap).
|
||||||
//
|
//
|
||||||
void IntervalPartition::addIntervalToPartition(Interval *I) {
|
void IntervalPartition::addIntervalToPartition(Interval *I) {
|
||||||
push_back(I);
|
Intervals.push_back(I);
|
||||||
|
|
||||||
// Add mappings for all of the basic blocks in I to the IntervalPartition
|
// 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();
|
for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
|
||||||
@ -74,7 +74,7 @@ bool IntervalPartition::runOnFunction(Function &F) {
|
|||||||
|
|
||||||
// Now that we know all of the successor information, propogate this to the
|
// Now that we know all of the successor information, propogate this to the
|
||||||
// predecessors for each block...
|
// predecessors for each block...
|
||||||
for_each(begin(), end(),
|
for_each(Intervals.begin(), Intervals.end(),
|
||||||
bind_obj(this, &IntervalPartition::updatePredecessors));
|
bind_obj(this, &IntervalPartition::updatePredecessors));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -102,6 +102,6 @@ IntervalPartition::IntervalPartition(IntervalPartition &IP, bool) {
|
|||||||
|
|
||||||
// Now that we know all of the successor information, propogate this to the
|
// Now that we know all of the successor information, propogate this to the
|
||||||
// predecessors for each block...
|
// predecessors for each block...
|
||||||
for_each(begin(), end(),
|
for_each(Intervals.begin(), Intervals.end(),
|
||||||
bind_obj(this, &IntervalPartition::updatePredecessors));
|
bind_obj(this, &IntervalPartition::updatePredecessors));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user