| Commit message (Expand) | Author | Age | Files | Lines |
* | During the CodeGenPrepare we often lower intrinsics (such as objsize) | Nadav Rotem | 2012-08-14 | 8 | -22/+62 |
* | Grammar. | Eric Christopher | 2012-08-14 | 1 | -1/+1 |
* | Avoid undefined behavior in DenseMap::shrink_and_clear(). Log2_32_Ceil(0) | Richard Smith | 2012-08-14 | 1 | -2/+3 |
* | Typo. | Eric Christopher | 2012-08-14 | 1 | -1/+1 |
* | llvm/test/CodeGen/ARM/floorf.ll: Add explicit -mtriple=arm-unknown-unknown, o... | NAKAMURA Takumi | 2012-08-14 | 1 | -1/+1 |
* | Add a roundToIntegral method to APFloat, which can be parameterized over vari... | Owen Anderson | 2012-08-13 | 5 | -0/+116 |
* | Transfer weights in transferSuccessorsAndUpdatePHIs(). | Jakob Stoklund Olesen | 2012-08-13 | 1 | -5/+7 |
* | Print out MachineBasicBlock successor weights when available. | Jakob Stoklund Olesen | 2012-08-13 | 1 | -1/+4 |
* | LICM uses AliasSet information to hoist and sink instructions. However, other... | Nadav Rotem | 2012-08-13 | 2 | -1/+7 |
* | MemoryDependenceAnalysis attempts to find the first memory dependency for fun... | Nadav Rotem | 2012-08-13 | 2 | -2/+41 |
* | ARM: Move Thumb2 tests to Thumb2 test file and fix CHECK lines. | Jim Grosbach | 2012-08-13 | 2 | -8/+10 |
* | Remove the TII::scheduleTwoAddrSource() hook. | Jakob Stoklund Olesen | 2012-08-13 | 4 | -66/+0 |
* | Rename test since it's not linux-specific. | Bill Wendling | 2012-08-13 | 1 | -0/+0 |
* | ARM: enable struct byval for AAPCS-VFP. | Manman Ren | 2012-08-13 | 1 | -0/+3 |
* | Whitespace cleanup. | Bill Wendling | 2012-08-13 | 1 | -7/+7 |
* | Count triangles and diamonds in early if-conversion. | Jakob Stoklund Olesen | 2012-08-13 | 1 | -0/+16 |
* | Delete dead typedef. | Jakob Stoklund Olesen | 2012-08-13 | 1 | -2/+0 |
* | Handle extra Tail predecessors in if-conversion. | Jakob Stoklund Olesen | 2012-08-13 | 2 | -20/+97 |
* | [Hexagon] Don't mark callee saved registers as clobbered by a tail call | Arnold Schwaighofer | 2012-08-13 | 2 | -9/+17 |
* | Fix failure on Atom bot due to r161769 | Manman Ren | 2012-08-13 | 1 | -1/+1 |
* | Do not optimize (or (and X,Y), Z) into BFI and other sequences if the AND ISD... | Nadav Rotem | 2012-08-13 | 2 | -1/+22 |
* | X86: move Int_CVTSD2SSrr, Int_CVTSI2SSrr, Int_CVTSI2SDrr, Int_CVTSS2SDrr from | Manman Ren | 2012-08-13 | 2 | -6/+20 |
* | Add support for the %H output modifier. | Eric Christopher | 2012-08-13 | 2 | -2/+24 |
* | Ignore known externally-homed tools. | David Blaikie | 2012-08-13 | 0 | -0/+0 |
* | X86: when auto-detecting the subtarget features, make sure use IsIntel to detect | Manman Ren | 2012-08-13 | 1 | -2/+2 |
* | Fix a documentation typo. | Nadav Rotem | 2012-08-13 | 1 | -2/+2 |
* | [asan] remove the code for --asan-merge-callbacks as it appears to be a bad i... | Kostya Serebryany | 2012-08-13 | 1 | -78/+8 |
* | Added test for non-static use of cl::opt (fixed in r160170) | Alexander Kornienko | 2012-08-13 | 1 | -0/+11 |
* | Add test for previous commit correcting NEON load patterns. | Tim Northover | 2012-08-13 | 1 | -0/+102 |
* | Use correct loads for vector types during extending-load operations. | Tim Northover | 2012-08-13 | 1 | -36/+36 |
* | Tidy up VSETCC lowering code a bit more by adding an llvm_unreachable and put... | Craig Topper | 2012-08-13 | 1 | -7/+9 |
* | Refactor code a bit to share commonalities. No functional change intended. | Craig Topper | 2012-08-13 | 1 | -20/+21 |
* | Fix an unused variable warning from r161742. | Craig Topper | 2012-08-13 | 1 | -3/+0 |
* | Remove the LowerMMXCONCAT_VECTORS function. It could never execute because th... | Craig Topper | 2012-08-13 | 3 | -57/+1 |
* | Give this test an explicit triple. | Nick Lewycky | 2012-08-12 | 1 | -1/+1 |
* | When emitting the PC range in an FDE, use the same data encoding for both ends | Nick Lewycky | 2012-08-12 | 2 | -9/+34 |
* | Remove call to setOperationAction for SETCC of v4f32. SETCC returns an intege... | Craig Topper | 2012-08-12 | 1 | -1/+0 |
* | Remove unnecessary call to setOperationAction for SETCC of v2i64 under SSE42.... | Craig Topper | 2012-08-12 | 1 | -3/+0 |
* | Revert 161581: Patch to implement UMLAL/SMLAL instructions for the ARM | Arnold Schwaighofer | 2012-08-12 | 7 | -339/+17 |
* | Change addTypeForNeon to use MVT instead of EVT so all the calls to getSimple... | Craig Topper | 2012-08-12 | 2 | -51/+46 |
* | Make replace many calls to getSizeInBits() with is128BitVector/is256BitVector | Craig Topper | 2012-08-12 | 1 | -60/+65 |
* | Use MVT.isXBitVector instead of EVT.isXBitVector when setting up operation ac... | Craig Topper | 2012-08-12 | 1 | -41/+35 |
* | fix PR13577, an issue introduced by r161687 | Michael Liao | 2012-08-11 | 2 | -1/+27 |
* | Create isXBitVector methods in MVT and call them from EVT. This allows target... | Craig Topper | 2012-08-11 | 1 | -19/+39 |
* | Move setOperationAction for CONCAT_VECTORS for 256-bit vectors into loop sinc... | Craig Topper | 2012-08-11 | 1 | -7/+2 |
* | MachineCSE: Hoist isConstantPhysReg out of the loop, it checks for overlaps a... | Benjamin Kramer | 2012-08-11 | 1 | -4/+3 |
* | PR13578: Teach MachineCSE that instructions that use a constant register can ... | Benjamin Kramer | 2012-08-11 | 3 | -4/+29 |
* | Tidy up indentation. No functional change. | Craig Topper | 2012-08-11 | 1 | -25/+25 |
* | Fix a cast that was casting away 'const' unnecessarily | Craig Topper | 2012-08-11 | 1 | -1/+1 |
* | Add a couple default: llvm_unreachable() to some switch statements. Fix a bad... | Craig Topper | 2012-08-11 | 1 | -2/+4 |