aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/IPO
Commit message (Expand)AuthorAgeFilesLines
* Improve the accuracy of the inlining heuristic looking for theDale Johannesen2011-01-041-9/+14
* Also remove functions that use complex constant expressions in terms ofNick Lewycky2011-01-021-5/+18
* Remove functions from the FnSet when one of their callee's is being merged. ThisNick Lewycky2011-01-021-82/+66
* fix a globalopt crash on two Adobe-C++ testcases that the recentChris Lattner2011-01-011-0/+5
* reapply r121100 with a tweak to constant fold ConstExprs with TargetDataChris Lattner2010-12-071-8/+95
* Temporarily revert r121100 as it's causing clang to failEric Christopher2010-12-071-85/+5
* fix PR8710 - teach global opt that some constantexprs are too complex toChris Lattner2010-12-071-5/+85
* replace a linear scan with a symtab lookup, reduce indentation.Chris Lattner2010-12-061-38/+38
* Fix PR8735, a really terrible problem in the inliner's "alloca merging"Chris Lattner2010-12-061-3/+19
* improve -debug output and comments a little.Chris Lattner2010-12-061-3/+5
* Add helper functions for computing the Location of load, store,Dan Gohman2010-11-112-14/+4
* Factor out Instruction::isSafeToSpeculativelyExecute's code forDan Gohman2010-11-111-14/+1
* TBAA-enable ArgumentPromotion.Dan Gohman2010-11-111-8/+8
* Add a doesAccessArgPointees helper function, and update code to useDan Gohman2010-11-101-1/+1
* Factor out the code for testing whether a function accessesDan Gohman2010-11-101-3/+2
* Make ModRefBehavior a lattice. Use this to clean up AliasAnalysisDan Gohman2010-11-101-44/+31
* Teach FunctionAttrs about the VAArg instruction.Dan Gohman2010-11-091-0/+7
* Use the AliasAnalysis interface to determine how a Function accessesDan Gohman2010-11-091-2/+3
* Teach FunctionAttrs about AccessesArgumentsReadonly.Dan Gohman2010-11-091-0/+19
* Fix a thinko that Duncan spotted.Dan Gohman2010-11-081-1/+1
* Make FunctionAttrs TBAA-aware.Dan Gohman2010-11-081-12/+24
* Extend the AliasAnalysis::pointsToConstantMemory interface to allow itDan Gohman2010-11-081-52/+5
* Make FunctionAttrs use AliasAnalysis::getModRefBehavior, now that itDan Gohman2010-11-081-18/+33
* Rename PointsToLocalMemory to PointsToLocalOrConstantMemory to makeDuncan Sands2010-11-031-8/+11
* Let the -inline-threshold command line argument take precedence over theJakob Stoklund Olesen2010-11-021-1/+2
* Now that the MallocInst no longer exists, this workaround forDuncan Sands2010-10-301-5/+0
* If a function does a volatile load from a global constant, do notDuncan Sands2010-10-301-4/+4
* RetOp is not actually used for anything useful (thoughDuncan Sands2010-10-211-2/+0
* Reapply r116831 and r116839, converting AliasAnalysis to useDan Gohman2010-10-191-1/+1
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-1920-24/+75
* GlobalOpt: EvaluateFunction() must not evaluate stores to weak_odr globals.Mikhail Glushenkov2010-10-191-6/+7
* Trailing whitespace.Mikhail Glushenkov2010-10-181-151/+151
* CallGraphSCC passes implicity require CallGraph analysis.Owen Anderson2010-10-135-4/+17
* Be more consistent in using ValueToValueMapTy.Rafael Espindola2010-10-132-4/+4
* Begin adding static dependence information to passes, which will allow us toOwen Anderson2010-10-123-3/+14
* Now using a variant of the existing inlining heuristics to decide whether to ...Kenneth Uildriks2010-10-091-40/+50
* Now with fewer extraneous semicolons!Owen Anderson2010-10-0720-26/+26
* Add an initialization routine for libLLVMipo.aOwen Anderson2010-10-071-2/+37
* Massive rewrite of MMX: Dale Johannesen2010-09-301-2/+4
* Removed a bunch of unnecessary target_link_libraries.Oscar Fuentes2010-09-281-2/+0
* Fix llvm-extract so that it changes the linkage of all GlobalValues toBob Wilson2010-09-231-16/+14
* fix PR8144, a bug where constant merge would merge globals markedChris Lattner2010-09-151-1/+27
* Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."Michael J. Spencer2010-09-131-8/+1
* CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.Michael J. Spencer2010-09-101-1/+8
* Fix major bug in thunk detection. Also verify the calling convention.Nick Lewycky2010-09-071-22/+39
* Fix warning reported by MSVC++ builder.Nick Lewycky2010-09-051-2/+2
* Switch FnSet to containing the ComparableFunction instead of a pointer to one.Nick Lewycky2010-09-051-36/+67
* Fix many bugs when merging weak-strong and weak-weak pairs. We now merge allNick Lewycky2010-09-051-98/+183
* Fix an infinite loop; merging two functions will create a new function (if theNick Lewycky2010-08-311-31/+45
* Switch to DenseSet, simplifying much more code. We now have a single iterationNick Lewycky2010-08-311-78/+83