| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a new SparsePropagation analysis utility, which allows you to do | Chris Lattner | 2008-05-12 | 2 | -0/+498 |
* | Make constructors target-specific. This fixes problems where the path would | Nick Lewycky | 2008-05-11 | 3 | -4/+19 |
* | Add note | Anton Korobeynikov | 2008-05-11 | 1 | -0/+38 |
* | Fix various DOUTs to not call the extremely expensive Value::getName() | Chris Lattner | 2008-05-11 | 1 | -5/+5 |
* | Simplify code by using SwitchInst::findCaseValue instead of reimplementing it. | Chris Lattner | 2008-05-10 | 1 | -14/+2 |
* | Remove warnings when using -Wshorten-64-to-32. | Bill Wendling | 2008-05-10 | 1 | -3/+3 |
* | Testcase for PR2303. | Duncan Sands | 2008-05-10 | 1 | -0/+33 |
* | Fix linking of internal aliases | Anton Korobeynikov | 2008-05-10 | 1 | -28/+55 |
* | Prevent -W64-to-32-shortened warnings. | Bill Wendling | 2008-05-10 | 1 | -2/+2 |
* | Prevent warnings from the -Wshorten-64-to-32 flag. | Bill Wendling | 2008-05-10 | 1 | -5/+2 |
* | remove commented-out code, it is subsumed by DECLARE_TRANSPARENT_OPERAND_ACCE... | Gabor Greif | 2008-05-10 | 1 | -9/+0 |
* | merge of use-diet branch to trunk | Gabor Greif | 2008-05-10 | 18 | -584/+1528 |
* | Re-enable loop deletion by default. | Owen Anderson | 2008-05-10 | 1 | -0/+1 |
* | When transforming a vector_shuffle to a load, the base address must not be an... | Evan Cheng | 2008-05-10 | 2 | -0/+12 |
* | Set to 2.4 and regenerate configure. | Tanya Lattner | 2008-05-10 | 2 | -35/+35 |
* | Add nounwind. | Evan Cheng | 2008-05-10 | 1 | -2/+2 |
* | For now, abort when an ISD::VAARG is encountered on x86-64, rather | Dan Gohman | 2008-05-10 | 2 | -3/+18 |
* | Some clean up. | Evan Cheng | 2008-05-10 | 1 | -16/+18 |
* | If movl top bits are undef, let it be selected to movlps, etc. | Evan Cheng | 2008-05-10 | 1 | -2/+1 |
* | If all sources of a PHI node are defined by an implicit_def, just emit an imp... | Evan Cheng | 2008-05-10 | 2 | -7/+36 |
* | Cosmetic changes: | Bill Wendling | 2008-05-10 | 1 | -36/+48 |
* | Add a pattern to do move the low element of a v4f32 and zero extend the rest. | Evan Cheng | 2008-05-09 | 2 | -0/+11 |
* | Remove an evil vector bool. Cosmetic refactoring, | Dale Johannesen | 2008-05-09 | 1 | -62/+85 |
* | Handle a few more cases of folding load i64 into xmm and zero top bits. | Evan Cheng | 2008-05-09 | 7 | -29/+110 |
* | Make OpActionsCapacity multiple of 4. | Evan Cheng | 2008-05-09 | 1 | -2/+3 |
* | Rewrite tail merging algorithm to handle the | Dale Johannesen | 2008-05-09 | 1 | -87/+115 |
* | put LibCallAliasAnalysis into anonymous namespace to avoid | Torok Edwin | 2008-05-09 | 1 | -1/+1 |
* | Simplify test. | Evan Cheng | 2008-05-09 | 1 | -3/+2 |
* | Rename Example.td to Graph.td. | Mikhail Glushenkov | 2008-05-09 | 2 | -1/+1 |
* | use doxygen comments for makeBuffer() | Nick Kledzik | 2008-05-09 | 1 | -4/+4 |
* | don't sink invokes, even if they are readonly. This fixes a | Chris Lattner | 2008-05-09 | 1 | -1/+2 |
* | Fix a type and formatting. | Duncan Sands | 2008-05-09 | 1 | -2/+2 |
* | ignore Output dirs | Gabor Greif | 2008-05-09 | 0 | -0/+0 |
* | ignore AutoGenerated.inc, it is created by TableGen | Gabor Greif | 2008-05-09 | 0 | -0/+0 |
* | ignore Output dir | Gabor Greif | 2008-05-09 | 0 | -0/+0 |
* | Reapply 50867: A small refactoring (extract method) + some comment fixes. | Mikhail Glushenkov | 2008-05-09 | 2 | -55/+66 |
* | add support for pattern matching 'neg' | Chris Lattner | 2008-05-09 | 2 | -4/+31 |
* | Implement PR2298. This transforms: | Chris Lattner | 2008-05-09 | 3 | -0/+33 |
* | restore doxygen comment. | Chris Lattner | 2008-05-09 | 1 | -17/+16 |
* | <rdar://problem/5917641> use getMemBufferCopy if supplied buffer is not alrea... | Nick Kledzik | 2008-05-09 | 2 | -4/+20 |
* | Check for validity of aliasee pointer before dereference. | Anton Korobeynikov | 2008-05-08 | 1 | -1/+3 |
* | Use movq to move low half of XMM register and zero-extend the rest. | Evan Cheng | 2008-05-08 | 2 | -1/+12 |
* | conservatively say that volatile stores read memory. | Chris Lattner | 2008-05-08 | 1 | -2/+3 |
* | Revertin 50867 since it was breaking the build. | Tanya Lattner | 2008-05-08 | 2 | -64/+53 |
* | store can't read from memory. | Chris Lattner | 2008-05-08 | 1 | -1/+0 |
* | Add -E and -S options | Mikhail Glushenkov | 2008-05-08 | 1 | -0/+5 |
* | A small refactoring (extract method) + some comment fixes. | Mikhail Glushenkov | 2008-05-08 | 2 | -53/+64 |
* | Remove dead return. Thanks to Bill for the review! | Chris Lattner | 2008-05-08 | 1 | -2/+0 |
* | Improve pass documentation and comments. | Gordon Henriksen | 2008-05-08 | 6 | -102/+136 |
* | More than just loads can read from memory: readonly calls like strlen | Chris Lattner | 2008-05-08 | 2 | -4/+32 |