Age | Commit message (Expand) | Author |
2004-03-01 | Correctly add an array marker on a node when appropriate! | Chris Lattner |
2004-02-29 | * Remove function to find "main" in a Module, there's a method for that | Misha Brukman |
2004-02-27 | Only clone global nodes between graphs if both graphs have the global. | Chris Lattner |
2004-02-27 | ADD MORE FUNCTIONS! | Chris Lattner |
2004-02-26 | Be a good little compiler and handle direct calls efficiently, even if there | Chris Lattner |
2004-02-26 | Fix typo | Chris Lattner |
2004-02-26 | The node doesn't have to be _no_ node flags, it just has to be complete and | Chris Lattner |
2004-02-26 | Add _more_ functions | Chris Lattner |
2004-02-25 | Two changes: | Chris Lattner |
2004-02-25 | When building local graphs, clone the initializer for constant globals into each | Chris Lattner |
2004-02-25 | Simplify the dead node elimination stuff | Chris Lattner |
2004-02-25 | Add a bunch more functions | Chris Lattner |
2004-02-25 | Try harder to get symbol info | Chris Lattner |
2004-02-25 | Add a bunch more functions used by perlbmk | Chris Lattner |
2004-02-24 | Add support for 'rename' | Chris Lattner |
2004-02-24 | Add support for remove, fwrite, and fread | Chris Lattner |
2004-02-22 | Use isNull instead of getNode() to test for existence of a node, this is chea... | Chris Lattner |
2004-02-21 | Fix an iterator invalidation problem which was causing some nodes to not be | Chris Lattner |
2004-02-21 | Use handy method | Chris Lattner |
2004-02-21 | Instead of cloning the globals for main into the globals graph at the end of | Chris Lattner |
2004-02-20 | There is no need to merge the globals graph into the function graphs at the | Chris Lattner |
2004-02-20 | Add two missing returns, which caused us to be very pessimistic about the | Chris Lattner |
2004-02-20 | Add support for some string functions, the scanf family, and sprintf | Chris Lattner |
2004-02-17 | When we complete the bottom-up pass, make sure to merge the globals in 'main'... | Chris Lattner |
2004-02-16 | Only spit out warning for functions that take pointers, not for sin and the like | Chris Lattner |
2004-02-16 | memset and bcopy and now unified by the llvm.memset intrinsic | Chris Lattner |
2004-02-15 | No need to scan zero initializers. This should make DSA a bit faster. | Chris Lattner |
2004-02-13 | Add support for a bunch more functions | Chris Lattner |
2004-02-13 | Add support for fopen/fclose. Specifically with fopen, we were marking all o... | Chris Lattner |
2004-02-13 | Restructure code to handle memcpy/memmove | Chris Lattner |
2004-02-09 | Adjust to the changed StructType interface. In particular, getElementTypes()... | Chris Lattner |
2004-02-08 | Add one that I missed | Chris Lattner |
2004-02-08 | Instead of callign removeTriviallyDeadNodes on the global graph every time | Chris Lattner |
2004-02-08 | Remove another unneeded call. | Chris Lattner |
2004-02-08 | This call is no longer needed now that merging does not produce garbage | Chris Lattner |
2004-02-08 | Substantially improve the DSA code by removing 'forwarding' nodes from | Chris Lattner |
2004-02-08 | Bugfix for ilist conversion. The ilist wants to make an 'end' node which has | Chris Lattner |
2004-02-08 | Switch the Nodes list from being an std::vector<DSNode*> to an ilist<DSNode> | Chris Lattner |
2004-02-08 | Change to use node_iterators instead of direct access to Nodes | Chris Lattner |
2004-02-07 | getNodes() is gone, use node_begin/end instead | Chris Lattner |
2004-02-07 | getNodes() is gone | Chris Lattner |
2004-02-07 | There is no need to clone over nodes that are going to be dead anyway | Chris Lattner |
2004-01-31 | Avoid referencing deleted DSgraphs when merging an SCC into a larger SCC. This | Chris Lattner |
2004-01-30 | Forward method request to chained aa implementation | Chris Lattner |
2004-01-29 | Fix a bug aflicting 265.gap | Chris Lattner |
2004-01-29 | Minor bugfixes | Chris Lattner |
2004-01-28 | Rename DSGraph::ScalarMapTy -> DSScalarMap | Chris Lattner |
2004-01-28 | Fix a bug | Chris Lattner |
2004-01-28 | Eliminate the call to removeTriviallyDeadNodes from updateFromGlobals graph, | Chris Lattner |
2004-01-28 | In the TD pass, iterate over globals directly instead of through the whole sc... | Chris Lattner |