/external/clang/include/clang/Analysis/Analyses/ |
D | LiveVariables.h | 47 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/ |
D | SymbolManager.cpp | 414 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 …]
|
D | Environment.cpp | 170 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) { in removeDeadBindings()
|
D | RegionStore.cpp | 2310 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/ |
D | vkAllocationCallbackUtil.cpp | 335 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/ |
D | GcMarker.java | 53 } while (isLive(numberOfExpectedFinalizations)); in waitForGc() 56 private boolean isLive(int numberOfExpectedFinalizations) { in isLive() method in GcMarker
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 119 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/ |
D | ADCE.cpp | 124 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/ |
D | graph-view.ts | 115 && (!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(); })
|
D | node.ts | 54 isLive() { method in GNode
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DeadStoresChecker.cpp | 147 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()
|
D | MacOSKeychainAPIChecker.cpp | 558 if (SR.isLive(I->first)) in checkDeadSymbols()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SymbolManager.h | 512 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/ |
D | X86FloatingPoint.cpp | 194 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/ |
D | X86FloatingPoint.cpp | 182 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/ |
D | X86FloatingPoint.cpp | 191 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/ |
D | ModuleSummaryIndex.h | 341 bool isLive() const { return Flags.Live; } 884 return !WithGlobalValueDeadStripping || GVS->isLive();
|
/external/llvm/lib/CodeGen/ |
D | RegisterCoalescer.cpp | 1195 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/ |
D | FunctionImport.cpp | 629 if (S->isLive()) { in computeDeadSymbols() 651 if (S->isLive()) in computeDeadSymbols()
|
D | LowerTypeTests.cpp | 1769 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/ |
D | RegisterCoalescer.cpp | 1467 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/ |
D | storage_v1_messages.py | 140 isLive = _messages.BooleanField(3) variable in Bucket.LifecycleValue.RuleValueListEntry.ConditionValue
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalCacheTest.java | 1653 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/ |
D | LTO.cpp | 187 AddUnsigned(GS->isLive()); in computeCacheKey()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapMakerInternalMapTest.java | 1017 if (map.isLive(e)) { in countLiveEntries()
|