HomeSort by: relevance | last modified time | path
    Searched defs:isLive (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
DynamicType.cpp 158 static bool isLive(SymbolReaper &SR, const MemRegion *MR) {
162 static bool isLive(SymbolReaper &SR, SymbolRef Sym) { return SR.isLive(Sym); }
169 if (!isLive(SR, Elem.first))
SymbolManager.cpp 419 return isLive(SR->getSymbol());
422 return isLive(VR, true);
443 bool SymbolReaper::isLive(SymbolRef sym) {
459 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
471 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
474 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
477 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
478 isLive(cast<SymSymExpr>(sym)->getRHS());
481 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand());
492 SymbolReaper::isLive(const Expr *ExprVal, const LocationContext *ELCtx) const
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.h 142 bool isLive() const { return Pointee && !Pointee->IsDead; }
281 assert(isLive() && "Invalid pointer");
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp 66 bool LiveVariables::LivenessValues::isLive(const Expr *E) const {
70 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const {
135 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) {
136 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
139 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) {
140 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
143 bool LiveVariables::isLive(const Stmt *Loc, const Expr *Val) {
144 return getImpl(impl).stmtsToLiveness[Loc].isLive(Val);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 158 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) {
159 if (Live.isLive(D))
279 if (!isLive(Live, VD) &&
406 if (!isLive(Live, V) &&
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ADCE.cpp 127 bool isLive(BasicBlock *BB) { return BlockInfo[BB].Live; }
131 bool isLive(Instruction *I) { return InstInfo[I].Live; }
283 if (isLive(Term))
514 if (isLive(&I))
527 if (isLive(II)) {
543 if (isLive(&I))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndex.h 413 bool isLive() const { return Flags.Live; }
1248 return !WithGlobalValueDeadStripping || GVS->isLive();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterCoalescer.cpp 1660 bool isLive;
1662 isLive = false;
1667 isLive = true;
1672 isLive = DstLI.liveAt(UseIdx);
1673 if (isLive)

Completed in 24 milliseconds