aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
AgeCommit message (Expand)Author
2011-07-29Rewrite the CMake build to use explicit dependencies between libraries,Chandler Carruth
2011-07-28Some minor cleanups. No functionalitical change.Bill Wendling
2011-07-28Leverage some of the code that John wrote to manage the landing pads.Bill Wendling
2011-07-28Automatically merge the landingpad clauses when we come across a callee'sBill Wendling
2011-07-28Fix a use after free. An instruction can't be both an intrinsic call and a fe...Benjamin Kramer
2011-07-28Initial stab at getting inlining working with the EH rewrite.Bill Wendling
2011-07-27Refuse to inline two functions which use different personality functions.Bill Wendling
2011-07-27Merge the contents from exception-handling-rewrite to the mainline.Bill Wendling
2011-07-27Teach the ConstantMerge pass about alignment. Fixes PR10514!Nick Lewycky
2011-07-27Misc mid-level changes for new 'fence' instruction.Eli Friedman
2011-07-26Use the correct for for the version. It's little endian and my brain isBill Wendling
2011-07-26Add LLVMAddAlwaysInlinerPass to the C API.Rafael Espindola
2011-07-26LLVM 3.0 is here, remove old do nothing method.Rafael Espindola
2011-07-25Finish adding support for lifetime intrinsics to SROA. Fixes PR10121!Nick Lewycky
2011-07-25Add clarifying comments for the new arguments to UnrollLoop.Andrew Trick
2011-07-25Add missing space (this line is no longer pushing the 80-column limit).Nick Lewycky
2011-07-25Add LLVMAddLowerExpectIntrinsicPass to the C API.Rafael Espindola
2011-07-25Shorten some expressions by using ArrayRef::slice().Frits van Bommel
2011-07-25Convert GetElementPtrInst to use ArrayRef.Jay Foad
2011-07-23Move trip count discovery outside of the generic LoopUnroll helper. ThisAndrew Trick
2011-07-23whitespaceAndrew Trick
2011-07-22Move the last uses of RetainFunc etc. over to using getRetainCallee() etc.Dan Gohman
2011-07-22Fix more MSVC warnings caused by a cases I missed when convertingJay Foad
2011-07-22Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to useJay Foad
2011-07-22Fix an MSVC warning, caused by a case I missed when convertingJay Foad
2011-07-21Fix MergeInVectorType to check for vector types with the same allocDan Gohman
2011-07-21Cleanup: make std::pair usage slightly less indecipherable without actually n...Andrew Trick
2011-07-21Make better use of ConstantExpr::getGetElementPtr's InBounds parameter.Jay Foad
2011-07-21Convert ConstantExpr::getGetElementPtr andJay Foad
2011-07-21move tier out of an anonymous namespace, it doesn't make senseChris Lattner
2011-07-21LSR, correct fix for rdar://9786536. Silly casting bug.Andrew Trick
2011-07-21LSR must sometimes sign-extend before generating double constants.Andrew Trick
2011-07-21LSR crashes on an empty IVUsers list.Andrew Trick
2011-07-20Clean up includes of llvm/Analysis/ConstantFolding.h so it's included where i...Eli Friedman
2011-07-20Bring LICM into compliance with the new "Memory Model for Concurrent Operatio...Eli Friedman
2011-07-20Fix a GCC warning.Jay Foad
2011-07-20indvars: Added getInsertPointForUses to find a valid place to truncate the IV.Andrew Trick
2011-07-20indvars -disable-iv-rewrite: Add NarrowIVDefUse to cache def-useAndrew Trick
2011-07-20indvars -disable-iv-rewrite fix: derived GEP IVsAndrew Trick
2011-07-19PR10386: Don't try to split an edge from an indirectbr.Eli Friedman
2011-07-19Distinguish between two copies of one inlined variable.Devang Patel
2011-07-19Convert SimplifyGEPInst to use ArrayRef.Jay Foad
2011-07-19Convert TargetData::getIndexedOffset to use ArrayRef.Jay Foad
2011-07-19Use ArrayRef in ConstantFoldInstOperands and ConstantFoldCall.Jay Foad
2011-07-18Compiler warning.Andrew Trick
2011-07-18indvars: LinearFunctionTestReplace for non-canonical IVs.Andrew Trick
2011-07-18indvars: Added verification that LFTR and other indvars goodness doesAndrew Trick
2011-07-18indvars: Added isHighCostExpansion. Avoid generating extra ops in theAndrew Trick
2011-07-18Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previ...Frits van Bommel
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner