| Commit message (Expand) | Author | Age | Files | Lines |
* | Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruct... | Chris Lattner | 2003-10-19 | 1 | -1/+1 |
* | Decrease usage of use_size() | Chris Lattner | 2003-10-15 | 1 | -1/+1 |
* | Whoops, we inserted into the wrong set. What's up with the dead set anyway? | Chris Lattner | 2003-10-13 | 1 | -4/+2 |
* | Use external df iterators to avoid revisiting blocks in functions with | Chris Lattner | 2003-10-13 | 1 | -1/+3 |
* | Regularize header file comments | Chris Lattner | 2003-10-13 | 2 | -2/+2 |
* | Minor cleanups | Chris Lattner | 2003-10-13 | 1 | -5/+3 |
* | Checkin an improvement contributed by Bill: | Chris Lattner | 2003-10-13 | 1 | -6/+30 |
* | Fix spelling. | Misha Brukman | 2003-10-10 | 5 | -7/+7 |
* | Fix bugzilla bug #5 | Chris Lattner | 2003-10-07 | 1 | -1/+6 |
* | Speed up the predicate used to decide when to inline by caching the size | Chris Lattner | 2003-10-06 | 1 | -13/+28 |
* | Credits are now in top-level CREDITS.TXT | Misha Brukman | 2003-09-22 | 1 | -2/+0 |
* | Global variables with APPENDING linkage are very important to keep around! | Chris Lattner | 2003-09-20 | 1 | -3/+6 |
* | Rename Function::getEntryNode -> getEntryBlock | Chris Lattner | 2003-09-20 | 1 | -1/+1 |
* | Fix bug raising allocations whose call sites were invoke instructions. | Chris Lattner | 2003-09-16 | 1 | -0/+15 |
* | This is effectively a complete rewrite of the globaldce algorithm, resulting | Chris Lattner | 2003-09-16 | 1 | -177/+104 |
* | Minor cleanups, give credit, remove code that should not be necessary, and | Chris Lattner | 2003-09-15 | 1 | -28/+5 |
* | Initial checkin of the Setjmp/Longjmp lowering/transformation pass, | Chris Lattner | 2003-09-15 | 1 | -0/+501 |
* | Ugh, a bug fix needed because of the bug in the CallGraph code | Chris Lattner | 2003-09-15 | 1 | -2/+4 |
* | Fix bug: PruneEH/2003-09-14-ExternalCall.llx | Chris Lattner | 2003-09-15 | 1 | -1/+4 |
* | Spell `definitely' correctly. | Misha Brukman | 2003-09-11 | 1 | -1/+1 |
* | Fix spell-o's | Chris Lattner | 2003-09-10 | 1 | -1/+1 |
* | Eliminate support for the llvm.unwind intrinisic, using the Unwind instructio... | Chris Lattner | 2003-09-08 | 1 | -5/+6 |
* | Add support for the unwind instruction | Chris Lattner | 2003-09-08 | 1 | -0/+1 |
* | Final cleanup: remove dead code | Chris Lattner | 2003-09-01 | 1 | -39/+0 |
* | Not only is this a lot smaller, it actually works if there is already a | Chris Lattner | 2003-09-01 | 1 | -5/+1 |
* | Dead files | Chris Lattner | 2003-09-01 | 2 | -87/+0 |
* | If "These should be used only by the auto-parallelization pass", we might as | Chris Lattner | 2003-09-01 | 1 | -1/+31 |
* | Moved all of the cilkifier stuff into lib/Transforms/IPO, as it really is not | Chris Lattner | 2003-09-01 | 2 | -4/+2 |
* | Minor cleanups | Chris Lattner | 2003-09-01 | 1 | -13/+8 |
* | Change the RaiseAllocations pass to be a Pass instead of a BasicBlock pass. | Chris Lattner | 2003-09-01 | 1 | -54/+75 |
* | Heavily refactor code: | Chris Lattner | 2003-08-31 | 3 | -127/+198 |
* | Add accessor function | Chris Lattner | 2003-08-31 | 1 | -0/+2 |
* | Initial checkin of the -prune-eh pass, a very simple exception handling remov... | Chris Lattner | 2003-08-31 | 1 | -0/+93 |
* | Inline invoke instructions as well as call instructions | Chris Lattner | 2003-08-24 | 1 | -13/+18 |
* | Big diff for a small change: delete inlined functions if all callees have | Chris Lattner | 2003-08-24 | 1 | -21/+32 |
* | Fix bug: FunctionResolve/2003-08-23-ArgumentWarning.ll | Chris Lattner | 2003-08-23 | 1 | -6/+6 |
* | Unless we CANNOT merge the arguments, do so | Chris Lattner | 2003-08-20 | 1 | -1/+3 |
* | Spell `necessary' correctly. | Misha Brukman | 2003-08-18 | 1 | -1/+1 |
* | Fix FIXME by removing FIXME | Chris Lattner | 2003-08-13 | 1 | -1/+1 |
* | Removing the pool allocator from the main CVS tree. | John Criswell | 2003-08-13 | 2 | -2963/+0 |
* | Bug fix: Some nodes pointed to by globals may not be marked incomplete and ne... | Sumant Kowshik | 2003-08-12 | 1 | -5/+18 |
* | Fix handling of 'free' if it has absolutely no prototype | Chris Lattner | 2003-08-11 | 1 | -0/+7 |
* | Fixed a segfault in gccld. | John Criswell | 2003-08-07 | 1 | -2/+4 |
* | Added code for pool allocating only the pool-allocatable data structures in t... | Sumant Kowshik | 2003-08-07 | 1 | -12/+46 |
* | Remove unnecessary use of NonCopyable | Chris Lattner | 2003-08-06 | 1 | -4/+3 |
* | Minor changes: | Chris Lattner | 2003-08-05 | 1 | -52/+48 |
* | Major bug fixes including a memory leak and tracking some exceptional conditi... | Sumant Kowshik | 2003-08-05 | 1 | -83/+317 |
* | DEBUG got moved to Support/Debug.h | Chris Lattner | 2003-08-01 | 5 | -4/+7 |
* | Fix bug: FunctionResolve/2003-07-23-CPR-Reference.ll | Chris Lattner | 2003-07-23 | 1 | -6/+8 |
* | Eliminate using declarations, adjust for new DSGraph API | Chris Lattner | 2003-06-30 | 1 | -21/+19 |