Home
last modified time | relevance | path

Searched refs:Live (Results 1 – 25 of 54) sorted by relevance

123

/external/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp147 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { in isLive() argument
148 if (Live.isLive(D)) in isLive()
210 const LiveVariables::LivenessValues &Live) { in CheckVarDecl() argument
219 if (!isLive(Live, VD) && in CheckVarDecl()
230 const LiveVariables::LivenessValues& Live) { in CheckDeclRef() argument
232 CheckVarDecl(VD, DR, Val, dsk, Live); in CheckDeclRef()
259 const LiveVariables::LivenessValues &Live) override { in observeStmt() argument
299 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live); in observeStmt()
313 CheckDeclRef(DR, U, DeadIncrement, Live); in observeStmt()
347 if (!isLive(Live, V) && in observeStmt()
/external/swiftshader/third_party/subzero/src/
DIceCfgNode.cpp658 LivenessBV Live(NumVars); in livenessLightweight() local
663 I.livenessLightweight(Func, Live); in livenessLightweight()
668 I.livenessLightweight(Func, Live); in livenessLightweight()
678 LivenessBV &Live = Liveness->getScratchBV(); in liveness() local
679 Live.clear(); in liveness()
700 Live |= LiveIn; in liveness()
706 Phi->livenessPhiOperand(Live, this, Liveness); in liveness()
709 assert(Live.empty() || Live.size() == NumGlobalVars); in liveness()
710 Liveness->getLiveOut(this) = Live; in liveness()
713 Live.resize(NumVars); in liveness()
[all …]
DIceOperand.h787 LiveRange &getLiveRange() { return Live; } in getLiveRange()
788 const LiveRange &getLiveRange() const { return Live; } in getLiveRange()
789 void setLiveRange(const LiveRange &Range) { Live = Range; } in setLiveRange()
790 void resetLiveRange() { Live.reset(); } in resetLiveRange()
794 Live.addSegment(Start, End, Node);
796 void trimLiveRange(InstNumberT Start) { Live.trim(Start); } in trimLiveRange()
797 void untrimLiveRange() { Live.untrim(); } in untrimLiveRange()
799 return Live.endsBefore(Other->Live); in rangeEndsBefore()
803 return Live.overlaps(Other->Live, UseTrimmed); in rangeOverlaps()
807 return Live.overlapsInst(Other->Live.getStart(), UseTrimmed); in rangeOverlapsStart()
[all …]
DIceInst.cpp199 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) { in livenessLightweight() argument
207 if (Live[Index]) in livenessLightweight()
209 Live[Index] = true; in livenessLightweight()
214 bool Inst::liveness(InstNumberT InstNumber, LivenessBV &Live, in liveness() argument
222 if (Live[VarNum]) { in liveness()
224 Live[VarNum] = false; in liveness()
244 if (!Live[VarNum]) { in liveness()
247 Live[VarNum] = true; in liveness()
439 void InstPhi::livenessPhiOperand(LivenessBV &Live, CfgNode *Target, in livenessPhiOperand() argument
448 if (!Live[SrcIndex]) { in livenessPhiOperand()
[all …]
DIceCfg.h168 Liveness *getLiveness() const { return Live.get(); } in getLiveness()
334 std::unique_ptr<Liveness> Live; variable
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_variable.c215 if (!var->Live[chan].Used in rc_variable_compute_live_intervals()
216 || chan_start < var->Live[chan].Start) { in rc_variable_compute_live_intervals()
217 var->Live[chan].Start = in rc_variable_compute_live_intervals()
220 if (!var->Live[chan].Used in rc_variable_compute_live_intervals()
221 || chan_end > var->Live[chan].End) { in rc_variable_compute_live_intervals()
222 var->Live[chan].End = chan_end; in rc_variable_compute_live_intervals()
224 var->Live[chan].Used = 1; in rc_variable_compute_live_intervals()
529 var->Live[i].Start, var->Live[i].End); in rc_variable_print()
Dradeon_pair_regalloc.c53 struct live_intervals Live[4]; member
229 reg->Live[i].Used = 1; in scan_read_callback()
230 reg->Live[i].Start = 0; in scan_read_callback()
231 reg->Live[i].End = in scan_read_callback()
562 if (s->Input[i].Live[chan].Used) { in do_advanced_regalloc()
588 if (overlap_live_intervals_array(var_a->Live, var_b->Live)) { in do_advanced_regalloc()
607 if (overlap_live_intervals_array(s->Input[i].Live, in do_advanced_regalloc()
608 var->Live)) { in do_advanced_regalloc()
Dradeon_variable.h51 struct live_intervals Live[4]; member
/external/llvm/lib/Transforms/IPO/
DDeadArgumentElimination.cpp339 return Live; in MarkIfNotLive()
378 if (Result != Live) in SurveyUse()
398 if (Result == Live) in SurveyUse()
411 return Live; in SurveyUse()
421 return Live; in SurveyUse()
434 return Live; in SurveyUse()
451 if (Result == Live) in SurveyUses()
541 if (RetValLiveness[Idx] != Live) { in SurveyFunction()
543 if (RetValLiveness[Idx] == Live) in SurveyFunction()
550 if (SurveyUse(&U, MaybeLiveAggregateUses) == Live) { in SurveyFunction()
[all …]
/external/kmod/testsuite/rootfs-pristine/test-modprobe/show-depends/proc/
Dmodules1 btusb 11911 0 - Live 0xffffffffa00ec000
2 bluetooth 173424 1 btusb, Live 0xffffffffa0040000
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DDeadArgumentElimination.cpp86 enum Liveness { Live, MaybeLive }; enumerator
359 return Live; in MarkIfNotLive()
402 if (Result == Live) in SurveyUse()
421 return Live; in SurveyUse()
434 return Live; in SurveyUse()
450 if (Result == Live) in SurveyUses()
527 if (RetValLiveness[Idx] != Live) { in SurveyFunction()
529 if (RetValLiveness[Idx] == Live) in SurveyFunction()
536 RetValLiveness[i] = Live; in SurveyFunction()
544 if (RetValLiveness[0] == Live) in SurveyFunction()
[all …]
/external/tcpdump/tests/
Ddcb_pfc.out20 Time to Live TLV (3), length 2: TTL 120s
54 Time to Live TLV (3), length 2: TTL 120s
88 Time to Live TLV (3), length 2: TTL 120s
122 Time to Live TLV (3), length 2: TTL 120s
Ddcb_ets.out21 Time to Live TLV (3), length 2: TTL 120s
118 Time to Live TLV (3), length 2: TTL 120s
202 Time to Live TLV (3), length 2: TTL 120s
300 Time to Live TLV (3), length 2: TTL 120s
355 Time to Live TLV (3), length 2: TTL 120s
422 Time to Live TLV (3), length 2: TTL 120s
477 Time to Live TLV (3), length 2: TTL 120s
556 Time to Live TLV (3), length 2: TTL 120s
611 Time to Live TLV (3), length 2: TTL 120s
666 Time to Live TLV (3), length 2: TTL 120s
[all …]
Ddcb_qcn.out32 Time to Live TLV (3), length 2: TTL 120s
63 Time to Live TLV (3), length 2: TTL 120s
106 Time to Live TLV (3), length 2: TTL 120s
146 Time to Live TLV (3), length 2: TTL 120s
216 Time to Live TLV (3), length 2: TTL 120s
247 Time to Live TLV (3), length 2: TTL 120s
291 Time to Live TLV (3), length 2: TTL 120s
331 Time to Live TLV (3), length 2: TTL 120s
Dlldp_cdp-ev.out44 Time to Live TLV (3), length 2: TTL 120s
66 Time to Live TLV (3), length 2: TTL 120s
88 Time to Live TLV (3), length 2: TTL 120s
110 Time to Live TLV (3), length 2: TTL 120s
170 Time to Live TLV (3), length 2: TTL 120s
192 Time to Live TLV (3), length 2: TTL 120s
214 Time to Live TLV (3), length 2: TTL 120s
236 Time to Live TLV (3), length 2: TTL 120s
Dlldp_mudurl-v.out6 Time to Live TLV (3), length 2: TTL 120s
37 Time to Live TLV (3), length 2: TTL 120s
Dlldp_mudurl-vv.out8 Time to Live TLV (3), length 2: TTL 120s
61 Time to Live TLV (3), length 2: TTL 120s
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DLiveVariables.cpp425 SmallSet<unsigned, 32> Live; in HandlePhysRegDef() local
427 Live.insert(Reg); in HandlePhysRegDef()
429 Live.insert(*SS); in HandlePhysRegDef()
439 if (Live.count(SubReg)) in HandlePhysRegDef()
442 Live.insert(SubReg); in HandlePhysRegDef()
444 Live.insert(*SS); in HandlePhysRegDef()
455 if (!Live.count(SubReg)) in HandlePhysRegDef()
/external/kmod/testsuite/rootfs-pristine/test-loaded/proc/
Dmodules1 btusb 11216 0 - Live 0xffffffffa014a000
/external/llvm/lib/Fuzzer/test/
Dfuzzer-oom-with-profile.test4 CHECK: Live Heap Allocations
/external/scapy/test/
Dedns0.uts48 #= EDNS-PING - Live test
63 = NSID - Live test
/external/llvm/lib/CodeGen/
DLiveVariables.cpp446 SmallSet<unsigned, 32> Live; in HandlePhysRegDef() local
450 Live.insert(*SubRegs); in HandlePhysRegDef()
460 if (Live.count(SubReg)) in HandlePhysRegDef()
465 Live.insert(*SS); in HandlePhysRegDef()
476 if (!Live.count(SubReg)) in HandlePhysRegDef()
/external/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1550 Function &F, DominatorTree &DT, ArrayRef<Value *> Live, in relocationViaAlloca() argument
1566 PromotableAllocas.reserve(Live.size()); in relocationViaAlloca()
1578 for (Value *V : Live) in relocationViaAlloca()
1723 assert(PromotableAllocas.size() == Live.size() + NumRematerializedValues && in relocationViaAlloca()
2143 SmallVector<Value *, 128> Live; in insertParsePoints() local
2153 Live.insert(Live.end(), Statepoint.gc_args_begin(), in insertParsePoints()
2174 unique_unsorted(Live); in insertParsePoints()
2178 for (auto *Ptr : Live) in insertParsePoints()
2183 relocationViaAlloca(F, DT, Live, Records); in insertParsePoints()
2443 static void checkBasicSSA(DominatorTree &DT, SetVector<Value *> &Live, in checkBasicSSA() argument
[all …]
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_driver.cc75 return Live()->find(context) != Live()->end(); in Has()
83 Live()->insert( in Add()
92 auto it = Live()->find(context); in Remove()
93 CHECK(it != Live()->end()) << context; in Remove()
94 Live()->erase(it); in Remove()
99 static std::map<CUcontext, std::unique_ptr<CudaContext>> *Live() { in Live() function in perftools::gputools::cuda::__anonf4a9f3830111::CreatedContexts
/external/llvm/include/llvm/Transforms/IPO/
DDeadArgumentElimination.h68 enum Liveness { Live, MaybeLive }; enumerator

123