Searched refs:liveDecls (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 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() 392 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD); in VisitDeclRefExpr() 401 val.liveDecls = LV.DSetFact.remove(val.liveDecls, HV); in VisitDeclStmt() 408 val.liveDecls = LV.DSetFact.remove(val.liveDecls, DD); in VisitDeclStmt() 411 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitDeclStmt() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | LiveVariables.h | 34 llvm::ImmutableSet<const VarDecl *> liveDecls; variable 40 : liveExprs(nullptr), liveDecls(nullptr), liveBindings(nullptr) {} in LivenessValues() 45 : liveExprs(liveExprs), liveDecls(LiveDecls), in LivenessValues()
|