HomeSort by relevance Sort by last modified time
    Searched defs:LastStore (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
EarlyCSE.cpp 307 /// LastStore - Keep track of the last non-volatile store that we saw... for
311 StoreInst *LastStore = 0;
361 LastStore = 0;
382 LastStore = 0;
386 // If this instruction may read from memory, forget LastStore.
388 LastStore = 0;
420 if (LastStore &&
421 LastStore->getPointerOperand() == SI->getPointerOperand()) {
422 DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore << " due to: "
424 LastStore->eraseFromParent()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 534 /// LastStore - Keep track of the last non-volatile store that we saw... for
538 Instruction *LastStore = nullptr;
577 LastStore = nullptr;
624 LastStore = nullptr;
662 LastStore = nullptr;
666 // If this instruction may read from memory, forget LastStore.
673 LastStore = nullptr;
721 assert((!LastStore ||
722 ParseMemoryInst(LastStore, TTI).getPointerOperand() ==
749 if (LastStore) {
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 377 std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val();
378 CharUnits LastStoreOffset = LastStore.first;
379 CharUnits LastStoreSize = LastStore.second;
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp     [all...]

Completed in 96 milliseconds