Home
last modified time | relevance | path

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

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/
DExecuteStage.cpp55 SmallVector<InstRef, 4> Pending; in issueInstruction() local
58 HWS.issueInstruction(IR, Used, Pending, Ready); in issueInstruction()
72 for (const InstRef &I : Pending) in issueInstruction()
96 SmallVector<InstRef, 4> Pending; in cycleStart() local
99 HWS.cycleEvent(Freed, Executed, Pending, Ready); in cycleStart()
113 for (const InstRef &IR : Pending) in cycleStart()
236 HWInstructionEvent(HWInstructionEvent::Pending, IR)); in notifyInstructionPending()
/third_party/jerryscript/tests/debugger/
Ddo_pending_breakpoints.expected5 Pending breakpoint 1 at :1
8 Pending breakpoint 2 at f()
10 === Pending breakpoints ===
Ddo_delete_all.expected11 Pending breakpoint 4 at do_delete_all:350
14 Pending breakpoint 5 at do_delete_all:37
20 === Pending breakpoints ===
Ddo_delete.expected10 Pending breakpoint 2 at do_delete.js:21
20 === Pending breakpoints ===
23 Pending breakpoint 2 deleted
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600MachineScheduler.cpp75 (AluInstCount + AvailablesAluCount() + Pending[IDAlu].size()) / in pickNode()
176 MoveUnits(Pending[IDFetch], Available[IDFetch]); in schedNode()
206 Pending[IK].push_back(SU); in releaseBottomNode()
337 std::vector<SUnit *> &QSrc = Pending[IDAlu]; in LoadAlu()
407 while (AvailablesAluCount() || !Pending[IDAlu].empty()) { in pickAlu()
458 MoveUnits(Pending[QID], AQ); in pickOther()
DR600MachineScheduler.h53 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
DGCNSchedStrategy.cpp272 assert(Top.Available.empty() && Top.Pending.empty() && in pickNode()
273 Bot.Available.empty() && Bot.Pending.empty() && "ReadyQ garbage"); in pickNode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
DScheduler.h154 bool promoteToPendingSet(SmallVectorImpl<InstRef> &Pending);
206 SmallVectorImpl<InstRef> &Pending,
227 SmallVectorImpl<InstRef> &Pending,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.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.h138 ReadyQueue Pending; member
158 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P") {} in VLIWSchedBoundary()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DScheduler.cpp155 bool Scheduler::promoteToPendingSet(SmallVectorImpl<InstRef> &Pending) { in promoteToPendingSet() argument
180 Pending.emplace_back(IR); in promoteToPendingSet()
266 SmallVectorImpl<InstRef> &Pending, in cycleEvent() argument
283 promoteToPendingSet(Pending); in cycleEvent()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceGlobalContext.cpp453 void resizePending(std::vector<std::unique_ptr<EmitterWorkItem>> *Pending, in resizePending() argument
455 if (Index >= Pending->size()) in resizePending()
456 Utils::reserveAndResize(*Pending, Index + 1); in resizePending()
524 std::vector<std::unique_ptr<EmitterWorkItem>> Pending; in emitItems() local
531 resizePending(&Pending, DesiredSequenceNumber); in emitItems()
533 if (Pending[DesiredSequenceNumber] == nullptr) { in emitItems()
545 resizePending(&Pending, ItemSeq); in emitItems()
546 Pending[ItemSeq] = std::move(RawItem); in emitItems()
552 Pending[DesiredSequenceNumber] = std::move(RawItem); in emitItems()
566 std::unique_ptr<EmitterWorkItem> Item = std::move(Pending[I]); in emitItems()
DIceCfg.cpp250 BitVector Pending(NumNodes); in computeInOutEdges() local
251 Pending.set(getEntryNode()->getIndex()); in computeInOutEdges()
253 int Index = Pending.find_first(); in computeInOutEdges()
256 Pending.reset(Index); in computeInOutEdges()
263 Pending.set(SuccIndex); in computeInOutEdges()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactorDebugInfo.hpp115 struct Pending struct in rr::DebugInfo
132 Pending pending;
DLLVMReactorDebugInfo.cpp296 scope.pending = Pending{}; in EmitVariable()
388 scope.pending = Pending{}; in emitPending()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveDebugValues.cpp1345 VarLocSet &Pending = PendingInLocs[&MBB]; in join() local
1353 Pending.set(ID); in join()
1365 Pending.reset(ID); in join()
1381 VarLocSet &Pending = Iter.second; in flushPendingLocs() local
1383 for (unsigned ID : Pending) { in flushPendingLocs()
1513 Pending; in ExtendRanges() local
1563 while (!Worklist.empty() || !Pending.empty()) { in ExtendRanges()
1596 Pending.push(BBToOrder[s]); in ExtendRanges()
1601 Worklist.swap(Pending); in ExtendRanges()
1604 assert(Pending.empty() && "Pending should be empty"); in ExtendRanges()
DMachineScheduler.cpp1860 Pending.clear(); in reset()
2111 Pending.remove(Pending.begin() + Idx); in releaseNode()
2116 Pending.push(SU); in releaseNode()
2356 for (unsigned I = 0, E = Pending.size(); I < E; ++I) { in releasePending()
2357 SUnit *SU = *(Pending.begin() + I); in releasePending()
2367 if (E != Pending.size()) { in releasePending()
2380 assert(Pending.isInQueue(SU) && "bad ready count"); in removeReady()
2381 Pending.remove(Pending.find(SU)); in removeReady()
2396 Pending.push(*I); in pickOnlyChoice()
2412 LLVM_DEBUG(Pending.dump()); in pickOnlyChoice()
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dprefer-enum-initializers.md22 Pending, // infer 0
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DHWEventListener.h42 Pending, enumerator
/third_party/vk-gl-cts/doc/testlog-stylesheet/
Dtestlog.css110 .Pending { background: #808080; }
/third_party/typescript/tests/baselines/reference/tscWatch/watchEnvironment/watchDirectories/
Dwith-non-synchronous-watch-directory.js164 Change:: Pending directory watchers and program update
365 Change:: Pending updates
/third_party/openGLES/extensions/NV/
DNV_alpha_to_coverage_dither_control.txt20 Pending.
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_alpha_to_coverage_dither_control.txt20 Pending.
/third_party/cef/tests/shared/browser/
Dmain_message_loop_external_pump_mac.mm45 // Pending work timer.
/third_party/mbedtls/ChangeLog.d/
D00README.md1 # Pending changelog entry directory

123