New testcases for PR615
[oota-llvm.git] / lib / Transforms /
2005-08-05 Chris LattnerMake sure to clean CastedPointers after casts are poten...
2005-08-05 Chris Lattnernow that hasConstantValue defaults to only returning...
2005-08-05 Chris LattnerThis code can handle non-dominating instructions
2005-08-04 Nate BegemanFix a fixme in CondPropagate.cpp by moving a PhiNode...
2005-08-04 Chris LattnerModify how immediates are removed from base expressions...
2005-08-04 Chris Lattner* Refactor some code into a new BasedUser::RewriteInstr...
2005-08-04 Chris LattnerFix a case that caused this to crash on 178.galgel
2005-08-04 Chris LattnerTeach LSR about loop-variant expressions, such as loops...
2005-08-04 Nate BegemanRemove some more dead code.
2005-08-04 Chris LattnerRefactor this code substantially with the following...
2005-08-04 Chris Lattnerrefactor some code
2005-08-04 Chris Lattnerinvert to if's to make the logic simpler
2005-08-04 Chris LattnerWhen processing outer loops and we find uses of an...
2005-08-03 Chris LattnerTeach loop-reduce to see into nested loops, to pull...
2005-08-03 Chris Lattnerimprove debug output
2005-08-03 Chris LattnerMove from Stage 0 to Stage 1.
2005-08-03 Chris LattnerRename IVUse to IVUsersOfOneStride, use a struct instea...
2005-08-03 Chris LattnerFix a nasty dangling pointer issue. The ScalarEvolutio...
2005-08-03 Chris LattnerThe correct fix for PR612, which also fixes
2005-08-03 Chris LattnerWhen inserting code, make sure not to insert it before...
2005-08-03 Chris LattnerFix Transforms/SimplifyCFG/2005-08-03-PHIFactorCrash...
2005-08-03 Chris LattnerFinally, add the required constraint checks to fix...
2005-08-03 Chris LattnerSimplify some code, add the correct pred checks
2005-08-03 Chris LattnerRefactor code out of PropagatePredecessorsForPHIs,...
2005-08-03 Chris Lattneruse splice instead of remove/insert to avoid some symta...
2005-08-03 Chris Lattnermove two functions up in the file, use SafeToMergeTermi...
2005-08-03 Chris LattnerRip some code out of the main SimplifyCFG function...
2005-08-02 Chris LattnerDisable this patch:
2005-08-02 Chris LattnerChange a place to use an arbitrary value instead of...
2005-08-02 Chris LattnerUpdate to use the new MathExtras.h support for log2...
2005-08-02 Chris LattnerLike the comment says, do not insert cast instructions...
2005-08-02 Chris LattnerThis code was very close, but not quite right. It...
2005-08-02 Chris Lattneradd a comment, make a check more lenient
2005-08-02 Chris LattnerSimplify for loop, clear a per-loop map after processin...
2005-08-02 Chris LattnerAdd a comment
2005-08-02 Chris LattnerFix an iterator invalidation problem
2005-08-01 Chris LattnerConstantInt::get only works for arguments < 128.
2005-07-30 Jeff CohenKeep tabs and trailing spaces out.
2005-07-30 Jeff CohenFix VC++ build problems.
2005-07-30 Nate BegemanAck, typo
2005-07-30 Nate BegemanCommit a new LoopStrengthReduce pass that can use scala...
2005-07-30 Nate BegemanBreak SCEVExpander out of IndVarSimplify into its own...
2005-07-27 Jeff CohenEliminate all remaining tabs and trailing spaces.
2005-07-26 Chris LattnerConvertibleToGEP always returns 0, remove some old...
2005-07-20 Chris LattnerDo not let MaskedValueIsZero consider undef to be zero...
2005-07-18 Chris LattnerWhen transforming &A[i] < &A[j] -> i < j, make sure...
2005-07-07 Chris LattnerFix a problem that instcombine would hit when dealing...
2005-06-30 Chris LattnerFix PR590 and Transforms/Mem2Reg/2005-06-30-ReadBeforeW...
2005-06-29 John CriswellDoh! Forgot to LLVMify the style.
2005-06-29 John CriswellBasic fix for PR#591; don't convert an fprintf() to...
2005-06-24 Chris Lattneradd a debug type
2005-06-20 Andrew Lenharthprevent va_arg from being hoisted from a loop
2005-06-19 Andrew Lenharthprevent DCE of vaarg intrinsics. This should take...
2005-06-18 Andrew Lenharthcore changes for varargs
2005-06-18 Reid SpencerFix a problem with the strcmp optimization checking...
2005-06-18 Reid SpencerClean up some uninitialized variables and missing retur...
2005-06-17 Chris LattnerThis is not true: (X != 13 | X < 15) -> X < 15
2005-06-17 Chris LattnerDon't crash when dealing with INTMIN. This fixes PR585 and
2005-06-17 Chris LattnerDon't crash on: X = phi (X, X).
2005-06-17 Chris Lattneravoid constructing out of range shift amounts.
2005-06-16 Chris LattnerFix PR583 and testcase Transforms/InstCombine/2005...
2005-06-16 Chris LattnerFix PR571, removing code that does just the WRONG thing :)
2005-06-16 Chris LattnerFix a bug in my previous patch. Do not get the shift...
2005-06-15 Chris LattnerFix PR575, patch provided by John Mellor-Crummey. ...
2005-06-15 Chris LattnerFix PR582. The rewriter can move casts around, which...
2005-06-15 Chris LattnerDo not promote globals only used by main to locals...
2005-06-15 Chris LattnerFix PR577 and testcase InstCombine/2005-06-15-ShiftSetC...
2005-06-15 Reid SpencerPut the hack back in that removes features, causes...
2005-06-13 Reid SpencerUnbreak several InstCombine regression checks introduce...
2005-06-09 Chris LattnerFix a 64-bit problem, passing (int)0 through ... instea...
2005-06-09 Chris LattnerFix a problem on 64-bit targets where we passed (int...
2005-06-04 Andrew Lenharthhack to fix bzip2 (bug 571)
2005-05-21 Reid SpencerMake the registration hash_map static. No other module...
2005-05-21 Reid SpencerAdjust the file comment to read a little easier.
2005-05-21 Reid SpencerMake sure ... arguments are casted to sbyte* where...
2005-05-21 Reid SpencerAdd a "brief" comment for CastToCStr
2005-05-20 Chris LattnerFix mismatched type problem that crashed on cases like...
2005-05-20 Chris LattnerFix Transforms/SimplifyCFG/switch-simplify-crash.ll
2005-05-18 Chris Lattnerteach the inliner about coldcc and noreturn functions
2005-05-15 Reid SpencerDon't look for __builtin_ffs, we'll never see it from...
2005-05-15 Reid SpencerProvide this optimization as well:
2005-05-15 Reid SpencerDuh .. you actually have to #include Config/config...
2005-05-14 Reid SpencerChanges for ffs lib call simplification:
2005-05-14 Chris LattnerPreserve calling conv when hacking on calls
2005-05-14 Chris Lattnerpreserve calling conventions when hacking on code
2005-05-14 Chris LattnerMake sure to preserve the calling convention when chang...
2005-05-13 Chris Lattnercalling a function with the wrong CC is undefined,...
2005-05-13 Chris LattnerWhen lowering invokes to calls, amke sure to preserve...
2005-05-13 Chris LattnerPrefer int 0 instead of long 0 for GEP arguments.
2005-05-10 Chris LattnerFix Reassociate/shifttest.ll
2005-05-09 Chris LattnerIf a function contains no allocas, all of the calls...
2005-05-09 Chris Lattnerimplement and.ll:test33
2005-05-09 Chris LattnerPreserve calling conventions when doing IPO
2005-05-09 Chris Lattnerwrap long lines, preserve calling conventions when...
2005-05-08 Chris LattnerConvert non-address taken functions with C calling...
2005-05-08 Chris LattnerImplement Reassociate/mul-neg-add.ll
2005-05-08 Chris LattnerBail out earlier
2005-05-08 Chris LattnerTeach reassociate that 0-X === X*-1
2005-05-08 Chris LattnerFix PR557 and basictest[34].ll.
2005-05-08 Chris LattnerAdd debugging information
next