Make d'tor out-of-line.
[oota-llvm.git] / lib / Transforms /
2007-01-26 Jim LaskeyChange the MachineDebugInfo to MachineModuleInfo to...
2007-01-26 Reid SpencerFor PR761:
2007-01-26 Devang PatelInherit CallGraphSCCPass directly from Pass.
2007-01-25 Devang PatelInherit BasicBlockPass directly from Pass.
2007-01-25 Chris LattnerMake llvm-extract preserve the callingconv of prototype...
2007-01-22 Reid SpencerCleanup checks in the load and store of casted pointer...
2007-01-21 Reid SpencerFor PR970:
2007-01-20 Reid SpencerRevise the store V, (cast P) -> store (cast V) -> P...
2007-01-20 Chris LattnerTeach TargetData to handle 'preferred' alignment for...
2007-01-20 Owen AndersonCorrect a comment.
2007-01-19 Reid SpencerFor this transform: store V, (cast P) -> store (cast...
2007-01-19 Reid SpencerFor PR1043:
2007-01-18 Chris LattnerFix InstCombine/2007-01-18-VectorInfLoop.ll, a case...
2007-01-18 Reid SpencerClean up some code around the store V, (cast P) ->...
2007-01-17 Reid SpencerFor PR1094:
2007-01-15 Chris LattnerFix a regression in my isIntegral patch that broke...
2007-01-15 Nick LewyckyDon't print address of ETNode. Print the DFSNumIn which...
2007-01-15 Chris LattnerImplement InstCombine/phi.ll:test7, deletion of trivial...
2007-01-15 Chris Lattnersimplify some code now that types are signless
2007-01-15 Chris Lattnerdelete stores to allocas with one use. This is a trivi...
2007-01-15 Chris Lattnerrename Type::isIntegral to Type::isInteger, eliminating...
2007-01-15 Chris LattnerEliminate calls to isInteger, generalizing code and...
2007-01-15 Chris LattnerFix Analysis/Dominators/2006-10-02-BreakCritEdges.ll
2007-01-14 Chris Lattnerinstcombine has always been miscompiling fcmp x, x...
2007-01-14 Chris LattnerFix PR1110 and Analysis/Dominators/2007-01-14-BreakCrit...
2007-01-13 Chris LattnerFix Transforms/InstCombine/2007-01-13-ExtCompareMiscomp...
2007-01-13 Reid SpencerFix indentation to prior level for easier diffs.
2007-01-13 Nick Lewycky"Default context" blocks can occur after a non-default...
2007-01-13 Chris LattnerFix a minor bug handling constant exprs, introduced...
2007-01-13 Chris Lattnerfix a bug in a recent patch
2007-01-12 Chris Lattnersimplify some code
2007-01-12 Chris LattnerRemove over-general comparisons
2007-01-12 Chris Lattnereliminate redundant check
2007-01-12 Chris LattnerBranch conditions must be i1
2007-01-12 Reid SpencerFor PR1064:
2007-01-12 Reid SpencerImplement review feedback for the ConstantBool->Constan...
2007-01-12 Nick LewyckyIf we know that it's a constant being casted, propagate...
2007-01-12 Nick LewyckyClean up logic after ConstantBool removal.
2007-01-11 Reid SpencerRename BoolTy as Int1Ty. Patch by Sheng Zhou.
2007-01-11 Zhou ShengRemove unnecessary boolean type check.
2007-01-11 Zhou ShengFor PR1043:
2007-01-11 Zhou ShengFixed indentation.
2007-01-11 Nick LewyckyQuiet compiler warning. The only reason the function...
2007-01-11 Nick LewyckyNew predicate simplifier!
2007-01-09 Chris LattnerFix a bug in heap-sra that caused compilation failure...
2007-01-08 Jeff CohenUnbreak VC++ build.
2007-01-08 Reid SpencerComparison of primitive type sizes should now be done...
2007-01-08 Reid SpencerFor PR1097:
2007-01-07 Reid SpencerTypes should be const.
2007-01-07 Chris Lattnerthis pass is unused
2007-01-07 Chris LattnerChange the interface to Module::getOrInsertFunction...
2007-01-07 Chris Lattnerprepare for adjustment to getOrInsertFunction method
2007-01-07 Chris Lattnerrelax some types
2007-01-07 Chris Lattnerrelax types
2007-01-07 Chris Lattnerrelax some types
2007-01-07 Chris Lattneradd -debug output for -indvars.
2007-01-06 Chris LattnerFix regressions in InstCombine/call-cast-target.ll...
2007-01-06 Reid SpencerFor PR411:
2007-01-06 Chris Lattnerthis final call to canLosslesslyBitCastTo is dead,...
2007-01-06 Chris Lattnersimplify some more code now that there are not multiple...
2007-01-06 Chris Lattnereliminate some uses of canLosslesslyBitCastTo, this...
2007-01-06 Chris Lattnerno need to worry about int vs uint any more.
2007-01-05 Chris LattnerImplement InstCombine/vec_shuffle.ll:%test7, simplifyin...
2007-01-05 Chris Lattnerfold things like a^b != c^a -> b != c. This implements...
2007-01-05 Chris LattnerCompile X + ~X to -1. This implements Instcombine...
2007-01-04 Reid SpencerDeath to useless bitcast instructions!
2007-01-04 Chris LattnerEnable a couple xforms for packed vectors (undef |...
2007-01-03 Jim LaskeyVectors are not supported by ConstantInt::getAllOnesValue.
2006-12-31 Reid SpencerFix a typo.
2006-12-31 Reid SpencerFor PR950:
2006-12-24 Reid SpencerFor PR1066:
2006-12-23 Reid SpencerShut up some compilers that can't accurately analyze...
2006-12-23 Reid SpencerFor PR1065:
2006-12-23 Reid SpencerFor PR950:
2006-12-22 Chris Lattneradd a simple fast-path for dead allocas
2006-12-21 Reid SpencerRemove isSigned calls via foreknowledge of main's argum...
2006-12-21 Reid SpencerGet rid of a useless if statement whose then and else...
2006-12-20 Chris Lattnerhandle undef values much more carefully: generalize...
2006-12-19 Chris Lattnerswitch statistics over to not use static ctors.
2006-12-19 Chris Lattnereliminate static ctor from example.
2006-12-19 Chris Lattnerremove dead statistic
2006-12-19 Chris Lattnerswitch more statistics over to STATISTIC, eliminating...
2006-12-19 Chris LattnerEliminate static ctors due to Statistic objects
2006-12-19 Chris LattnerConvert more Statistic's over to STATISTIC
2006-12-19 Chris LattnerSwitch over Transforms/Scalar to use the STATISTIC...
2006-12-18 Reid SpencerConvert the last uses of CastInst::createInferredCast...
2006-12-18 Reid SpencerConvert the last use of two-argument ConstantExpr:...
2006-12-17 Bill WendlingAdded an automatic cast to "std::ostream*" etc. from...
2006-12-16 Chris Lattnerwhen inserting a dummy argument to work-around the...
2006-12-15 Chris Lattnerre-enable a temporarily-reverted patch
2006-12-13 Reid SpencerFix a bug in EvaluateInDifferentType. The type of opera...
2006-12-13 Reid SpencerImplement review feedback. Most of this has to do with...
2006-12-13 Reid SpencerFor mul transforms, when checking for a cast from bool...
2006-12-13 Reid SpencerFix and/or/xor (cast A), (cast B) --> cast (and/or...
2006-12-13 Reid SpencerChange the interface to SCEVExpander::InsertCastOfTo...
2006-12-13 Reid SpencerFix some casts. isdigit(c) returns 0 or 1, not 0 or -1
2006-12-13 Chris Lattnerrevert my recent int<->fp and vector union promotion...
2006-12-13 Reid SpencerReplace CastInst::createInferredCast calls with more...
2006-12-12 Reid SpencerReplace inferred getCast(V,Ty) calls with more strict...
2006-12-12 Chris Lattnerthis can be trunc or bitcast, per line 3092.
next