Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | If an edge points to a field of another memory object, actually reflect this | Chris Lattner | 2004-06-22 | 1 | -0/+18 | |
| | | | | | | in the DOT visualization of the DSGraphs. llvm-svn: 14316 | |||||
* | Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() | Chris Lattner | 2004-06-17 | 1 | -2/+2 | |
| | | | | llvm-svn: 14201 | |||||
* | Recognize memalign and friends, and handle them specially. | Vikram S. Adve | 2004-05-25 | 1 | -1/+2 | |
| | | | | llvm-svn: 13741 | |||||
* | Updates to work with the new auto-forwarding AA interface changes | Chris Lattner | 2004-05-23 | 1 | -9/+3 | |
| | | | | llvm-svn: 13682 | |||||
* | Fix a really nasty bug with the -disable-ds-field-sensitivity option | Chris Lattner | 2004-05-23 | 1 | -0/+3 | |
| | | | | llvm-svn: 13681 | |||||
* | Update to match the autochaining interface that the AA interface uses | Chris Lattner | 2004-05-23 | 1 | -6/+1 | |
| | | | | llvm-svn: 13680 | |||||
* | Inline both direct and indirect callees in the CBU phase because | Vikram S. Adve | 2004-05-23 | 1 | -34/+34 | |
| | | | | | | a direct callee may have indirect callees and so may have changed. llvm-svn: 13649 | |||||
* | Move the stuff that fixes the size, orientation & fonts of graphs to | Brian Gaeke | 2004-05-05 | 1 | -7/+2 | |
| | | | | | | | | | | | the debugging functions that call "dot". These fixed settings have various problems: for example, the fixed size that is set in the graph traits classes is not appropriate for turning the dot file into a PNG, and if TrueType font rendering is being used, the 'Courier' TrueType font may not be installed. It seems easy enough to specify these things on the command line, anyhow. llvm-svn: 13366 | |||||
* | Wrapped code and comments at 80 cols; doxygenified some comments. | Misha Brukman | 2004-04-29 | 2 | -18/+20 | |
| | | | | llvm-svn: 13264 | |||||
* | If an object is not in the scalar map then it must be a global from another | Chris Lattner | 2004-04-26 | 1 | -33/+33 | |
| | | | | | | graph. llvm-svn: 13173 | |||||
* | Support getelementptr instructions which use uint's to index into structure | Chris Lattner | 2004-04-05 | 1 | -1/+2 | |
| | | | | | | | types and can have arbitrary 32- and 64-bit integer types indexing into sequential types. llvm-svn: 12653 | |||||
* | Fix a tiny bug that caused an incorrect assertion failure poolallocating | Chris Lattner | 2004-03-13 | 1 | -4/+6 | |
| | | | | | | boxed-sim. llvm-svn: 12358 | |||||
* | Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to | Chris Lattner | 2004-03-13 | 1 | -5/+3 | |
| | | | | | | Intrinsic::va*. This avoid conflicting with macros in the stdlib.h file. llvm-svn: 12356 | |||||
* | Implement getModRefInfo() for DSA to calculate whether a function modifies or | Misha Brukman | 2004-03-12 | 1 | -5/+39 | |
| | | | | | | references a pointer. llvm-svn: 12330 | |||||
* | implement new method | Chris Lattner | 2004-03-09 | 1 | -0/+24 | |
| | | | | llvm-svn: 12264 | |||||
* | Fix a bug handling globals that are constants, but are still external | Chris Lattner | 2004-03-08 | 1 | -1/+1 | |
| | | | | llvm-svn: 12208 | |||||
* | Fix a minor bug | Chris Lattner | 2004-03-05 | 1 | -1/+2 | |
| | | | | llvm-svn: 12169 | |||||
* | Unbreak the build on Sparc. | Misha Brukman | 2004-03-05 | 1 | -0/+2 | |
| | | | | llvm-svn: 12161 | |||||
* | Fix a bug in a previous checkin that broke 175.vpr | Chris Lattner | 2004-03-04 | 1 | -1/+1 | |
| | | | | llvm-svn: 12128 | |||||
* | Add support for strto* and v*printf | Chris Lattner | 2004-03-04 | 1 | -0/+66 | |
| | | | | llvm-svn: 12127 | |||||
* | Add non-crappy support for varargs | Chris Lattner | 2004-03-04 | 1 | -6/+32 | |
| | | | | llvm-svn: 12126 | |||||
* | Implement a FIXME, improving the efficiency of DSA on povray. | Chris Lattner | 2004-03-04 | 1 | -2/+16 | |
| | | | | | | | This reduces CBU time from 145s -> 122s (debug build), reduces # allocated nodes from 129420 to 116477. llvm-svn: 12125 | |||||
* | Speed up the cbu pass from taking somewhere near the age of the universe to ↵ | Chris Lattner | 2004-03-04 | 1 | -6/+28 | |
| | | | | | | about 90s on povray llvm-svn: 12123 | |||||
* | Fix BU datastructures with povray! | Chris Lattner | 2004-03-04 | 1 | -11/+25 | |
| | | | | | | | | The problem was that we were merging a field of a node with a value that was deleted. Thanks to bugpoint for reducing povray to a nice small 3 function example. :) llvm-svn: 12116 | |||||
* | Minor changes, remove some debugging code that got checked in somehow. | Chris Lattner | 2004-03-04 | 1 | -7/+10 | |
| | | | | | | | Make sure to scope the NodeMap passed into cloneInto so that it doesn't point to nodes that are deleted. Add some FIXME's for future performance enhancements. llvm-svn: 12115 | |||||
* | Only clone nodes that are needed in the caller, don't clone ALL aux calls. ↵ | Chris Lattner | 2004-03-04 | 1 | -20/+48 | |
| | | | | | | | | This improves povray from having ~600K nodes and 300K call nodes to 65K nodes and 25K call nodes. llvm-svn: 12109 | |||||
* | Fix a minor bug handling incomplete programs | Chris Lattner | 2004-03-03 | 1 | -1/+1 | |
| | | | | llvm-svn: 12105 | |||||
* | Fix a DSA bug that caused DSA to generate incredibly huge graphs and take ↵ | Chris Lattner | 2004-03-03 | 1 | -1/+34 | |
| | | | | | | | | | | forever to do it on povray. The problem is that we were not copying globals from callees to callers unless the existed in both graphs. We should have copied them in the case where the global pointed to a node that was copied as well. llvm-svn: 12104 | |||||
* | Deinline methods, add fast exit | Chris Lattner | 2004-03-03 | 1 | -0/+27 | |
| | | | | llvm-svn: 12102 | |||||
* | Fix a node mapping problem that was causing the pool allocator to locally ↵ | Chris Lattner | 2004-03-03 | 1 | -0/+3 | |
| | | | | | | | | allocate nodes that were globally live, thus breaking programs. llvm-svn: 12094 | |||||
* | FINALLY be able to get symbolic type names in the globals graph! | Chris Lattner | 2004-03-02 | 1 | -1/+14 | |
| | | | | llvm-svn: 12082 | |||||
* | Really, only if reopen | Chris Lattner | 2004-03-02 | 1 | -1/+2 | |
| | | | | llvm-svn: 12080 | |||||
* | Correctly add an array marker on a node when appropriate! | Chris Lattner | 2004-03-01 | 1 | -0/+4 | |
| | | | | llvm-svn: 12055 | |||||
* | Only clone global nodes between graphs if both graphs have the global. | Chris Lattner | 2004-02-27 | 2 | -13/+9 | |
| | | | | llvm-svn: 11928 | |||||
* | ADD MORE FUNCTIONS! | Chris Lattner | 2004-02-27 | 1 | -14/+20 | |
| | | | | llvm-svn: 11927 | |||||
* | Be a good little compiler and handle direct calls efficiently, even if there | Chris Lattner | 2004-02-26 | 1 | -10/+13 | |
| | | | | | | are beastly ConstantPointerRefs in the way... llvm-svn: 11883 | |||||
* | Fix typo | Chris Lattner | 2004-02-26 | 1 | -1/+1 | |
| | | | | llvm-svn: 11864 | |||||
* | The node doesn't have to be _no_ node flags, it just has to be complete and | Chris Lattner | 2004-02-26 | 1 | -2/+3 | |
| | | | | | | not have any globals. llvm-svn: 11863 | |||||
* | Add _more_ functions | Chris Lattner | 2004-02-26 | 1 | -3/+20 | |
| | | | | llvm-svn: 11862 | |||||
* | Two changes: | Chris Lattner | 2004-02-25 | 1 | -1/+4 | |
| | | | | | | | | | | | | | 1. Functions do not make things incomplete, only variables 2. Constant global variables no longer need to be marked incomplete, because we are guaranteed that the initializer for the global will be in the graph we are hacking on now. This makes resolution of indirect calls happen a lot more in the bu pass, supports things like vtables and the C counterparts (giant constant arrays of function pointers), etc... Testcase here: test/Regression/Analysis/DSGraph/constant_globals.ll llvm-svn: 11852 | |||||
* | When building local graphs, clone the initializer for constant globals into each | Chris Lattner | 2004-02-25 | 1 | -7/+21 | |
| | | | | | | local graph that uses the global. llvm-svn: 11850 | |||||
* | Simplify the dead node elimination stuff | Chris Lattner | 2004-02-25 | 1 | -10/+12 | |
| | | | | | | | | | | Make the incompleteness marker faster by looping directly over the globals instead of over the scalars to find the globals Fix a bug where we didn't mark a global incomplete if it didn't have any outgoing edges. This wouldn't break any current clients but is still wrong. llvm-svn: 11848 | |||||
* | Add a bunch more functions | Chris Lattner | 2004-02-25 | 1 | -8/+55 | |
| | | | | llvm-svn: 11847 | |||||
* | Try harder to get symbol info | Chris Lattner | 2004-02-25 | 1 | -0/+3 | |
| | | | | llvm-svn: 11846 | |||||
* | Add a bunch more functions used by perlbmk | Chris Lattner | 2004-02-25 | 1 | -14/+50 | |
| | | | | llvm-svn: 11824 | |||||
* | Add support for 'rename' | Chris Lattner | 2004-02-24 | 1 | -4/+9 | |
| | | | | llvm-svn: 11813 | |||||
* | Add support for remove, fwrite, and fread | Chris Lattner | 2004-02-24 | 1 | -22/+53 | |
| | | | | | | | Also fix problem where we didn't check to see if a node pointer was null. Though fclose(null) doesn't make a lot of sense, 300.twolf does it. llvm-svn: 11810 | |||||
* | Use isNull instead of getNode() to test for existence of a node, this is ↵ | Chris Lattner | 2004-02-22 | 1 | -6/+11 | |
| | | | | | | | | | cheaper. FIX MAJOR BUG, whereby we didn't merge null edges correctly. Correcting this fixes poolallocation on 175.vpr, and possibly others. llvm-svn: 11695 | |||||
* | Fix an iterator invalidation problem which was causing some nodes to not be | Chris Lattner | 2004-02-21 | 1 | -20/+19 | |
| | | | | | | correctly merged over! llvm-svn: 11693 | |||||
* | Use handy method | Chris Lattner | 2004-02-21 | 1 | -1/+1 | |
| | | | | llvm-svn: 11692 |