Remove attribution from file headers, per discussion on llvmdev.
[oota-llvm.git] / lib / Analysis / ScalarEvolution.cpp
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-10 Chris LattnerFix PR1850 by removing an unsafe transformation from...
2007-11-25 Nick LewyckyAdd new SCEV, SCEVSMax. This allows LLVM to analyze...
2007-11-23 Chris Lattnersimplify some code.
2007-11-23 Chris LattnerFix a bug where we'd try to find a scev value for a...
2007-11-22 Nick LewyckyInstead of calculating constant factors, calculate...
2007-11-20 Nick LewyckySmall cleanup. Use APInt::getHighBitsSet method instead...
2007-11-20 Nick LewyckyBe more careful when transforming | to +. Patch from...
2007-11-15 Anton KorobeynikovReverted r44163 per request
2007-11-15 Nick LewyckyFix handling of overflow in loop calculation by adding...
2007-10-22 Dan GohmanMove the SCEV object factors from being static members...
2007-09-27 Nick LewyckyBuild the correct range for loops with unusual bounds...
2007-09-06 Dale JohannesenNext round of APFloat changes.
2007-08-21 Devang PatelUse SmallVector instead of std::vector.
2007-08-06 Nick LewyckyLet scalar-evolution analyze loops with an unsigned...
2007-08-06 Nick LewyckyDon't assume it's safe to transform a loop just because...
2007-07-16 Nick LewyckyHandle decrementing loops properly. Fixes PR1533.
2007-07-09 Dan GohmanMove the APInt form of SCEVUnknown::getIntegerSCEV...
2007-06-19 Dan GohmanRename ScalarEvolution::deleteInstructionFromRecords to
2007-06-18 Dan GohmanIn SCEVAddExpr::get, skip over any cast operands before...
2007-06-15 Dan GohmanAdd a SCEV class and supporting code for sign-extend...
2007-06-06 Nick LewyckyOptimize this test. Firstly, only Instructions may...
2007-06-06 Nick LewyckyFix PR1487 and Transforms/IndVar/2007-06-06-DeleteDangl...
2007-05-03 Devang PatelDrop 'const'
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-02 Lauro Ramos VenancioFix build error.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-04-16 Reid SpencerRevert last patch. It was already fixed.
2007-04-16 Reid SpencerFor PR1336:
2007-04-15 Chris LattnerFix a nasty bug introduced when apint'ified. This...
2007-04-07 Zhou ShengEliminate unnecessary APInt construction.
2007-04-07 Zhou ShengMake APInt variables do the computation stuffs instead of
2007-04-07 Zhou ShengEliminate unnecessary zext/trunc stuffs.
2007-04-02 Chris LattnerTreat xor of signbit like an add.
2007-03-04 Reid SpencerGuard further against APInt operations with operands...
2007-03-02 Reid SpencerFix an unequal bitwidth issue.
2007-03-02 Reid SpencerPrefer non-virtual calls to ConstantInt::isZero over...
2007-03-01 Reid SpencerMake it possible to create an SCEVUnknown from an APInt...
2007-03-01 Reid SpencerConstruct ConstantInt with simpler constructor.
2007-03-01 Reid SpencerFix last night's 445.gobmk breakage which was caused...
2007-03-01 Reid SpencerRemove the "isSigned" parameters from ConstantRange...
2007-03-01 Reid SpencerAPIntify various computations in ScalarEvolution
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-02 Reid SpencerChanges to support making the shift instructions be...
2007-01-30 Chris LattnerThe local "ConstantFold" method is now just a watered...
2007-01-30 Chris Lattneradjust to constant folding api changes.
2007-01-19 Reid SpencerFor PR1043:
2007-01-15 Jeff CohenUnbreak VC++ build.
2007-01-15 Chris Lattnerrename Type::isIntegral to Type::isInteger, eliminating...
2007-01-15 Chris LattnerUpdate code to eliminate calls to isInteger, calling...
2007-01-14 Chris LattnerFix PR1101 and Analysis/ScalarEvolution/trip-count.ll
2007-01-12 Chris Lattnerdon't discriminate against bool
2007-01-12 Reid SpencerImplement review feedback for the ConstantBool->Constan...
2007-01-11 Reid SpencerRename BoolTy as Int1Ty. Patch by Sheng Zhou.
2007-01-11 Zhou ShengFor PR1043:
2007-01-08 Reid SpencerConvert uses of getPrimitiveSize that should be getPrim...
2007-01-07 Chris LattnerFix PR1015 and Transforms/IndVarsSimplify/2007-01-06...
2007-01-07 Chris Lattnercast of int to bool no longer does a compare, rendering...
2006-12-31 Reid SpencerFor PR950:
2006-12-23 Reid SpencerFor PR950:
2006-12-21 Reid SpencerAdd a FIXME about signedness.
2006-12-21 Reid SpencerAdd some comments about things that can go away once...
2006-12-19 Chris Lattnereliminate static ctors from Statistics
2006-12-19 Chris LattnerFix a bug in GetConstantFactor for affine expressions...
2006-12-12 Reid SpencerReplace inferred getCast(V,Ty) calls with more strict...
2006-12-12 Reid SpencerGet even more accurate on the casting.
2006-12-12 Reid SpencerChange inferred getCast into specific getCast. Passes...
2006-12-12 Chris Lattnerteach scev to analyze X*4|1 like X*4+c. This allows...
2006-12-11 Chris Lattnerclarify some comments, simplify some checks, fix:
2006-12-07 Bill WendlingChanged llvm_ostream et all to OStream. llvm_cerr,...
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-12-05 Reid SpencerFinally get the casting right in this file. Also, remov...
2006-12-05 Reid SpencerBail on the getInferredCast idea. Remove the function...
2006-12-04 Reid SpencerFix comment grammaro
2006-12-04 Reid SpencerFix inferred casts.
2006-12-02 Jeff CohenUnbreak VC++ build.
2006-11-28 Bill WendlingRemoved some of the iostream #includes. Moved towards...
2006-11-27 Reid SpencerFor PR950:
2006-11-08 Jim LaskeyRemove redundant <cmath>.
2006-11-02 Reid SpencerFor PR950:
2006-11-01 Reid SpencerMake ScalarEvolution actually use a ZeroExtend expressi...
2006-10-26 Reid SpencerFor PR950:
2006-10-20 Reid SpencerFor PR950:
2006-10-04 Chris LattnerFix some more static dtor issues.
2006-09-28 Chris LattnerEliminate ConstantBool::True and ConstantBool::False...
2006-08-27 Chris LattnerEliminate RegisterAnalysis. RegisterPass now does...
2006-08-27 Chris Lattners|llvm/Support/Visibility.h|llvm/Support/Compiler.h|
2006-06-28 Chris LattnerUse hidden visibility to make symbols in an anonymous...
2006-04-26 Chris LattnerImplement Transforms/IndVarsSimplify/complex-scev.ll...
2006-04-04 Chris LattnerSigned shr by a constant is not the same as sdiv by 2^k
2006-04-01 Chris LattnerFix Transforms/IndVarsSimplify/2006-03-31-NegativeStrid...
2006-01-22 Chris LattnerAdd explicit iostream #includes
2005-10-27 John CriswellMove some constant folding code shared by Analysis...
2005-09-28 Chris Lattnerwrap a long line
2005-08-16 Chris LattnerFix Transforms/LoopStrengthReduce/2005-08-15-AddRecIV.ll
2005-08-15 Chris LattnerTeach LLVM to know how many times a loop executes when...
2005-08-10 Chris LattnerFix an obvious oops
next