| Commit message (Expand) | Author | Age | Files | Lines |
* | Clear the Processed set when it is no longer used, and clear the | Dan Gohman | 2009-12-14 | 1 | -1/+2 |
* | Fix a thinko; isNotAlreadyContainedIn had a built-in negative, so the | Dan Gohman | 2009-12-14 | 1 | -1/+1 |
* | Drop Loop::isNotAlreadyContainedIn in favor of Loop::contains. The | Dan Gohman | 2009-12-14 | 1 | -1/+1 |
* | Make getUniqueExitBlocks's precondition assert more precise, to | Dan Gohman | 2009-12-11 | 1 | -3/+3 |
* | Reuse the Threshold value to size these containers because it's | Dan Gohman | 2009-12-09 | 1 | -2/+2 |
* | Add a minor optimization: if we haven't changed the operands of an | Chris Lattner | 2009-12-09 | 1 | -0/+4 |
* | fix PR5733, a case where we'd replace an add with a lexically identical | Chris Lattner | 2009-12-09 | 1 | -1/+2 |
* | enhance NonLocalDepEntry to keep the per-block phi translated address | Chris Lattner | 2009-12-09 | 1 | -15/+17 |
* | change NonLocalDepEntry from being a typedef for an std::pair to be its | Chris Lattner | 2009-12-09 | 1 | -53/+53 |
* | Switch GVN and memdep to use PHITransAddr, which correctly handles | Chris Lattner | 2009-12-09 | 1 | -303/+34 |
* | fix a nasty variable that was shadowing the real CurBB but with the wrong value. | Chris Lattner | 2009-12-09 | 1 | -1/+0 |
* | fix many input tracking bugs. | Chris Lattner | 2009-12-09 | 1 | -33/+30 |
* | Fix a typo in a comment, and adjust SmallSet and SmallVector sizes, | Dan Gohman | 2009-12-09 | 1 | -7/+7 |
* | fix PHI translation to take the PHI out of the instinputs set and add | Chris Lattner | 2009-12-09 | 1 | -9/+7 |
* | instructions defined in CurBB may be intermediate nodes of the computation. | Chris Lattner | 2009-12-09 | 1 | -14/+14 |
* | add dumping and sanity checking support. | Chris Lattner | 2009-12-09 | 1 | -0/+69 |
* | Put a threshold on the number of users PointerMayBeCaptured | Dan Gohman | 2009-12-08 | 1 | -0/+16 |
* | make sure that PHITransAddr keeps its 'InstInputs' list up to | Chris Lattner | 2009-12-08 | 1 | -3/+42 |
* | Revert 90858 90875 and 90805 for now. | Devang Patel | 2009-12-08 | 1 | -28/+0 |
* | fix a typo (and -> add) and fix GetAvailablePHITranslatedSubExpr to not | Chris Lattner | 2009-12-08 | 1 | -3/+6 |
* | Rename DIFactory::InsertValue() as DIFactory::InsertDbgValueIntrinsic() | Victor Hernandez | 2009-12-07 | 1 | -6/+8 |
* | Add support to emit debug info for c++ style namespaces. | Devang Patel | 2009-12-07 | 1 | -0/+28 |
* | fix typo | Chris Lattner | 2009-12-07 | 1 | -1/+1 |
* | add accessor, improve comment. | Chris Lattner | 2009-12-07 | 1 | -1/+1 |
* | Introduce the "@llvm.dbg.value" debug intrinsic. | Victor Hernandez | 2009-12-07 | 1 | -0/+29 |
* | add support for phi translation and incorpation of new expression. | Chris Lattner | 2009-12-07 | 1 | -121/+144 |
* | checkpoint of the new PHITransAddr code, still not done and not used by | Chris Lattner | 2009-12-07 | 1 | -29/+257 |
* | Fix indentation in switch statement. | Nick Lewycky | 2009-12-05 | 1 | -15/+16 |
* | Fix PR5551 by not ignoring the top level constantexpr when | Chris Lattner | 2009-12-04 | 1 | -1/+1 |
* | add to cmake | Chris Lattner | 2009-12-04 | 1 | -0/+1 |
* | add the start of a class used to handle phi translation in memdep and | Chris Lattner | 2009-12-04 | 1 | -0/+71 |
* | Fix a comment typo. | Bob Wilson | 2009-12-04 | 1 | -1/+1 |
* | Add support to emit debug info for virtual functions and virtual base classes. | Devang Patel | 2009-12-03 | 1 | -5/+13 |
* | Fix MSVC build. | Benjamin Kramer | 2009-12-03 | 1 | -1/+1 |
* | Convert ProfileVerifier to template so it can be used for different types of ... | Andreas Neustifter | 2009-12-03 | 1 | -243/+276 |
* | Do not create negative edge weights in ProfileEstimator. | Andreas Neustifter | 2009-12-03 | 1 | -21/+125 |
* | Use ProfileInfo-API in ProfileInfo Loader and do more assertions. | Andreas Neustifter | 2009-12-03 | 1 | -46/+10 |
* | Converted ProfileInfo to template, added more API for ProfileInfo-preserving. | Andreas Neustifter | 2009-12-03 | 1 | -40/+925 |
* | fix PR5673 by being more careful about pointers to functions. | Chris Lattner | 2009-12-03 | 1 | -3/+10 |
* | improve portability to avoid conflicting with std::next in c++'0x. | Chris Lattner | 2009-12-03 | 1 | -2/+2 |
* | Silence compiler warnings. | Benjamin Kramer | 2009-12-02 | 1 | -2/+2 |
* | Cleanup/remove some parts of the lifetime region handling code in memdep and ... | Owen Anderson | 2009-12-02 | 1 | -16/+13 |
* | Fixed an assertion failure for tracking sext of a vector of integers | Mon P Wang | 2009-12-02 | 1 | -1/+1 |
* | Add utility routine to create subprogram definition entry from subprogram dec... | Devang Patel | 2009-12-01 | 1 | -0/+23 |
* | rename some variables. | Chris Lattner | 2009-12-01 | 1 | -13/+13 |
* | tidy | Chris Lattner | 2009-12-01 | 1 | -1/+3 |
* | fix 255.vortex again, third time's the charm. | Chris Lattner | 2009-12-01 | 1 | -2/+35 |
* | Remove ShortNames from getNodeLabel in DOTGraphTraits | Tobias Grosser | 2009-11-30 | 1 | -16/+15 |
* | Instantiate DefaultDOTGraphTraits | Tobias Grosser | 2009-11-30 | 1 | -0/+10 |
* | Small PostDominatorTree improvements | Tobias Grosser | 2009-11-30 | 1 | -3/+9 |