- 5190ce8 Fix two bugs: by Chris Lattner · 23 years ago
- 3ba8893 Fix bug by Chris Lattner · 23 years ago
- 0ecc426 Handle a mismatch between # function args and call site args by Chris Lattner · 23 years ago
- e425844 Elimiante calls to a node with nothing in it. by Chris Lattner · 23 years ago
- a9c9c02 Complete rewrite of BU code to use Tarjan's SCC finding algorithm to drive by Chris Lattner · 23 years ago
- e71ffc2 Mark stuff reachable by _AUX_ calls as incomplete in the BU graph by Chris Lattner · 23 years ago
- 8a5db46 Fix infinite loop in the BU algorithm. Unfortunately this dies a serious by Chris Lattner · 23 years ago
- 6052594 Print the right call set size by Chris Lattner · 23 years ago
- 998c49c Use call site mergeWith method to simplify code by Chris Lattner · 23 years ago
- d11e954 Fix a bug that could trigger when varargs call sites had non-matching number of arguments by Chris Lattner · 23 years ago
- aa8146f * Dramatically rework liveness evaluation. by Chris Lattner · 23 years ago
- 4f7815f Honor the shouldPrintAuxCalls flag by Chris Lattner · 23 years ago
- 2a06886 Initialize PrintAuxCalls member by Chris Lattner · 23 years ago
- a107905 * Bottom-Up graphs print the Aux call vector by Chris Lattner · 23 years ago
- f40f0a3 eliminate the ability to remove global nodes from deadNodeElminate... for now. by Chris Lattner · 23 years ago
- dd39848 Remove obsolete code by Chris Lattner · 23 years ago
- f76e754 Fix logic by Chris Lattner · 23 years ago
- aa0b468 Add globals graphs to all three passes by Chris Lattner · 23 years ago
- 7900ed1 Move maskNodeTypes to header file by Chris Lattner · 23 years ago
- 65f2897 Clean up DSGraph::removeDeadNodes interface by Chris Lattner · 23 years ago
- 9651725 Make removeTriviallyDeadNodes a private interface of DSGraph by Chris Lattner · 23 years ago
- 2cfbaaf Don't put constants into the scalar map! by Chris Lattner · 23 years ago
- 2e4f9bf Add initial support for a globals graph by Chris Lattner · 23 years ago
- d888893 Tighten up array handling by Chris Lattner · 23 years ago
- 0779ba6 #include Datastructure.h first by Chris Lattner · 23 years ago
- bf10f05 Fix warning & release build by Chris Lattner · 23 years ago
- 23f83dc Fold arrays down to a single element. This causes huge wins on some benchmarks by Chris Lattner · 23 years ago
- 70925b0 ONLY merge in the aux call sites, this causes a HUGE speedup by Chris Lattner · 23 years ago
- acf491f Allow specification of whether the call sites should be copied, AND whether by Chris Lattner · 23 years ago
- ce2d132 Reenable 'quick exit' case by Chris Lattner · 23 years ago
- 7cc9875 Reduce amount of work needed to compute ip/modref by Chris Lattner · 23 years ago
- 7a21163 Reimplement TD pass completely it now works by Chris Lattner · 23 years ago
- 01fb0c7 Cannot modify original call sites vector by Chris Lattner · 23 years ago
- 679e8e1 - Add a bunch of checking to make sure that dead nodes are not used after they by Chris Lattner · 23 years ago
- 1a948a8 Remove gunk used by broken TD pass by Chris Lattner · 23 years ago
- d321593 Fix IPModRef to use new DS interface by Chris Lattner · 23 years ago
- f8c6aab Use DSNodeHandleMap instead to be safe by Chris Lattner · 23 years ago
- 5134006 * actually handle constants (especially constantexprs) correctly. by Chris Lattner · 23 years ago
- 33312f7 Add flush by Chris Lattner · 23 years ago
- ed8e649 Implement ResolveCallSiteModRefInfo for IPModRef. computeModRef is not yet done though! by Chris Lattner · 23 years ago
- 460ea29 Instead of using a bool that constant has to be explained, use a self by Chris Lattner · 23 years ago
- 076c1f9 Implement a new mergeInGraph method, which basically factors code out of by Chris Lattner · 23 years ago
- b106043 Rename DataStructureAnalysis namespace to DS by Chris Lattner · 23 years ago
- e83cb53 Fix problem with dangling referrers by Chris Lattner · 23 years ago
- f17b39a Minor bugfix to enable generation of methcall.llvm.lib, objinst.llvm.lib, and by Chris Lattner · 23 years ago
- 1421233 Compute total number of nodes and # call nodes by Chris Lattner · 23 years ago
- 3c87b29 Move printouts to be wrapped in DEBUG() macros by Chris Lattner · 23 years ago
- 95a80ad When the -only-print-main-ds option is specified, still print out graph size by Chris Lattner · 23 years ago
- 4476ceb Allow the ResolveCallSiteModRefInfo method to return a mapping of nodes, by Chris Lattner · 23 years ago
- 268748a Add a stub to implement the context sensitive mod/ref info for call sites by Chris Lattner · 23 years ago
- 2110808 Give a back pointer to the IPModRef object to the FunctionModRefInfo object by Chris Lattner · 23 years ago
- fc92824 Remove a couple of #includes, move some code from .h file by Chris Lattner · 23 years ago
- d747e8f Change Steens class to build with Vikram's changes by Chris Lattner · 23 years ago
- 2c0bd01 Make PointerSize & Shift be enums Fix problem with recursive merging by Chris Lattner · 23 years ago
- 895c0bd An interprocedural analysis pass that computes flow-insensitive by Vikram S. Adve · 23 years ago
- 08db719 Dramatically simplify internal DSNode representation, get implementation by Chris Lattner · 23 years ago
- ef5af99 Delete "StripScalars" argument to cloneInto method by Chris Lattner · 23 years ago
- 5953513 Attempted fixes to the mergemap to make it work better. by Chris Lattner · 23 years ago
- 0260663 Change the "Cannot merge two portions of the same node yet" from an assertion by Chris Lattner · 23 years ago
- 048912b Give a better error message in an unhandled case by Chris Lattner · 23 years ago
- c875f02 Rename ValueMap to ScalarMap by Chris Lattner · 23 years ago
- d18f342 Rename NewNode flag to HeapNode by Chris Lattner · 23 years ago
- ef69ccf Change the letters used to represent stack and heap allocations to "S" and "H" by Chris Lattner · 23 years ago
- 5af344d Implement the "unknown flag" which mainly consists of aligning printing code by Chris Lattner · 23 years ago
- 7a0b5bb Oops, this was not meant to be checked in by Chris Lattner · 23 years ago
- 9267329 Stop representing scalars as explicit nodes in the graph. Now the only by Chris Lattner · 23 years ago
- 4f53bef Fix comments, steens is context sensitive, we just haven't implemented by Chris Lattner · 23 years ago
- 7f124e3 Add a fixme by Chris Lattner · 23 years ago
- 9b87c5c * Minor optimization: when merging nodes, merge the smaller one into the by Chris Lattner · 23 years ago
- 7e51c87 Remove dead code by Chris Lattner · 23 years ago
- 8f0a16e This fixes all kinds of problems with array handling. There are still bugs to by Chris Lattner · 23 years ago
- 4bdb9b7 - Make sure to only keep track of mappings that the TD pass may need in the by Chris Lattner · 23 years ago
- 9faf18d The callee is not correct, and confuses the TD pass. Null it out. by Chris Lattner · 23 years ago
- e4ae304 Delete unused arguments to DSGraph::cloneInto method by Chris Lattner · 23 years ago
- 198be22 - Add "ResolvingCaller" to the CallSite record. This keeps track of which by Chris Lattner · 23 years ago
- eff0da9 Add another copy ctor form by Chris Lattner · 23 years ago
- 99a2284 As it turns out, we don't need a fully generic mapping copy ctor, we just need by Chris Lattner · 23 years ago
- 448f494 Don't create a new node for every reference to a global. This caused a huge by Chris Lattner · 23 years ago
- 482b651 Fix a confusing bug that caused return value and callee pointers to not by Chris Lattner · 23 years ago
- 13ec72a Remove some unneccesary 'using' directives by Chris Lattner · 23 years ago
- 65d6a9e Fix bug with prior checkin by Chris Lattner · 23 years ago
- 0969c50 - Make DSCallSite not inherit from std::vector. Renamed methods slightly. by Chris Lattner · 23 years ago
- 0c8d73b Avoid extra copy by Chris Lattner · 23 years ago
- 9de906c Simplify code a bit, add comment flyer by Chris Lattner · 23 years ago
- 7836d60 Split some long lines by Chris Lattner · 23 years ago
- 26b9826 Remove spurious caller pointer in DSCallSite. by Vikram S. Adve · 23 years ago
- e80fe61 This function can be static by Chris Lattner · 23 years ago
- d1f8d0a Fix previous checkin :( by Chris Lattner · 23 years ago
- bd14460 Avoid extra callSite copy by Chris Lattner · 23 years ago
- af4800b Print the array flag by Chris Lattner · 23 years ago
- 42fd169 Added a first-class representation for each call site that can be by Vikram S. Adve · 23 years ago
- a3f8586 Convert typerec to be a structure instead of a pair by Chris Lattner · 23 years ago
- dc062d3 Print Mod/ref info by Chris Lattner · 23 years ago
- 0628523 Calculate mod/ref info by Chris Lattner · 23 years ago
- 97e7f08 Remove more obsolete code by Chris Lattner · 23 years ago
- cf15db3 * Make the DSGraph cloner automatically merge global nodes by Chris Lattner · 23 years ago
- 3cc061c Remove obsolete code by Chris Lattner · 23 years ago
- 19db049 Enable incompleteness marking by Chris Lattner · 23 years ago
- 0e74412 * First try at implementing TD pass this does not merge global nodes yet, by Chris Lattner · 23 years ago
- e25ab83 Reenable printing of TD analysis by Chris Lattner · 23 years ago