HomeSort by: relevance | last modified time | path
    Searched refs:isLive (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
LiveVariables.h 48 bool isLive(const Expr *E) const;
49 bool isLive(const VarDecl *D) const;
78 bool isLive(const CFGBlock *B, const VarDecl *D);
84 bool isLive(const Stmt *S, const VarDecl *D);
88 bool isLive(const Stmt *Loc, const Expr *Val);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 419 return isLive(SR->getSymbol());
422 return isLive(VR, true);
443 bool SymbolReaper::isLive(SymbolRef sym) {
459 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
471 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
474 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
477 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
478 isLive(cast<SymSymExpr>(sym)->getRHS());
481 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand());
492 SymbolReaper::isLive(const Expr *ExprVal, const LocationContext *ELCtx) const
    [all...]
DynamicType.cpp 158 static bool isLive(SymbolReaper &SR, const MemRegion *MR) {
162 static bool isLive(SymbolReaper &SR, SymbolRef Sym) { return SR.isLive(Sym); }
169 if (!isLive(SR, Elem.first))
Environment.cpp 202 if (SymReaper.isLive(E, BlkExpr.getLocationContext())) {
RegionStore.cpp 2497 if (SymReaper.isLive(VR))
2504 if (SymReaper.isLive(SR->getSymbol()))
2588 if (SymReaper.isLive(SR->getSymbol())) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ADCE.cpp 127 bool isLive(BasicBlock *BB) { return BlockInfo[BB].Live; }
131 bool isLive(Instruction *I) { return InstInfo[I].Live; }
283 if (isLive(Term))
514 if (isLive(&I))
527 if (isLive(II)) {
543 if (isLive(&I))
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp 66 bool LiveVariables::LivenessValues::isLive(const Expr *E) const {
70 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const {
135 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) {
136 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
139 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) {
140 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
143 bool LiveVariables::isLive(const Stmt *Loc, const Expr *Val) {
144 return getImpl(impl).stmtsToLiveness[Loc].isLive(Val);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 158 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) {
159 if (Live.isLive(D))
279 if (!isLive(Live, VD) &&
406 if (!isLive(Live, V) &&
TrustNonnullChecker.cpp 150 if (!SymReaper.isLive(P.first) || !SymReaper.isLive(P.second))
InnerPointerChecker.cpp 276 if (!SymReaper.isLive(Symbol))
ExprInspectionChecker.cpp 364 if (!SymReaper.isLive(Sym))
IteratorModeling.cpp 343 if (!SR.isLive(Sym.first)) {
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkGeneric.cpp 437 if (Sym->isLive())
456 if (E.getTarget().isDefined() && !E.getTarget().isLive())
469 if (!Sym->isLive())
495 if (!Sym->isLive())
JITLink.cpp 110 << (Sym.isLive() ? "live" : "dead") << " - "
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.h 142 bool isLive() const { return Pointee && !Pointee->IsDead; }
281 assert(isLive() && "Invalid pointer");
Interp.cpp 215 if (!Ptr.isLive()) {
259 assert(Ptr.isLive() && "Pointer is not live");
271 assert(Ptr.isLive() && "Pointer is not live");
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 540 bool isLive(SymbolRef sym);
542 bool isLive(const Expr *ExprVal, const LocationContext *LCtx) const;
543 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
571 return !isLive(sym);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StackSafetyAnalysis.cpp 618 if (!GVS->isLive())
652 if (!S->isLive() || !S->isDSOLocal())
684 assert(FS.isLive());
1028 if (FS->isLive() && FS->isDSOLocal()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FloatingPoint.cpp 64 // The logic in isLive() is too much for it.
189 /// isLive - Is RegNo currently live in the stack?
190 bool isLive(unsigned RegNo) const {
473 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) {
1470 assert(isLive(SrcFP) && "Cannot copy dead register");
1670 if (isLive(FPReg))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndex.h 413 bool isLive() const { return Flags.Live; }
1248 return !WithGlobalValueDeadStripping || GVS->isLive();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionImport.cpp 867 if (S->isLive()) {
891 return S->isLive();
LowerTypeTests.cpp 1901 if (GVS->isLive())
1929 if (GVS->isLive() && !GlobalValue::isLocalLinkage(GVS->linkage()))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterCoalescer.cpp 1660 bool isLive;
1662 isLive = false;
1667 isLive = true;
1672 isLive = DstLI.liveAt(UseIdx);
1673 if (isLive)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
JITLink.h 322 JITTargetAddress Size, Linkage L, Scope S, bool IsLive,
328 setLive(IsLive);
333 JITTargetAddress Size, Scope S, bool IsLive) {
341 new (Sym) Symbol(Base, 0, Name, Size, Linkage::Weak, S, IsLive, false);
359 Linkage L, Scope S, bool IsLive) {
364 new (Sym) Symbol(Base, 0, Name, Size, L, S, IsLive, false);
371 bool IsLive) {
377 Scope::Local, IsLive, IsCallable);
384 bool IsLive, bool IsCallable) {
390 new (Sym) Symbol(Base, Offset, Name, Size, L, S, IsLive, IsCallable)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp 210 AddUnsigned(GS->isLive());

Completed in 43 milliseconds

1 2