Age | Commit message (Expand) | Author |
2008-11-27 | Simplify LoopStrengthReduce::DeleteTriviallyDeadInstructions by | Chris Lattner |
2008-11-27 | use continue to reduce indentation | Chris Lattner |
2008-11-27 | remove doConstantPropagation and dceInstruction, they are just | Chris Lattner |
2008-11-27 | simplify code. | Chris Lattner |
2008-11-27 | simplify this logic. | Chris Lattner |
2008-11-27 | Chris prefers icmp/select over udiv! | Nick Lewycky |
2008-11-27 | Add a couple of missed optimizations on integer vectors. Multiply and divide | Nick Lewycky |
2008-11-27 | defensive patch: if CGP is merging a block with the entry block, make sure | Chris Lattner |
2008-11-27 | Fix PR3138: if we merge the entry block into another block, make sure to | Chris Lattner |
2008-11-27 | switch InstCombine::visitLoadInst to use | Chris Lattner |
2008-11-27 | move FindAvailableLoadedValue from JumpThreading to Transforms/Utils. | Chris Lattner |
2008-11-27 | Use the new MergeBasicBlockIntoOnlyPred function. | Chris Lattner |
2008-11-27 | move MergeBasicBlockIntoOnlyPred to Transforms/Utils. | Chris Lattner |
2008-11-27 | rename ThreadBlock to ProcessBlock, since it does other things than | Chris Lattner |
2008-11-27 | Make jump threading substantially more powerful, in the following ways: | Chris Lattner |
2008-11-26 | Turn on my codegen prepare heuristic by default. It doesn't affect | Chris Lattner |
2008-11-26 | teach the new heuristic how to handle inline asm. | Chris Lattner |
2008-11-26 | Improve ValueAlreadyLiveAtInst with a cheap and dirty, but effective | Chris Lattner |
2008-11-26 | Start rewroking a subpiece of the profitability heuristic to be | Chris Lattner |
2008-11-26 | add a comment, make save/restore logic more obvious. | Chris Lattner |
2008-11-26 | This adds in some code (currently disabled unless you pass | Chris Lattner |
2008-11-26 | Revert r60042. IndVarSimplify should check if APFloat is PPCDoubleDouble firs... | Evan Cheng |
2008-11-26 | Teach CodeGenPrepare to look through Bitcast instructions when attempting to | Chris Lattner |
2008-11-25 | Teach MatchScaledValue to handle Scales by 1 with MatchAddr (which | Chris Lattner |
2008-11-25 | significantly refactor all the addressing mode matching logic | Chris Lattner |
2008-11-25 | refactor all the constantexpr/instruction handling code out into a | Chris Lattner |
2008-11-25 | another minor tweak | Chris Lattner |
2008-11-25 | minor cleanups no functionality change. | Chris Lattner |
2008-11-24 | rearrange and tidy some code, no functionality change. | Chris Lattner |
2008-11-24 | minor cleanups to debug code, no functionality change. | Chris Lattner |
2008-11-24 | reenable the right part of the code. | Chris Lattner |
2008-11-24 | revert an accidental commit, this fixes the regression on test/CodeGen/X86/is... | Chris Lattner |
2008-11-24 | Fix 3113: If we have a dead cyclic PHI, replace the whole thing | Chris Lattner |
2008-11-21 | Fix build failure. | Devang Patel |
2008-11-21 | Silence unused variable warnings. | Devang Patel |
2008-11-21 | reapply Sanjiv's patch to genericize memcpy/memset/memmove to take an | Chris Lattner |
2008-11-21 | Revert r59802. It was breaking the build of llvm-gcc: | Bill Wendling |
2008-11-21 | Make mem[cpy,move,set] intrinsics overloaded. | Sanjiv Gupta |
2008-11-21 | Optimize (x/y)*y into x-(x%y) in general. Div and rem are about the same, and | Nick Lewycky |
2008-11-21 | Fix unused variable warnings. | Devang Patel |
2008-11-19 | Let instcombiner remove redundant dbg intrinsics. | Devang Patel |
2008-11-19 | If there are two consecutive llvm.dbg.stoppoint calls then | Devang Patel |
2008-11-18 | Cast to remove warning about comparing signed and unsigned. | Bill Wendling |
2008-11-18 | Give SIToFPInst preference over UIToFPInst because it is faster on platforms ... | Devang Patel |
2008-11-17 | While handling floating point IVs lift restrictions on initial value and incr... | Devang Patel |
2008-11-17 | Handle floating point ivs during doInitialization(). | Devang Patel |
2008-11-16 | eliminate some std::set's. | Chris Lattner |
2008-11-16 | simplify a bunch more instcombines to use m_Specific etc. | Chris Lattner |
2008-11-16 | factor the code for simplifying (icmp)|(icmp) into its own function. | Chris Lattner |
2008-11-16 | do some computation with apints instead of ConstantInts. | Chris Lattner |