Searched refs:isLive (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h49 bool isLive(const Stmt *S) const;
50 bool isLive(const VarDecl *D) const;
80 bool isLive(const CFGBlock *B, const VarDecl *D);
86 bool isLive(const Stmt *S, const VarDecl *D);
90 bool isLive(const Stmt *Loc, const Stmt *StmtVal);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp406 if (isLive(sym))
420 return isLive(SR->getSymbol());
423 return isLive(VR, true);
444 bool SymbolReaper::isLive(SymbolRef sym) { function in class:SymbolReaper
460 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
472 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
475 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
478 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
479 isLive(cast<SymSymExpr>(sym)->getRHS());
482 KnownLive = isLive(cas
493 SymbolReaper::isLive(const Stmt *ExprVal, const LocationContext *ELCtx) const { function in class:SymbolReaper
512 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ function in class:SymbolReaper
[all...]
H A DEnvironment.cpp168 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) {
H A DRegionStore.cpp2209 if (SymReaper.isLive(VR))
2216 if (SymReaper.isLive(SR->getSymbol()))
2297 if (SymReaper.isLive(SR->getSymbol())) {
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp134 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { function in class:LiveVariables::LivenessValues
138 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { function in class:LiveVariables::LivenessValues
192 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { function in class:LiveVariables
193 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
196 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { function in class:LiveVariables
197 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
200 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { function in class:LiveVariables
201 return getImpl(impl).stmtsToLiveness[Loc].isLive(S);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp145 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { function in class:__anon3540::DeadStoreObs
146 if (Live.isLive(D))
216 if (!isLive(Live, VD) &&
343 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) {
H A DMacOSKeychainAPIChecker.cpp558 if (SR.isLive(I->first))
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h599 bool isLive(SymbolRef sym);
601 bool isLive(const Stmt *ExprVal, const LocationContext *LCtx) const;
602 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DRegisterPressure.cpp576 bool isLive = LiveRegs.contains(Reg); local
577 if (!isLive)
589 if (lastUse && isLive) {
593 else if (!lastUse && !isLive)
/freebsd-10.3-release/contrib/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp57 // The logic in isLive() is too much for it.
195 /// isLive - Is RegNo currently live in the stack?
196 bool isLive(unsigned RegNo) const {
204 if (!isLive(i))
1331 assert(isLive(SrcFP) && "Cannot copy dead register");
1363 assert(!isLive(DstFP) && "Cannot copy ST to live FP register");
1367 assert(isLive(SrcFP) && "Scratch holding ST is dead");
1384 assert(isLive(SrcFP) && "Cannot copy dead register");
1641 if (isLive(FPReg))

Completed in 78 milliseconds