Don't delete things before their last use (avoids bad reads).
[oota-llvm.git] / lib /
2007-03-20 Reid SpencerDon't delete things before their last use (avoids bad...
2007-03-20 Lauro Ramos VenancioCopyToReg source operand can be a physical register.
2007-03-20 Zhou ShengSimplify isHighOnes().
2007-03-20 Evan ChengFirst cut trivial re-materialization support.
2007-03-20 Evan ChengMake two piece constant generation as a single instruct...
2007-03-20 Evan ChengNew entry.
2007-03-20 Evan ChengAdded MRegisterInfo hook to re-materialize an instruction.
2007-03-20 Chris LattnerTwo changes:
2007-03-20 Chris Lattnerfix indentation
2007-03-20 Reid SpencerRegenerate.
2007-03-20 Reid SpencerPlug some PATypeHolder memory leaks.
2007-03-20 Dale Johannesenuse types of loads and stores, not address, in CheckFor...
2007-03-20 Dale Johannesenfix obvious comment bug
2007-03-20 Chris LattnerFix a nasty memory leak, caused by my revamp of the...
2007-03-20 Reid SpencerMake isOneBitSet faster by using APInt::isPowerOf2...
2007-03-19 Reid SpencerAPIntify the isHighOnes utility function.
2007-03-19 Reid SpencerFix coding standards violation.
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 Reid SpencerRegenerate.
2007-03-19 Reid SpencerFix test/Assembler/2007-03-19-NegValue.ll by using...
2007-03-19 Reid SpencerAllow ConstantInt::get(Ty, uint64_t) to interpret the...
2007-03-19 Reid SpencerImplement extension of sign bits for negative values...
2007-03-19 Anton KorobeynikovFix mingw32 build
2007-03-19 Reid SpencerRegenerate.
2007-03-19 Reid SpencerFor PR1248:
2007-03-19 Reid SpencerAdd and Operator== method to ValID so equality can...
2007-03-19 Reid SpencerFor PR1258:
2007-03-19 Chris Lattnerfix ScalarRepl/2007-03-19-CanonicalizeMemcpy.ll
2007-03-19 Evan ChengRemove -reduce-joining-phys-regs options. Make it on...
2007-03-19 Evan ChengFix naming inconsistencies.
2007-03-19 Evan ChengSpecial LDR instructions to load from non-pc-relative...
2007-03-19 Evan ChengConstant generation instructions are re-materializable.
2007-03-19 Evan ChengAdded isReMaterializable.
2007-03-19 Evan ChengMinor bug fix.
2007-03-19 Chris Lattnerfix a warning
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 Chris Lattnerminor updates
2007-03-18 Nick LewyckyThis is implemented. We now generate:
2007-03-18 Evan Cheng- Merge UsedBlocks info after two virtual registers...
2007-03-18 Evan ChengKeep UsedBlocks info accurate.
2007-03-18 Nick LewyckyPropagate ValueRanges across equality.
2007-03-17 Anton KorobeynikovSilence warning
2007-03-17 Evan ChengTrack the BB's where each virtual register is used.
2007-03-17 Evan ChengJoining a live interval of a physical register with...
2007-03-17 Evan ChengUse SmallSet instead of std::set.
2007-03-17 Evan ChengIf sdisel has decided to sink GEP index expression...
2007-03-17 Devang PatelSupport 'I' inline asm constraint.
2007-03-16 Lauro Ramos VenancioOnly ARMv6 has BSWAP.
2007-03-16 Evan ChengTurn on GEP index sinking by default.
2007-03-16 Evan ChengStupid bug.
2007-03-16 Bill WendlingAnd now support for MMX logical operations.
2007-03-16 Evan ChengSink a binary expression into its use blocks if it...
2007-03-16 Evan ChengAdded isLegalAddressExpression(). Only allows X +/...
2007-03-16 Evan ChengAdded isLegalAddressExpression hook to test if the...
2007-03-16 Nick LewyckyAdd more comments and update to new asm syntax.
2007-03-15 Bill WendlingMultiplication support for MMX.
2007-03-15 Evan ChengDebugging output stuff.
2007-03-14 Evan ChengEstimate a cost using the possible number of scratch...
2007-03-14 Evan ChengUnder X86-64 large code model, do not emit 32-bit pc...
2007-03-14 Evan ChengNotes about codegen issues.
2007-03-14 Evan ChengClean up.
2007-03-14 Evan ChengOops.
2007-03-14 Evan ChengX86-64 JIT is in large code model. Need stubs for direc...
2007-03-14 Evan Chengx86-64 JIT stub codegen.
2007-03-14 Evan ChengPreliminary support for X86-64 JIT stub codegen.
2007-03-14 Zhou ShengShiftAmt might equal to zero. Handle this situation.
2007-03-14 Zhou ShengEnable KnownZero/One.clear().
2007-03-13 Evan ChengTry schedule def + use closer whne Sethi-Ullman numbers...
2007-03-13 Evan ChengAM2 can match 2^n +/- 1. e.g. ldr r3, [r2, r2, lsl #2]
2007-03-13 Evan ChengZero is always a legal AM immediate.
2007-03-13 Evan ChengCorrect type info for isLegalAddressImmediate() check.
2007-03-13 Nicolas GeoffrayStack and register alignment of call arguments in the...
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-13 Evan ChengImplement getTargetLowering() or else LSR won't be...
2007-03-12 Evan ChengMore flexible TargetLowering LSR hooks for testing...
2007-03-12 Evan ChengUpdated TargetLowering LSR addressing mode hooks for...
2007-03-12 Evan ChengMore flexible TargetLowering LSR hooks for testing...
2007-03-12 Evan ChengMore flexible TargetLowering LSR hooks for testing...
2007-03-12 Evan ChengUse new TargetLowering addressing modes hooks.
2007-03-12 Evan ChengStupid bug: SSE2 supports v2i64 add / sub.
2007-03-12 Reid SpencerRevert the last patch as it violates the conditions...
2007-03-12 Jeff CohenUnbreak C++ build.
2007-03-12 Jeff CohenUnbreak VC++ build. Do not use identifiers starting...
2007-03-12 Zhou ShengFor APInt::z/sext(width), if width == BitWidth, just...
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-10 Nick LewyckyAdd value ranges. Currently inefficient in both executi...
2007-03-10 Anton KorobeynikovUse range tests in LowerSwitch, where possible
2007-03-10 Nick LewyckyAdd getter methods for the extremes of a ConstantRange.
2007-03-10 Bill WendlingAdding more arithmetic operators to MMX. This is an...
next