Searched refs:liveDecls (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 129 return liveExprs == V.liveExprs && liveDecls == V.liveDecls; in equals() 248 val.liveDecls = LV.DSetFact.add(val.liveDecls, in Visit() 353 val.liveDecls = LV.DSetFact.remove(val.liveDecls, HV); in VisitBinaryOperator() 360 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitBinaryOperator() 375 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD); in VisitBlockExpr() 385 val.liveDecls = LV.DSetFact.add(val.liveDecls, HV); in VisitDeclRefExpr() 391 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD); in VisitDeclRefExpr() 400 val.liveDecls = LV.DSetFact.remove(val.liveDecls, HV); in VisitDeclStmt() 407 val.liveDecls = LV.DSetFact.remove(val.liveDecls, DD); in VisitDeclStmt() 410 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD); in VisitDeclStmt() [all …]
|
| /llvm-project-15.0.7/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()
|