Fix spelling and grammar in a comment.
[oota-llvm.git] / lib / Transforms / Scalar /
2008-05-20 Matthijs KooijmanFix typo.
2008-05-20 Chris LattnerTeach instcombine 4 new xforms:
2008-05-20 Chris Lattnerfix two issues Neil noticed, thanks!
2008-05-20 Dan GohmanRefine the fix in r51169 to only apply when the operand...
2008-05-20 Dan GohmanMake AssociativeOpt static.
2008-05-19 Devang PatelDo not erase induction variable increment if it is...
2008-05-19 Dan GohmanAdd a ComputeNumSignBits function for use by instcombin...
2008-05-19 Chris Lattnerswitch to Type::getFPMantissaWidth instead of reinventi...
2008-05-19 Chris Lattnerminor cleanups, teach instcombine that sitofp/uitofp...
2008-05-19 Chris Lattnerconvert fptosi(sitofp x) -> x if the fp value has...
2008-05-19 Chris LattnerFold FP comparisons where one operand is converted...
2008-05-19 Chris Lattnerremove debug output
2008-05-19 Chris Lattnerbe more aggressive about transforming add -> or when...
2008-05-19 Duncan SandsFix PR2341 - when the length is 4 use an i32 not
2008-05-18 Nate BegemanTeach GVN to not assert on vector comparisons
2008-05-18 Chris LattnerFix PR2339
2008-05-17 Nick LewyckyMove isTrueWhenEqual to ICmpInst.
2008-05-16 Gabor GreifAPI change for {BinaryOperator|CmpInst|CastInst}::creat...
2008-05-16 Duncan SandsBill pointed out that system headers should be
2008-05-16 Evan ChengDo not dup malloc, vector instructions, etc. Throttle...
2008-05-16 Owen AndersonRemove ADCE's ability to delete loops. This ability...
2008-05-16 Owen AndersonClean ups for loop deletion based on Chris' feedback.
2008-05-16 Chris Lattnerimplement PR2328.
2008-05-15 Dan GohmanFix a bug in LoopStrengthReduce that caused it to emit...
2008-05-15 Devang PatelRemove useless check.
2008-05-15 Duncan SandsUse of UINT_MAX requires climits, at least when
2008-05-15 Gabor GreifFix a bunch of 80col violations that arose from the...
2008-05-14 Bill WendlingSituations can arise when you have a function called...
2008-05-14 Chris Lattnerrename SimplifyCFG.cpp -> SimplifyCFGPass.cpp
2008-05-14 Dan GohmanSplit the loop unroll mechanism logic out into a utilit...
2008-05-13 Owen AndersonFix Analysis/BasicAA/pure-const-dce.ll. This turned...
2008-05-13 Dale JohannesenFix for PR 2323, infinite loop in tail dup.
2008-05-13 Owen AndersonMake the non-local CSE safety checks slightly more...
2008-05-13 Owen AndersonAdd support for non-local CSE of read-only calls.
2008-05-13 Dan GohmanChange class' public PassInfo variables to by initializ...
2008-05-13 Nate Begeman80 col / tabs fixes
2008-05-13 Dan GohmanClean up the use of static and anonymous namespaces...
2008-05-12 Owen AndersonGo back to passing the analyses around as parameters.
2008-05-12 Owen AndersonMove the various analyses used by GVN into static varia...
2008-05-11 Chris LattnerFix various DOUTs to not call the extremely expensive...
2008-05-10 Chris LattnerSimplify code by using SwitchInst::findCaseValue instea...
2008-05-09 Chris Lattnerdon't sink invokes, even if they are readonly. This...
2008-05-09 Chris LattnerImplement PR2298. This transforms:
2008-05-09 Chris Lattnerrestore doxygen comment.
2008-05-08 Gordon HenriksenImprove pass documentation and comments.
2008-05-08 Chris LattnerMore than just loads can read from memory: readonly...
2008-05-08 Chris LattnerMake instcombine's DSE respect loads as well as stores...
2008-05-07 Anton KorobeynikovTurn StripPointerCast() into a method
2008-05-07 Dan GohmanFix a bug in the ComputeMaskedBits logic for multiply.
2008-05-06 Anton KorobeynikovMake StripPointerCast a common function (should we...
2008-05-06 Owen AndersonWe need to update PHIs containing the exiting block...
2008-05-06 Devang PatelFix typo.
2008-05-06 Chris Lattnerfix typo Duncan noticed
2008-05-06 Dan GohmanMake several variable declarations static.
2008-05-06 Dan GohmanCorrect the value of LowBits in srem and urem handling in
2008-05-05 Bill WendlingFix: Some classes were derived from a class in an anony...
2008-05-05 Chris LattnerFix a crash when threading a block that includes a...
2008-05-04 Torok EdwinprocessStore may delete the instruction, avoid
2008-05-03 Devang PatelDo not sink getresult.
2008-05-02 Dan GohmanFix a mistake in the computation of leading zeros for...
2008-05-02 Chris Lattnerstrength reduce exp2 into ldexp, rdar://5852514
2008-05-02 Chris Lattneradd a FIXME so we remember to eventually remove this...
2008-05-02 Bill WendlingPorting r50563 from Tak to mainline.
2008-05-01 Dale JohannesenDon't try to create PHIs of struct types. Fallout
2008-05-01 Dan GohmanFix an overaggressive SimplifyDemandedBits optimization...
2008-05-01 Chris Lattner1) add '-debug' output
2008-05-01 Chris LattnerDelete the IPO simplify-libcalls and completely reimple...
2008-04-30 Owen AndersonThis condition got inverted accidentally.
2008-04-30 Chris Lattnermove lowering of llvm.memset -> store from simplify...
2008-04-29 Owen AndersonRevert r50441. The original code was correct. Add...
2008-04-29 Owen AndersonFix a bug in memcpyopt where the memcpy-memcpy transfor...
2008-04-29 Owen AndersonWe should be returning true here since we've changed...
2008-04-29 Owen AndersonA lot of cleanups and documentation improvements, as...
2008-04-29 Owen AndersonRename DeadLoopElimination to LoopDeletion, part 2.
2008-04-29 Owen AndersonRename DeadLoopElimination to LoopDeletion, part one.
2008-04-29 Chris Lattnerdon't eliminate load from volatile value on paths where...
2008-04-29 Chris Lattnerfix a subtle volatile handling bug.
2008-04-29 Owen AndersonClarify what we mean by a dead loop.
2008-04-29 Chris Lattnerdon't delete the last store to an alloca if the store...
2008-04-29 Owen AndersonAdd some more comments.
2008-04-29 Owen AndersonRemove debugging code.
2008-04-29 Owen AndersonAdd dead loop elimination, which removes dead loops...
2008-04-28 Dan GohmanFix DSE to not eliminate volatile loads with no uses.
2008-04-28 Dan GohmanTeach InstCombine's ComputeMaskedBits what SelectionDAG's
2008-04-27 Chris LattnerImplement a signficant optimization for inline asm:
2008-04-27 Chris LattnerMove a bunch of inline asm code out of line.
2008-04-25 Dale Johannesenchange comments per review
2008-04-25 Dan GohmanRemove the code from CodeGenPrepare that moved getresul...
2008-04-25 Nick LewyckyRemove 'unwinds to' support from mainline. This patch...
2008-04-25 Chris LattnerDon't infininitely thread branches when a threaded...
2008-04-24 Chris Lattnercode restructuring, not functionality change.
2008-04-24 Chris LattnerDon't replace multiple result of calls with undef,
2008-04-24 Chris Lattnercode cleanup, no functionality change.
2008-04-23 Dale JohannesenRewrite previous patch to suit Chris's preference.
2008-04-23 Chris LattnerRewrite multiple return value handling in SCCP. Before...
2008-04-23 Dale JohannesenDo not change the type of a ByVal argument to a
2008-04-23 Evan ChengDon't do: "(X & 4) >> 1 == 2 --> (X & 4) == 4" if...
2008-04-22 Chris LattnerStart doing the significantly useful part of jump threa...
2008-04-22 Chris LattnerDig through multiple levels of AND to thread jumps...
2008-04-22 Chris LattnerTeach jump threading to thread through blocks like:
next