Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasSetTracker.cpp65 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()
124 MemoryLocs.push_back(MemLoc); in addMemoryLocation()
160 for (const auto &ASMemLoc : MemoryLocs) { in aliasesMemoryLocation()
194 for (const auto &ASMemLoc : MemoryLocs) { in aliasesUnknownInst()
205 for (const MemoryLocation &MemLoc : MemoryLocs) in getPointers()
279 if (is_contained(MapEntry->MemoryLocs, MemLoc)) in getAliasSetFor()
524 if (!MemoryLocs.empty()) { in print()
[all …]
/freebsd-14.2/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() { return MemoryLocs.size(); } in size()