/external/llvm/lib/Target/Hexagon/ |
D | HexagonMachineScheduler.cpp | 297 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()
|
D | HexagonMachineScheduler.h | 137 ReadyQueue Pending; member 156 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P"), in VLIWSchedBoundary()
|
/external/v8/src/compiler/ |
D | register-allocator-verifier.h | 53 enum AssessmentKind { Final, Pending }; enumerator 78 : Assessment(Pending), in PendingAssessment() 84 CHECK(assessment->kind() == Pending); in cast() 89 CHECK(assessment->kind() == Pending); in cast()
|
D | register-allocator-verifier.cc | 448 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/ |
D | HexagonMachineScheduler.cpp | 356 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()
|
D | HexagonMachineScheduler.h | 139 ReadyQueue Pending; member 159 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P") {} in VLIWSchedBoundary()
|
/external/llvm/lib/Target/AMDGPU/ |
D | R600MachineScheduler.cpp | 75 (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()
|
D | R600MachineScheduler.h | 53 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | R600MachineScheduler.cpp | 76 (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()
|
D | R600MachineScheduler.h | 54 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
|
D | GCNSchedStrategy.cpp | 253 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/ |
D | IceGlobalContext.cpp | 454 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 …]
|
D | IceCfg.cpp | 301 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/ |
D | LiveDebugValues.cpp | 444 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()
|
D | MachineScheduler.cpp | 1761 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/ |
D | LiveDebugValues.cpp | 722 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()
|
D | MachineScheduler.cpp | 1837 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/ |
D | AnalysisBasedWarnings.h | 51 enum VisitFlag { NotVisited = 0, Visited = 1, Pending = 2 }; enumerator
|
D | ExternalSemaSource.h | 184 SourceLocation> > &Pending) {} in ReadPendingInstantiations()
|
D | MultiplexExternalSemaSource.h | 316 SmallVectorImpl<std::pair<ValueDecl*, SourceLocation> >& Pending) override;
|
/external/clang/lib/AST/ |
D | ASTDumper.cpp | 103 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/ |
D | MultiplexExternalSemaSource.cpp | 282 SourceLocation> > &Pending) { in ReadPendingInstantiations() 284 Sources[i]->ReadPendingInstantiations(Pending); in ReadPendingInstantiations()
|
D | Sema.cpp | 681 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/ |
D | testlog.css | 110 .Pending { background: #808080; }
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineScheduler.h | 585 ReadyQueue Pending; variable 652 Pending(ID << LogMaxQID, Name+".P"), in SchedBoundary()
|