Build more debugger/selectiondag libraries as archives instead of .o files.
[oota-llvm.git] / lib / Transforms /
2006-07-20 Chris LattnerMinor comment tweaks
2006-07-20 Devang PatelMake it fit into 80 cols.
2006-07-20 Devang PatelAdd new constructor to accept vector of exported names...
2006-07-19 Owen AndersonAdd an assertion.
2006-07-19 Owen AndersonMake LoopUnroll not die on LCSSA Phis. This makes...
2006-07-19 Owen AndersonFix a error that hadn't yet cause any problems, but...
2006-07-18 Chris Lattnersilence warnings in a release build
2006-07-18 Evan ChengOnly reuse a previous IV if it would not require a...
2006-07-14 Chris Lattnereliminate some ugly code, using ConstantExpr::getWithOp...
2006-07-14 Owen AndersonHopefully the final attempt at making IndVars preserve...
2006-07-13 Chris LattnerRevert this patch temporarily until PR831 is fixed.
2006-07-12 Chris LattnerHandle instructions in the map, but that map to a null...
2006-07-12 Owen AndersonIndVars now (correctly) preserves LCSSA form.
2006-07-12 Chris LattnerIn addition to deleting calls, the inliner can constant...
2006-07-12 Chris LattnerChange the callgraph representation to store the callsi...
2006-07-11 Chris LattnerSilence a warning produced in assertions-disabled mode
2006-07-11 Owen AndersonRevert my indvars changes because they were breaking...
2006-07-10 Owen AndersonAdd a comment, and fix a typo that broke the build.
2006-07-10 Owen AndersonDon't indent the entire function.
2006-07-10 Chris LattnerRecognize 16-bit bswaps by relaxing overconstrained...
2006-07-10 Owen AndersonMake instcombine not remove Phi nodes when LCSSA is...
2006-07-09 Owen AndersonFix typo in the comment.
2006-07-09 Owen AndersonAdd a fix for an issue where LCSSA would fail to insert...
2006-07-07 Chris LattnerFix PR820 and Transforms/GlobalOpt/2006-07-07-InlineAsm...
2006-06-28 Chris LattnerUse hidden visibility to make symbols in an anonymous...
2006-06-28 Chris LattnerShrink libllvmgcc.dylib by another 23K
2006-06-28 Owen AndersonSwitch to a very conservative heuristic for determining...
2006-06-28 Chris LattnerFix Transforms/InstCombine/2006-06-28-infloop.ll
2006-06-28 Chris LattnerDon't unswitch really large loops even if they are...
2006-06-28 Andrew LenharthCatch more function pointer casting problems
2006-06-27 Owen AndersonFix for 2006-06-27-DeadSwitchCase.ll
2006-06-27 Chris LattnerFix Transforms/DeadArgElim/2006-06-27-struct-ret.ll...
2006-06-27 Owen AndersonDe-pessimize the handling of LCSSA Phi nodes in IndVarS...
2006-06-26 Chris Lattnerrandom code cleanups, no functionality change
2006-06-26 Owen AndersonMake LoopUnswitch able to unswitch loops with live...
2006-06-17 Chris LattnerFix IndVarsSimplify/2006-06-16-Indvar-LCSSA-Crash.ll...
2006-06-16 Evan ChengAdd missing casts. This fixed some regressions.
2006-06-16 Evan ChengMore libcall transformations:
2006-06-16 Evan ChengSimplify fprintf(file, "%s", str) to fputs(str, file).
2006-06-15 Chris LattnerImplement Transforms/InstCombine/bswap.ll, turning...
2006-06-14 Chris LattnerFix Transforms/LoopUnswitch/2006-06-13-SingleEntryPHI...
2006-06-14 Chris LattnerUse the PotDoms map to memoize 'dominating value' looku...
2006-06-13 Owen AndersonFix another instance where PHI nodes need special treat...
2006-06-13 Owen AndersonFix a bug that was causing major slowdowns in povray...
2006-06-12 Owen AndersonReapply my 6/9 changes. The bug Evan saw no longer...
2006-06-12 Chris LattnerFix an infinite loop on Transforms/SimplifyCFG/2006...
2006-06-12 Owen AndersonFix for 2006-06-26-MultipleExitsSingleBlock.
2006-06-11 Owen AndersonRe-commit the safe parts of my 6/9 patch. Still workin...
2006-06-11 Evan ChengBack out Owen's 6/9 changes. They broke MultiSource...
2006-06-09 Owen AndersonAdd LCSSA as a requirement for LoopUnswitch, and assert...
2006-06-09 Owen AndersonMake Loop able to verify that it is in LCSSA-form,...
2006-06-09 Evan ChengRewriteExpr, either the new PHI node of induction varia...
2006-06-08 Owen AndersonUpdate some comments, and expose LCSSAID in preparation...
2006-06-07 Reid SpencerFix a spello in a comment.
2006-06-06 Chris LattnerFix a bug in a recent patch. This fixes UnitTests...
2006-06-06 Owen AndersonFix some formatting, and use inLoop() when appropriate.
2006-06-06 Owen AndersonStop a memory leak, and update some comments.
2006-06-04 Owen AndersonSome more clean-up, and squash an IDF-Phi related bug.
2006-06-04 Owen AndersonVarious clean-ups suggested by Chris.
2006-06-03 Owen AndersonFix a bug in Phi-noded insertion. Also, update some...
2006-06-02 Chris LattnerRemove unneeded hook. Patch by Anton K. Thanks!
2006-06-02 Chris LattnerForce anything that #includes llvm/Transforms/Utils...
2006-06-01 Chris LattnerRemove dead #include
2006-06-01 Chris LattnerMake the "pruning cloner" smarter. As it propagates...
2006-06-01 Chris LattnerSilence a -pedantic warning.
2006-06-01 Owen AndersonRemove a FIXME that was fixed with my last patch.
2006-06-01 Owen AndersonMore cleanups. Also, add a special case for updating...
2006-05-31 Chris LattnerSwap the order of operands created here. For +&|^...
2006-05-31 Owen AndersonExtract a huge loop into a helper method. Fix a few...
2006-05-29 Owen AndersonAdd Use replacement. Assuming there is nothing horribl...
2006-05-28 Owen AndersonMajor think-o. Iterate over all live out-of-loop value...
2006-05-27 Owen AndersonMake LCSSA insert proper Phi nodes throughout the rest...
2006-05-27 Chris LattnerFix some regression from the inliner patch I committed...
2006-05-27 Chris LattnerSwitch the inliner over to using CloneAndPruneFunctionI...
2006-05-27 Chris LattnerImplement a new method, CloneAndPruneFunctionInto,...
2006-05-27 Chris LattnerRefactor some code to expose an interface to constant...
2006-05-27 Owen AndersonA few small clean-ups, and the addition of an LCSSA...
2006-05-26 Owen AndersonFix a copy-and-paste-o that would break some compilers.
2006-05-26 Owen AndersonClean up and refactor LCSSA a bunch. It should also...
2006-05-26 Chris LattnerImplement Transforms/InstCombine/store.ll:test2.
2006-05-26 Owen AndersonSkeletal LCSSA pass. This is currently non-functional...
2006-05-26 Chris LattnerTransform things like (splat(splat)) -> splat
2006-05-25 Chris LattnerIntroduce a helper function that simplifies interpretat...
2006-05-25 Chris LattnerTurn (cast (shuffle (cast)) -> shuffle (cast) if it...
2006-05-25 Chris Lattnerextract element from a shuffle vector can be trivially...
2006-05-25 Chris LattnerRevert a patch that is unsafe, due to out of range...
2006-05-24 Chris LattnerPatch for a new instcombine xform, patch contributed...
2006-05-24 Chris LattnerPatches to make the LLVM sources more -pedantic clean...
2006-05-20 Chris LattnerSilence a bogus gcc warning
2006-05-19 Reid SpencerFix a doxygen problem and break lines at 80 columns
2006-05-17 Chris LattnerDeclare that lowerinvoke doesn't interact with other...
2006-05-17 Chris LattnerAdd a CloneModule call that exposes the mapping of...
2006-05-14 Chris Lattnerremove some dead code identified by coverity
2006-05-14 Chris Lattnerremove dead variables
2006-05-14 Evan ChengBacking out last check-in for now. It's causing an...
2006-05-13 Chris LattnerAdd/Sub/Mul are safe to promote here as well. Incremen...
2006-05-13 Chris LattnerImplement simple promotion for cast elimination in...
2006-05-12 Chris LattnerRemove some dead variables.
2006-05-12 Chris LattnerRemove dead stuff
2006-05-11 Chris LattnerRefactor some code, making it simpler.
next