2010-12-15 |
Chris Lattner | add a shift/imul missed optimization
|
commit | commitdiff | tree |
2010-12-15 |
Chris Lattner | add a note about a SPEC hack that gcc mainline does.
|
commit | commitdiff | tree |
2010-12-15 |
Chris Lattner | take care of some todos, transforming [us]mul_lohi...
|
commit | commitdiff | tree |
2010-12-15 |
Chris Lattner | merge two tests
|
commit | commitdiff | tree |
2010-12-15 |
Chris Lattner | when transforming a MULHS into a wider MUL, there is...
|
commit | commitdiff | tree |
2010-12-15 |
Chris Lattner | make qsort predicate more conformant by returning 0...
|
commit | commitdiff | tree |
2010-12-15 |
Chris Lattner | various cleanups to tblgen, patch by Garrison Venn!
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | - Insert new instructions before DomBlock's terminator,
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | fix two significant issues with FoldTwoEntryPHINode:
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | remove the instsimplify logic I added in r121754. ...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | clean up logic, convert std::set to SmallPtrSet, handle...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | tidy up a bit, move DEBUG down to when we commit to...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | use SimplifyInstruction instead of reimplementing part...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | simplify GetIfCondition by using getSinglePredecessor.
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | use AddPredecessorToBlock in 3 places instead of a...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | make FoldTwoEntryPHINode use instsimplify a bit, make
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | remove the dead (and terrible) llvm::RemoveSuccessor...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | improve DEBUG's a bit, switch to eraseFromParent()...
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | fix yet anohter broken line
|
commit | commitdiff | tree |
2010-12-14 |
Chris Lattner | reapply my recent change that disables a piece of the...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | temporarily disable part of my previous patch, which...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | add some DEBUG's.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | rename test
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | Add a couple dag combines to transform mulhi/mullo...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | reinstate my patch: the miscompile was caused by an...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | Completely disable the optimization I added in r121680...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | remove the verbose-asm "constant pool double" comments...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | Make simplifycfg reprocess newly formed "br (cond1...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | make this logic a bit simpler.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | split all the guts of SimplifyCFGOpt::run out into...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | fix a bug in r121680 that upset the various buildbots.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | refactor the speculative execution logic to be factored...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | simplify a bunch of code.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | move HoistThenElseCodeToIf up to a more logical and...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | move 'MergeBlocksIntoPredecessor' call earlier. Use
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | make these tests a bit less fragile
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | factor new code out to a SimplifyBranchOnICmpChain...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | enhance the "change or icmp's into switch" xform to...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | merge two tests
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | merge two very similar functions into one that has...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | don't bother handling non-canonical icmp's
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | inline a function, making the result much simpler.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | Fix my previous patch to handle a degenerate case that...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | convert some methods to be static functions
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | zap two more std::sorts.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | fix a fairly serious oversight with switch formation...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | simplify code and reduce indentation
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | convert an std::sort to array_pod_sort.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | move the "br (X == 0 | X == 1), T, F" -> switch optimization...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | reduce indentation and generally simplify code, no...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | use getFirstNonPHIOrDbg to simplify this code.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | reduce indentation by using continue, no functionality...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | eliminate the Records global variable, patch by Garrison...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | clean up RecordKeeper::getAllDerivedDefinitions, patch...
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | further fixes.
|
commit | commitdiff | tree |
2010-12-13 |
Chris Lattner | add a note
|
commit | commitdiff | tree |
2010-12-12 |
Chris Lattner | fix typo
|
commit | commitdiff | tree |
2010-12-10 |
Chris Lattner | fix some validation problems
|
commit | commitdiff | tree |
2010-12-10 |
Chris Lattner | restructure this for readability, correct the example...
|
commit | commitdiff | tree |
2010-12-09 |
Chris Lattner | add a rule for enums, patch by Zhanyong Wan!
|
commit | commitdiff | tree |
2010-12-09 |
Chris Lattner | enhance memcpyopt to zap memcpy's that have the same...
|
commit | commitdiff | tree |
2010-12-09 |
Chris Lattner | fix PR8753, eliminating a case where we'd infinitely...
|
commit | commitdiff | tree |
2010-12-07 |
Chris Lattner | reapply r121100 with a tweak to constant fold ConstExprs...
|
commit | commitdiff | tree |
2010-12-07 |
Chris Lattner | fix PR8710 - teach global opt that some constantexprs...
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | replace a linear scan with a symtab lookup, reduce...
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | Use a stronger predicate here, pointed out by Duncan
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | add some DEBUG statements.
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | Fix PR8735, a really terrible problem in the inliner...
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | improve comment
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | improve -debug output and comments a little.
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | Fix PR8728, a miscompilation I recently introduced...
|
commit | commitdiff | tree |
2010-12-06 |
Chris Lattner | add a helper method.
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | Teach X86ISelLowering that the second result of X86ISD...
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | it turns out that when ".with.overflow" intrinsics...
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | fix the rest of the linux miscompares :)
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | generalize the previous check to handle -1 on either...
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | relax this to handle linux defaulting to -static.
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | Improve an integer select optimization in two ways:
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | merge some tests into select.ll and make them more...
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | rename test
|
commit | commitdiff | tree |
2010-12-05 |
Chris Lattner | remove two tests that aren't really testing anything.
|
commit | commitdiff | tree |
2010-12-03 |
Chris Lattner | clarify comment
|
commit | commitdiff | tree |
2010-12-02 |
Chris Lattner | tidy up
|
commit | commitdiff | tree |
2010-12-01 |
Chris Lattner | fix a bozo bug I introduced in r119930, causing a miscompile of
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | Enhance DSE to handle the variable index case in PR8657.
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | remove fixme comment too.
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | check in *all* files. This is now handled by my previous...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | teach DSE to use GetPointerBaseWithConstantOffset to...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | move GetPointerBaseWithConstantOffset out of GVN into...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | remove a fixed fixme
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | Make DeleteDeadInstruction be a static function, move...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | switch RemoveAccessedObjects to use AliasAnalysis:...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | two improvements to RemoveAccessedObjects:
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | remove the "undead" terminology, which is nonstandard...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | move call handling in handleEndBlock up a bit, and...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | various cleanups and code simplification
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | make getPointerSize a static function. Add ivars to...
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | reduce indentation, clean up TD use a bit.
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | forbid rtti and exceptions
|
commit | commitdiff | tree |
2010-11-30 |
Chris Lattner | enhance isRemovable to refuse to delete volatile mem...
|
commit | commitdiff | tree |
next |