| Commit message (Expand) | Author | Age | Files | Lines |
* | Reimplement the non-local dependency data structure in terms of a sorted | Chris Lattner | 2008-12-01 | 1 | -50/+82 |
* | Eliminate the DepResultTy abstraction. It is now completely | Chris Lattner | 2008-11-30 | 1 | -48/+43 |
* | Cache TargetData/AliasAnalysis in the pass instead of calling | Chris Lattner | 2008-11-30 | 1 | -18/+18 |
* | 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 | 1 | -20/+10 |
* | 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 | 1 | -77/+33 |
* | 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 | 1 | -7/+6 |
* | 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 | 1 | -136/+73 |
* | 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 |
* | Split getDependency into getDependency and getDependencyFrom, the | Chris Lattner | 2008-11-29 | 1 | -124/+80 |
* | Now that DepType is private, we can start cleaning up some of its uses: | Chris Lattner | 2008-11-29 | 1 | -73/+61 |
* | Introduce and use a new MemDepResult class to hold the results of a memdep | Chris Lattner | 2008-11-29 | 1 | -41/+40 |
* | Reimplement the internal abstraction used by MemDep in terms | Chris Lattner | 2008-11-29 | 1 | -114/+110 |
* | Fix PR3141 by ensuring that MemoryDependenceAnalysis::removeInstruction | Chris Lattner | 2008-11-28 | 1 | -12/+28 |
* | more cleanups for MemoryDependenceAnalysis::removeInstruction, | Chris Lattner | 2008-11-28 | 1 | -38/+42 |
* | random cleanups, no functionality change. | Chris Lattner | 2008-11-28 | 1 | -29/+28 |
* | Run verifyRemoved from removeInstruction when -debug is specified. | Chris Lattner | 2008-11-28 | 1 | -10/+14 |
* | rename "ping" to "verifyRemoved". I don't know why 'ping' what chosen, | Chris Lattner | 2008-11-28 | 1 | -12/+13 |
* | remove mysterious escaped newlines. | Chris Lattner | 2008-11-28 | 1 | -5/+5 |
* | Fix comment typo. | Duncan Sands | 2008-09-11 | 1 | -1/+1 |
* | Fix a subtle bug when removing instructions from memdep. In very specific | Owen Anderson | 2008-07-28 | 1 | -0/+4 |
* | A better fix for PR2503 that doesn't pessimize GVN in the presence of unreach... | Owen Anderson | 2008-07-02 | 1 | -13/+0 |
* | Properly handle cases where a predecessor of the block being queried on is un... | Owen Anderson | 2008-07-01 | 1 | -0/+13 |
* | Remember to update the reverse non-local cache when cleaning up dirty entries... | Owen Anderson | 2008-06-01 | 1 | -0/+5 |
* | Make ping more aggressive in finding nonlocal caching errors. | Owen Anderson | 2008-06-01 | 1 | -0/+3 |
* | Fix memdep's handling of invokes when finding the dependency of another call | Owen Anderson | 2008-05-13 | 1 | -1/+1 |
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -8/+6 |
* | Make several variable declarations static. | Dan Gohman | 2008-05-06 | 1 | -1/+1 |
* | Make GVN able to remove unnecessary calls to read-only functions again. | Owen Anderson | 2008-04-17 | 1 | -2/+1 |
* | Fix a typo in a comment. | Dan Gohman | 2008-04-10 | 1 | -1/+1 |
* | Fix for PR2190. Memdep's non-local caching was checking dirtied blocks in the | Owen Anderson | 2008-04-10 | 1 | -2/+4 |
* | Set blockBegin to point to the beginning of the block, | Dan Gohman | 2008-03-31 | 1 | -2/+2 |
* | Restore isCFGOnly property of various analysis passes. | Devang Patel | 2008-03-20 | 1 | -1/+1 |
* | PassInfo keep tracks whether a pass is an analysis pass or not. | Devang Patel | 2008-03-19 | 1 | -1/+1 |
* | Re-apply the patch to improve the optimizations of memcpy's, with several | Owen Anderson | 2008-02-12 | 1 | -1/+41 |
* | Throttle the non-local dependence analysis for basic blocks with more than 50... | Tanya Lattner | 2008-02-06 | 1 | -7/+20 |
* | Fix an obscure read-after-free bug that Duncan found. | Owen Anderson | 2008-02-05 | 1 | -10/+20 |
* | Fix an issue where, under very specific circumstances, memdep could end up de... | Owen Anderson | 2008-01-30 | 1 | -2/+2 |