Apply "Instead of loading small c string constant, use integer constant directly...
[oota-llvm.git] / lib / Transforms / Scalar / InstructionCombining.cpp
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-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 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 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-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-21 Reid SpencerFor PR1248:
2007-03-20 Zhou ShengSimplify isHighOnes().
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-18 Chris LattnerImplement InstCombine/and-xor-merge.ll:test[12].
2007-03-14 Zhou ShengShiftAmt might equal to zero. Handle this situation.
2007-03-14 Zhou ShengEnable KnownZero/One.clear().
2007-03-13 Chris Lattnerifdef out some dead code.
2007-03-13 Zhou ShengFor expression like
2007-03-13 Zhou ShengIn APInt version ComputeMaskedBits():
2007-03-12 Reid SpencerAdd an APInt version of SimplifyDemandedBits.
2007-03-12 Reid SpencerAdd an APInt version of ShrinkDemandedConstant.
2007-03-12 Zhou ShengAvoid to assert on "(KnownZero & KnownOne) == 0".
2007-03-12 Zhou ShengIn function ComputeMaskedBits():
2007-03-08 Zhou ShengFix a bug in function ComputeMaskedBits().
2007-03-08 Zhou ShengFix a bug in APIntified ComputeMaskedBits().
2007-03-08 Reid SpencerFor PR1205:
2007-03-08 Reid SpencerFor PR1205:
2007-03-05 Reid SpencerRemove an unnecessary if statement and adjust indentation.
2007-03-05 Chris Lattnerfix a subtle bug that caused an MSVC warning. Thanks...
2007-03-05 Chris LattnerAdd some simplifications for demanded bits, this allows...
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-03-04 Chris Lattnersimplify some code
2007-03-04 Chris LattnerSpeed up -instcombine by 20% by avoiding a particularly...
2007-03-03 Chris Lattnermy recent change caused a failure in a bswap testcase...
2007-03-03 Chris Lattneradd a top-level iteration loop to instcombine. This...
2007-03-02 Chris LattnerFix a significant algorithm problem with the instcombin...
2007-03-02 Chris Lattnerminor cleanup
2007-03-01 Reid SpencerThe 64-bit constructor for ConstantInt changes from...
2007-02-24 Chris LattnerFix InstCombine/2007-02-23-PhiFoldInfLoop.ll and PR1217
2007-02-15 Chris Lattnerconvert more vectors to smallvectors, 2.8% speedup
2007-02-15 Chris Lattnerchange some vectors to smallvectors. This speeds up...
2007-02-15 Chris Lattnerswitch an std::set to a SmallPtr set, this speeds up...
2007-02-15 Reid SpencerFor PR1195:
2007-02-14 Chris LattnerGeneralize TargetData strings, to support more interest...
2007-02-13 Chris LattnerEliminate use of ctors that take vectors.
2007-02-12 Chris Lattnerstop using methods that take vectors.
2007-02-11 Chris LattnerSimplify code by using value::takename
2007-02-05 Chris LattnerFix miscompilations of consumer-typeset, telecomm-gsm...
2007-02-05 Chris Lattnerfix a miscompilation of 176.gcc
2007-02-05 Chris Lattnerrewrite shift/shift folding, now that types are not...
2007-02-04 Reid SpencerFor PR1163:
2007-02-03 Chris Lattnerremove some dead code
2007-02-02 Reid SpencerRemove dead code and fix indentation per Chris' review...
2007-02-02 Reid SpencerUse short form of binary operator create functions.
next