summaryrefslogtreecommitdiff
path: root/lib/Analysis
Commit message (Expand)AuthorAge
* Treat nothrow forms of ::operator delete and ::operator delete[] asRichard Smith2013-07-21
* Comment: try to clarify loop iteration order.Andrew Trick2013-07-20
* Have InlineCost check constant fcmpsMatt Arsenault2013-07-20
* Give 'hasPath' a longer but clearer name 'isPotentiallyReachable'. Also expandNick Lewycky2013-07-18
* Add 'const' qualifiers to static const char* variables.Craig Topper2013-07-16
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-14
* Remove a bunch of old SCEVExpander FIXME's for preserving NoWrap.Andrew Trick2013-07-14
* Teach indvars to generate nsw/nuw flags when widening an induction variable.Andrew Trick2013-07-14
* Fix logic error optimizing "icmp pred (urem X, Y), Y" where pred is signed.Nick Lewycky2013-07-12
* TargetTransformInfo: address calculation parameter for gather/scatherArnold Schwaighofer2013-07-12
* Stylistic change.Shuxin Yang2013-07-12
* Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...Craig Topper2013-07-11
* Don't use a potentially expensive shift if all we want is one set bit.Benjamin Kramer2013-07-11
* Fix indentation. No functional change.Craig Topper2013-07-11
* InstSimplify: X >> X -> 0David Majnemer2013-07-09
* Don't crash in SE dealing with ashr x, -1Hal Finkel2013-07-09
* ValueTracking: Fix bugs in isKnownToBeAPowerOfTwoDavid Majnemer2013-07-09
* Fix a SCEV update problem.Shuxin Yang2013-07-08
* Eliminate trivial redundant loads across nocapture+readonly calls to uncapturedNick Lewycky2013-07-07
* isKnownToBeAPowerOfTwo: Fix a typo in a commentDavid Majnemer2013-07-06
* Extend 'readonly' and 'readnone' to work on function arguments as well asNick Lewycky2013-07-06
* Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...Craig Topper2013-07-04
* Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...Craig Topper2013-07-03
* ValueTracking: Teach isKnownToBeAPowerOfTwo about (ADD X, (XOR X, Y)) where X...David Majnemer2013-06-29
* git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185187 91177308-0d34...Preston Briggs2013-06-28
* Added support for the Builtin attribute.Michael Gottesman2013-06-27
* BlockFrequency: Bump up the entry frequency a bit.Benjamin Kramer2013-06-25
* Fix xemacs mode line, don't put them in .cpp files (just header files). NoNick Lewycky2013-06-10
* Silencing an MSVC warning about */ being found outside of a comment.Aaron Ballman2013-06-04
* Prevent loop-unroll from making assumptions about undefined behavior.Andrew Trick2013-05-31
* Loop Strength Reduce: Scaling factor cost.Quentin Colombet2013-05-31
* Fix ScalarEvolution::ComputeExitLimitFromCond for 'or' conditions.Andrew Trick2013-05-31
* Add support for llvm.vectorizer metadataPaul Redmond2013-05-28
* Make BasicAliasAnalysis recognize the fact a noalias argument cannot alias an...Michael Kuperstein2013-05-28
* Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer2013-05-24
* Do not reserve space for the ColdEdges and NormalEdges vectors.Diego Novillo2013-05-24
* Add a new function attribute 'cold' to functions.Diego Novillo2013-05-24
* isKnownToBeAPowerOfTwo: (X & Y) + Y is a power of 2 or zero if y is also.David Majnemer2013-05-18
* Respect the 'nobuiltin' attribute when determining if a call is to a memory b...Richard Smith2013-05-16
* Use only explicit bool conversion operatorsDavid Blaikie2013-05-15
* Fix unchecked uses of DominatorTree in MemoryDependenceAnalysis.Matt Arsenault2013-05-06
* RegionInfo: Do not crash if unreachable block is foundTobias Grosser2013-05-03
* This patch breaks up Wrap.h so that it does not have to include all of Filip Pizlo2013-05-01
* Struct-path aware TBAA: change the format of TBAAStructType node.Manman Ren2013-04-27
* Struct-path aware TBAA: update getMostGenericTBAA Manman Ren2013-04-22
* Move C++ code out of the C headers and into either C++ headersEric Christopher2013-04-22
* ConstantFolding: ComputeMaskedBits wants the scalar size for vectors.Benjamin Kramer2013-04-19
* A limit of 500 was still a bit too high for some tests.Bill Wendling2013-04-17
* Fix a scalability issue with complex ConstantExprs.Benjamin Kramer2013-04-13
* Aliasing rules for struct-path aware TBAA.Manman Ren2013-04-11