Home
last modified time | relevance | path

Searched refs:liveDecls (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Analysis/
DLiveVariables.cpp125 return liveDecls.contains(D); in isLive()
153 DSetRefA(valsA.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()), in merge()
154 DSetRefB(valsB.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()); in merge()
167 return liveStmts == V.liveStmts && liveDecls == V.liveDecls; in equals()
286 val.liveDecls = LV.DSetFact.add(val.liveDecls, in Visit()
350 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitBinaryOperator()
367 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD); in VisitBlockExpr()
374 val.liveDecls = LV.DSetFact.add(val.liveDecls, D); in VisitDeclRefExpr()
381 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitDeclStmt()
399 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitObjCForCollectionStmt()
[all …]
/external/clang/include/clang/Analysis/Analyses/
DLiveVariables.h36 llvm::ImmutableSet<const VarDecl *> liveDecls; variable
41 : liveStmts(nullptr), liveDecls(nullptr) {} in LivenessValues()
45 : liveStmts(LiveStmts), liveDecls(LiveDecls) {} in LivenessValues()