1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Split DAE::MarkLive into MarkLive and PropagateLiveness.

llvm-svn: 53600
This commit is contained in:
Matthijs Kooijman 2008-07-15 09:00:17 +00:00
parent 31b7208f7d
commit caa3ed0c99

View File

@ -134,6 +134,7 @@ namespace {
const UseVector &MaybeLiveUses);
void MarkLive(const RetOrArg &RA);
void MarkLive(const Function &F);
void PropagateLiveness(const RetOrArg &RA);
bool RemoveDeadStuffFromFunction(Function *F);
bool DeleteDeadVarargs(Function &Fn);
};
@ -545,7 +546,12 @@ void DAE::MarkLive(const RetOrArg &RA) {
return; // We were already marked Live.
DOUT << "DAE - Marking " << RA.getDescription() << " live\n";
PropagateLiveness(RA);
}
/// PropagateLiveness - Given that RA is a live value, propagate it's liveness
/// to any other values it uses (according to Uses).
void DAE::PropagateLiveness(const RetOrArg &RA) {
// We don't use upper_bound (or equal_range) here, because our recursive call
// to ourselves is likely to cause the upper_bound (which is the first value
// not belonging to RA) to become erased and the iterator invalidated.