| Commit message (Expand) | Author | Age | Files | Lines |
* | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson | 2009-07-09 | 7 | -24/+26 |
* | There's no need to consider PHI nodes in the same block as the instruction | Nick Lewycky | 2009-07-09 | 1 | -0/+4 |
* | Add some statistics to SSI so we can see what it's up to. | Nick Lewycky | 2009-07-09 | 1 | -0/+43 |
* | Switch GlobalVariable ctors to a sane API, where *either* a context or a modu... | Owen Anderson | 2009-07-08 | 2 | -11/+8 |
* | Push LLVMContext through GlobalVariables and IRBuilder. | Owen Anderson | 2009-07-08 | 2 | -4/+8 |
* | "LLVMContext* " --> "LLVMContext *" | Owen Anderson | 2009-07-06 | 6 | -12/+12 |
* | Thread LLVMContext through the constant folding APIs, which touches a lot of ... | Owen Anderson | 2009-07-06 | 3 | -5/+8 |
* | More LLVMContext-ification. | Owen Anderson | 2009-07-05 | 15 | -90/+132 |
* | Fix build. | Mike Stump | 2009-07-03 | 1 | -0/+1 |
* | Add Static Single Information construction pass written by André Tavares! | Nick Lewycky | 2009-07-03 | 1 | -0/+390 |
* | Add a pointer to the owning LLVMContext to Module. This requires threading L... | Owen Anderson | 2009-07-01 | 1 | -1/+1 |
* | improve the APIs for creating struct and function types with no arguments/ele... | Chris Lattner | 2009-07-01 | 1 | -1/+1 |
* | Minor code simplification. | Dan Gohman | 2009-06-30 | 1 | -3/+2 |
* | Remove the block from the LoopInfo, rather than just the Loop. | Dan Gohman | 2009-06-27 | 1 | -1/+1 |
* | Teach LoopSimplify how to merge multiple loop exits into a single exit, | Dan Gohman | 2009-06-27 | 2 | -1/+76 |
* | Remove unused routines. | Devang Patel | 2009-06-26 | 1 | -41/+0 |
* | Fix linking of llvm-ld and lli with CMake, from Xerxes Rånby | Douglas Gregor | 2009-06-26 | 1 | -0/+2 |
* | Fix LCSSA to avoid emitting a PHI node for the unwind destination of | Dan Gohman | 2009-06-26 | 1 | -2/+11 |
* | Generalize instcombine's isSafeToLoadUnconditionally() function | Chris Lattner | 2009-06-16 | 1 | -0/+45 |
* | Fix the crash in this test. This is basically the same | Dale Johannesen | 2009-06-15 | 1 | -2/+27 |
* | Fix old-style type names in comments. | Dan Gohman | 2009-06-14 | 1 | -1/+1 |
* | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 1 | -6/+2 |
* | Give embedded metadata its own type instead of relying on EmptyStructTy. | Nick Lewycky | 2009-05-30 | 1 | -1/+24 |
* | available_externall linkage is not local, this was confusing the codegenerator, | Edwin Török | 2009-05-23 | 2 | -2/+4 |
* | Teach SCEVExpander to expand arithmetic involving pointers into GEP | Dan Gohman | 2009-05-19 | 1 | -30/+31 |
* | Reuse existing getUnderlyingObject instead of | Dale Johannesen | 2009-05-14 | 1 | -24/+6 |
* | Handle some additonal cases of external weak globals. | Dale Johannesen | 2009-05-13 | 1 | -4/+22 |
* | Don't generate a select whose operand is load of a weak | Dale Johannesen | 2009-05-13 | 1 | -0/+6 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 2 | -2/+2 |
* | PR4123: don't crash when inlining a call which uses its own result. | Eli Friedman | 2009-05-08 | 1 | -3/+10 |
* | Simplify code by using SmallVector's pop_back_val() instead of | Dan Gohman | 2009-05-06 | 4 | -12/+6 |
* | Allow readonly functions to unwind exceptions. Teach | Duncan Sands | 2009-05-06 | 1 | -7/+5 |
* | Re-apply 70645, converting ScalarEvolution to use | Dan Gohman | 2009-05-04 | 2 | -22/+6 |
* | Factor loop backedge finding out of CodeGenPrepare into a new | Chris Lattner | 2009-05-04 | 1 | -0/+50 |
* | Revert r70645 for now; it's causing a variety of regressions. | Dan Gohman | 2009-05-03 | 2 | -6/+22 |
* | Convert ScalarEvolution to use CallbackVH for its internal map. This | Dan Gohman | 2009-05-02 | 2 | -22/+6 |
* | Previously, RecursivelyDeleteDeadInstructions provided an option | Dan Gohman | 2009-05-02 | 2 | -5/+62 |
* | Real fix for PR3549, by using caching for predecessor counts in addition to t... | Owen Anderson | 2009-04-22 | 1 | -11/+13 |
* | Use PredIteratorCache in LCSSA, which gives a 37% overall speedup on the test... | Owen Anderson | 2009-04-22 | 1 | -2/+5 |
* | use predicate instead of hand-rolled loop | Chris Lattner | 2009-04-21 | 1 | -11/+4 |
* | remove trailing whitespace | Jim Grosbach | 2009-04-17 | 1 | -50/+50 |
* | Fix for PR3944: make mem2reg O(N) instead of O(N^2) in the number of | Eli Friedman | 2009-04-16 | 1 | -19/+11 |
* | While inlining, clone llvm.dbg.func.start intrinsic and adjust | Devang Patel | 2009-04-15 | 2 | -3/+52 |
* | Update call graph after inlining invoke. | Devang Patel | 2009-03-31 | 1 | -2/+19 |
* | Now that errs() is properly non-buffered, there's no need to | Dan Gohman | 2009-03-23 | 1 | -2/+1 |
* | Factorize out a concept - no functionality change. | Duncan Sands | 2009-03-21 | 1 | -2/+1 |
* | Don't load values out of global constants with weak | Duncan Sands | 2009-03-20 | 1 | -1/+2 |
* | Fix comment typo. | Dale Johannesen | 2009-03-19 | 1 | -1/+1 |
* | Revert my previous change on Local.cpp, instead, fix the bug on scalarrepl. | Zhou Sheng | 2009-03-18 | 1 | -3/+0 |
* | Fix a bug. | Zhou Sheng | 2009-03-18 | 1 | -0/+3 |