Add some notes so I can throw away one of my many todo lists.
authorChris Lattner <sabre@nondot.org>
Sat, 5 Jun 2004 20:12:36 +0000 (20:12 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 5 Jun 2004 20:12:36 +0000 (20:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14046 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/IPA/Andersens.cpp

index 371a8a0deec616f7207777dfa7875f8c6e8b9ed2..8ccefe1727147e372b003470722a5fcb6812078f 100644 (file)
 // pointers.  If we find that an internal function's address escapes outside of
 // the program, we update this assumption.
 //
+// Future Improvements:
+//   This implementation of Andersen's algorithm is extremely slow.  To make it
+//   scale reasonably well, the inclusion constraints could be sorted (easy), 
+//   offline variable substitution would be a huge win (straight-forward), and 
+//   online cycle elimination (trickier) might help as well.
+//
 //===----------------------------------------------------------------------===//
 
 #define DEBUG_TYPE "anders-aa"