Do not attempt to do parial redundancy elimination on void values.
[oota-llvm.git] / lib / Transforms / IPO /
2009-03-09 Devang PatelIgnore debug info while evaluating function.
2009-03-09 Devang PatelRemove llvm.dbg.global_variables also.
2009-03-09 Devang PatelAdd helper pass to remove llvm.dbg.declare intrinsics.
2009-03-09 Duncan SandsThis debug info special case should no longer
2009-03-08 Nick LewyckyKeep calling-convention and tail-call bit when creating...
2009-03-08 Nick LewyckyFix comments, pointed out by Duncan Sands.
2009-03-08 Nick LewyckyMark function returns as noalias.
2009-03-08 Chris Lattneruse MemTransferInst.
2009-03-07 Chris Lattnerfix a serious pessimization that Tron on IRC pointed...
2009-03-07 Duncan SandsIntroduce new linkage types linkonce_odr, weak_odr...
2009-03-06 Chris Lattneradd a bunch more passes to the C bindings (PR3734)...
2009-03-06 Duncan SandsWhile thinking about the one-definition-rule and trying
2009-03-06 Devang PatelRevert 66224.
2009-03-06 Devang PatelRevert rev. 66167.
2009-03-06 Devang PatelDo not let debug info prevert globalopt from shriking...
2009-03-05 Devang PatelGlobalOpt only process non constant local GVs while...
2009-03-04 Bill WendlingTemporarily revert r65994. It was causing rdar://6646455.
2009-03-04 Devang PatelIf a global constant is dead then global's debug info...
2009-03-03 Devang PatelRecursively remove dead argument while removing llvm...
2009-03-03 Devang PatelIgnore debug info intrinsics.
2009-03-02 Devang PatelRemove all dbg symobls, including those with circular...
2009-02-18 Duncan SandsIn theory the aliasee may have dead constant users
2009-02-18 Dan GohmanAdd explicit keywords.
2009-02-17 Duncan SandsIf an alias is dead and so is its aliasee, then globald...
2009-02-17 Duncan SandsThis transform also applies to private linkage.
2009-02-15 Duncan SandsMake this more useful for cleaning up after the
2009-02-15 Duncan SandsIf the target of an alias has internal linkage, then the
2009-01-28 Duncan SandsRename getAnalysisToUpdate to getAnalysisIfAvailable.
2009-01-25 Nick LewyckyThe function that does nothing but call malloc is noali...
2009-01-23 Gabor Greifuse CallSite::isCalle instead of slow getOperandNo
2009-01-23 Gabor GreifSimplify the logic of getting hold of a PHI predecessor...
2009-01-22 Gabor Greifintroduce a useful abstraction to find out if a Use...
2009-01-18 Duncan SandsBasicAliasAnalysis and FunctionAttrs were both
2009-01-15 Rafael EspindolaAdd the private linkage.
2009-01-14 Chris Lattnerrewrite OptimizeAwayTrappingUsesOfLoads to 1) avoid...
2009-01-13 Duncan SandsCorrect a comment.
2009-01-12 Dale JohannesenEnable recursive inlining. Reduce inlining threshold
2009-01-12 Duncan SandsRename getABITypeSize to getTypePaddedSize, as
2009-01-11 Dale JohannesenIncrease default inlining aggressiveness in partial
2009-01-09 Misha BrukmanRemoved trailing whitespace from Makefiles.
2009-01-09 Dale JohannesenAdjustments to last patch based on review.
2009-01-07 Duncan SandsWhitespace - correct formatting.
2009-01-07 Duncan SandsRemove alloca tracking from nocapture analysis. Not...
2009-01-07 Duncan SandsReorder these.
2009-01-07 Duncan SandsUse a switch rather than a sequence of "isa" tests.
2009-01-07 Duncan SandsThe verifier checks that the aliasee is not null.
2009-01-05 Duncan SandsTeach the internalize pass to also internalize
2009-01-05 Duncan SandsNot having an aliasee is a theoretical possibility.
2009-01-05 Duncan SandsFormat more neatly.
2009-01-05 Duncan SandsRemove trailing spaces.
2009-01-05 Duncan SandsDelete unused global aliases with internal linkage.
2009-01-03 Nick LewyckyAny void readonly functions are provably dead, don...
2009-01-02 Duncan SandsLoad tracking means that the value analyzed may
2009-01-02 Duncan SandsWhen calculating 'nocapture' argument attributes, allow
2009-01-02 Duncan SandsImprove comments and reorganize a bit - no functionality
2009-01-02 Nick LewyckyMake adding nocapture a bit stronger. FreeInst is nocap...
2009-01-01 Duncan SandsMention that this pass does escape analysis in the
2008-12-31 Duncan SandsLook through phi nodes and select instructions when
2008-12-31 Duncan SandsDon't analyze arguments already marked 'nocapture'.
2008-12-31 Duncan SandsRename AddReadAttrs to FunctionAttrs, and teach it how
2008-12-29 Duncan SandsExperiments show that looking through phi nodes
2008-12-29 Duncan SandsAllow readnone functions to read (and write!) global
2008-12-17 Chris Lattnerinsert some sequence points and preincrement an iterato...
2008-12-17 Chris LattnerEnhance heap sra to be substantially more aggressive...
2008-12-16 Chris LattnerFix another crash found by inspection. If we have...
2008-12-16 Chris Lattnerfix a crash found by inspection.
2008-12-16 Chris Lattnerswitch some std::set/std::map to SmallPtrSet/DenseMap.
2008-12-15 Chris Lattnerenhance heap-sra to apply to fixed sized array allocati...
2008-12-15 Chris LattnerUse stripPointerCasts.
2008-12-15 Chris Lattnerminor tweaks for formatting, allow bitcast in ValueIsOn...
2008-12-15 Chris Lattnerrefactor some code into a new TryToOptimizeStoreOfMallo...
2008-11-21 Bill WendlingFix error where it wasn't getting the correct caller...
2008-11-21 Bill WendlingIf the function being inlined has a higher stack protec...
2008-11-20 Devang PatelDo not forget llvm.dbg.declare's first argument while...
2008-11-19 Devang PatelRemove unused variables.
2008-11-19 Devang PatelFix typo.
2008-11-18 Devang PatelAdd new helper pass that strips all symbol names except...
2008-11-18 Devang PatelRemove even more llvm.dbg variables.
2008-11-16 Torok EdwinIf SI->size() is 0, we are not allowed to dereference...
2008-11-16 Chris Lattnersimplify loop
2008-11-14 Devang PatelRefactor code.
2008-11-13 Devang PatelReally remove all debug information.
2008-11-11 Devang PatelUse actual function name in comments.
2008-11-05 Devang PatelDo now allow InlineAlways pass to remove dead functions.
2008-11-03 Andrew Lenharthadd a period at the end of the comment, ignoring the...
2008-11-03 Andrew LenharthEnsure that we are checking only calls to the function...
2008-11-02 Nick LewyckyChanges from Duncan's review:
2008-11-02 Duncan SandsGet this building on 64 bit machines (error:
2008-11-02 Oscar FuentesCMake: added a source file.
2008-11-02 Nick LewyckyAdd a new MergeFunctions pass. It finds identical funct...
2008-10-30 Daniel DunbarAdd InlineCost class for represent the estimated cost...
2008-10-29 Daniel DunbarFactor shouldInline method out of Inliner.
2008-10-28 Daniel DunbarAssorted comment/naming fixes, 80-col violations, and...
2008-10-21 Dan GohmanFix a bug that prevented llvm-extract -delete from...
2008-10-08 Nuno Lopesdont specialize weak functions and the like
2008-10-04 Duncan SandsIgnore loads from and stores to local memory (i.e....
2008-10-03 Dan GohmanClean up some multiple-return-value code that is no...
2008-10-03 Duncan SandsTeach internalize to preserve the callgraph.
2008-10-01 Nuno Lopesrevert the addition of Preverves(CallGraph), per Duncan...
2008-09-30 Nuno Lopesadd preserversCFG() + preservers(CallGraph)
next