| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix sort predicate. qsort(3)'s predicate semantics differ from std::sort's. F... | Benjamin Kramer | 2010-12-13 | 1 | -1/+1 |
* | Add a couple dag combines to transform mulhi/mullo into a wider multiply | Chris Lattner | 2010-12-13 | 1 | -0/+36 |
* | reinstate my patch: the miscompile was caused by an inverted branch in the | Chris Lattner | 2010-12-13 | 1 | -3/+6 |
* | Completely disable the optimization I added in r121680 until | Chris Lattner | 2010-12-13 | 1 | -3/+6 |
* | remove the verbose-asm "constant pool double" comments that we were printing | Chris Lattner | 2010-12-13 | 1 | -8/+0 |
* | Make simplifycfg reprocess newly formed "br (cond1 | cond2)" conditions | Chris Lattner | 2010-12-13 | 1 | -5/+12 |
* | make this logic a bit simpler. | Chris Lattner | 2010-12-13 | 1 | -21/+20 |
* | split all the guts of SimplifyCFGOpt::run out into one function | Chris Lattner | 2010-12-13 | 1 | -374/+441 |
* | fix a bug in r121680 that upset the various buildbots. | Chris Lattner | 2010-12-13 | 1 | -0/+7 |
* | refactor the speculative execution logic to be factored into the cond branch ... | Chris Lattner | 2010-12-13 | 1 | -26/+22 |
* | simplify a bunch of code. | Chris Lattner | 2010-12-13 | 1 | -15/+4 |
* | move HoistThenElseCodeToIf up to a more logical and efficient-to-handle place. | Chris Lattner | 2010-12-13 | 1 | -7/+11 |
* | move 'MergeBlocksIntoPredecessor' call earlier. Use | Chris Lattner | 2010-12-13 | 1 | -20/+9 |
* | factor new code out to a SimplifyBranchOnICmpChain helper function. | Chris Lattner | 2010-12-13 | 1 | -77/+91 |
* | enhance the "change or icmp's into switch" xform to handle one value in an | Chris Lattner | 2010-12-13 | 1 | -3/+45 |
* | merge two very similar functions into one that has a bool argument. | Chris Lattner | 2010-12-13 | 1 | -47/+26 |
* | Disable auto-detection of AVX support since AVX codegen support is not ready. | Evan Cheng | 2010-12-13 | 2 | -2/+5 |
* | don't bother handling non-canonical icmp's | Chris Lattner | 2010-12-13 | 1 | -11/+9 |
* | inline a function, making the result much simpler. | Chris Lattner | 2010-12-13 | 1 | -27/+11 |
* | Fix my previous patch to handle a degenerate case that the llvm-gcc | Chris Lattner | 2010-12-13 | 1 | -0/+16 |
* | convert some methods to be static functions | Chris Lattner | 2010-12-13 | 1 | -25/+23 |
* | zap two more std::sorts. | Chris Lattner | 2010-12-13 | 1 | -2/+2 |
* | fix a fairly serious oversight with switch formation from | Chris Lattner | 2010-12-13 | 1 | -1/+97 |
* | simplify code and reduce indentation | Chris Lattner | 2010-12-13 | 1 | -32/+30 |
* | convert an std::sort to array_pod_sort. | Chris Lattner | 2010-12-13 | 1 | -2/+8 |
* | move the "br (X == 0 | X == 1), T, F" -> switch optimization to a new | Chris Lattner | 2010-12-13 | 1 | -57/+56 |
* | reduce indentation and generally simplify code, no functionality change. | Chris Lattner | 2010-12-13 | 1 | -333/+309 |
* | use getFirstNonPHIOrDbg to simplify this code. | Chris Lattner | 2010-12-13 | 1 | -9/+5 |
* | reduce indentation by using continue, no functionality change. | Chris Lattner | 2010-12-13 | 1 | -38/+41 |
* | add a note | Chris Lattner | 2010-12-13 | 1 | -0/+36 |
* | Missed some ADDI <-> ADDIK conversions in 121649. | Wesley Peck | 2010-12-12 | 1 | -8/+8 |
* | MBlaze delay slot filler was not capable of using ADDK and variants to fill d... | Wesley Peck | 2010-12-12 | 1 | -1/+18 |
* | The ADD and ADDK (and all variants) instructions where flip-flopped in the MB... | Wesley Peck | 2010-12-12 | 8 | -49/+49 |
* | Remove useless dynamic_cast<>(). | Tobias Grosser | 2010-12-12 | 1 | -2/+1 |
* | 1. Change MBlaze indirect branches to use absolute branch BRALD instead of pc... | Wesley Peck | 2010-12-12 | 5 | -12/+158 |
* | Catch attempts to remove a deleted node from the CSE maps. Better to | Duncan Sands | 2010-12-12 | 1 | -3/+2 |
* | Generalize the and-icmp-select instcombine further by allowing selects of the... | Benjamin Kramer | 2010-12-11 | 2 | -16/+22 |
* | Factor the (x & 2^n) ? 2^m : 0 instcombine into its own method and generalize it | Benjamin Kramer | 2010-12-11 | 2 | -66/+54 |
* | (or (and (shl A, #shamt), mask), B) => ARMbfi B, A, ~mask where lsb(mask) == ... | Evan Cheng | 2010-12-11 | 2 | -17/+38 |
* | Add named timer groups for the different stages of register allocation. | Jakob Stoklund Olesen | 2010-12-11 | 3 | -9/+23 |
* | Move MRI into RegAllocBase. Clean up debug output a bit. | Jakob Stoklund Olesen | 2010-12-10 | 3 | -31/+12 |
* | Add FIXME | Jim Grosbach | 2010-12-10 | 1 | -0/+2 |
* | Remove extraneous close parenthesis. | Nick Lewycky | 2010-12-10 | 1 | -1/+1 |
* | Move variable that's unused in an NDEBUG build inside the DEBUG() macro, fixing | Nick Lewycky | 2010-12-10 | 1 | -3/+4 |
* | Attempt to get Thumb2 branch fixups working properly. | Owen Anderson | 2010-12-10 | 2 | -3/+2 |
* | Force the greedy register allocator to always use the inline spiller. | Jakob Stoklund Olesen | 2010-12-10 | 3 | -7/+8 |
* | Rip out live range splitting support from the inline spiller. | Jakob Stoklund Olesen | 2010-12-10 | 1 | -56/+1 |
* | Fix merge error in my last fix to Thumb2 vldr fixups. | Owen Anderson | 2010-12-10 | 1 | -1/+1 |
* | Fixups for Thumb2 vldr's need to have the effective PC aligned as well. | Owen Anderson | 2010-12-10 | 2 | -3/+4 |
* | The MCFixupKindInfo table needs to be in the order that the enums were | Bill Wendling | 2010-12-10 | 1 | -16/+19 |