/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | ADCE.cpp | 79 bool Live = false; member 88 bool Live = false; member 112 bool terminatorIsLive() const { return TerminatorLiveInfo->Live; } in terminatorIsLive() 126 bool isLive(BasicBlock *BB) { return BlockInfo[BB].Live; } in isLive() 130 bool isLive(Instruction *I) { return InstInfo[I].Live; } in isLive() 316 EntryInfo.Live = true; in initialize() 380 if (Info.Live) in markLive() 384 Info.Live = true; in markLive() 405 if (BBInfo.Live) in markLive() 408 BBInfo.Live in markLive() [all...] |
H A D | RewriteStatepointsForGC.cpp | 379 dbgs() << "Live Variables:\n"; in analyzeParsePointLiveness() 1688 Function &F, DominatorTree &DT, ArrayRef<Value *> Live, in relocationViaAlloca() 1704 PromotableAllocas.reserve(Live.size()); in relocationViaAlloca() 1718 for (Value *V : Live) in relocationViaAlloca() 1865 assert(PromotableAllocas.size() == Live.size() + NumRematerializedValues && in relocationViaAlloca() 2338 SmallVector<Value *, 128> Live; in insertParsePoints() local 2348 Live.insert(Live.end(), Statepoint.gc_args_begin(), in insertParsePoints() 2369 unique_unsorted(Live); in insertParsePoints() 2373 for (auto *Ptr : Live) in insertParsePoints() 1687 relocationViaAlloca( Function &F, DominatorTree &DT, ArrayRef<Value *> Live, ArrayRef<PartiallyConstructedSafepointRecord> Records) relocationViaAlloca() argument 2699 checkBasicSSA(DominatorTree &DT, SetVector<Value *> &Live, Instruction *TI, bool TermOkay = false) checkBasicSSA() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceCfgNode.cpp | 636 LivenessBV Live(NumVars); in livenessLightweight() 641 I.livenessLightweight(Func, Live); in livenessLightweight() 646 I.livenessLightweight(Func, Live); in livenessLightweight() 656 LivenessBV &Live = Liveness->getScratchBV(); in liveness() local 657 Live.clear(); in liveness() 674 // Initialize Live to be the union of all successors' LiveIn. in liveness() 678 Live |= LiveIn; in liveness() 684 Phi->livenessPhiOperand(Live, this, Liveness); in liveness() 687 assert(Live.empty() || Live in liveness() 957 const LivenessBV *Live; emitRegisterUsage() local [all...] |
H A D | IceOperand.h | 773 LiveRange &getLiveRange() { return Live; } in getLiveRange() 774 const LiveRange &getLiveRange() const { return Live; } in getLiveRange() 775 void setLiveRange(const LiveRange &Range) { Live = Range; } in setLiveRange() 776 void resetLiveRange() { Live.reset(); } in resetLiveRange() 780 Live.addSegment(Start, End, Node); in addLiveRange() 782 void trimLiveRange(InstNumberT Start) { Live.trim(Start); } in trimLiveRange() 783 void untrimLiveRange() { Live.untrim(); } in untrimLiveRange() 785 return Live.endsBefore(Other->Live); in rangeEndsBefore() 789 return Live in rangeOverlaps() 881 LiveRange Live; global() member in Ice::RegNumT::Variable [all...] |
H A D | IceInst.cpp | 189 void Inst::livenessLightweight(Cfg *Func, LivenessBV &Live) { in livenessLightweight() argument 197 if (Live[Index]) in livenessLightweight() 199 Live[Index] = true; in livenessLightweight() 204 bool Inst::liveness(InstNumberT InstNumber, LivenessBV &Live, in liveness() argument 212 if (Live[VarNum]) { in liveness() 214 Live[VarNum] = false; in liveness() 226 // Phi arguments only get added to Live in the predecessor node, but we still in liveness() 234 if (!Live[VarNum]) { in liveness() 237 Live[VarNum] = true; in liveness() 429 void InstPhi::livenessPhiOperand(LivenessBV &Live, CfgNod argument [all...] |
H A D | IceCfg.h | 168 Liveness *getLiveness() const { return Live.get(); } in getLiveness() 319 std::unique_ptr<Liveness> Live; member in Ice::Cfg
|
H A D | IceCfg.cpp | 40 NextInstNumber(Inst::NumberInitial), Live(nullptr) { in Cfg() 1460 Live = nullptr; in liveness() 1461 Live = Liveness::create(this, Mode); in liveness() 1464 Live->init(); in liveness() 1703 if (Live == nullptr) { in getLivenessMemoryMB() 1706 return Live->getAllocator()->getTotalMemory() / _1MB; in getLivenessMemoryMB()
|
H A D | IceInst.h | 164 void livenessLightweight(Cfg *Func, LivenessBV &Live); 170 bool liveness(InstNumberT InstNumber, LivenessBV &Live, Liveness *Liveness, 686 void livenessPhiOperand(LivenessBV &Live, CfgNode *Target,
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_variable.c | 196 if (!var->Live[chan].Used in rc_variable_compute_live_intervals() 197 || chan_start < var->Live[chan].Start) { in rc_variable_compute_live_intervals() 198 var->Live[chan].Start = in rc_variable_compute_live_intervals() 201 if (!var->Live[chan].Used in rc_variable_compute_live_intervals() 202 || chan_end > var->Live[chan].End) { in rc_variable_compute_live_intervals() 203 var->Live[chan].End = chan_end; in rc_variable_compute_live_intervals() 205 var->Live[chan].Used = 1; in rc_variable_compute_live_intervals() 590 var->Live[i].Start, var->Live[i].End); in rc_variable_print()
|
H A 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()
|
H A D | radeon_variable.h | 51 struct live_intervals Live[4]; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | DeadArgumentElimination.cpp | 363 return Live; in MarkIfNotLive() 401 if (Result != Live) in SurveyUse() 421 if (Result == Live) in SurveyUse() 434 return Live; in SurveyUse() 444 return Live; in SurveyUse() 457 return Live; in SurveyUse() 464 /// the result is Live, MaybeLiveUses might be modified but its content should 474 if (Result == Live) in SurveyUses() 589 if (RetValLiveness[Idx] != Live) { in SurveyFunction() 591 if (RetValLiveness[Idx] == Live) in SurveyFunction() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | ModuleSummaryIndexYAML.h | 139 bool NotEligibleToImport, Live, IsLocal, CanAutoHide; member 181 io.mapOptional("Live", summary.Live); in mapping() 226 FSum.NotEligibleToImport, FSum.Live, FSum.IsLocal, FSum.CanAutoHide), in inputOne() 246 static_cast<bool>(FSum->flags().Live), in output()
|
H A D | ModuleSummaryIndex.h | 305 unsigned Live : 1; member 324 bool NotEligibleToImport, bool Live, bool IsLocal, in GVFlags() 327 Live(Live), DSOLocal(IsLocal), CanAutoHide(CanAutoHide) {} in GVFlags() 400 bool isLive() const { return Flags.Live; } in isLive() 402 void setLive(bool Live) { Flags.Live = Live; } in setLive() argument 562 /*NotEligibleToImport=*/true, /*Live=*/true, /*IsLocal=*/false, in makeDummyFunctionSummary() 943 /// GVFlags::Live [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveVariables.cpp | 1 //===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===// 47 "Live Variable Analysis", false, false) 50 "Live Variable Analysis", false, false) 446 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | ModuleSummaryIndex.cpp | 481 if (Flags.Live && hasReadOnlyFlag(SummaryIt.second)) 483 if (Flags.Live && hasWriteOnlyFlag(SummaryIt.second)) 495 if (!Flags.Live)
|
H A D | AsmWriter.cpp | 3097 Out << ", live: " << GVFlags.Live; in printSummary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/ |
H A D | DeadArgumentElimination.h | 74 enum Liveness { Live, MaybeLive }; enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | RDFLiveness.cpp | 874 BitVector LiveIn(TRI.getNumRegs()), Live(TRI.getNumRegs()); in resetKills() 877 CopyLiveIns(SI, Live); in resetKills() 896 Live.reset(*SR); in resetKills() 906 if (!Live[*AR]) in resetKills() 914 Live.set(*SR); in resetKills()
|
H A D | HexagonGenMux.cpp | 374 bool Live = IsLive(Op.getReg()); in genMuxInBlock() local 375 Op.setIsKill(!Live); in genMuxInBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 976 // The Live flag wasn't introduced until version 3. For dead stripping in getDecodedGVSummaryFlags() 979 bool Live = (RawFlags & 0x2) || Version < 3; in getDecodedGVSummaryFlags() 983 return GlobalValueSummary::GVFlags(Linkage, NotEligibleToImport, Live, Local, AutoHide); in getDecodedGVSummaryFlags()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 1018 RawFlags |= (Flags.Live << 1); in getEncodedGVSummaryFlags()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 8086 /*Live=*/false, /*IsLocal=*/false, /*CanAutoHide=*/false); 8156 /*Live=*/false, /*IsLocal=*/false, /*CanAutoHide=*/false); 8212 /*Live=*/false, /*IsLocal=*/false, /*CanAutoHide=*/false); 8803 GVFlags.Live = Flag;
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 8816 % With TeX Live 2008, etex now includes hyphenation patterns for all
|