Searched refs:LastStore (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp929 /// LastStore - Keep track of the last non-volatile store that we saw... for
933 Instruction *LastStore = nullptr; local
1031 LastStore = nullptr;
1092 LastStore = nullptr;
1147 LastStore = nullptr;
1152 // from memory in the exception handler), forget LastStore. Load/store
1159 LastStore = nullptr;
1216 // It is okay to have a LastStore to a different pointer here if MemorySSA
1218 // In that case, LastStore should keep its present value since we're
1220 assert((!LastStore ||
[all...]
H A DNewGVN.cpp1385 const auto *LastStore = createStoreExpression(SI, StoreRHS);
1386 const auto *LastCC = ExpressionToClass.lookup(LastStore);
1392 if (LastCC && LastCC->getStoredValue() == LastStore->getStoredValue())
1393 return LastStore;
1398 if (auto *LI = dyn_cast<LoadInst>(LastStore->getStoredValue()))
1400 LastStore->getOperand(0)) &&
1403 return LastStore;
1404 deleteExpression(LastStore);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp2108 std::map<int,IndexType> LastStore, LastLoad; local
2184 if (LastStore[FI] == IndexType::None)
2185 LastStore[FI] = IndexType::Entry;
2189 if (LastStore[FI] != IndexType::None)
2190 RL.add(LastStore[FI], LastLoad[FI], false, false);
2194 LastStore[FI] = Index;
2206 IndexType &LS = LastStore[I.first];
2213 for (auto &I : LastStore) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp519 std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val(); local
520 CharUnits LastStoreOffset = LastStore.first;
521 CharUnits LastStoreSize = LastStore.second;

Completed in 202 milliseconds