| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Remove the showline argument from the SMDiagnostic constructor | Dan Gohman | 2011-03-01 | 1 | -3/+2 | |
| | | | | | | | which constructs a diagnostic with no line to show. llvm-svn: 126787 | |||||
| * | Code simplification. | Dan Gohman | 2011-03-01 | 1 | -3/+3 | |
| | | | | | llvm-svn: 126786 | |||||
| * | Simplify this code. | Dan Gohman | 2011-03-01 | 1 | -2/+1 | |
| | | | | | llvm-svn: 126785 | |||||
| * | Change directory_entry::path() to return a const std::string & instead of | Dan Gohman | 2011-03-01 | 1 | -1/+1 | |
| | | | | | | | | | a StringRef, for the benefit of clients that want the result as a nul-terminated string. Clients that expect a StringRef will get one via the implicit conversion. llvm-svn: 126784 | |||||
| * | Stop computing the number of uses twice per value in CodeGenPrepare's sinking of | Cameron Zwarich | 2011-03-01 | 1 | -3/+4 | |
| | | | | | | | | | addressing code. On 403.gcc this almost halves CodeGenPrepare time and reduces total llc time by 9.5%. Unfortunately, getNumUses() is still the hottest function in llc. llvm-svn: 126782 | |||||
| * | Keep track of which stage produced a live range, and bypass earlier stages ↵ | Jakob Stoklund Olesen | 2011-03-01 | 1 | -20/+76 | |
| | | | | | | | | | | | | | | | | | | | | | | | when revisiting. This effectively disables the 'turbo' functionality of the greedy register allocator where all new live ranges created by splitting would be reconsidered as if they were originals. There are two reasons for doing this, 1. It guarantees that the algorithm terminates. Early versions were prone to infinite looping in certain corner cases. 2. It is a 2x speedup. We can skip a lot of unnecessary interference checks that won't lead to good splitting anyway. The problem is that region splitting only gets one shot, so it should probably be changed to target multiple physical registers at once. Local live range splitting is still 'turbo' enabled. It only accounts for a small fraction of compile time, so it is probably not necessary to do anything about that. llvm-svn: 126781 | |||||
| * | Add datalayout information for the IEEE quad precision fp128 type. | Duncan Sands | 2011-03-01 | 1 | -4/+4 | |
| | | | | | llvm-svn: 126780 | |||||
| * | Revert PathV2 changes, as sys::fs::unique_file is not finished yet. | Dan Gohman | 2011-03-01 | 2 | -41/+38 | |
| | | | | | llvm-svn: 126773 | |||||
| * | Added missing va_end(). | Talin | 2011-03-01 | 2 | -1/+2 | |
| | | | | | llvm-svn: 126759 | |||||
| * | Add a few missed unary cases when legalizing vector results. Put some cases | Duncan Sands | 2011-03-01 | 1 | -31/+43 | |
| | | | | | | | in alphabetical order. llvm-svn: 126745 | |||||
| * | Make InstCombiner::FoldAndOfICmps create a ConstantRange that's the | Anders Carlsson | 2011-03-01 | 2 | -8/+21 | |
| | | | | | | | | | | intersection of the LHS and RHS ConstantRanges and return "false" when the range is empty. This simplifies some code and catches some extra cases. llvm-svn: 126744 | |||||
| * | add a missing const qualifier for consistency. | Chris Lattner | 2011-03-01 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126742 | |||||
| * | Optimize "icmp pred (urem X, Y), Y" --> true/false depending on pred. There's | Nick Lewycky | 2011-03-01 | 2 | -0/+34 | |
| | | | | | | | | more work to do here, "icmp ult (urem X, 10), 11" doesn't optimize away yet. Fixes example 3 from PR9343! llvm-svn: 126741 | |||||
| * | trailing whitespace. | Jim Grosbach | 2011-03-01 | 3 | -93/+93 | |
| | | | | | llvm-svn: 126733 | |||||
| * | Generalize the register matching code in DAGISel a bit. | Jim Grosbach | 2011-03-01 | 5 | -21/+58 | |
| | | | | | llvm-svn: 126731 | |||||
| * | Narrow right shifts need to encode their immediates differently from a normal | Bill Wendling | 2011-03-01 | 7 | -5/+72 | |
| | | | | | | | | | | | shift. 16-bit: imm6<5:3> = '001', 8 - <imm> is encded in imm6<2:0> 32-bit: imm6<5:4> = '01',16 - <imm> is encded in imm6<3:0> 64-bit: imm6<5> = '1', 32 - <imm> is encded in imm6<4:0> llvm-svn: 126723 | |||||
| * | Add an obvious missing safety check to DAE::RemoveDeadArgumentsFromCallers. | Eli Friedman | 2011-03-01 | 2 | -1/+14 | |
| | | | | | llvm-svn: 126720 | |||||
| * | add a note | Chris Lattner | 2011-03-01 | 1 | -0/+15 | |
| | | | | | llvm-svn: 126719 | |||||
| * | Unbreak CMake build. | Ted Kremenek | 2011-03-01 | 1 | -5/+4 | |
| | | | | | llvm-svn: 126717 | |||||
| * | Unbreak CMake build. | Ted Kremenek | 2011-02-28 | 1 | -1/+0 | |
| | | | | | llvm-svn: 126715 | |||||
| * | Add an END_WITH_NULL accessor for ConstantStruct. | Talin | 2011-02-28 | 2 | -2/+15 | |
| | | | | | llvm-svn: 126714 | |||||
| * | update cmake | Chris Lattner | 2011-02-28 | 1 | -1/+0 | |
| | | | | | llvm-svn: 126694 | |||||
| * | Fix .fpu printing in ARM assembly, regarding bug ↵ | Renato Golin | 2011-02-28 | 1 | -4/+38 | |
| | | | | | | | http://llvm.org/bugs/show_bug.cgi?id=8931 llvm-svn: 126689 | |||||
| * | Add missing whitespace in the formatting. | Kevin Enderby | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126687 | |||||
| * | Make all static functions become static class methods. Move shared ↵ | Jan Sjödin | 2011-02-28 | 5 | -138/+203 | |
| | | | | | | | (duplicated) functions to new MCELF class. llvm-svn: 126686 | |||||
| * | Use the correct shift amount type. | Owen Anderson | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126684 | |||||
| * | Clean whitespace. | Owen Anderson | 2011-02-28 | 1 | -3/+3 | |
| | | | | | llvm-svn: 126683 | |||||
| * | fix a signed comparison warning. | Chris Lattner | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126682 | |||||
| * | Delete obsolete test. | Dan Gohman | 2011-02-28 | 1 | -46/+0 | |
| | | | | | llvm-svn: 126680 | |||||
| * | Fix warning when building with clang++. | Owen Anderson | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126679 | |||||
| * | Delete the GEPSplitter experiment. | Dan Gohman | 2011-02-28 | 5 | -98/+0 | |
| | | | | | llvm-svn: 126671 | |||||
| * | Delete the SimplifyHalfPowrLibCalls pass, which was unused, and | Dan Gohman | 2011-02-28 | 5 | -169/+0 | |
| | | | | | | | only existed as the result of a misunderstanding. llvm-svn: 126669 | |||||
| * | Delete the LiveValues pass. I won't get get back to the project it | Dan Gohman | 2011-02-28 | 6 | -308/+0 | |
| | | | | | | | was started for in the foreseeable future. llvm-svn: 126668 | |||||
| * | Fix typo introduced by r126661: "Fix a typo which ..." | Jakob Stoklund Olesen | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126666 | |||||
| * | [AVX] Add decode support for VUNPCKLPS/D instructions, both 128-bit | David Greene | 2011-02-28 | 4 | -30/+120 | |
| | | | | | | | | | and 256-bit forms. Because the number of elements in a vector does not determine the vector type (4 elements could be v4f32 or v4f64), pass the full type of the vector to decode routines. llvm-svn: 126664 | |||||
| * | Fix the arm's disassembler for blx that was building an MCInst without the | Kevin Enderby | 2011-02-28 | 2 | -1/+16 | |
| | | | | | | | needed two predicate operands before the imm operand. llvm-svn: 126662 | |||||
| * | Fix a typo which cause dag combine crash. rdar://9059537. | Evan Cheng | 2011-02-28 | 2 | -1/+15 | |
| | | | | | llvm-svn: 126661 | |||||
| * | Support for byval parameters on ARM. Will be enabled by a forthcoming | Stuart Hastings | 2011-02-28 | 5 | -9/+53 | |
| | | | | | | | patch to the front-end. Radar 7662569. llvm-svn: 126655 | |||||
| * | Windows codegen also dies on this, so restrict to the platform it was | Duncan Sands | 2011-02-28 | 1 | -1/+1 | |
| | | | | | | | actually tested on. llvm-svn: 126652 | |||||
| * | Add branch hinting for SPU. | Kalle Raiskila | 2011-02-28 | 4 | -5/+94 | |
| | | | | | | | | The implemented algorithm is overly simplistic (just speculate all branches are taken)- this is work in progress. llvm-svn: 126651 | |||||
| * | Make this test x86 specific because the ARM backend can't handle it. | Duncan Sands | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126650 | |||||
| * | Teach SimplifyCFG that (switch (select cond, X, Y)) is better expressed as a ↵ | Frits van Bommel | 2011-02-28 | 2 | -1/+164 | |
| | | | | | | | | | branch. Based on a patch by Alistair Lynn. llvm-svn: 126647 | |||||
| * | Fix comment. | Nick Lewycky | 2011-02-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 126645 | |||||
| * | srem doesn't actually have the same resulting sign as its numerator, you could | Nick Lewycky | 2011-02-28 | 3 | -37/+5 | |
| | | | | | | | | also have a zero when numerator = denominator. Reverts parts of r126635 and r126637. llvm-svn: 126644 | |||||
| * | Teach InstCombine to fold "(shr exact X, Y) == 0" --> X == 0, fixing #1 from | Nick Lewycky | 2011-02-28 | 2 | -5/+30 | |
| | | | | | | | PR9343. llvm-svn: 126643 | |||||
| * | Teach value tracking to make use of flags in more situations. | Nick Lewycky | 2011-02-28 | 1 | -0/+25 | |
| | | | | | llvm-svn: 126642 | |||||
| * | Teach ValueTracking to look at the dividend when determining the sign bit of an | Nick Lewycky | 2011-02-28 | 1 | -0/+12 | |
| | | | | | | | srem instruction. llvm-svn: 126637 | |||||
| * | Add preliminary support for .f32 in the PTX backend. | Che-Liang Chiou | 2011-02-28 | 11 | -10/+360 | |
| | | | | | | | | | | | | | - Add appropriate TableGen patterns for fadd, fsub, fmul. - Add .f32 as the PTX type for the LLVM float type. - Allow parameters, return values, and global variable declarations to accept the float type. - Add appropriate test cases. Patch by Justin Holewinski llvm-svn: 126636 | |||||
| * | The sign of an srem instruction is the sign of its dividend (the first | Nick Lewycky | 2011-02-28 | 2 | -3/+23 | |
| | | | | | | | | argument), regardless of the divisor. Teach instcombine about this and fix test7 in PR9343! llvm-svn: 126635 | |||||
| * | Don't install libUnitTestMain.a. It might be useless without gtest headers. | NAKAMURA Takumi | 2011-02-28 | 1 | -0/+2 | |
| | | | | | llvm-svn: 126632 | |||||

