| Commit message (Expand) | Author | Age | Files | Lines |
* | Update comments. | Dan Gohman | 2008-05-12 | 2 | -5/+4 |
* | Fix a compile error on compilers that still want a return value | Dan Gohman | 2008-05-12 | 1 | -0/+1 |
* | Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma! | Dan Gohman | 2008-05-12 | 1 | -0/+1 |
* | Move the various analyses used by GVN into static variables so we don't have ... | Owen Anderson | 2008-05-12 | 1 | -30/+21 |
* | prune #includes. | Chris Lattner | 2008-05-12 | 1 | -3/+0 |
* | Add a new SparsePropagation analysis utility, which allows you to do | Chris Lattner | 2008-05-12 | 1 | -0/+320 |
* | Make constructors target-specific. This fixes problems where the path would | Nick Lewycky | 2008-05-11 | 2 | -1/+17 |
* | 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 |
* | Fix linking of internal aliases | Anton Korobeynikov | 2008-05-10 | 1 | -28/+55 |
* | merge of use-diet branch to trunk | Gabor Greif | 2008-05-10 | 7 | -262/+598 |
* | When transforming a vector_shuffle to a load, the base address must not be an... | Evan Cheng | 2008-05-10 | 1 | -0/+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 | 1 | -7/+11 |
* | 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 | 1 | -0/+2 |
* | 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 | 5 | -29/+90 |
* | 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 |
* | 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 |
* | Implement PR2298. This transforms: | Chris Lattner | 2008-05-09 | 1 | -0/+13 |
* | restore doxygen comment. | Chris Lattner | 2008-05-09 | 1 | -17/+16 |
* | 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 | 1 | -1/+2 |
* | conservatively say that volatile stores read memory. | Chris Lattner | 2008-05-08 | 1 | -2/+3 |
* | store can't read from memory. | Chris Lattner | 2008-05-08 | 1 | -1/+0 |
* | 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 | 5 | -26/+38 |
* | More than just loads can read from memory: readonly calls like strlen | Chris Lattner | 2008-05-08 | 1 | -4/+4 |
* | Make instcombine's DSE respect loads as well as stores. It is not safe to | Chris Lattner | 2008-05-08 | 1 | -1/+1 |
* | add a new Instruction::mayReadFromMemory predicate, make | Chris Lattner | 2008-05-08 | 1 | -2/+19 |
* | Check linkage. | Devang Patel | 2008-05-08 | 1 | -1/+1 |
* | Get exception handling working again on 64 bit | Duncan Sands | 2008-05-08 | 1 | -1/+2 |
* | Add support for constant folding the 'offsetof' pattern even if the | Chris Lattner | 2008-05-08 | 1 | -16/+23 |
* | Handle vector move / load which zero the destination register top bits (i.e. ... | Evan Cheng | 2008-05-08 | 5 | -144/+158 |
* | Turn StripPointerCast() into a method | Anton Korobeynikov | 2008-05-07 | 7 | -37/+34 |
* | Add a new LibCallAliasAnalysis pass, which is parameterized | Chris Lattner | 2008-05-07 | 1 | -0/+169 |
* | Output correct exception handling and frame info | Duncan Sands | 2008-05-07 | 3 | -54/+49 |
* | Add a new interface for describing the behavior of library calls. This | Chris Lattner | 2008-05-07 | 1 | -0/+65 |
* | Yet another nasty spiller bug. | Evan Cheng | 2008-05-07 | 1 | -14/+19 |
* | Fix a bug in the ComputeMaskedBits logic for multiply. | Dan Gohman | 2008-05-07 | 2 | -4/+4 |
* | If weak GlobalVariable was bitcast'ed to different type during linking | Anton Korobeynikov | 2008-05-06 | 1 | -1/+1 |
* | Make StripPointerCast a common function (should we mak it method of Value ins... | Anton Korobeynikov | 2008-05-06 | 7 | -37/+37 |
* | We need to update PHIs containing the exiting block, not the exit block. We ... | Owen Anderson | 2008-05-06 | 1 | -3/+8 |
* | Fix typo. | Devang Patel | 2008-05-06 | 1 | -1/+1 |