Home
last modified time | relevance | path

Searched refs:Executed (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h148 size_t Executed; variable
154 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo()
156 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument
157 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo()
160 Executed += RHS.Executed;
167 ++Executed; in addFunction()
171 size_t getExecuted() const { return Executed; } in getExecuted()
175 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
178 assert(Executed <= NumFunctions && "Covered functions over-counted"); in getPercentCovered()
181 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp95 SmallVector<InstRef, 4> Executed; in cycleStart() local
99 HWS.cycleEvent(Freed, Executed, Pending, Ready); in cycleStart()
106 for (InstRef &IR : Executed) { in cycleStart()
230 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
H A DRetireStage.cpp34 if (!Current.Executed) in cycleStart()
H A DInOrderIssueStage.cpp180 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
249 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in tryIssue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp218 void Scheduler::updateIssuedSet(SmallVectorImpl<InstRef> &Executed) { in updateIssuedSet() argument
234 Executed.emplace_back(IR); in updateIssuedSet()
265 SmallVectorImpl<InstRef> &Executed, in cycleEvent() argument
275 updateIssuedSet(Executed); in cycleEvent()
H A DRetireControlUnit.cpp91 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()
92 Queue[TokenID].Executed = true; in onInstructionExecuted()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DScheduler.h144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
226 SmallVectorImpl<InstRef> &Executed,
H A DRetireControlUnit.h54 bool Executed; // True if the instruction is past the WB stage. member
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp92 case HWInstructionEvent::Executed: in onEvent()
236 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry()
243 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
H A DTimelineView.h157 static const char Executed = 'E'; member
H A DSchedulerStatistics.cpp61 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
H A DBottleneckAnalysis.cpp494 if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
/freebsd-13.1/contrib/libfido2/fuzz/
H A Dsummary.txt1 … Regions Missed Regions Cover Functions Missed Functions Executed Lines …
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/
H A DHWEventListener.h45 Executed, enumerator
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp728 const Stmt *Executed = S.getThen(); in EmitIfStmt() local
731 std::swap(Executed, Skipped); in EmitIfStmt()
738 if (Executed) { in EmitIfStmt()
740 EmitStmt(Executed); in EmitIfStmt()