simplify more.
[oota-llvm.git] / lib / Transforms /
2010-05-08 Chris Lattnermake simplifycfg insert an llvm.trap before the 'unreac...
2010-05-08 Chris LattnerTeach instcombine to transform a bitcast/(zext|trunc...
2010-05-08 Chris LattnerFix PR7052, patch by Jakub Staszak!
2010-05-07 Dan GohmanWhen pruning candidate formulae out of an LSRUse, updat...
2010-05-07 Devang PatelWrap const MDNode * inside DIDescriptor.
2010-05-07 Devang PatelUse overloaded operators instead of DIDescriptor::getNode()
2010-05-07 Ted KremenekUpdate CMake build.
2010-05-07 Dan GohmanAdd an LLVM IR version of code sinking. This uses the...
2010-05-05 Bob WilsonUse the right version of "append" to combine two SmallV...
2010-05-04 Bob WilsonCombine the implementations of the core part of the...
2010-05-04 Bob WilsonDefer adding critical edges to the "toSplit" list until...
2010-05-03 Dan GohmanUse getConstant instead of getIntegerSCEV. The two...
2010-05-03 Devang PatelCheck for side effects before splitting loop.
2010-05-01 Chris Lattnerrevert r102831. We already delete dead readonly calls in
2010-05-01 Owen AndersonDisable the call-deletion transformation introduced...
2010-05-01 Chris Lattnerrename InlineInfo.DevirtualizedCalls -> InlinedCalls to
2010-05-01 Chris LattnerImplement rdar://6295824 and PR6724 with two tiny changes
2010-05-01 Chris LattnerThe inliner has traditionally not considered call sites
2010-04-30 Devang PatelPreserve debug info attached with call instruction...
2010-04-28 Chris Lattnerfurther clarify alignment of globals, fix instcombine
2010-04-26 Chris LattnerFix a problem that lower invoke has with allocas (PR669...
2010-04-26 Chris Lattnerfix PR6940: sitofp(undef) folds to 0.0, not undef.
2010-04-25 Chris Lattnerremove #if 1's.
2010-04-24 Dan GohmanGeneralize LSR's OptimizeMax to handle the new kinds...
2010-04-23 Chris Lattnerenable my inliner change: add newly devirtualized call...
2010-04-23 Chris Lattnerswitch InlineInfo.DevirtualizedCalls's list to be of...
2010-04-23 Dan GohmanFix LSR to tolerate cases where ScalarEvolution initially
2010-04-23 Chris Lattnerdisable my previous inliner patch, it appears to be...
2010-04-22 Chris LattnerThe inliner was choosing to not consider call sites
2010-04-22 Chris Lattnerrefactor the interface to InlineFunction so that most...
2010-04-22 Chris Lattnerwhen inlining something like this:
2010-04-22 Chris Lattnereliminate dead #include.
2010-04-21 Bob WilsonFix a performance problem with the new SSAUpdater....
2010-04-20 Devang PatelRename ValueMapTy as ValueToValueMapTy to clearly indic...
2010-04-20 Devang PatelThere is no need to install ValueMapper.h header.
2010-04-20 Gabor Greifuse abstract accessors to CallInst
2010-04-20 Chris Lattnerremove a bunch of ad-hoc code to simplify instructions...
2010-04-20 Chris Lattnermove some select simplifications out out instcombine...
2010-04-20 Chris LattnerRewriteLoopBodyWithConditionConstant can end up rewriti...
2010-04-20 Chris Lattnermake the inliner do less work for leaf functions.
2010-04-20 Chris LattnerFix rdar://7879828 - crash in CallGraph, a self host...
2010-04-19 Dan GohmanRemove the Expr member from IVUsers. Instead of remembe...
2010-04-17 Bob WilsonRe-commit my previous SSAUpdater changes. The previous...
2010-04-16 Eric ChristopherRevert 101465, it broke internal OpenGL testing.
2010-04-16 Chris Lattnerintroduce a new CallGraphSCC class, and pass it around
2010-04-16 Dan GohmanRefine the detection of seemingly infinitely recursive...
2010-04-16 Gabor Greifreapply r101434
2010-04-16 Chris Lattnerfix comment noticed by Bob
2010-04-16 Gabor Greifback out r101423 and r101397, they break llvm-gcc self...
2010-04-16 Chris Lattnerfix PR6832: we were using the alignment of a pointer...
2010-04-16 Chris Lattnerimprove comments.
2010-04-16 Chris Lattnerpull all the ConvertToScalarInfo code together into one
2010-04-16 Chris Lattnermore refactoring: suck some stuff out of SRoA into
2010-04-16 Gabor Greifshift intrinsic operand
2010-04-15 Chris Lattnerintroduce a new ConvertToScalarInfo struct to simplify
2010-04-15 Chris Lattnertidy interface to isOnlyCopiedFromConstantGlobal
2010-04-15 Gabor Greifreapply r101364, which has been backed out in r101368
2010-04-15 Anton KorobeynikovRevert r100896 and around - this breaks the only mingw3...
2010-04-15 Dan GohmanFix a bunch of namespace polution.
2010-04-15 Gabor Greifback out r101364, as it trips the linux nightlybot...
2010-04-15 Gabor Greifrotate CallInst operands, i.e. move callee to the back
2010-04-14 Tobias GrosserIPO needs ScalarOpts and InstCombine in its libs
2010-04-14 Evan Cheng- Code clean up to reduce indentation.
2010-04-14 Gabor Greifperformance: cache the dereferenced use_iterator
2010-04-14 Gabor Greifperformance: cache the dereferenced use_iterator
2010-04-14 Nick LewyckyI don't know how, but I managed to goof the revert...
2010-04-14 Nick LewyckyRevert r101213.
2010-04-14 Nick LewyckyRemove tab.
2010-04-14 Nick LewyckyWhile DAE can't modify the function signature of an...
2010-04-13 Eric ChristopherActually... return after the check for invalid input.
2010-04-13 Owen AndersonRemove SCCVN from the CMake build system.
2010-04-13 Owen AndersonSCCVN, we hardly knew ye!
2010-04-13 Dan GohmanTeach IndVarSimplify how to eliminate remainder operato...
2010-04-12 Dan GohmanSuppress LinearFunctionTestReplace when the computed...
2010-04-12 Dan GohmanDelete this code, which is no longer needed.
2010-04-12 Dan GohmanMove the EliminateIVUsers call back out to its original...
2010-04-12 Dan GohmanUse RecursivelyDeleteTriviallyDeadInstructions in Elimi...
2010-04-12 Eric ChristopherVerify function prototypes before trying to optimize...
2010-04-12 Dan GohmanRe-apply r101000, with a fix: Don't eliminate an icmp...
2010-04-12 Dan GohmanRevert 101000, which is breaking self-host builds.
2010-04-11 Dan GohmanTeach IndVarSimplify how to eliminate comparisons invol...
2010-04-11 Dan GohmanRename isLoopGuardedByCond to isLoopEntryGuardedByCond...
2010-04-10 Chris LattnerImplement support for varargs functions without any...
2010-04-10 Chris Lattnerfix PR6743, a case where we'd delete an instruction...
2010-04-10 Chris Lattnerfix PR6760, a missing check in heap SRoA.
2010-04-09 Dan GohmanWhen determining a canonical insert position, don't...
2010-04-09 Chris Lattnersuck the propagating "has dynamic libs" check into...
2010-04-09 Chris Lattneradd minix support, patch by Kees van Reeuwijk! PR6797
2010-04-09 Wesley PeckAdding IPSCCP and Internalize passes to the C-bindings
2010-04-09 Dan GohmanWhen looking for loop-invariant users, look through...
2010-04-09 Gabor Greifperformance: cache result of looking up user
2010-04-09 Dan GohmanMinor code simplification.
2010-04-09 Gabor Greifconst-ize a predicate
2010-04-09 Dan GohmanRefactor the code for computing the insertion point...
2010-04-09 Chris Lattnerfix a SCCP miscompilation that could happen when a
2010-04-08 Dan GohmanAvoid allocating a value of zero in a register if the...
2010-04-08 Dan GohmanAdd variants of ult, ule, etc. which take a uint64_t...
2010-04-08 Dan GohmanWhen expanding expressions which are using post-inc...
2010-04-07 Dan GohmanSay bitcast instead of bitconvert.
2010-04-07 Eric ChristopherAdd support for stpncpy_chk.
next