Searched refs:liveDecls (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 124 return liveDecls.contains(D); in isLive() 152 DSetRefA(valsA.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()), in merge() 153 DSetRefB(valsB.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()); in merge() 166 return liveStmts == V.liveStmts && liveDecls == V.liveDecls; in equals() 285 val.liveDecls = LV.DSetFact.add(val.liveDecls, in Visit() 348 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitBinaryOperator() 362 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD); in VisitBlockExpr() 369 val.liveDecls = LV.DSetFact.add(val.liveDecls, D); in VisitDeclRefExpr() 376 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitDeclStmt() 394 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitObjCForCollectionStmt() [all …]
|
/external/clang/include/clang/Analysis/Analyses/ |
D | LiveVariables.h | 36 llvm::ImmutableSet<const VarDecl *> liveDecls; variable 41 : liveStmts(nullptr), liveDecls(nullptr) {} in LivenessValues() 45 : liveStmts(LiveStmts), liveDecls(LiveDecls) {} in LivenessValues()
|