Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp80 alive |= liveDecls.contains(DD); in isLive()
83 return liveDecls.contains(D); in isLive()
111 DSetRefA(valsA.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()), in merge()
112 DSetRefB(valsB.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()); in merge()
130 return liveExprs == V.liveExprs && liveDecls == V.liveDecls; in equals()
249 val.liveDecls = LV.DSetFact.add(val.liveDecls, in Visit()
354 val.liveDecls = LV.DSetFact.remove(val.liveDecls, HV); in VisitBinaryOperator()
361 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitBinaryOperator()
376 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD); in VisitBlockExpr()
386 val.liveDecls = LV.DSetFact.add(val.liveDecls, HV); in VisitDeclRefExpr()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h34 llvm::ImmutableSet<const VarDecl *> liveDecls; variable
40 : liveExprs(nullptr), liveDecls(nullptr), liveBindings(nullptr) {} in LivenessValues()
45 : liveExprs(liveExprs), liveDecls(LiveDecls), in LivenessValues()