HomeSort by: relevance | last modified time | path
    Searched defs:Ready (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/
ExecuteStage.cpp 56 SmallVector<InstRef, 4> Ready;
58 HWS.issueInstruction(IR, Used, Pending, Ready);
75 for (const InstRef &I : Ready)
97 SmallVector<InstRef, 4> Ready;
99 HWS.cycleEvent(Freed, Executed, Pending, Ready);
116 for (const InstRef &IR : Ready)
215 // If we did not return early, then the scheduler is ready for execution.
218 // If we cannot issue immediately, the HWS will add IR to its ready queue for
240 LLVM_DEBUG(dbgs() << "[E] Instruction Ready: #" << IR << '\n');
242 HWInstructionEvent(HWInstructionEvent::Ready, IR))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyCFGSort.cpp 137 // If we give a higher priority to an EH pad whenever it is ready in this
138 // example, when both bb1 and bb2 are ready, we would pick up bb2 first.
211 // We use two ready lists; Preferred and Ready. Preferred has recently
213 // order. Ready has the remaining ready blocks. EH blocks are picked first
220 Ready;
239 Ready.push(DeferredBlock);
249 // Decrement the predecessor count. If it's now zero, it's ready.
299 Ready.push(Next)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/
HWEventListener.h 43 Ready,
135 // Scheduler was unable to issue all the ready instructions because some
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Core.h 692 /// All symbols will be resolved and marked ready as soon as the unit is
792 Ready = 0x3f /// Ready and safe for clients to access.
796 /// ready.
1381 /// requested symbols are ready (or an error occurs). If WaitUntilReady is
1389 SymbolState RequiredState = SymbolState::Ready,
1398 SymbolState RequiredState = SymbolState::Ready);
1405 SymbolState RequiredState = SymbolState::Ready);
1412 SymbolState RequiredState = SymbolState::Ready);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 4671 /// Evaluation of this expression first evaluates its 'ready' expression. If
4686 enum SubExpr { Common, Ready, Suspend, Resume, Count };
4693 Expr *Ready, Expr *Suspend, Expr *Resume,
4699 SubExprs[SubExpr::Ready] = Ready;
4711 SubExprs[SubExpr::Ready] = nullptr;
4719 SubExprs[SubExpr::Ready] = nullptr;
4734 return static_cast<Expr*>(SubExprs[SubExpr::Ready]);
4770 CoawaitExpr(SourceLocation CoawaitLoc, Expr *Operand, Expr *Ready,
4773 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Operand, Ready,
    [all...]

Completed in 38 milliseconds