Home
last modified time | relevance | path

Searched refs:MemAccs (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/polly/include/polly/
DScopInfo.h1216 MemoryAccessVec MemAccs; variable
1393 bool isEmpty() const { return MemAccs.empty(); } in isEmpty()
1525 iterator begin() { return MemAccs.begin(); } in begin()
1526 iterator end() { return MemAccs.end(); } in end()
1527 const_iterator begin() const { return MemAccs.begin(); } in begin()
1528 const_iterator end() const { return MemAccs.end(); } in end()
1529 size_t size() const { return MemAccs.size(); } in size()
/external/llvm-project/polly/lib/Analysis/
DScopInfo.cpp1175 MemAccs.insert(MemAccs.begin(), Access); in addAccess()
1178 MemAccs.push_back(Access); in addAccess()
1291 for (MemoryAccess *Access : MemAccs) in print()
1335 for (auto *MA : MemAccs) { in removeMemoryAccess()
1341 MemAccs.erase(std::remove_if(MemAccs.begin(), MemAccs.end(), Predicate), in removeMemoryAccess()
1342 MemAccs.end()); in removeMemoryAccess()
1348 auto MAIt = std::find(MemAccs.begin(), MemAccs.end(), MA); in removeSingleMemoryAccess()
1349 assert(MAIt != MemAccs.end()); in removeSingleMemoryAccess()
1350 MemAccs.erase(MAIt); in removeSingleMemoryAccess()
DScopBuilder.cpp3218 for (MemoryAccess *Access : Stmt.MemAccs) { in buildAccessRelations()