aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
AgeCommit message (Expand)Author
2012-06-29CodeGenPrepare: Don't crash when TLI is not available.Benjamin Kramer
2012-06-29Rework this to clarify where the removal of nodes from the queue isDuncan Sands
2012-06-29ignore 'invoke new' in isInstructionTriviallyDead, since most callers are not...Nuno Lopes
2012-06-29Fix a reassociate crash on sozefx when compiling with dragonegg+gcc-4.7 due toDuncan Sands
2012-06-29Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth
2012-06-29The DIBuilder class is just a wrapper around debug info creationBill Wendling
2012-06-28make simplifyCFG erase invokes to readonly/readnone functionsNuno Lopes
2012-06-28make instcombine produce calls to llvm.donothing instead of a random intrinsicNuno Lopes
2012-06-28[asan] set a hard limit on the number of instructions instrumented pear each ...Kostya Serebryany
2012-06-28Precompute SCEV pointer analysis prior to instruction fusion in BBVectorize.Hal Finkel
2012-06-28Remove a useless check in BBVectorize.Hal Finkel
2012-06-28Allow BBVectorize to form non-2^n-length vectors.Hal Finkel
2012-06-28Refactor operation equivalence checking in BBVectorize by extending Instructi...Hal Finkel
2012-06-28Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp andBill Wendling
2012-06-27Revert r159136 due to PR13124.Matt Beaumont-Gay
2012-06-27Some reassociate optimizations create new instructions, which they insert justDuncan Sands
2012-06-26Remove a instcombine transform that (no longer?) makes sense:Evan Cheng
2012-06-26Replacing zero-sized alloca's with a null pointer is too aggressive, insteadDuncan Sands
2012-06-25revert my previous commit (r159173), since as Eli pointed out, it's perfectly...Nuno Lopes
2012-06-25do not set realloc() as NotAlias, since it can return the same pointer. This ...Nuno Lopes
2012-06-25Fix the objc_autoreleasedReturnValue optimization code to locateDan Gohman
2012-06-25improve optimization of invoke instructions:Nuno Lopes
2012-06-25If a constant or a function has linkonce_odr linkage and unnamed_addr, mark itRafael Espindola
2012-06-25The name (and comment describing) of llvm::GetFirstDebuigLocInBasicBlock no l...Eli Bendersky
2012-06-24llvm/lib: [CMake] Add explicit dependency to intrinsics_gen.NAKAMURA Takumi
2012-06-24Allow controlling vectorization of boolean values separately from other integ...Hal Finkel
2012-06-24Remove dyn_cast + dereference pattern by replacing it with a cast and changingNick Lewycky
2012-06-24Tab to spaces. No functionality change.Nick Lewycky
2012-06-24Remove a dangling reference to a deleted instruction. Fixes PR13185!Nick Lewycky
2012-06-23Allow BBVectorize to fuse compare instructions.Hal Finkel
2012-06-23Extend the IL for selecting TLS models (PR9788)Hans Wennborg
2012-06-23Optimized usage of new SwitchInst case values (IntegersSubset type) in Local....Stepan Dyatkovskiy
2012-06-23BoundsChecking: attach debug info to traps to make my life a bit more saneNuno Lopes
2012-06-22Revert remaining part of r93200: "Disable folding sext(trunc(x)) -> x"Jakob Stoklund Olesen
2012-06-22Fixed r158979.Stepan Dyatkovskiy
2012-06-22fix whitespace in my last commit.Nuno Lopes
2012-06-22remove extractMallocCallFromBitCast, since it was tailor maded for its sole u...Nuno Lopes
2012-06-21instcombine: disable optimization of 'invoke null/undef'. I'll move this fun...Nuno Lopes
2012-06-21Look pass zext to strength reduce an udiv. Patch by David Majnemer. rdar://11...Evan Cheng
2012-06-21Add support for invoke to the MemoryBuiltin analysid.Nuno Lopes
2012-06-21port the BoundsChecking patch to the new MemoryBuiltin API (i.e., remove most...Nuno Lopes
2012-06-21refactor the MemoryBuiltin analysis:Nuno Lopes
2012-06-21Add a number of threshold arguments to the SRA pass.Nadav Rotem
2012-06-20replace usage of EmitGEPOffset() with TargetData::getIndexedOffset() when the...Nuno Lopes
2012-06-20Fix two rather subtle internal vs. external linker issues.Chandler Carruth
2012-06-17Now that SROA can form alloca's for dynamic vector accesses, further improve ...Pete Cooper
2012-06-16Teach BBVectorize to combine, when possible, or discard metadata when fusing ...Hal Finkel
2012-06-16Move the Metadata merging methods from GVN and make them public in MDNode.Hal Finkel
2012-06-16It's not deterministic to iterate over SmallPtrSet. Replace it with SmallSetV...Evan Cheng
2012-06-16Fix crash from r158529 on Bullet.Pete Cooper