Age | Commit message (Expand) | Author |
2008-11-30 | Add instruction combining for ((A&~B)|(~A&B)) -> A^B and all permutations. | Bill Wendling |
2008-11-30 | Implement (A&((~A)|B)) -> A&B transformation in the instruction combiner. This | Bill Wendling |
2008-11-30 | Forgot one remaining call to getSExtValue(). | Bill Wendling |
2008-11-30 | getSExtValue() doesn't work for ConstantInts with bitwidth > 64 bits. Use all | Bill Wendling |
2008-11-30 | Optimize memmove and memset into the LLVM builtins. Note that these | Eli Friedman |
2008-11-30 | A couple small cleanups, plus a new potential optimization. | Eli Friedman |
2008-11-30 | Moving potential optimizations out of PR2330 into lib/Target/README.txt. | Eli Friedman |
2008-11-30 | Followup to r60283: optimize arbitrary width signed divisions as well | Eli Friedman |
2008-11-30 | Fix for PR2164: allow transforming arbitrary-width unsigned divides into | Eli Friedman |
2008-11-30 | Don't make TwoToExp signed by default. | Bill Wendling |
2008-11-30 | From Hacker's Delight: | Bill Wendling |
2008-11-30 | APIntify a test which is potentially unsafe otherwise, and fix the | Eli Friedman |
2008-11-30 | Instcombine was illegally transforming -X/C into X/-C when either X or C | Bill Wendling |
2008-11-30 | Two changes: Make getDependency remove QueryInst for a dirty record's | Chris Lattner |
2008-11-30 | introduce a typedef, no functionality change. | Chris Lattner |
2008-11-30 | Change NonLocalDeps to be a densemap of pointers to densemap | Chris Lattner |
2008-11-30 | calls never depend on allocations. | Chris Lattner |
2008-11-30 | Fix a fixme by making memdep's handling of allocations more logical. | Chris Lattner |
2008-11-30 | implement a fixme by introducing a new getDependencyFromInternal | Chris Lattner |
2008-11-30 | Move the getNonLocalDependency method to a more logical place in | Chris Lattner |
2008-11-30 | REmove an old fixme, resolve another fixme by adding liberal | Chris Lattner |
2008-11-30 | remove a bit of incorrect code that tried to be tricky about speeding up | Chris Lattner |
2008-11-29 | Eliminate the dropInstruction method, which is not needed any more. | Chris Lattner |
2008-11-29 | implement some fixme's: when deleting an instruction with | Chris Lattner |
2008-11-29 | Change MemDep::getNonLocalDependency to return its results as | Chris Lattner |
2008-11-29 | move MemoryDependenceAnalysis::verifyRemoved to the end of the file, | Chris Lattner |
2008-11-29 | reimplement getNonLocalDependency with a simpler worklist | Chris Lattner |
2008-11-29 | Fix a thinko that manifested as a crash on clamav last night. | Chris Lattner |
2008-11-29 | rename some maps. | Chris Lattner |
2008-11-29 | rename some variables. | Chris Lattner |
2008-11-29 | eliminate a bunch of code in favor of using AliasAnalysis::getModRefInfo. | Chris Lattner |
2008-11-29 | simplify some code and rename some variables. Reduce nesting. | Chris Lattner |
2008-11-29 | Split getDependency into getDependency and getDependencyFrom, the | Chris Lattner |
2008-11-29 | Temporarily revert r60195. It's causing an optimized bootstrap of llvm-gcc to... | Bill Wendling |
2008-11-29 | Now that DepType is private, we can start cleaning up some of its uses: | Chris Lattner |
2008-11-29 | Introduce and use a new MemDepResult class to hold the results of a memdep | Chris Lattner |
2008-11-29 | Reimplement the internal abstraction used by MemDep in terms | Chris Lattner |
2008-11-28 | Fix PR3141 by ensuring that MemoryDependenceAnalysis::removeInstruction | Chris Lattner |
2008-11-28 | don't revisit instructions off the beginning of the block. | Chris Lattner |
2008-11-28 | more cleanups for MemoryDependenceAnalysis::removeInstruction, | Chris Lattner |
2008-11-28 | random cleanups, no functionality change. | Chris Lattner |
2008-11-28 | Run verifyRemoved from removeInstruction when -debug is specified. | Chris Lattner |
2008-11-28 | rename "ping" to "verifyRemoved". I don't know why 'ping' what chosen, | Chris Lattner |
2008-11-28 | simplify some code, remove escaped newline. | Chris Lattner |
2008-11-28 | remove mysterious escaped newlines. | Chris Lattner |
2008-11-28 | don't call MergeBasicBlockIntoOnlyPred on a block whose only | Chris Lattner |
2008-11-28 | Add include files needed when building with | Duncan Sands |
2008-11-28 | Fix build with gcc-4.4: it doesn't like PICStyle | Duncan Sands |
2008-11-28 | rewrite RecursivelyDeleteTriviallyDeadInstructions to use a more efficient | Chris Lattner |
2008-11-28 | remove some weirdness that came from the LSR code that has | Chris Lattner |