Home
last modified time | relevance | path

Searched refs:Pending (Results 1 – 25 of 50) sorted by relevance

12

/external/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp297 Pending.push(SU); in releaseNode()
366 for (unsigned i = 0, e = Pending.size(); i != e; ++i) { in releasePending()
367 SUnit *SU = *(Pending.begin()+i); in releasePending()
380 Pending.remove(Pending.begin()+i); in releasePending()
391 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
392 Pending.remove(Pending.find(SU)); in removeReady()
645 assert(Top.Available.empty() && Top.Pending.empty() && in pickNode()
646 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage"); in pickNode()
DHexagonMachineScheduler.h137 ReadyQueue Pending; member
156 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P"), in VLIWSchedBoundary()
/external/v8/src/compiler/
Dregister-allocator-verifier.h53 enum AssessmentKind { Final, Pending }; enumerator
78 : Assessment(Pending), in PendingAssessment()
84 CHECK(assessment->kind() == Pending); in cast()
89 CHECK(assessment->kind() == Pending); in cast()
Dregister-allocator-verifier.cc448 case Pending: { in ValidatePendingAssessment()
481 case Pending: { in ValidateUse()
555 case Pending: in VerifyGapMoves()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp356 Pending.push(SU); in releaseNode()
426 for (unsigned i = 0, e = Pending.size(); i != e; ++i) { in releasePending()
427 SUnit *SU = *(Pending.begin()+i); in releasePending()
440 Pending.remove(Pending.begin()+i); in releasePending()
451 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
452 Pending.remove(Pending.find(SU)); in removeReady()
466 if (Available.size() == 1 && Pending.size() > 0) in pickOnlyChoice()
947 assert(Top.Available.empty() && Top.Pending.empty() && in pickNode()
948 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage"); in pickNode()
DHexagonMachineScheduler.h139 ReadyQueue Pending; member
159 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P") {} in VLIWSchedBoundary()
/external/llvm/lib/Target/AMDGPU/
DR600MachineScheduler.cpp75 (AluInstCount + AvailablesAluCount() + Pending[IDAlu].size()) / in pickNode()
179 MoveUnits(Pending[IDFetch], Available[IDFetch]); in schedNode()
209 Pending[IK].push_back(SU); in releaseBottomNode()
339 std::vector<SUnit *> &QSrc = Pending[IDAlu]; in LoadAlu()
409 while (AvailablesAluCount() || !Pending[IDAlu].empty()) { in pickAlu()
460 MoveUnits(Pending[QID], AQ); in pickOther()
DR600MachineScheduler.h53 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DR600MachineScheduler.cpp76 (AluInstCount + AvailablesAluCount() + Pending[IDAlu].size()) / in pickNode()
177 MoveUnits(Pending[IDFetch], Available[IDFetch]); in schedNode()
207 Pending[IK].push_back(SU); in releaseBottomNode()
338 std::vector<SUnit *> &QSrc = Pending[IDAlu]; in LoadAlu()
408 while (AvailablesAluCount() || !Pending[IDAlu].empty()) { in pickAlu()
459 MoveUnits(Pending[QID], AQ); in pickOther()
DR600MachineScheduler.h54 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
DGCNSchedStrategy.cpp253 assert(Top.Available.empty() && Top.Pending.empty() && in pickNode()
254 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage"); in pickNode()
/external/swiftshader/third_party/subzero/src/
DIceGlobalContext.cpp454 void resizePending(std::vector<std::unique_ptr<EmitterWorkItem>> *Pending, in resizePending() argument
456 if (Index >= Pending->size()) in resizePending()
457 Utils::reserveAndResize(*Pending, Index + 1); in resizePending()
580 std::vector<std::unique_ptr<EmitterWorkItem>> Pending; in emitItems() local
592 resizePending(&Pending, DesiredSequenceNumber); in emitItems()
594 if (Pending[DesiredSequenceNumber] == nullptr) { in emitItems()
606 resizePending(&Pending, ItemSeq); in emitItems()
607 Pending[ItemSeq] = std::move(RawItem); in emitItems()
613 Pending[DesiredSequenceNumber] = std::move(RawItem); in emitItems()
616 const auto *CurrentWorkItem = Pending[DesiredSequenceNumber].get(); in emitItems()
[all …]
DIceCfg.cpp301 BitVector Pending(NumNodes); in computeInOutEdges() local
302 Pending.set(getEntryNode()->getIndex()); in computeInOutEdges()
304 int Index = Pending.find_first(); in computeInOutEdges()
307 Pending.reset(Index); in computeInOutEdges()
314 Pending.set(SuccIndex); in computeInOutEdges()
/external/llvm/lib/CodeGen/
DLiveDebugValues.cpp444 Pending; in ExtendRanges() local
466 while (!Worklist.empty() || !Pending.empty()) { in ExtendRanges()
491 Pending.push(BBToOrder[s]); in ExtendRanges()
496 Worklist.swap(Pending); in ExtendRanges()
499 assert(Pending.empty() && "Pending should be empty"); in ExtendRanges()
DMachineScheduler.cpp1761 Pending.clear(); in reset()
1961 Pending.push(SU); in releaseNode()
2202 for (unsigned i = 0, e = Pending.size(); i != e; ++i) { in releasePending()
2203 SUnit *SU = *(Pending.begin()+i); in releasePending()
2219 Pending.remove(Pending.begin()+i); in releasePending()
2230 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
2231 Pending.remove(Pending.find(SU)); in removeReady()
2246 Pending.push(*I); in pickOnlyChoice()
2262 DEBUG(Pending.dump()); in pickOnlyChoice()
2343 CurrZone.findMaxLatency(CurrZone.Pending.elements())); in setPolicy()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLiveDebugValues.cpp722 Pending; in ExtendRanges() local
752 while (!Worklist.empty() || !Pending.empty()) { in ExtendRanges()
788 Pending.push(BBToOrder[s]); in ExtendRanges()
793 Worklist.swap(Pending); in ExtendRanges()
796 assert(Pending.empty() && "Pending should be empty"); in ExtendRanges()
DMachineScheduler.cpp1837 Pending.clear(); in reset()
2047 Pending.push(SU); in releaseNode()
2285 for (unsigned i = 0, e = Pending.size(); i != e; ++i) { in releasePending()
2286 SUnit *SU = *(Pending.begin()+i); in releasePending()
2302 Pending.remove(Pending.begin()+i); in releasePending()
2313 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
2314 Pending.remove(Pending.find(SU)); in removeReady()
2329 Pending.push(*I); in pickOnlyChoice()
2345 LLVM_DEBUG(Pending.dump()); in pickOnlyChoice()
2426 CurrZone.findMaxLatency(CurrZone.Pending.elements())); in setPolicy()
[all …]
/external/clang/include/clang/Sema/
DAnalysisBasedWarnings.h51 enum VisitFlag { NotVisited = 0, Visited = 1, Pending = 2 }; enumerator
DExternalSemaSource.h184 SourceLocation> > &Pending) {} in ReadPendingInstantiations()
DMultiplexExternalSemaSource.h316 SmallVectorImpl<std::pair<ValueDecl*, SourceLocation> >& Pending) override;
/external/clang/lib/AST/
DASTDumper.cpp103 llvm::SmallVector<std::function<void(bool isLastChild)>, 32> Pending; member in __anon59a9c3280111::ASTDumper
131 while (!Pending.empty()) { in dumpChild()
132 Pending.back()(true); in dumpChild()
133 Pending.pop_back(); in dumpChild()
164 unsigned Depth = Pending.size(); in dumpChild()
171 while (Depth < Pending.size()) { in dumpChild()
172 Pending.back()(true); in dumpChild()
173 this->Pending.pop_back(); in dumpChild()
181 Pending.push_back(std::move(dumpWithIndent)); in dumpChild()
183 Pending.back()(false); in dumpChild()
[all …]
/external/clang/lib/Sema/
DMultiplexExternalSemaSource.cpp282 SourceLocation> > &Pending) { in ReadPendingInstantiations()
284 Sources[i]->ReadPendingInstantiations(Pending); in ReadPendingInstantiations()
DSema.cpp681 SmallVector<PendingImplicitInstantiation, 4> Pending; in ActOnEndOfTranslationUnit() local
682 ExternalSource->ReadPendingInstantiations(Pending); in ActOnEndOfTranslationUnit()
684 Pending.begin(), Pending.end()); in ActOnEndOfTranslationUnit()
/external/deqp/doc/testlog-stylesheet/
Dtestlog.css110 .Pending { background: #808080; }
/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h585 ReadyQueue Pending; variable
652 Pending(ID << LogMaxQID, Name+".P"), in SchedBoundary()

12