summaryrefslogtreecommitdiff
path: root/lib/Analysis/MemoryDependenceAnalysis.cpp
Commit message (Expand)AuthorAge
* [Modules] Fix potential ODR violations by sinking the DEBUG_TYPEChandler Carruth2014-04-22
* [C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper2014-04-15
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-06
* [Modules] Move the PredIteratorCache into the IR library -- it isChandler Carruth2014-03-04
* [C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer2014-03-02
* Make DataLayout a plain object, not a pass.Rafael Espindola2014-02-25
* Rename some member variables from TD to DL.Rafael Espindola2014-02-18
* [PM] Split DominatorTree into a concrete analysis result object whichChandler Carruth2014-01-13
* [cleanup] Move the Dominators.h and Verifier.h headers into the IRChandler Carruth2014-01-13
* Fixing a heisenbug where the memory dependence analysis behaves differentlyYunzhong Gao2013-11-14
* Fix xemacs mode line, don't put them in .cpp files (just header files). NoNick Lewycky2013-06-10
* Use only explicit bool conversion operatorsDavid Blaikie2013-05-15
* Fix unchecked uses of DominatorTree in MemoryDependenceAnalysis.Matt Arsenault2013-05-06
* A limit of 500 was still a bit too high for some tests.Bill Wendling2013-04-17
* Fix loop styleMatt Arsenault2013-03-29
* Remove 'else' after 'return'.Jakub Staszak2013-03-20
* Remove trailing spaces.Jakub Staszak2013-03-20
* Memory Dependence Analysis (not mem-dep test) take advantage of "invariant.lo...Shuxin Yang2013-03-06
* Unify clang/llvm attributes for asan/tsan/msan (LLVM part)Kostya Serebryany2013-02-26
* [tsan] disable load widening in ThreadSanitizer modeKostya Serebryany2013-02-13
* Change GetPointerBaseWithConstantOffset's DataLayout argument from aDan Gohman2013-01-31
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-30
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-19
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Ignore unreachable blocks when doing memory dependence analysis on non-localBill Wendling2012-10-23
* Create enums for the different attributes.Bill Wendling2012-10-09
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-26
* Be conservative about allocations that may alias the accessed pointer.Bob Wilson2012-09-04
* Fix more fallout from r158919, similar to PR13547.Bob Wilson2012-09-03
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-29
* MemoryDependenceAnalysis attempts to find the first memory dependency for fun...Nadav Rotem2012-08-13
* refactor the MemoryBuiltin analysis:Nuno Lopes2012-06-21
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-02
* Move the capture analysis from MemoryDependencyAnalysis to a more general placeChad Rosier2012-05-14
* Hoist simpler checks above llvm::PointerMayBeCaptured. No functional change i...Chad Rosier2012-05-12
* Don't call dominates on unreachable instructions. Should fix the dragoneggRafael Espindola2012-02-26
* The patch resolves the conflict between AddressSanitizer and load widening (G...Kostya Serebryany2012-02-06
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-20
* Change CaptureTracking to pass a Use* instead of a Value* when a value isNick Lewycky2011-12-28
* Fix crasher in GVN due to my recent capture tracking changes.Nick Lewycky2011-11-21
* Less template, more virtual! Refactoring suggested by Chris in code review.Nick Lewycky2011-11-20
* Refactor code to use new attribute getters on CallSite for NoCapture and ByVal.Nick Lewycky2011-11-20
* Refactor capture tracking (which already had a couple flags for whether returnsNick Lewycky2011-11-14
* Enhance the memdep interface so that users can tell the difference between a ...Eli Friedman2011-10-13
* Misc analysis passes that need to be aware of atomic load/store.Eli Friedman2011-08-15
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Add a limit to the number of instructions memdep will scan in a single block....Eli Friedman2011-06-15
* Add "unknown" results for memdep, which mean "I don't know whether a dependen...Eli Friedman2011-06-15