/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | ADCE.cpp | 77 bool Live = false; member 86 bool Live = false; member 110 bool terminatorIsLive() const { return TerminatorLiveInfo->Live; } in terminatorIsLive() 124 bool isLive(BasicBlock *BB) { return BlockInfo[BB].Live; } in isLive() 128 bool isLive(Instruction *I) { return InstInfo[I].Live; } in isLive() 314 EntryInfo.Live = true; in initialize() 378 if (Info.Live) in markLive() 382 Info.Live = true; in markLive() 403 if (BBInfo.Live) in markLive() 406 BBInfo.Live = true; in markLive() [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DeadStoresChecker.cpp | 147 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/ |
D | IceCfgNode.cpp | 658 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 …]
|
D | IceOperand.h | 795 LiveRange &getLiveRange() { return Live; } in getLiveRange() 796 const LiveRange &getLiveRange() const { return Live; } in getLiveRange() 797 void setLiveRange(const LiveRange &Range) { Live = Range; } in setLiveRange() 798 void resetLiveRange() { Live.reset(); } in resetLiveRange() 802 Live.addSegment(Start, End, Node); 804 void trimLiveRange(InstNumberT Start) { Live.trim(Start); } in trimLiveRange() 805 void untrimLiveRange() { Live.untrim(); } in untrimLiveRange() 807 return Live.endsBefore(Other->Live); in rangeEndsBefore() 811 return Live.overlaps(Other->Live, UseTrimmed); in rangeOverlaps() 815 return Live.overlapsInst(Other->Live.getStart(), UseTrimmed); in rangeOverlapsStart() [all …]
|
D | IceInst.cpp | 199 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 …]
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_variable.c | 215 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()
|
D | radeon_pair_regalloc.c | 53 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()
|
/external/llvm/lib/Transforms/IPO/ |
D | DeadArgumentElimination.cpp | 339 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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | DeadArgumentElimination.cpp | 359 return Live; in MarkIfNotLive() 397 if (Result != Live) in SurveyUse() 417 if (Result == Live) in SurveyUse() 430 return Live; in SurveyUse() 440 return Live; in SurveyUse() 453 return Live; in SurveyUse() 470 if (Result == Live) in SurveyUses() 585 if (RetValLiveness[Idx] != Live) { in SurveyFunction() 587 if (RetValLiveness[Idx] == Live) in SurveyFunction() 594 if (SurveyUse(&U, MaybeLiveAggregateUses) == Live) { in SurveyFunction() [all …]
|
/external/kmod/testsuite/rootfs-pristine/test-modprobe/show-depends/proc/ |
D | modules | 1 btusb 11911 0 - Live 0xffffffffa00ec000 2 bluetooth 173424 1 btusb, Live 0xffffffffa0040000
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | DeadArgumentElimination.cpp | 86 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/swiftshader/third_party/llvm-7.0/llvm/test/ThinLTO/X86/ |
D | deadstrip.ll | 32 ; Live, NotEligibleForImport, dso_local, Internal 34 ; Live, dso_local, Internal 36 ; Live, Local, AvailableExternally 38 ; Live, Local, External 79 ; DEBUG-DAG: Live root: 2412314959268824392 (llvm.global_ctors) 80 ; DEBUG-DAG: Live root: 15822663052811949562 (main)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | O3-pipeline.ll | 88 ; CHECK-NEXT: Live Range Shrink 99 ; CHECK-NEXT: Live Variable Analysis 105 ; CHECK-NEXT: Live Interval Analysis 111 ; CHECK-NEXT: Live Stack Slot Analysis 113 ; CHECK-NEXT: Live Register Matrix 158 ; CHECK-NEXT: Live DEBUG_VALUE analysis
|
/external/tcpdump/tests/ |
D | dcb_pfc.out | 20 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
|
D | dcb_ets.out | 21 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 …]
|
D | dcb_qcn.out | 32 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
|
D | lldp_cdp-ev.out | 44 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
|
D | lldp_mudurl-v.out | 6 Time to Live TLV (3), length 2: TTL 120s 37 Time to Live TLV (3), length 2: TTL 120s
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | ModuleSummaryIndex.h | 258 unsigned Live : 1; 266 bool NotEligibleToImport, bool Live, bool IsLocal) 268 Live(Live), DSOLocal(IsLocal) {} 341 bool isLive() const { return Flags.Live; } 343 void setLive(bool Live) { Flags.Live = Live; }
|
D | ModuleSummaryIndexYAML.h | 140 bool NotEligibleToImport, Live, IsLocal; 182 io.mapOptional("Live", summary.Live); 227 FSum.NotEligibleToImport, FSum.Live, FSum.IsLocal), 247 static_cast<bool>(FSum->flags().Live),
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | O3-pipeline.ll | 103 ; CHECK-NEXT: Live Variable Analysis 107 ; CHECK-NEXT: Live Interval Analysis 113 ; CHECK-NEXT: Live Stack Slot Analysis 115 ; CHECK-NEXT: Live Register Matrix 153 ; CHECK-NEXT: Live DEBUG_VALUE analysis
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LiveVariables.cpp | 425 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/ |
D | modules | 1 btusb 11216 0 - Live 0xffffffffa014a000
|
/external/llvm/lib/Fuzzer/test/ |
D | fuzzer-oom-with-profile.test | 4 CHECK: Live Heap Allocations
|
/external/scapy/test/ |
D | edns0.uts | 48 #= EDNS-PING - Live test 63 = NSID - Live test
|