- cc7c4ac Fix a tiny bug that caused an incorrect assertion failure poolallocating by Chris Lattner · 21 years ago
- 317201d Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to by Chris Lattner · 21 years ago
- a975a9a Implement getModRefInfo() for DSA to calculate whether a function modifies or by Misha Brukman · 21 years ago
- 56c0fa6 Make code more readable. by Misha Brukman · 21 years ago
- 85fb1be implement new method by Chris Lattner · 21 years ago
- d84d350 Fix a bug handling globals that are constants, but are still external by Chris Lattner · 21 years ago
- deb8712 Fix a minor bug by Chris Lattner · 21 years ago
- a5f2905 Unbreak the build on Sparc. by Misha Brukman · 21 years ago
- 4ab483c Fix a bug in a previous checkin that broke 175.vpr by Chris Lattner · 21 years ago
- 3aeb40c Add support for strto* and v*printf by Chris Lattner · 21 years ago
- 6b3e3cc Add non-crappy support for varargs by Chris Lattner · 21 years ago
- e6e93cc Implement a FIXME, improving the efficiency of DSA on povray. by Chris Lattner · 21 years ago
- da5c5a5 Speed up the cbu pass from taking somewhere near the age of the universe to about 90s on povray by Chris Lattner · 21 years ago
- f590ced Fix BU datastructures with povray! by Chris Lattner · 21 years ago
- 16437ff Minor changes, remove some debugging code that got checked in somehow. by Chris Lattner · 21 years ago
- 2f34690 Only clone nodes that are needed in the caller, don't clone ALL aux calls. This improves by Chris Lattner · 21 years ago
- 76a9eb3 Fix a minor bug handling incomplete programs by Chris Lattner · 21 years ago
- c4ebdce Fix a DSA bug that caused DSA to generate incredibly huge graphs and take forever to by Chris Lattner · 21 years ago
- 2c7725a Deinline methods, add fast exit by Chris Lattner · 21 years ago
- b1aaeee Fix a node mapping problem that was causing the pool allocator to locally allocate by Chris Lattner · 21 years ago
- 7252939 FINALLY be able to get symbolic type names in the globals graph! by Chris Lattner · 21 years ago
- a19ba52 Really, only if reopen by Chris Lattner · 21 years ago
- 82e9d72 Correctly add an array marker on a node when appropriate! by Chris Lattner · 21 years ago
- 99cc88b * Remove function to find "main" in a Module, there's a method for that by Misha Brukman · 21 years ago
- 0321b68 Only clone global nodes between graphs if both graphs have the global. by Chris Lattner · 21 years ago
- 6b586df ADD MORE FUNCTIONS! by Chris Lattner · 21 years ago
- cb58240 Be a good little compiler and handle direct calls efficiently, even if there by Chris Lattner · 21 years ago
- af6926a Fix typo by Chris Lattner · 21 years ago
- abcdf80 The node doesn't have to be _no_ node flags, it just has to be complete and by Chris Lattner · 21 years ago
- 1fe9874 Add _more_ functions by Chris Lattner · 21 years ago
- cf14e71 Two changes: by Chris Lattner · 21 years ago
- c420ab6 When building local graphs, clone the initializer for constant globals into each by Chris Lattner · 21 years ago
- 51c06ab Simplify the dead node elimination stuff by Chris Lattner · 21 years ago
- 52fc8d7 Add a bunch more functions by Chris Lattner · 21 years ago
- 153f240 Try harder to get symbol info by Chris Lattner · 21 years ago
- adc1efe Add a bunch more functions used by perlbmk by Chris Lattner · 21 years ago
- 39bb2dc Add support for 'rename' by Chris Lattner · 21 years ago
- d561209 Add support for remove, fwrite, and fread by Chris Lattner · 21 years ago
- 0ad9170 Use isNull instead of getNode() to test for existence of a node, this is cheaper. by Chris Lattner · 21 years ago
- d85645f Fix an iterator invalidation problem which was causing some nodes to not be by Chris Lattner · 21 years ago
- 5171115 Use handy method by Chris Lattner · 21 years ago
- 3567937 Instead of cloning the globals for main into the globals graph at the end of by Chris Lattner · 21 years ago
- d10b5fd There is no need to merge the globals graph into the function graphs at the by Chris Lattner · 21 years ago
- 4e46e32 Add two missing returns, which caused us to be very pessimistic about the by Chris Lattner · 21 years ago
- 8ecc27e Add support for some string functions, the scanf family, and sprintf by Chris Lattner · 21 years ago
- 28a631d When we complete the bottom-up pass, make sure to merge the globals in 'main' into by Chris Lattner · 21 years ago
- 304e143 Only spit out warning for functions that take pointers, not for sin and the like by Chris Lattner · 21 years ago
- eee33b2 memset and bcopy and now unified by the llvm.memset intrinsic by Chris Lattner · 21 years ago
- 896481e No need to scan zero initializers. This should make DSA a bit faster. by Chris Lattner · 21 years ago
- 339d8df Add support for a bunch more functions by Chris Lattner · 21 years ago
- 68300db Add support for fopen/fclose. Specifically with fopen, we were marking all of the by Chris Lattner · 21 years ago
- a07b72f Restructure code to handle memcpy/memmove by Chris Lattner · 21 years ago
- d21cd80 Adjust to the changed StructType interface. In particular, getElementTypes() is gone. by Chris Lattner · 22 years ago
- 2dea8d6 Add one that I missed by Chris Lattner · 22 years ago
- c3f5f77 Instead of callign removeTriviallyDeadNodes on the global graph every time by Chris Lattner · 22 years ago
- cd90f21 Remove another unneeded call. by Chris Lattner · 22 years ago
- cadfac6 This call is no longer needed now that merging does not produce garbage by Chris Lattner · 22 years ago
- 4ff0b96 Substantially improve the DSA code by removing 'forwarding' nodes from by Chris Lattner · 22 years ago
- 9857c1a Bugfix for ilist conversion. The ilist wants to make an 'end' node which has by Chris Lattner · 22 years ago
- 28897e1 Switch the Nodes list from being an std::vector<DSNode*> to an ilist<DSNode> by Chris Lattner · 22 years ago
- 9fd37ba Change to use node_iterators instead of direct access to Nodes by Chris Lattner · 22 years ago
- e92e764 getNodes() is gone, use node_begin/end instead by Chris Lattner · 22 years ago
- a84c681 getNodes() is gone by Chris Lattner · 22 years ago
- a5ca28c There is no need to clone over nodes that are going to be dead anyway by Chris Lattner · 22 years ago
- a67138d Avoid referencing deleted DSgraphs when merging an SCC into a larger SCC. This by Chris Lattner · 22 years ago
- 92e41d5 Forward method request to chained aa implementation by Chris Lattner · 22 years ago
- ead9eb7 Fix a bug aflicting 265.gap by Chris Lattner · 22 years ago
- 17a93e2 Minor bugfixes by Chris Lattner · 22 years ago
- 62482e5 Rename DSGraph::ScalarMapTy -> DSScalarMap by Chris Lattner · 22 years ago
- 28da03b Fix a bug by Chris Lattner · 22 years ago
- a3fd88d Eliminate the call to removeTriviallyDeadNodes from updateFromGlobals graph, by Chris Lattner · 22 years ago
- 6d8f3dc In the TD pass, iterate over globals directly instead of through the whole scalar by Chris Lattner · 22 years ago
- 34741cf In the TD pass, don't iterate over the scalar map to find the globals, iterate over by Chris Lattner · 22 years ago
- bdce7b7 In updateFromGlobalsGraph, instead of iterating over all of the scalars in the by Chris Lattner · 22 years ago
- a88a55c Minor tweaks, eliminate useless integer pruning optimziation, turn on by Chris Lattner · 22 years ago
- 239644d Further reduce the number of nodes cloned with getClonedNH, using merge instead. by Chris Lattner · 22 years ago
- 00948c0 Add a timer, fix a minor bug. by Chris Lattner · 22 years ago
- 64507e3 Another bugfix, disable "spurious" output. by Chris Lattner · 22 years ago
- 352e31f fix bug in previous checkin by Chris Lattner · 22 years ago
- 0b14487 * Add a new commandline argument to control the "global roots hack". Default by Chris Lattner · 22 years ago
- f325e39 Rewrite to use the reachability cloner interface. Also, make this much more by Chris Lattner · 22 years ago
- 02da032 minor cleanups by Chris Lattner · 22 years ago
- 825a02a Get clone flags right, so we don't build InlinedGlobals only to clear them by Chris Lattner · 22 years ago
- 091f776 Initial support for implementing clonePartiallyInto in terms of cloneReachableSubgraph, though this support is currently disabled. by Chris Lattner · 22 years ago
- 2f56138 Eliminated the CompletedNodes argument to the cloneReachable* methods. This by Chris Lattner · 22 years ago
- 93ddd7e Ok, I'm tired of pulling out all my timers to check stuff in, just do it. by Chris Lattner · 22 years ago
- 5254a8d Bug fix: X.mergeWith(Y) was not updating Y if Y was a null node handle! by Chris Lattner · 22 years ago
- 4c6cb7a Start implementing DSGraph::clonePartiallyInto and implement mergeInGraph by Chris Lattner · 22 years ago
- 4a85776 Allow disabling of ALL printing overhead when performing timings by Chris Lattner · 22 years ago
- fa3711a Do not depend on index type to determine whether it is a structure or sequential index by Chris Lattner · 22 years ago
- 1e2385b Finegrainify namespacification by Chris Lattner · 22 years ago
- 179bc7d Implement a small optimization to handling of GEP's that are equivalent to casts. by Chris Lattner · 22 years ago
- a366c98 Trying to get the dsgraph for an external function is bad for DSA's health by Chris Lattner · 22 years ago
- 79390d4 Implement the CompleteBU pass by Chris Lattner · 22 years ago
- 6acfe92 Minor code cleanup by Chris Lattner · 22 years ago
- a190766 Disable integer tracking by default by Chris Lattner · 22 years ago
- 95724a4 Add an initial version of the CompleteBUDataStructures class, which is currently by Chris Lattner · 22 years ago
- 9a92729 Fine-grainify namespaces for this library by Chris Lattner · 22 years ago
- afc1dba Add new argument to disable checking by Chris Lattner · 22 years ago
- d8ea8a5 Print return nodes for graphs with multiple functions in them correctly by Chris Lattner · 22 years ago