Introduce a new ReplaceCallWith method, which simplifies a lot of code.
[oota-llvm.git] / lib / Transforms /
2007-04-07 Chris LattnerIntroduce a new ReplaceCallWith method, which simplifie...
2007-04-07 Chris Lattnerfixes for strcpy optimizer
2007-04-07 Chris LattnerFix bugs in strncmp.
2007-04-07 Chris Lattnerfix 3 miscompilations and several compielr crashes...
2007-04-06 Chris LattnerFix several nasty bugs in the strchr optimizer, this...
2007-04-06 Chris Lattnerclean up strcat optimizer, no functionality change.
2007-04-06 Chris Lattnerrename getConstantStringLength -> GetConstantStringInfo...
2007-04-06 Chris Lattnerimplement Transforms/InstCombine/malloc2.ll and PR1313
2007-04-05 Chris LattnerFix Transforms/GlobalOpt/2007-04-05-Crash.ll
2007-04-05 Chris LattnerUse a worklist-driven algorithm instead of a recursive...
2007-04-04 Dale JohannesenPrevent transformConstExprCastCall from generating...
2007-04-04 Jeff CohenFix 2007-04-04-BadFoldBitcastIntoMalloc.ll
2007-04-04 Duncan SandsFix comment.
2007-04-03 Chris LattnerFix a bug I introduced with my patch yesterday which...
2007-04-03 Chris Lattnerreinstate the previous two patches, with a bugfix :)
2007-04-03 Evan ChengReverting back to 1.723. The last two commits broke...
2007-04-03 Chris Lattnersplit some code out into a helper function
2007-04-03 Chris LattnerSplit a whole ton of code out of visitICmpInst into...
2007-04-03 Chris LattnerFix PR1253 and xor2.ll:test[01]
2007-04-02 Chris Lattnerallow -1 strides to reuse "1" strides.
2007-04-02 Zhou Sheng1. Make use of APInt operation instead of using Constan...
2007-04-02 Zhou ShengUse uint32_t for bitwidth instead of unsigned.
2007-04-02 Chris LattnerPass the type of the store access, not the type of...
2007-04-02 Chris LattnerWrap long line
2007-04-02 Chris Lattneruse more obvious function name.
2007-04-02 Chris Lattnersimplify (x+c)^signbit as (x+c+signbit), pointed out...
2007-04-02 Chris Lattnerreduce use of std::set
2007-04-02 Chris LattnerVarious passes before isel split edges and do other...
2007-04-01 Chris Lattnerprint the type of an inserted IV in -debug mode.
2007-04-01 Chris Lattnersimplify this code, make it work for ap ints
2007-04-01 Zhou ShengAvoid unnecessary APInt construction.
2007-04-01 Reid SpencerFor PR1297:
2007-04-01 Chris LattnerFix InstCombine/2007-03-31-InfiniteLoop.ll
2007-03-31 Chris LattnerSplit the sdisel code munging stuff out into its own...
2007-03-31 Zhou ShengDelete dead code.
2007-03-31 Zhou ShengUse APInt operators to calculate the carry bits, remove...
2007-03-30 Zhou ShengMake sure the use of ConstantInt::getZExtValue() for...
2007-03-30 Zhou Sheng1. Make sure the use of ConstantInt::getZExtValue(...
2007-03-30 Zhou ShengUse APInt operation instead of ConstantExpr::getXX.
2007-03-29 Zhou Sheng1. Make more use of APInt::getHighBitsSet/getLowBitsSet.
2007-03-29 Zhou ShengClean up some codes in InstCombiner::SimplifyDemandedBi...
2007-03-29 Zhou ShengClean up codes in InstCombiner::SimplifyDemandedBits():
2007-03-29 Zhou Sheng1. Make the APInt variable do the binary operation...
2007-03-28 Zhou ShengAvoid unnecessary APInt construction.
2007-03-28 Zhou Sheng1. Make more use of getLowBitsSet/getHighBitsSet.
2007-03-28 Zhou Sheng1. Make more use of getLowBitsSet/getHighBitsSet.
2007-03-28 Zhou ShengUse UnknownBIts[BitWidth-1] instead of UnknownBIts...
2007-03-28 Zhou ShengRemove unused APInt variable.
2007-03-28 Zhou ShengClean up codes in ComputeMaskedBits():
2007-03-28 Reid SpencerFor PR1280:
2007-03-27 Evan ChengUnbreaks non-debug builds.
2007-03-26 Reid SpencerImplement some minor review feedback.
2007-03-26 Reid SpencerFor PR1271:
2007-03-26 Devang PatelReduce malloc/free traffic.
2007-03-26 Chris Lattnereliminate use of std::set
2007-03-26 Reid SpencerGet better debug output by having modified instructions...
2007-03-26 Reid SpencerGet the number of bits to set in a mask correct for...
2007-03-26 Reid SpencerFor PR1271:
2007-03-26 Dale JohannesenLook through bitcast when finding IVs. (Chris' patch...
2007-03-25 Reid SpencerFor PR1271:
2007-03-25 Chris Lattnerimplement Transforms/InstCombine/cast2.ll:test3 and...
2007-03-25 Reid SpencerSome cleanup from review:
2007-03-25 Reid SpencerRefactor several ConstantExpr::getXXX calls with Consta...
2007-03-25 Zhou Sheng1. Avoid unnecessary APInt construction if possible.
2007-03-25 Reid SpencerMake more uses of getHighBitsSet and get rid of some...
2007-03-25 Reid SpencerMore APIntification:
2007-03-24 Chris Lattnerfix a regression on vector or instructions.
2007-03-24 Zhou ShengMake some codes more efficient.
2007-03-24 Reid SpencerFor PR1205:
2007-03-23 Reid SpencerFor PR1205:
2007-03-23 Reid SpencerFor PR1205:
2007-03-23 Chris Lattnerswitch AddReachableCodeToWorklist from being recursive...
2007-03-23 Reid SpencerFor PR1205:
2007-03-23 Zhou ShengMake the "KnownZero ^ TypeMask" computation just once.
2007-03-23 Zhou ShengSimplify the code.
2007-03-22 Reid SpencerFor PR1205:
2007-03-22 Reid SpencerFor PR1205:
2007-03-22 Reid SpencerFor PR1205:
2007-03-22 Dan GohmanChange uses of Function::front to Function::getEntryBlo...
2007-03-22 Nick LewyckyFix broken optimization disabled by a logic bug.
2007-03-21 Reid SpencerFor PR1248:
2007-03-20 Dale Johannesendo not share old induction variables when this would...
2007-03-20 Jeff CohenFix some VC++ warnings.
2007-03-20 Devang PatelLoopSimplify::FindPHIToPartitionLoops()
2007-03-20 Zhou ShengSimplify isHighOnes().
2007-03-20 Dale Johannesenuse types of loads and stores, not address, in CheckFor...
2007-03-20 Reid SpencerMake isOneBitSet faster by using APInt::isPowerOf2...
2007-03-19 Reid SpencerAPIntify the isHighOnes utility function.
2007-03-19 Reid SpencerImplement isMaxValueMinusOne in terms of APInt instead...
2007-03-19 Reid SpencerImplement isMinValuePlusOne using facilities of APInt...
2007-03-19 Reid SpencerImplement isOneBitSet in terms of APInt::countPopulation.
2007-03-19 Reid Spencer1. Use APInt::getSignBit to reduce clutter (patch by...
2007-03-19 Reid SpencerRemove a redundant clause in an if statement.
2007-03-19 Chris Lattnerfix ScalarRepl/2007-03-19-CanonicalizeMemcpy.ll
2007-03-19 Chris Lattnerimplement the next chunk of SROA with memset/memcpy...
2007-03-18 Nick LewyckyClean up this code and fix subtract miscompile.
2007-03-18 Chris LattnerImplement InstCombine/and-xor-merge.ll:test[12].
2007-03-18 Nick LewyckyPropagate ValueRanges across equality.
2007-03-17 Anton KorobeynikovSilence warning
2007-03-16 Nick LewyckyAdd more comments and update to new asm syntax.
next