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

/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp412 /// LastStore - Keep track of the last non-volatile store that we saw... for
416 StoreInst *LastStore = nullptr; local
466 LastStore = nullptr;
487 LastStore = nullptr;
491 // If this instruction may read from memory, forget LastStore.
493 LastStore = nullptr;
525 if (LastStore &&
526 LastStore->getPointerOperand() == SI->getPointerOperand()) {
527 DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore << " due to: "
529 LastStore
[all...]

Completed in 46 milliseconds