Searched refs:Executed (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h107 size_t Executed; member in class:llvm::FunctionCoverageInfo
113 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {}
115 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) argument
116 : Executed(Executed), NumFunctions(NumFunctions) {}
119 Executed += RHS.Executed;
126 ++Executed;
130 size_t getExecuted() const { return Executed; }
134 bool isFullyCovered() const { return Executed
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h41 // looking for any token with its 'Executed' flag set. If a token has that
54 bool Executed; // True if the instruction is past the WB stage. member in struct:llvm::mca::RetireControlUnit::RUToken
H A DScheduler.h143 // vector 'Executed'.
144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
218 /// Instructions executed are added to vector Executed, while vector Ready is
226 SmallVectorImpl<InstRef> &Executed,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DRetireControlUnit.cpp88 assert(Queue[TokenID].Executed == false && "Instruction already executed!");
89 Queue[TokenID].Executed = true;
H A DScheduler.cpp218 void Scheduler::updateIssuedSet(SmallVectorImpl<InstRef> &Executed) { argument
234 Executed.emplace_back(IR);
265 SmallVectorImpl<InstRef> &Executed,
275 updateIssuedSet(Executed);
264 cycleEvent(SmallVectorImpl<ResourceRef> &Freed, SmallVectorImpl<InstRef> &Executed, SmallVectorImpl<InstRef> &Pending, SmallVectorImpl<InstRef> &Ready) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DRetireStage.cpp35 if (!Current.Executed)
H A DExecuteStage.cpp95 SmallVector<InstRef, 4> Executed; local
99 HWS.cycleEvent(Freed, Executed, Pending, Ready);
106 for (InstRef &IR : Executed) {
228 LLVM_DEBUG(dbgs() << "[E] Instruction Executed: #" << IR << '\n');
230 HWInstructionEvent(HWInstructionEvent::Executed, IR));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.h48 /// E: Instruction Executed (write-back stage)
160 static const char Executed = 'E'; member in struct:llvm::mca::TimelineView::DisplayChar
H A DTimelineView.cpp90 case HWInstructionEvent::Executed:
246 OS << TimelineView::DisplayChar::DisplayChar::Executed; member in class:llvm::mca::TimelineView::DisplayChar::DisplayChar
253 OS << TimelineView::DisplayChar::Executed; member in class:llvm::mca::TimelineView::DisplayChar
H A DSchedulerStatistics.cpp61 } else if (Event.Type == HWInstructionEvent::Executed) {
H A DBottleneckAnalysis.cpp503 if (Event.Type == HWInstructionEvent::Executed) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DHWEventListener.h45 Executed, enumerator in enum:llvm::mca::HWInstructionEvent::GenericEventType
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp656 const Stmt *Executed = S.getThen(); local
659 std::swap(Executed, Skipped);
666 if (Executed) {
668 EmitStmt(Executed);

Completed in 140 milliseconds