| Commit message (Expand) | Author | Age | Files | Lines |
* | reinstate my patch: the miscompile was caused by an inverted branch in the | Chris Lattner | 2010-12-13 | 2 | -30/+54 |
* | Completely disable the optimization I added in r121680 until | Chris Lattner | 2010-12-13 | 2 | -30/+34 |
* | 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 | 2 | -5/+77 |
* | 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 | 2 | -0/+36 |
* | 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 |
* | make these tests a bit less fragile | Chris Lattner | 2010-12-13 | 2 | -12/+6 |
* | 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 | 2 | -5/+70 |
* | merge two tests | Chris Lattner | 2010-12-13 | 2 | -30/+42 |
* | 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 | 2 | -0/+39 |
* | 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 | 2 | -2/+141 |
* | 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 |
* | Add support for using the `!if' operator when initializing variables: | Bill Wendling | 2010-12-13 | 4 | -21/+127 |
* | 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 |
* | Move <map> include out of .h and into .cpp. | Bill Wendling | 2010-12-13 | 2 | -1/+1 |
* | Merge DEBUG statements. | Bill Wendling | 2010-12-13 | 1 | -8/+8 |
* | eliminate the Records global variable, patch by Garrison Venn! | Chris Lattner | 2010-12-13 | 21 | -59/+104 |
* | clean up RecordKeeper::getAllDerivedDefinitions, patch by Garrison Venn! | Chris Lattner | 2010-12-13 | 1 | -1/+1 |
* | further fixes. | Chris Lattner | 2010-12-13 | 1 | -2/+2 |
* | add a note | Chris Lattner | 2010-12-13 | 1 | -0/+36 |
* | Missed some ADDI <-> ADDIK conversions in 121649. | Wesley Peck | 2010-12-12 | 2 | -10/+9 |
* | Reverting commit to LLVMLibDeps that was inadvertently done in 121649. | Wesley Peck | 2010-12-12 | 1 | -51/+50 |
* | 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 | 9 | -99/+100 |
* | Remove useless dynamic_cast<>(). | Tobias Grosser | 2010-12-12 | 1 | -2/+1 |
* | Regen configure | Peter Collingbourne | 2010-12-12 | 1 | -1003/+1360 |
* | Fix paths; AutoRegen.sh changes its current working directory to be the | Peter Collingbourne | 2010-12-12 | 2 | -7/+11 |
* | 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 |
* | fix typo | Chris Lattner | 2010-12-12 | 1 | -1/+1 |
* | Generalize the and-icmp-select instcombine further by allowing selects of the... | Benjamin Kramer | 2010-12-11 | 3 | -16/+72 |
* | Factor the (x & 2^n) ? 2^m : 0 instcombine into its own method and generalize it | Benjamin Kramer | 2010-12-11 | 3 | -66/+79 |
* | (or (and (shl A, #shamt), mask), B) => ARMbfi B, A, ~mask where lsb(mask) == ... | Evan Cheng | 2010-12-11 | 4 | -19/+62 |
* | Add named timer groups for the different stages of register allocation. | Jakob Stoklund Olesen | 2010-12-11 | 3 | -9/+23 |