Home
last modified time | relevance | path

Searched refs:isLive (Results 1 – 25 of 27) sorted by relevance

12

/external/clang/include/clang/Analysis/Analyses/
DLiveVariables.h47 bool isLive(const Stmt *S) const;
48 bool isLive(const VarDecl *D) const;
77 bool isLive(const CFGBlock *B, const VarDecl *D);
83 bool isLive(const Stmt *S, const VarDecl *D);
87 bool isLive(const Stmt *Loc, const Stmt *StmtVal);
/external/clang/lib/StaticAnalyzer/Core/
DSymbolManager.cpp414 if (isLive(sym)) in maybeDead()
428 return isLive(SR->getSymbol()); in isLiveRegion()
431 return isLive(VR, true); in isLiveRegion()
452 bool SymbolReaper::isLive(SymbolRef sym) { in isLive() function in SymbolReaper
468 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol()); in isLive()
480 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS()); in isLive()
483 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS()); in isLive()
486 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) && in isLive()
487 isLive(cast<SymSymExpr>(sym)->getRHS()); in isLive()
490 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand()); in isLive()
[all …]
DEnvironment.cpp170 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) { in removeDeadBindings()
DRegionStore.cpp2310 if (SymReaper.isLive(VR)) in VisitAddedToCluster()
2317 if (SymReaper.isLive(SR->getSymbol())) in VisitAddedToCluster()
2403 if (SymReaper.isLive(SR->getSymbol())) { in UpdatePostponed()
/external/deqp/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.cpp335 bool isLive; member
338 : isLive (false) in AllocationSlot()
343 , isLive (isLive_) in AllocationSlot()
410 if (!allocations[slotNdx].isLive) in validateAllocationCallbacks()
412 allocations[slotNdx].isLive = true; in validateAllocationCallbacks()
442 if (!origSlot.isLive) in validateAllocationCallbacks()
445 origSlot.isLive = true; // Mark live to suppress further errors in validateAllocationCallbacks()
455 allocations[origSlotNdx].isLive = false; in validateAllocationCallbacks()
464 if (!allocations[slotNdx].isLive) in validateAllocationCallbacks()
466 allocations[slotNdx].isLive = true; in validateAllocationCallbacks()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
DGcMarker.java53 } while (isLive(numberOfExpectedFinalizations)); in waitForGc()
56 private boolean isLive(int numberOfExpectedFinalizations) { in isLive() method in GcMarker
/external/clang/lib/Analysis/
DLiveVariables.cpp119 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { in isLive() function in LiveVariables::LivenessValues
123 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { in isLive() function in LiveVariables::LivenessValues
177 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { in isLive() function in LiveVariables
178 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D); in isLive()
181 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { in isLive() function in LiveVariables
182 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D); in isLive()
185 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { in isLive() function in LiveVariables
186 return getImpl(impl).stmtsToLiveness[Loc].isLive(S); in isLive()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DADCE.cpp124 bool isLive(BasicBlock *BB) { return BlockInfo[BB].Live; } in isLive() function in __anona47701230111::AggressiveDeadCodeElimination
128 bool isLive(Instruction *I) { return InstInfo[I].Live; } in isLive() function in __anona47701230111::AggressiveDeadCodeElimination
280 if (isLive(Term)) in initialize()
507 if (isLive(&I)) in removeDeadInstructions()
520 if (isLive(II)) in removeDeadInstructions()
532 if (isLive(&I)) in removeDeadInstructions()
/external/v8/tools/turbolizer/src/
Dgraph-view.ts115 && (!graph.state.hideDead || n.isLive());
335 n.visible = isNodeInitiallyVisible(n) && (!g.state.hideDead || n.isLive());
409 s.has(graph.state.selection.stringKey(n)) && (!graph.state.hideDead || n.isLive()));
436 n.visible = !graph.state.hideDead || n.isLive();
439 e.visible = !graph.state.hideDead || (e.source.isLive() && e.target.isLive());
455 if (!n.isLive()) {
719 .classed("live", function (n) { return n.isLive(); })
720 .classed("dead", function (n) { return !n.isLive(); })
Dnode.ts54 isLive() { method in GNode
/external/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp147 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { in isLive() function in __anon1fb7a35c0211::DeadStoreObs
148 if (Live.isLive(D)) in isLive()
219 if (!isLive(Live, VD) && in CheckVarDecl()
347 if (!isLive(Live, V) && in observeStmt()
DMacOSKeychainAPIChecker.cpp558 if (SR.isLive(I->first)) in checkDeadSymbols()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSymbolManager.h512 bool isLive(SymbolRef sym);
514 bool isLive(const Stmt *ExprVal, const LocationContext *LCtx) const;
515 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86FloatingPoint.cpp194 bool isLive(unsigned RegNo) const { in isLive() function
202 if (!isLive(i)) in getScratchReg()
1329 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP()
1361 assert(!isLive(DstFP) && "Cannot copy ST to live FP register"); in handleSpecialFP()
1365 assert(isLive(SrcFP) && "Scratch holding ST is dead"); in handleSpecialFP()
1382 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP()
1639 if (isLive(FPReg)) in handleSpecialFP()
/external/llvm/lib/Target/X86/
DX86FloatingPoint.cpp182 bool isLive(unsigned RegNo) const { in isLive() function
430 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) { in processBasicBlock()
1406 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP()
1601 if (isLive(FPReg)) in handleSpecialFP()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86FloatingPoint.cpp191 bool isLive(unsigned RegNo) const { in isLive() function
467 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) { in processBasicBlock()
1454 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP()
1653 if (isLive(FPReg)) in handleSpecialFP()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DModuleSummaryIndex.h341 bool isLive() const { return Flags.Live; }
884 return !WithGlobalValueDeadStripping || GVS->isLive();
/external/llvm/lib/CodeGen/
DRegisterCoalescer.cpp1195 bool isLive; in eliminateUndefCopy() local
1197 isLive = false; in eliminateUndefCopy()
1202 isLive = true; in eliminateUndefCopy()
1207 isLive = DstLI.liveAt(UseIdx); in eliminateUndefCopy()
1208 if (isLive) in eliminateUndefCopy()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DFunctionImport.cpp629 if (S->isLive()) { in computeDeadSymbols()
651 if (S->isLive()) in computeDeadSymbols()
DLowerTypeTests.cpp1769 if (GVS->isLive()) in lower()
1797 if (GVS->isLive() && !GlobalValue::isLocalLinkage(GVS->linkage())) in lower()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DRegisterCoalescer.cpp1467 bool isLive; in eliminateUndefCopy() local
1469 isLive = false; in eliminateUndefCopy()
1474 isLive = true; in eliminateUndefCopy()
1479 isLive = DstLI.liveAt(UseIdx); in eliminateUndefCopy()
1480 if (isLive) in eliminateUndefCopy()
/external/python/apitools/samples/storage_sample/storage_v1/
Dstorage_v1_messages.py140 isLive = _messages.BooleanField(3) variable in Bucket.LifecycleValue.RuleValueListEntry.ConditionValue
/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java1653 if (map.isLive(e, now)) { in countLiveEntries()
2136 assertTrue(map.isLive(entry, ticker.read())); in testExpireAfterWrite()
2175 assertTrue(map.isLive(entry, ticker.read())); in testExpireAfterAccess()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
DLTO.cpp187 AddUnsigned(GS->isLive()); in computeCacheKey()
/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java1017 if (map.isLive(e)) { in countLiveEntries()

12