| Commit message (Expand) | Author | Age | Files | Lines |
| * | Reapply r91459, it was only unmasking the bug, and since TOT is still broken ... | Daniel Dunbar | 2009-12-16 | 1 | -404/+424 |
| * | Revert "Reapply 91184 with fixes and an addition to the testcase to cover the | Daniel Dunbar | 2009-12-16 | 1 | -424/+404 |
| * | reapply my strstr optimization. I have reproduced the x86-64 bootstrap | Chris Lattner | 2009-12-16 | 1 | -9/+75 |
| * | revert my strstr optimization, I'm told it breaks x86-64 bootstrap. | Chris Lattner | 2009-12-16 | 1 | -75/+9 |
| * | Reapply 91184 with fixes and an addition to the testcase to cover the problem | Bob Wilson | 2009-12-15 | 1 | -404/+424 |
| * | optimize strstr, PR5783 | Chris Lattner | 2009-12-15 | 1 | -9/+75 |
| * | Delete an unused function. | Dan Gohman | 2009-12-15 | 1 | -38/+0 |
| * | add some other xforms that should be done as part of PR5783 | Chris Lattner | 2009-12-15 | 1 | -3/+4 |
| * | Remove isPod() from DenseMapInfo, splitting it out to its own | Chris Lattner | 2009-12-15 | 4 | -4/+9 |
| * | Fix a thinko; isNotAlreadyContainedIn had a built-in negative, so the | Dan Gohman | 2009-12-14 | 1 | -1/+1 |
| * | Remove unnecessary #includes. | Dan Gohman | 2009-12-14 | 1 | -2/+0 |
| * | Instead of having a ScalarEvolution pointer member in BasedUser, just pass | Dan Gohman | 2009-12-14 | 1 | -12/+13 |
| * | Don't bother cleaning up if there's nothing to clean up. | Dan Gohman | 2009-12-14 | 1 | -6/+6 |
| * | Delete an unused variable. | Dan Gohman | 2009-12-14 | 1 | -10/+1 |
| * | LSR itself doesn't need LoopInfo. | Dan Gohman | 2009-12-14 | 1 | -6/+2 |
| * | LSR itself doesn't need DominatorTree. | Dan Gohman | 2009-12-14 | 1 | -6/+2 |
| * | Remove the code in LSR that manually hoists expansions out of loops; | Dan Gohman | 2009-12-14 | 1 | -29/+9 |
| * | Minor code cleanups. | Dan Gohman | 2009-12-14 | 1 | -4/+2 |
| * | revert r91184, because it causes a crash on a .bc file I just | Chris Lattner | 2009-12-14 | 1 | -366/+390 |
| * | Don't leave pointers uninitialized in the default constructor. GCC complains | Chandler Carruth | 2009-12-13 | 1 | -1/+1 |
| * | Revise scalar replacement to be more flexible about handle bitcasts and GEPs. | Bob Wilson | 2009-12-11 | 1 | -390/+366 |
| * | Make sure the immediate dominator isn't NULL through iterations | Eric Christopher | 2009-12-10 | 1 | -5/+6 |
| * | Fix PR5744, a case where we were getting the pointer size instead of the | Chris Lattner | 2009-12-10 | 1 | -1/+1 |
| * | allow this to build when the #if 0's are enabled. No functionality change. | Chris Lattner | 2009-12-10 | 1 | -6/+2 |
| * | Dereference loopHeader after checking for null rather than before. | Dan Gohman | 2009-12-09 | 1 | -1/+2 |
| * | fix hte last remaining known (by me) phi translation bug. When we reanalyze | Chris Lattner | 2009-12-09 | 1 | -6/+9 |
| * | change GetStoreValueForLoad to use IRBuilder, which is cleaner and | Chris Lattner | 2009-12-09 | 1 | -7/+7 |
| * | Fix a comment. | Bob Wilson | 2009-12-09 | 1 | -1/+1 |
| * | change AnalyzeLoadFromClobberingMemInst/AnalyzeLoadFromClobberingStore | Chris Lattner | 2009-12-09 | 1 | -13/+22 |
| * | change AnalyzeLoadFromClobberingWrite and clients to pass in type | Chris Lattner | 2009-12-09 | 1 | -10/+12 |
| * | change NonLocalDepEntry from being a typedef for an std::pair to be its | Chris Lattner | 2009-12-09 | 1 | -10/+10 |
| * | add some aborts to #if 0's. | Chris Lattner | 2009-12-09 | 1 | -0/+2 |
| * | Switch GVN and memdep to use PHITransAddr, which correctly handles | Chris Lattner | 2009-12-09 | 1 | -17/+22 |
| * | Some superficial cleanups. | Bob Wilson | 2009-12-08 | 1 | -4/+3 |
| * | Clean up dead operands left around after SROA replaces a mem intrinsic. | Bob Wilson | 2009-12-08 | 1 | -0/+6 |
| * | Teach GlobalOpt to delete aliases with internal linkage (after | Duncan Sands | 2009-12-08 | 1 | -21/+20 |
| * | Remove unnecessary #include "llvm/LLVMContext.h". | Nick Lewycky | 2009-12-08 | 3 | -3/+0 |
| * | fix PR5698 | Chris Lattner | 2009-12-06 | 1 | -0/+5 |
| * | constant fold loads from memcpy's from global constants. This is important | Chris Lattner | 2009-12-06 | 1 | -6/+46 |
| * | add support for forwarding mem intrinsic values to non-local loads. | Chris Lattner | 2009-12-06 | 1 | -33/+71 |
| * | Handle forwarding local memsets to loads. For example, we optimize this: | Chris Lattner | 2009-12-06 | 1 | -43/+136 |
| * | Generalize this optimization to work on equality comparisons between any two | Nick Lewycky | 2009-12-05 | 1 | -16/+27 |
| * | Fix up some comments. | Bob Wilson | 2009-12-04 | 1 | -12/+5 |
| * | Fix 80-column violations. | Bob Wilson | 2009-12-04 | 1 | -4/+5 |
| * | add an assert to make it really clear what this is doing. Return singularval as | Chris Lattner | 2009-12-04 | 1 | -1/+5 |
| * | Fix a comment typo. | Bob Wilson | 2009-12-03 | 1 | -1/+1 |
| * | Fix this crasher, and add a FIXME for a missed optimization. | Owen Anderson | 2009-12-03 | 1 | -0/+10 |
| * | improve portability to avoid conflicting with std::next in c++'0x. | Chris Lattner | 2009-12-03 | 2 | -2/+2 |
| * | Move EliminateDuplicatePHINodes() from SimplifyCFG.cpp to Local.cpp | Jim Grosbach | 2009-12-02 | 2 | -63/+62 |
| * | Cheap, mostly strict, stable sorting. | Andreas Neustifter | 2009-12-02 | 1 | -0/+13 |