Add testcases for negated multiplies
[oota-llvm.git] / lib /
2003-03-10 Chris LattnerAdd new transformation: // (~A | ~B) == (~(A & B))
2003-03-10 Chris LattnerGeneralize not and neg comparison testers to allow...
2003-03-10 Chris LattnerFix ConstantUInt::isAllOnesValue
2003-03-10 Chris LattnerGeneralize (A+c1)+c2 optimization to work with all...
2003-03-10 Chris LattnerMinor change, no functionality diff
2003-03-10 Chris LattnerFix bug: (x << 100) wasn't folded to 0, but (x >> 100...
2003-03-10 Chris LattnerImplement: (A|B)^B == A & (~B)
2003-03-07 Chris LattnerFix bug: SimplifyCFG/2003-03-07-DominateProblem.ll
2003-03-06 Chris LattnerClean up cruft
2003-03-06 Chris LattnerRemove #include
2003-03-06 Chris LattnerInfrastructure for more compact bytecode files and...
2003-03-06 Chris Lattners/Method/Function in variable and method names
2003-03-06 Chris LattnerContinue simplifying error handling, s/method/function
2003-03-06 Chris LattnerCleanup error handling constructs
2003-03-06 Chris LattnerPull common code out
2003-03-06 Chris LattnerRemove unneccesary forward decl
2003-03-06 Chris LattnerUse the std namespace explicitly
2003-03-05 Chris LattnerImplement %test7 in InstCombine/getelementptr.ll
2003-03-05 Chris LattnerImplement CFGSimplify/PhiBlockMerge*.ll
2003-03-05 Chris LattnerSimplify some of the PHI node interfaces
2003-03-05 Chris LattnerImplement testcase CFGSimplify/EqualPHIEdgeBlockMerge.ll
2003-03-04 Chris LattnerFix bug: BasicAA/2003-03-04-GEPCrash.ll
2003-03-03 Chris LattnerConvert LICM over to use AliasSetTracker. Besides...
2003-03-03 Chris LattnerFix bug: Assembler/2003-03-03-DuplicateConstant.ll
2003-03-03 Chris LattnerADd two new 'add' methods
2003-03-03 Chris LattnerEliminate tons of bogus warnings
2003-03-03 Chris LattnerChange the mem2reg interface to accept a TargetData...
2003-03-03 Chris LattnerDon't apply type information to load instructions if...
2003-03-02 Chris LattnerFix a problem with negative indexes
2003-02-28 Chris LattnerFix bug: LICM/2003-02-28-PromoteDifferentType.ll
2003-02-28 Chris LattnerAdd dump method for Loops
2003-02-28 Chris LattnerFix bug I introduced yesterday :(
2003-02-28 Chris LattnerFix bug: LICM/2003-02-27-PreheaderExitNodeUpdate.ll
2003-02-27 Chris LattnerFix bug: 2003-02-27-PreheaderExitNodeUpdate.ll by updat...
2003-02-27 Chris LattnerSimplify a bit by using a new member function
2003-02-27 Chris LattnerChange behavior of changeExitBlock function to replace...
2003-02-27 Chris LattnerAdd a new assertion to check that stuff is happening...
2003-02-27 Chris LattnerFix bug: 2003-02-27-StoreSinkPHIs.ll
2003-02-27 Chris LattnerFix bug: LICM/2003-02-27-PreheaderProblem.ll
2003-02-27 Chris Lattner * Don't forget to update Loop information!
2003-02-27 Chris LattnerReplace assertion with a handler.
2003-02-27 Chris Lattner * Significant changes to the preheader insertion pass:
2003-02-27 Chris Lattner - LoopInfo now calculates and tracks loop exit blocks
2003-02-26 Chris LattnerMake the aliassettracker much more precise by actually...
2003-02-26 Chris LattnerFix bug: BasicAA/2003-02-26-AccessSizeTest.ll
2003-02-26 Chris LattnerFix several bugs in basic-aa
2003-02-26 Chris LattnerRename -no-* to -disable-*
2003-02-26 Chris LattnerAdd new -no-aa implementation
2003-02-26 Chris LattnerMove BasicAA pass out to it's own header file
2003-02-26 Chris LattnerAdjust to implement new AA interface
2003-02-26 Chris LattnerAdjust to new AA interface
2003-02-26 Chris LattnerConvert to work with new AliasAnalysis interface by...
2003-02-26 Chris LattnerCalculate and pass load sizes to the alias analysis...
2003-02-26 Chris LattnerAdjust to new AA interface
2003-02-26 Chris Lattner - Checkin of the alias analysis work:
2003-02-26 Chris LattnerAllow ImmutablePass's to require other immutable passes...
2003-02-25 Chris LattnerFix typeo
2003-02-25 Chris LattnerRemove wierd case that can never happen
2003-02-24 Chris LattnerRename Instruction::hasSideEffects() -> mayWriteToMemory()
2003-02-24 Chris LattnerThis is a substantial rewrite of the AliasSetTracker...
2003-02-24 Chris LattnerInitial implementation of Loop invariant memory->scalar...
2003-02-22 Chris LattnerSplit mem2reg promotion into two parts: a function...
2003-02-22 Chris LattnerClean up std namespace references
2003-02-22 Chris LattnerDramatically simplify building of natural loops and...
2003-02-20 Chris LattnerFix the requisite bug that I introduced
2003-02-20 Chris LattnerFix 80 character formatting
2003-02-20 Chris LattnerFix bug: 2003-02-19-LoopInfoNestingBug.ll
2003-02-18 Chris Lattner4 new transformations:
2003-02-18 Chris LattnerAdd a variety of new transformations:
2003-02-14 Chris LattnerFix resolution of indirect function calls... whoops
2003-02-14 Anand ShuklaChanges to runtime framework
2003-02-14 Chris LattnerMark function edges
2003-02-14 Chris LattnerFix a bug that cause a crash resolving questionable...
2003-02-14 Chris Lattner- Eliminate provably non-pointer nodes from graphs.
2003-02-14 Chris LattnerFix a misunderstanding of the standard associative...
2003-02-14 Chris LattnerDon't put integer pointers (longs) into the scalar...
2003-02-14 Chris LattnerFix bug: LevelRaise/2003-02-13-CallRaise.ll
2003-02-13 Chris LattnerHax0r around a deficiency in the Pass infrastructure
2003-02-13 Chris LattnerUse the new tailclip property new added to graphviz...
2003-02-13 Chris LattnerThis speeds up processing LLVM a _lot_, 17% in the...
2003-02-13 Chris LattnerMove node forwarding code from being inlined to being...
2003-02-13 Chris LattnerMake more compatible with GCC 2.96
2003-02-13 Chris LattnerRemove gunk that was supposed to make space evaluation...
2003-02-12 Joel StanleyFixed alloca declaration problem on sun.
2003-02-12 Chris LattnerDon't output times in "scientific" notation
2003-02-11 Chris LattnerRename options
2003-02-11 Chris LattnerImplement a "union-findy" version of DS-Analysis, which...
2003-02-11 Chris LattnerMinor tweaks to printing. Close the file before viewin...
2003-02-10 Chris LattnerModest speedup which seems to help steens quite a bit...
2003-02-10 Chris LattnerFix problem breaking GAP, use hasNoReferrers more
2003-02-10 Chris LattnerImplement a new "viewGraph" method which can be used...
2003-02-10 Chris LattnerRearrange code
2003-02-10 Chris LattnerFix problem breaking Fhourstones
2003-02-10 Chris LattnerRevert Anand's patch which broke the build
2003-02-10 Chris LattnerMake steensgaards performance not shameful
2003-02-09 Chris LattnerDon't insert null entries into the scalar map for const...
2003-02-09 Anand Shukla*** empty log message ***
2003-02-09 Chris LattnerRemove the -debug option from release executables
2003-02-09 Chris LattnerAllow printing of various types of alias analysis results
2003-02-09 Chris LattnerImplement knowledge in BasicAA that &A->field != &A...
next