aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
Commit message (Expand)AuthorAgeFilesLines
* Finish adding support for lifetime intrinsics to SROA. Fixes PR10121!Nick Lewycky2011-07-251-1/+110
* Add clarifying comments for the new arguments to UnrollLoop.Andrew Trick2011-07-251-0/+12
* Add missing space (this line is no longer pushing the 80-column limit).Nick Lewycky2011-07-251-1/+1
* Add LLVMAddLowerExpectIntrinsicPass to the C API.Rafael Espindola2011-07-251-0/+4
* Shorten some expressions by using ArrayRef::slice().Frits van Bommel2011-07-251-2/+1
* Convert GetElementPtrInst to use ArrayRef.Jay Foad2011-07-2510-37/+24
* Move trip count discovery outside of the generic LoopUnroll helper. ThisAndrew Trick2011-07-232-14/+9
* whitespaceAndrew Trick2011-07-232-15/+15
* Move the last uses of RetainFunc etc. over to using getRetainCallee() etc.Dan Gohman2011-07-221-23/+35
* Fix more MSVC warnings caused by a cases I missed when convertingJay Foad2011-07-221-1/+1
* Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to useJay Foad2011-07-224-17/+11
* Fix an MSVC warning, caused by a case I missed when convertingJay Foad2011-07-221-1/+1
* Fix MergeInVectorType to check for vector types with the same allocDan Gohman2011-07-211-0/+6
* Cleanup: make std::pair usage slightly less indecipherable without actually n...Andrew Trick2011-07-211-7/+8
* Make better use of ConstantExpr::getGetElementPtr's InBounds parameter.Jay Foad2011-07-211-3/+3
* Convert ConstantExpr::getGetElementPtr andJay Foad2011-07-214-13/+10
* move tier out of an anonymous namespace, it doesn't make senseChris Lattner2011-07-213-28/+25
* LSR, correct fix for rdar://9786536. Silly casting bug.Andrew Trick2011-07-211-2/+2
* LSR must sometimes sign-extend before generating double constants.Andrew Trick2011-07-211-3/+10
* LSR crashes on an empty IVUsers list.Andrew Trick2011-07-211-0/+3
* Clean up includes of llvm/Analysis/ConstantFolding.h so it's included where i...Eli Friedman2011-07-205-1/+4
* Bring LICM into compliance with the new "Memory Model for Concurrent Operatio...Eli Friedman2011-07-201-18/+30
* Fix a GCC warning.Jay Foad2011-07-201-2/+2
* indvars: Added getInsertPointForUses to find a valid place to truncate the IV.Andrew Trick2011-07-201-15/+32
* indvars -disable-iv-rewrite: Add NarrowIVDefUse to cache def-useAndrew Trick2011-07-201-54/+61
* indvars -disable-iv-rewrite fix: derived GEP IVsAndrew Trick2011-07-201-0/+6
* PR10386: Don't try to split an edge from an indirectbr.Eli Friedman2011-07-191-2/+9
* Distinguish between two copies of one inlined variable.Devang Patel2011-07-191-1/+8
* Convert SimplifyGEPInst to use ArrayRef.Jay Foad2011-07-191-1/+1
* Convert TargetData::getIndexedOffset to use ArrayRef.Jay Foad2011-07-193-10/+7
* Use ArrayRef in ConstantFoldInstOperands and ConstantFoldCall.Jay Foad2011-07-194-6/+4
* Compiler warning.Andrew Trick2011-07-181-3/+3
* indvars: LinearFunctionTestReplace for non-canonical IVs.Andrew Trick2011-07-181-48/+292
* indvars: Added verification that LFTR and other indvars goodness doesAndrew Trick2011-07-181-1/+20
* indvars: Added isHighCostExpansion. Avoid generating extra ops in theAndrew Trick2011-07-181-17/+51
* Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previ...Frits van Bommel2011-07-181-2/+2
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-1845-505/+505
* fix a warning in TinyPtrVector, adopt it in SSAUpdater, saving someChris Lattner2011-07-181-3/+3
* indvars: fix a pass-sensitivity issue that would hit the SCEVExpanderAndrew Trick2011-07-161-2/+13
* indvars: remove ExprToIVMap because it won't be needed by LFTR.Andrew Trick2011-07-161-9/+3
* fix rdar://9776316 - type remapping needed for inline asm blobs,Chris Lattner2011-07-151-1/+17
* Disable loop idiom recognition of memset/memcpy if the function being compiledChad Rosier2011-07-151-0/+5
* No need to explicitly invoke the ArrayRef constructor here.Frits van Bommel2011-07-151-1/+1
* Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad2011-07-1514-38/+28
* start using the new helper methods a bit.Chris Lattner2011-07-154-23/+21
* Undo r135191 (i.e. reapply Chris's patch. Now linker maps NamedMDNodes first,...Devang Patel2011-07-141-2/+3
* revert r135172 until Devang and I figure out the right answer.Chris Lattner2011-07-141-3/+2
* Stop the ValueMapper from calling getAllMetadata, which unpacks DebugLoc intoChris Lattner2011-07-141-2/+3
* Change Intrinsic::getDeclaration and friends to take an ArrayRef.Benjamin Kramer2011-07-146-8/+7
* It's not safe to fold (fptrunc (sqrt (fpext x))) to (sqrtf x) if there is ano...Evan Cheng2011-07-131-1/+2