| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 | Edwin Török | 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 |
* | Fix typo and indentation. | Nick Lewycky | 2008-05-06 | 1 | -2/+2 |
* | Fix renamePathOnDisk on Win32, patch from David Leon. This fixes problems with | Nick Lewycky | 2008-05-06 | 1 | -1/+1 |
* | fix typo Duncan noticed | Chris Lattner | 2008-05-06 | 1 | -1/+1 |
* | Match things like 'armv5tejl-unknown-linux-gnu' for PR2290 | Chris Lattner | 2008-05-06 | 1 | -1/+2 |
* | Make several variable declarations static. | Dan Gohman | 2008-05-06 | 17 | -34/+36 |
* | Remove uses of llvm/System/IncludeFile.h that are no longer needed. | Dan Gohman | 2008-05-06 | 15 | -38/+0 |
* | Instead of enumerating each opcode that isn't handled that | Dan Gohman | 2008-05-06 | 1 | -11/+1 |
* | Correct the value of LowBits in srem and urem handling in | Dan Gohman | 2008-05-06 | 2 | -9/+9 |
* | Fix a broken doxygen comment, and reword it for clarity. | Dan Gohman | 2008-05-06 | 1 | -2/+3 |
* | add a micro optzn. | Chris Lattner | 2008-05-05 | 1 | -0/+18 |
* | Improved generated code for atomic operators | Mon P Wang | 2008-05-05 | 1 | -16/+16 |
* | Code clean up. No functionality change. | Evan Cheng | 2008-05-05 | 1 | -20/+21 |
* | Fix: Some classes were derived from a class in an anonymous namespace, but they | Bill Wendling | 2008-05-05 | 1 | -0/+2 |
* | Fix a crash when threading a block that includes a MRV call result. | Chris Lattner | 2008-05-05 | 1 | -4/+19 |
* | Added addition atomic instrinsics and, or, xor, min, and max. | Mon P Wang | 2008-05-05 | 10 | -47/+421 |