HomeSort by relevance Sort by last modified time
    Searched refs:MemLoc (Results 1 - 11 of 11) sorted by null

  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util.h 20 class MemLoc {
22 explicit MemLoc(int offset_from_aligned = 0);
23 explicit MemLoc(void *const real_addr) : loc_(real_addr) { }
24 ~MemLoc();
28 MemLoc(const MemLoc&);
29 void operator = (const MemLoc&);
75 void Read(const MemLoc &ml, int size, bool expect_race = false) {
78 void Write(const MemLoc &ml, int size, bool expect_race = false) {
81 void Read1(const MemLoc &ml, bool expect_race = false)
    [all...]
tsan_mop.cc 21 MemLoc l;
27 MemLoc l1, l2;
34 MemLoc l;
41 MemLoc l;
48 MemLoc l;
55 MemLoc l;
61 MemLoc l;
72 MemLoc l;
91 MemLoc l;
110 MemLoc l
    [all...]
tsan_thread.cc 18 MemLoc l;
29 MemLoc l;
35 MemLoc l;
tsan_test.cc 22 MemLoc l;
tsan_mutex.cc 101 MemLoc l;
117 MemLoc l;
133 MemLoc l;
tsan_test_util_posix.cc 130 MemLoc::MemLoc(int offset_from_aligned)
134 MemLoc::~MemLoc() {
448 void ScopedThread::VptrUpdate(const MemLoc &vptr,
449 const MemLoc &new_val,
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 265 /// would fully overlap MemLoc if done as a wider legal integer load.
268 /// base/offs of memloc is needed.
269 static bool isLoadLoadClobberIfExtendedToFullWidth(const MemoryLocation &MemLoc,
275 // If we haven't already computed the base/offset of MemLoc, do so now.
277 MemLocBase = GetPointerBaseWithConstantOffset(MemLoc.Ptr, MemLocOffs, DL);
280 MemLocBase, MemLocOffs, MemLoc.Size, LI);
317 // the bits required by MemLoc.
319 // If MemLoc is before LI, then no widening of LI will help us out.
331 // If no amount of rounding up will let MemLoc fit into LI, then bail out.
354 // If a load of this width would include all of MemLoc, then we succeed
    [all...]
AliasAnalysis.cpp 303 /// or reads the specified memory location \p MemLoc before instruction \p I
311 const MemoryLocation &MemLoc,
318 GetUnderlyingObject(MemLoc.Ptr, I->getModule()->getDataLayout());
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 415 MemDepResult getSimplePointerDependencyFrom(const MemoryLocation &MemLoc,
AliasAnalysis.h 509 /// or reads the specified memory location \p MemLoc before instruction \p I
513 const MemoryLocation &MemLoc, DominatorTree *DT,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 674 MemoryLocation MemLoc = MemoryLocation::get(SecondI);
701 auto Res = AA->getModRefInfo(I, MemLoc);
    [all...]

Completed in 263 milliseconds