Home | History | Annotate | Download | only in Core

Lines Matching refs:isLive

407   if (isLive(sym))
421 return isLive(SR->getSymbol());
424 return isLive(VR, true);
442 bool SymbolReaper::isLive(SymbolRef sym) {
458 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
470 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
473 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
476 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
477 isLive(cast<SymSymExpr>(sym)->getRHS());
480 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand());
491 SymbolReaper::isLive(const Stmt *ExprVal, const LocationContext *ELCtx) const {
507 return LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, ExprVal);
510 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{
525 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl()))