aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
Commit message (Expand)AuthorAgeFilesLines
* ComputeMaskedBits: sub falls through to add, and sub doesn't have the same ov...Benjamin Kramer2011-03-111-1/+2
* Teach ComputeMaskedBits about nsw on add. I don't think there's anything we canNick Lewycky2011-03-111-0/+14
* Introduce DebugInfoProbe. This is used to monitor how llvm optimizer is treat...Devang Patel2011-03-101-2/+21
* When SCEV can determine the loop test is X < X, set ExactBECount=0.Andrew Trick2011-03-091-1/+17
* whitespaceAndrew Trick2011-03-091-18/+18
* Fix two cases I forgot to update when doing a mental "getSwappedPredicate".Nick Lewycky2011-03-091-2/+2
* Add another micro-optimization. Apologies for the lack of refactoring, but INick Lewycky2011-03-091-2/+28
* Fix PR9331. Simplified version of a patch by Jakub Staszak.Duncan Sands2011-03-081-0/+4
* Add more analysis of the sign bit of an srem instruction. If the LHS is negativeNick Lewycky2011-03-071-0/+13
* Thread comparisons over udiv/sdiv/ashr/lshr exact and lshr nuw/nsw wheneverNick Lewycky2011-03-051-1/+33
* When decling to reuse existing expressions that involve casts, ignoreDan Gohman2011-03-041-1/+1
* Revert broken srem logic from r126991.Nick Lewycky2011-03-041-15/+0
* Fold "icmp pred (srem X, Y), Y" like we do for urem. Handle signed comparisonsNick Lewycky2011-03-041-1/+30
* Teach instruction simplify to use constant ranges to solve problems of the formNick Lewycky2011-03-041-37/+61
* Remove DIFactory. Patch by Devang.Duncan Sands2011-03-021-663/+12
* Don't re-use existing addrec expansions if they contain casts.Dan Gohman2011-03-021-1/+2
* Today, the language front ends produces llvm.dbg.* intrinsics, used to encode...Devang Patel2011-03-011-5/+5
* Optimize "icmp pred (urem X, Y), Y" --> true/false depending on pred. There'sNick Lewycky2011-03-011-0/+18
* Unbreak CMake build.Ted Kremenek2011-03-011-5/+4
* Delete the LiveValues pass. I won't get get back to the project itDan Gohman2011-02-282-201/+0
* Fix comment.Nick Lewycky2011-02-281-1/+1
* srem doesn't actually have the same resulting sign as its numerator, you couldNick Lewycky2011-02-281-12/+0
* Teach value tracking to make use of flags in more situations.Nick Lewycky2011-02-281-0/+25
* Teach ValueTracking to look at the dividend when determining the sign bit of anNick Lewycky2011-02-281-0/+12
* RegionPrinter: Ignore back edges when layouting the graphTobias Grosser2011-02-271-0/+26
* Follow LLVM coding style. Devang Patel2011-02-221-77/+77
* Move "A | ~(A & ?) -> -1" from InstCombine to InstructionSimplify.Benjamin Kramer2011-02-201-0/+10
* Stores of null pointers should turn into memset, we weren't recognizingChris Lattner2011-02-191-0/+5
* Move library stuff out of the toplevel CMakeLists.txt file.Oscar Fuentes2011-02-181-0/+2
* Move DbgInfoPrinter specific utlities inside DbgInfoPrinter.cppDevang Patel2011-02-152-111/+112
* Print function info. Patch by Minjang Kim.Devang Patel2011-02-152-2/+34
* convert ConstantVector::get to use ArrayRef.Chris Lattner2011-02-151-2/+2
* revert my ConstantVector patch, it seems to have made the llvm-gccChris Lattner2011-02-141-2/+2
* Switch ConstantVector::get to use ArrayRef instead of a pointer+sizeChris Lattner2011-02-141-2/+2
* Remove pointless blank line.Duncan Sands2011-02-131-1/+0
* Teach instsimplify that X+Y>=X+Z is the same as Y>=Z if neither side overflows,Duncan Sands2011-02-131-2/+49
* teach SCEV that the scale and addition of an inbounds gep don't NSW.Chris Lattner2011-02-131-2/+5
* Per discussion with Dan G, inbounds geps *certainly* can haveChris Lattner2011-02-111-3/+14
* Tolerate degenerate phi nodes that can occur in the middle of optimizationNick Lewycky2011-02-101-0/+4
* Formatting and comment tweaks.Duncan Sands2011-02-091-5/+5
* Teach instsimplify some tricks about exact/nuw/nsw shifts.Chris Lattner2011-02-091-39/+69
* Rework InstrTypes.h so to reduce the repetition around the NSW/NUW/ExactChris Lattner2011-02-091-2/+2
* Add an m_Div pattern for matching either a udiv or an sdiv and use itDuncan Sands2011-02-071-4/+2
* teach instsimplify to transform (X / Y) * Y to XChris Lattner2011-02-061-3/+5
* Remove premature optimization that avoided calculating argument weightsEric Christopher2011-02-061-5/+0
* Simplify test, as suggested by Chris.Anders Carlsson2011-02-061-6/+2
* When loading from a constant, fold inttoptr if the integer type and the resul...Anders Carlsson2011-02-061-0/+11
* Fix another warning.Anders Carlsson2011-02-051-1/+1
* Fix cut and paste error spotted by Jakob.Eric Christopher2011-02-051-1/+1
* Rewrite how the indirect call bonus is handled. This now works by:Eric Christopher2011-02-051-78/+125