| Commit message (Expand) | Author | Age | Files | Lines |
* | rip out a ton of intrinsic modernization logic from AutoUpgrade.cpp, which is | Chris Lattner | 2011-06-18 | 37 | -795/+588 |
* | Fix an invalid bitcast crash that occurs when doing a partial memset of a vector | Cameron Zwarich | 2011-06-18 | 1 | -0/+22 |
* | Stop accepting and ignoring attributes in function types. Attributes are app... | Chris Lattner | 2011-06-17 | 3 | -3/+3 |
* | make the asmparser reject function and type redefinitions. 'Merging' hasn't ... | Chris Lattner | 2011-06-17 | 5 | -9/+0 |
* | remove asmparser support for the old getresult instruction, which has been su... | Chris Lattner | 2011-06-17 | 3 | -3/+3 |
* | remove parser support for the obsolete "multiple return values" syntax, which | Chris Lattner | 2011-06-17 | 7 | -248/+31 |
* | stop accepting begin/end around function bodies in the .ll parser, this isn't... | Chris Lattner | 2011-06-17 | 1 | -4/+2 |
* | Remove support for using "foo" as symbols instead of %"foo". This is ancient | Chris Lattner | 2011-06-17 | 2 | -3/+0 |
* | manually upgrade a bunch of tests to modern syntax, and remove some that | Chris Lattner | 2011-06-17 | 29 | -1637/+43 |
* | Fix ARCOpt to insert releases on both successors of an invoke rather | Dan Gohman | 2011-06-16 | 1 | -0/+67 |
* | The ARC language-specific optimizer. Credit to Dan Gohman. | John McCall | 2011-06-15 | 19 | -0/+3383 |
* | Avoid fusing bitcasts with dynamic allocas if the amount-to-allocate | Stuart Hastings | 2011-06-13 | 1 | -0/+60 |
* | InstCombine: Fold A-b == C --> b == A-C if A and C are constants. | Benjamin Kramer | 2011-06-13 | 1 | -0/+16 |
* | InstCombine: Shrink ((zext X) & C1) == C2 to fold away the cast if the "zext"... | Benjamin Kramer | 2011-06-12 | 1 | -0/+10 |
* | Simplify code. No functionality changes, name changes aside. | Benjamin Kramer | 2011-06-12 | 1 | -2/+2 |
* | SplitCriticalEdge can sometimes split the edge from an invoke to a landing | John McCall | 2011-06-09 | 1 | -1/+92 |
* | Fix PR10104 by adding a bounds check on a vector element access check. It was | Cameron Zwarich | 2011-06-09 | 1 | -3/+5 |
* | Fix an assymmetry between ConvertScalar_ExtractValue and ConvertScalar_Insert... | Cameron Zwarich | 2011-06-08 | 1 | -0/+60 |
* | This directory was missing the dg.exp to cause the tests to run. Some time since | Nick Lewycky | 2011-06-06 | 2 | -0/+4 |
* | If the block that we're threading through is jumped to by an indirect branch, | Bill Wendling | 2011-06-04 | 1 | -0/+69 |
* | Add a testcase to demonstrate the problem where phi translation is | Dan Gohman | 2011-06-04 | 1 | -0/+27 |
* | Disable the main feature of 130180, the elimination of loads that are | Dan Gohman | 2011-06-04 | 1 | -12/+12 |
* | Bail on unswitching a switch statement for a case with a critical edge. We name | Nick Lewycky | 2011-06-03 | 1 | -0/+28 |
* | Test case pasto (failed when run with IR verifier). | Andrew Trick | 2011-06-02 | 1 | -2/+2 |
* | PR10067: Add missing safety check to call return transformation in MemCpyOpt:... | Eli Friedman | 2011-06-02 | 1 | -0/+36 |
* | When marking a block as being unanalyzable, use "Clobber" on the terminator i... | Eli Friedman | 2011-06-02 | 1 | -0/+61 |
* | Reapply 132348 with fixes. rdar://problem/6501862 | Stuart Hastings | 2011-06-01 | 1 | -6/+39 |
* | First, do no harm -- even if we can't find a selector for an enclosing | John McCall | 2011-06-01 | 1 | -2/+29 |
* | scev: Better sign-extend removal. Normalize postincrement recurrences | Andrew Trick | 2011-05-31 | 1 | -17/+12 |
* | Revert to pacify a buildbot. rdar://problem/6501862 | Stuart Hastings | 2011-05-31 | 1 | -39/+6 |
* | Followup to 132316; accept arbitrary constants, add with a constant, | Stuart Hastings | 2011-05-31 | 1 | -6/+39 |
* | (1 - X) * (-2) -> (x - 1) * 2, for all positive nonzero powers of 2 | Stuart Hastings | 2011-05-30 | 1 | -0/+24 |
* | Add the test case for phis in the outer landing pad during the inliner's | John McCall | 2011-05-30 | 1 | -1/+111 |
* | Add testcase for r132290, to check for the crasher caught by the buildbots | Nick Lewycky | 2011-05-29 | 1 | -2/+12 |
* | Obey the isVolatile bit on memory intrinsics when analyzing uses of a global | Nick Lewycky | 2011-05-29 | 1 | -0/+19 |
* | ConstantFoldInstOperands doesn't like compares, hand it off to instsimplify i... | Benjamin Kramer | 2011-05-28 | 1 | -0/+10 |
* | Implement and document the llvm.eh.resume intrinsic, which is | John McCall | 2011-05-28 | 1 | -13/+18 |
* | Fix the inliner to maintain the current de facto invoke semantics: | John McCall | 2011-05-27 | 1 | -0/+103 |
* | InstCombine: Make switch folding with equality compares more aggressive by tr... | Benjamin Kramer | 2011-05-27 | 1 | -0/+40 |
* | Renamed llvm.x86.sse42.crc32 intrinsics; crc64 doesn't exist. | Chad Rosier | 2011-05-26 | 1 | -3/+3 |
* | indvars: incremental fixes for -disable-iv-rewrite and testcases. | Andrew Trick | 2011-05-26 | 1 | -1/+66 |
* | PR9998: ashr exact %x, 31 is not equivalent to sdiv exact %x, -2147483648. | Eli Friedman | 2011-05-25 | 1 | -0/+16 |
* | indvars: fixed IV cloning in -disable-iv-rewrite mode with associated | Andrew Trick | 2011-05-25 | 2 | -0/+216 |
* | Fix "make check" in Release by removing debug-only options from an 'opt' invo... | Cameron Zwarich | 2011-05-24 | 1 | -2/+2 |
* | Make LoadAndStorePromoter preserve debug info and create llvm.dbg.values when | Cameron Zwarich | 2011-05-24 | 2 | -0/+62 |
* | FileCheck-ize a couple of IV unit tests. | Andrew Trick | 2011-05-24 | 2 | -7/+13 |
* | Test case for r130799 - indvars: Added canExpandBackEdgeTakenCount. | Andrew Trick | 2011-05-24 | 1 | -1/+5 |
* | fix a really nasty basicaa mod/ref calculation bug that was causing miscompil... | Chris Lattner | 2011-05-23 | 1 | -0/+17 |
* | Transform any logical shift of a power of two into an exact/NUW shift when | Chris Lattner | 2011-05-23 | 1 | -0/+21 |
* | Teach valuetracking that byval arguments with a specified alignment are | Chris Lattner | 2011-05-23 | 1 | -0/+20 |