| Commit message (Expand) | Author | Age | Files | Lines |
* | Introduce a new array_pod_sort function and switch LSR to use it | Chris Lattner | 2008-12-01 | 1 | -1/+1 |
* | Eliminate use of setvector for the DeadInsts set, just use a smallvector. | Chris Lattner | 2008-12-01 | 1 | -17/+31 |
* | DeleteTriviallyDeadInstructions is always passed the | Chris Lattner | 2008-12-01 | 1 | -10/+9 |
* | simplify DeleteTriviallyDeadInstructions again, unlike my previous | Chris Lattner | 2008-12-01 | 1 | -20/+13 |
* | simplify these patterns using m_Specific. No need to grep for | Chris Lattner | 2008-12-01 | 1 | -16/+6 |
* | Teach jump threading to clean up after itself, DCE and constfolding the | Chris Lattner | 2008-12-01 | 1 | -1/+24 |
* | The PreVerifier pass preserves everything. In practice, this | Chris Lattner | 2008-12-01 | 1 | -0/+4 |
* | Change instcombine to use FoldPHIArgGEPIntoPHI to fold two operand PHIs | Chris Lattner | 2008-12-01 | 1 | -17/+5 |
* | Teach inst combine to merge GEPs through PHIs. This is really | Chris Lattner | 2008-12-01 | 1 | -16/+95 |
* | Make GVN be more intelligent about redundant load | Chris Lattner | 2008-12-01 | 1 | -2/+19 |
* | Reimplement the non-local dependency data structure in terms of a sorted | Chris Lattner | 2008-12-01 | 2 | -72/+116 |
* | Implement ((A|B)&1)|(B&-2) -> (A&1) | B transformation. This also takes care of | Bill Wendling | 2008-12-01 | 2 | -6/+67 |
* | Cache analyses in ivars and add some useful DEBUG output. | Chris Lattner | 2008-12-01 | 1 | -37/+30 |
* | improve indentation, do cheap checks before expensive ones, | Chris Lattner | 2008-11-30 | 1 | -52/+51 |
* | Eliminate the DepResultTy abstraction. It is now completely | Chris Lattner | 2008-11-30 | 1 | -48/+43 |
* | Minor cleanup: use getTrue and getFalse where appropriate. No | Eli Friedman | 2008-11-30 | 1 | -20/+20 |
* | Some minor cleanups to instcombine; no functionality change. | Eli Friedman | 2008-11-30 | 1 | -56/+17 |
* | Cache TargetData/AliasAnalysis in the pass instead of calling | Chris Lattner | 2008-11-30 | 1 | -18/+18 |
* | Add instruction combining for ((A&~B)|(~A&B)) -> A^B and all permutations. | Bill Wendling | 2008-11-30 | 2 | -6/+23 |
* | Implement (A&((~A)|B)) -> A&B transformation in the instruction combiner. This | Bill Wendling | 2008-11-30 | 2 | -10/+19 |
* | Forgot one remaining call to getSExtValue(). | Bill Wendling | 2008-11-30 | 1 | -1/+1 |
* | getSExtValue() doesn't work for ConstantInts with bitwidth > 64 bits. Use all | Bill Wendling | 2008-11-30 | 1 | -5/+5 |
* | Optimize memmove and memset into the LLVM builtins. Note that these | Eli Friedman | 2008-11-30 | 1 | -4/+57 |
* | A couple small cleanups, plus a new potential optimization. | Eli Friedman | 2008-11-30 | 1 | -3/+29 |
* | Moving potential optimizations out of PR2330 into lib/Target/README.txt. | Eli Friedman | 2008-11-30 | 1 | -0/+262 |
* | Followup to r60283: optimize arbitrary width signed divisions as well | Eli Friedman | 2008-11-30 | 1 | -71/+34 |
* | Fix for PR2164: allow transforming arbitrary-width unsigned divides into | Eli Friedman | 2008-11-30 | 1 | -95/+65 |
* | Don't make TwoToExp signed by default. | Bill Wendling | 2008-11-30 | 1 | -2/+1 |
* | From Hacker's Delight: | Bill Wendling | 2008-11-30 | 1 | -8/+10 |
* | APIntify a test which is potentially unsafe otherwise, and fix the | Eli Friedman | 2008-11-30 | 1 | -3/+10 |
* | Instcombine was illegally transforming -X/C into X/-C when either X or C | Bill Wendling | 2008-11-30 | 1 | -3/+20 |
* | Two changes: Make getDependency remove QueryInst for a dirty record's | Chris Lattner | 2008-11-30 | 1 | -18/+26 |
* | introduce a typedef, no functionality change. | Chris Lattner | 2008-11-30 | 1 | -16/+15 |
* | Change NonLocalDeps to be a densemap of pointers to densemap | Chris Lattner | 2008-11-30 | 1 | -30/+52 |
* | calls never depend on allocations. | Chris Lattner | 2008-11-30 | 1 | -12/+5 |
* | Fix a fixme by making memdep's handling of allocations more logical. | Chris Lattner | 2008-11-30 | 2 | -35/+22 |
* | implement a fixme by introducing a new getDependencyFromInternal | Chris Lattner | 2008-11-30 | 1 | -24/+19 |
* | Move the getNonLocalDependency method to a more logical place in | Chris Lattner | 2008-11-30 | 1 | -90/+89 |
* | REmove an old fixme, resolve another fixme by adding liberal | Chris Lattner | 2008-11-30 | 1 | -2/+0 |
* | remove a bit of incorrect code that tried to be tricky about speeding up | Chris Lattner | 2008-11-30 | 1 | -49/+24 |
* | Eliminate the dropInstruction method, which is not needed any more. | Chris Lattner | 2008-11-29 | 2 | -82/+35 |
* | implement some fixme's: when deleting an instruction with | Chris Lattner | 2008-11-29 | 1 | -14/+62 |
* | Change MemDep::getNonLocalDependency to return its results as | Chris Lattner | 2008-11-29 | 2 | -12/+11 |
* | move MemoryDependenceAnalysis::verifyRemoved to the end of the file, | Chris Lattner | 2008-11-29 | 1 | -32/+32 |
* | reimplement getNonLocalDependency with a simpler worklist | Chris Lattner | 2008-11-29 | 2 | -140/+94 |
* | Fix a thinko that manifested as a crash on clamav last night. | Chris Lattner | 2008-11-29 | 1 | -2/+2 |
* | rename some maps. | Chris Lattner | 2008-11-29 | 1 | -35/+35 |
* | rename some variables. | Chris Lattner | 2008-11-29 | 1 | -21/+21 |
* | eliminate a bunch of code in favor of using AliasAnalysis::getModRefInfo. | Chris Lattner | 2008-11-29 | 1 | -47/+45 |
* | simplify some code and rename some variables. Reduce nesting. | Chris Lattner | 2008-11-29 | 1 | -64/+64 |