Home
last modified time | relevance | path

Searched refs:MemoryLocs (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasSetTracker.cpp56 if (!any_of(MemoryLocs, [&](const MemoryLocation &MemLoc) { in mergeSetIn()
57 return any_of(AS.MemoryLocs, [&](const MemoryLocation &ASMemLoc) { in mergeSetIn()
65 if (MemoryLocs.empty()) { in mergeSetIn()
66 std::swap(MemoryLocs, AS.MemoryLocs); in mergeSetIn()
68 append_range(MemoryLocs, AS.MemoryLocs); in mergeSetIn()
69 AS.MemoryLocs.clear(); in mergeSetIn()
117 if (!any_of(MemoryLocs, [&](const MemoryLocation &ASMemLoc) { in addMemoryLocation()
124 MemoryLocs.push_back(MemLoc); in addMemoryLocation()
160 for (const auto &ASMemLoc : MemoryLocs) { in aliasesMemoryLocation()
194 for (const auto &ASMemLoc : MemoryLocs) { in aliasesUnknownInst()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h54 SmallVector<MemoryLocation, 0> MemoryLocs; variable
120 iterator begin() const { return MemoryLocs.begin(); } in begin()
121 iterator end() const { return MemoryLocs.end(); } in end()
123 unsigned size() const { return MemoryLocs.size(); } in size()