index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Analysis
/
MemoryDependenceAnalysis.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[MDA] Don't be quite as conservative for noalias functions
Philip Reames
2016-01-05
1
-7
/
+7
*
Fix comment in typo. NFC
Nick Lewycky
2016-01-04
1
-1
/
+1
*
Use std::is_sorted and std::none_of instead of manual loops. NFC
Craig Topper
2016-01-03
1
-4
/
+2
*
Analysis: Remove implicit ilist iterator conversions
Duncan P. N. Exon Smith
2015-10-10
1
-10
/
+10
*
inariant.group handling in GVN
Piotr Padlewski
2015-10-02
1
-0
/
+69
*
[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatible
Chandler Carruth
2015-09-09
1
-3
/
+3
*
[PM/AA] Add missing static dependency edges from DSE and memdep to TLI.
Chandler Carruth
2015-08-12
1
-1
/
+2
*
[PM/AA] Have memdep explicitly get and use TargetLibraryInfo rather than
Chandler Carruth
2015-08-12
1
-5
/
+7
*
[CaptureTracker] Provide an ordered basic block to PointerMayBeCapturedBefore
Bruno Cardoso Lopes
2015-07-31
1
-1
/
+8
*
[PM/AA] Extract the ModRef enums from the AliasAnalysis class in
Chandler Carruth
2015-07-22
1
-28
/
+28
*
[PM/AA] Remove the last of the legacy update API from AliasAnalysis as
Chandler Carruth
2015-07-22
1
-1
/
+0
*
[MDA] change BlockScanLimit into a command line option.
Jingyue Wu
2015-07-21
1
-1
/
+5
*
[PM/AA] Hoist the AliasResult enum out of the AliasAnalysis class.
Chandler Carruth
2015-06-22
1
-9
/
+9
*
[PM/AA] Remove the Location typedef from the AliasAnalysis class now
Chandler Carruth
2015-06-17
1
-40
/
+32
*
[PM/AA] Start refactoring AliasAnalysis to remove the analysis group and
Chandler Carruth
2015-06-04
1
-8
/
+8
*
[PHITransAddr] Don't translate unreachable values
David Majnemer
2015-06-01
1
-2
/
+1
*
Revamp PredIteratorCache interface to be cleaner.
Daniel Berlin
2015-04-21
1
-14
/
+11
*
Common some code from MemoryDependenceAnalysis that will be used in MemorySSA
Daniel Berlin
2015-04-13
1
-17
/
+1
*
[CallSite] Make construction from Value* (or Instruction*) explicit.
Benjamin Kramer
2015-04-10
1
-1
/
+1
*
!invariant.load semantics with potentially clobbering calls
Philip Reames
2015-03-24
1
-0
/
+9
*
MemoryDependenceAnalysis: Don't miscompile atomics
David Majnemer
2015-03-21
1
-11
/
+4
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-23
/
+19
*
Make DataLayout Non-Optional in the Module
Mehdi Amini
2015-03-04
1
-2
/
+1
*
Revert 229175
Philip Reames
2015-02-15
1
-3
/
+1
*
Analysis: Canonicalize access to function attributes, NFC
Duncan P. N. Exon Smith
2015-02-14
1
-5
/
+4
*
Minor tweak to MDA
Philip Reames
2015-02-13
1
-1
/
+3
*
Whitespace.
Chad Rosier
2015-02-06
1
-2
/
+0
*
Refine memory dependence's notion of volatile semantics
Philip Reames
2015-01-26
1
-16
/
+27
*
Pass QueryInst down through non-local dependency calculation
Philip Reames
2015-01-26
1
-8
/
+13
*
[REFACTOR] Push logic from MemDepPrinter into getNonLocalPointerDependency
Philip Reames
2015-01-09
1
-14
/
+21
*
[Refactor] Have getNonLocalPointerDependency take the query instruction
Philip Reames
2015-01-09
1
-2
/
+46
*
[PM] Split the AssumptionTracker immutable pass into two separate APIs:
Chandler Carruth
2015-01-04
1
-6
/
+6
*
Remove redundant assignment.
Tilmann Scheller
2014-12-19
1
-1
/
+0
*
Relax an assert a bit to avoid a crash on unreachable code.
Rafael Espindola
2014-12-01
1
-1
/
+1
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-1
/
+1
*
Silence a -Wsign-compare warning. NFC.
Aaron Ballman
2014-10-02
1
-2
/
+2
*
[MemoryDepAnalysis] Fix compile time slowdown
Bruno Cardoso Lopes
2014-10-01
1
-0
/
+22
*
Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)
Hal Finkel
2014-09-07
1
-1
/
+5
*
Fix MemoryDependenceAnalysis in cases where QueryInstr is a CmpXchg or a Atom...
Robin Morisset
2014-09-02
1
-4
/
+12
*
Fix typos in comments, NFC
Robin Morisset
2014-08-29
1
-1
/
+1
*
Relax the constraint more in MemoryDependencyAnalysis.cpp
Robin Morisset
2014-08-29
1
-6
/
+40
*
Use range based for loops to avoid needing to re-mention SmallPtrSet size.
Craig Topper
2014-08-24
1
-27
/
+18
*
Answer to Philip Reames comments
Robin Morisset
2014-08-18
1
-6
/
+27
*
Weak relaxing of the constraints on atomics in MemoryDependencyAnalysis
Robin Morisset
2014-08-18
1
-4
/
+22
*
AA metadata refactoring (introduce AAMDNodes)
Hal Finkel
2014-07-24
1
-13
/
+16
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
2014-04-15
1
-14
/
+14
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-1
/
+1
*
[Modules] Move the PredIteratorCache into the IR library -- it is
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Benjamin Kramer
2014-03-02
1
-1
/
+1
[next]