llvm-6502/lib/Analysis/DataStructure
Chris Lattner 857eb0697f Fix three bugs:
1. Calls to external global VARIABLES should not be treated as a call to an
    external function
 2. Efficiently deleting an element from a vector by using std::swap with
    the back, then pop_back is NOT a good way to keep the vector sorted.
 3. Our hope of having stuff get deleted by making them redundant just won't
    work.  In particular, if we have three calls in sequence that should be
    merged: A, B, C   first we unify B into A.  To be sure that they appeared
    identical (so B would be erased) we set B = A.  On the next step, we
    unified C into A and set C = A.  Unfortunately, this is no guarantee that
    C = B, so we would fail to delete the dead call.  Switch to a more
    explicit scheme.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17357 91177308-0d34-0410-b5e6-96231b3b80d8
2004-10-30 05:41:23 +00:00
..
BottomUpClosure.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
CompleteBottomUp.cpp Fix a nasty dangling pointer problem, due to a free'd pointer being left in 2004-10-07 20:01:31 +00:00
DataStructure.cpp Fix three bugs: 2004-10-30 05:41:23 +00:00
DataStructureAA.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
DataStructureOpt.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
DataStructureStats.cpp Changes For Bug 352 2004-09-01 22:55:40 +00:00
DependenceGraph.cpp Move DependenceGraph.* to lib/Analysis/DataStructure 2004-06-28 00:32:33 +00:00
DependenceGraph.h Changes For Bug 352 2004-09-01 22:55:40 +00:00
DSCallSiteIterator.h Move all of the DSA headers into the Analysis/DataStructure subdir. 2004-07-07 06:32:21 +00:00
EquivClassGraphs.cpp Minor cleanups: 2004-10-12 16:52:09 +00:00
GraphChecker.cpp Changes For Bug 352 2004-09-01 22:55:40 +00:00
IPModRef.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
IPModRef.h 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
Local.cpp Fix more undefined behavior 2004-10-30 04:22:45 +00:00
Makefile Fix library name. 2004-10-28 05:36:48 +00:00
MemoryDepAnalysis.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
MemoryDepAnalysis.h 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
Parallelize.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
PgmDependenceGraph.cpp Add #include <iostream> since Value.h does not #include it any more. 2004-07-04 12:19:56 +00:00
PgmDependenceGraph.h 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
Printer.cpp Changes For Bug 352 2004-09-01 22:55:40 +00:00
Steensgaard.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00
TopDownClosure.cpp 'Pass' should now not be derived from by clients. Instead, they should derive 2004-09-20 04:48:05 +00:00