Teach BasicAA::getModRefInfo(CallSite, CallSite) some
[oota-llvm.git] / lib / Transforms /
2008-12-09 Chris Lattnerrename getNonLocalDependency -> getNonLocalCallDependen...
2008-12-09 Chris LattnerSwitch GVN::processNonLocalLoad to using the new
2008-12-09 Chris Lattnerrandom cleanups, no functionality change.
2008-12-09 Chris LattnerFix a really subtle off-by-one bug that Duncan noticed...
2008-12-08 Chris Lattnerremove DebugIterations option. Despite the accusations,
2008-12-08 Devang PatelFix spelling.
2008-12-08 Devang PatelUndo previous patch.
2008-12-07 Chris Lattnerfix a bug I introduced in simplifycfg handling single...
2008-12-07 Chris Lattnerdon't bother touching volatile stores, they will just...
2008-12-06 Chris LattnerReimplement the inner loop of DSE. It now uniformly...
2008-12-05 Dale JohannesenMake LoopStrengthReduce smarter about hoisting things...
2008-12-05 Chris LattnerMake a few major changes to memdep and its clients:
2008-12-05 Anton KorobeynikovRevert invalid r60393. It causes llvm-gcc bootstrap...
2008-12-05 Chris LattnerFix test/Transforms/GVN/pre-load.ll
2008-12-05 Chris LattnerMake IsValueFullyAvailableInBlock safe.
2008-12-04 Devang PatelRewrite code that 1) filters loops and 2) calculates...
2008-12-04 Chris LattnerStart simplifying a switch that has a successor that...
2008-12-04 Chris Lattneradd a debugging option to help track down j-t problems.
2008-12-03 Dale JohannesenRemove an unused field.
2008-12-03 Dale JohannesenFix a misspelled function name.
2008-12-03 Chris LattnerFactor some code into a new FoldSingleEntryPHINodes...
2008-12-03 Dale JohannesenFix a really wrong comment.
2008-12-03 Chris LattnerTeach jump threading some more simple tricks:
2008-12-03 Chris Lattnerthird time is the charm.
2008-12-03 Chris Lattnerfix assertion.
2008-12-03 Chris LattnerRename DeleteBlockIfDead to DeleteDeadBlock and make it
2008-12-03 Chris LattnerFactor some code out of SimplifyCFG, forming a new
2008-12-02 Dale JohannesenMinor rewrite per review feedback.
2008-12-02 Dale JohannesenMake the code do what the comment says it does.
2008-12-02 Chris LattnerImplement PRE of loads in the GVN pass with a pretty...
2008-12-02 Bill WendlingRemove some errors that crept in. No functionality...
2008-12-02 Bill WendlingMerge two if-statements into one.
2008-12-02 Bill WendlingMore styalistic changes. No functionality change.
2008-12-02 Bill Wendling- Remove the buggy -X/C -> X/-C transform. This isn...
2008-12-02 Bill WendlingImprove comment.
2008-12-02 Bill Wendling- Reduce nesting.
2008-12-02 Chris Lattnersome random comment improvements.
2008-12-02 Owen AndersonFix an issue that Chris noticed, where local PRE was...
2008-12-01 Dale JohannesenConsider only references to an IV within the loop when
2008-12-01 Bill WendlingDon't rebuild RHSNeg. Just use the one that's already...
2008-12-01 Bill WendlingDocument what this check is doing. Also, no need to...
2008-12-01 Bill WendlingUse a simple comparison. Overflow on integer negation...
2008-12-01 Bill WendlingGeneralize the FoldOrWithConstant method to fold for...
2008-12-01 Bill WendlingReduce copy-and-paste code by splitting out the code...
2008-12-01 Bill WendlingUse m_Specific() instead of double matching.
2008-12-01 Bill WendlingMove pattern check outside of the if-then statement...
2008-12-01 Chris LattnerRename some variables, only increment BI once at the...
2008-12-01 Chris Lattnerpull the predMap densemap out of the inner loop of...
2008-12-01 Chris Lattnerswitch a couple more calls to use array_pod_sort.
2008-12-01 Chris LattnerIntroduce a new array_pod_sort function and switch...
2008-12-01 Chris LattnerEliminate use of setvector for the DeadInsts set, just...
2008-12-01 Chris LattnerDeleteTriviallyDeadInstructions is always passed the
2008-12-01 Chris Lattnersimplify DeleteTriviallyDeadInstructions again, unlike...
2008-12-01 Chris Lattnersimplify these patterns using m_Specific. No need...
2008-12-01 Chris LattnerTeach jump threading to clean up after itself, DCE...
2008-12-01 Chris LattnerChange instcombine to use FoldPHIArgGEPIntoPHI to fold...
2008-12-01 Chris LattnerTeach inst combine to merge GEPs through PHIs. This...
2008-12-01 Chris LattnerMake GVN be more intelligent about redundant load
2008-12-01 Chris LattnerReimplement the non-local dependency data structure...
2008-12-01 Bill WendlingImplement ((A|B)&1)|(B&-2) -> (A&1) | B transformation...
2008-12-01 Chris LattnerCache analyses in ivars and add some useful DEBUG output.
2008-11-30 Chris Lattnerimprove indentation, do cheap checks before expensive...
2008-11-30 Eli FriedmanMinor cleanup: use getTrue and getFalse where appropria...
2008-11-30 Eli FriedmanSome minor cleanups to instcombine; no functionality...
2008-11-30 Bill WendlingAdd instruction combining for ((A&~B)|(~A&B)) -> A...
2008-11-30 Bill WendlingImplement (A&((~A)|B)) -> A&B transformation in the...
2008-11-30 Bill WendlingForgot one remaining call to getSExtValue().
2008-11-30 Bill WendlinggetSExtValue() doesn't work for ConstantInts with bitwi...
2008-11-30 Eli FriedmanOptimize memmove and memset into the LLVM builtins...
2008-11-30 Bill WendlingDon't make TwoToExp signed by default.
2008-11-30 Bill WendlingFrom Hacker's Delight:
2008-11-30 Bill WendlingInstcombine was illegally transforming -X/C into X...
2008-11-30 Chris LattnerFix a fixme by making memdep's handling of allocations...
2008-11-29 Chris LattnerEliminate the dropInstruction method, which is not...
2008-11-29 Chris LattnerChange MemDep::getNonLocalDependency to return its...
2008-11-29 Chris Lattnerreimplement getNonLocalDependency with a simpler worklist
2008-11-29 Chris LattnerFix a thinko that manifested as a crash on clamav last...
2008-11-29 Chris LattnerSplit getDependency into getDependency and getDependenc...
2008-11-29 Bill WendlingTemporarily revert r60195. It's causing an optimized...
2008-11-29 Chris LattnerIntroduce and use a new MemDepResult class to hold...
2008-11-29 Chris LattnerReimplement the internal abstraction used by MemDep...
2008-11-28 Chris Lattnerdon't revisit instructions off the beginning of the...
2008-11-28 Chris Lattnersimplify some code, remove escaped newline.
2008-11-28 Chris Lattnerdon't call MergeBasicBlockIntoOnlyPred on a block whose...
2008-11-28 Chris Lattnerrewrite RecursivelyDeleteTriviallyDeadInstructions...
2008-11-28 Chris Lattnerremove some weirdness that came from the LSR code that has
2008-11-28 Chris Lattnerrewrite a big chunk of how DSE does recursive dead...
2008-11-27 Chris Lattnerdelete ErasePossiblyDeadInstructionTree, replacing...
2008-11-27 Chris LattnerSimplify LoopStrengthReduce::DeleteTriviallyDeadInstruc...
2008-11-27 Chris Lattnerenhance RecursivelyDeleteTriviallyDeadInstructions...
2008-11-27 Chris LattnerEnhance RecursivelyDeleteTriviallyDeadInstructions...
2008-11-27 Chris Lattneruse continue to reduce indentation
2008-11-27 Chris Lattnerremove doConstantPropagation and dceInstruction, they...
2008-11-27 Chris Lattnersimplify code.
2008-11-27 Chris Lattnersimplify this logic.
2008-11-27 Nick LewyckyChris prefers icmp/select over udiv!
2008-11-27 Nick LewyckyAdd a couple of missed optimizations on integer vectors...
2008-11-27 Chris Lattnerdefensive patch: if CGP is merging a block with the...
2008-11-27 Chris LattnerFix PR3138: if we merge the entry block into another...
2008-11-27 Chris Lattnerswitch InstCombine::visitLoadInst to use
next