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

  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 130 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
141 llvm::SmallPtrSet<const VarDecl *, 20> &escaped)
143 Escaped(escaped), currentBlock(nullptr) {}
166 if (Escaped.count(V))
398 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
402 // escaped.
413 Escaped.insert(VD);
443 DeadStoreObs A(cfg, BR.getContext(), BR, this, AC, pmap, FS.Escaped);
StreamChecker.cpp 30 enum Kind { Opened, Closed, OpenFailed, Escaped } K;
38 //bool isEscaped() const { return K == Escaped; }
50 return StreamState(Escaped, s);
MallocChecker.cpp 58 Escaped
74 bool isEscaped() const { return K == Escaped; }
94 return RefState(Escaped, RS->getStmt(), RS->getAllocationFamily());
109 CASE(Escaped)
193 const InvalidatedSymbols &Escaped,
197 const InvalidatedSymbols &Escaped,
313 const InvalidatedSymbols &Escaped,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 206 // otherwise escaped, but this is a local analysis).
268 // Track whether a block is reachable after an alloca has escaped. Blocks that
270 // escaped alloca, since that is how the block began.
274 ESCAPED
278 // We propagate the fact that an alloca has escaped from block to successor.
283 // We may enter a block and visit it thinking that no alloca has escaped yet,
293 VisitType Escaped = UNESCAPED;
297 Escaped = ESCAPED;
309 // Note that this runs whether we know an alloca has escaped or not. I
    [all...]

Completed in 644 milliseconds