Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
HDCoverageSummaryInfo.h189 size_t Executed; variable
195 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo()
197 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument
198 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo()
201 Executed += RHS.Executed;
208 ++Executed; in addFunction()
212 size_t getExecuted() const { return Executed; } in getExecuted()
216 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
219 assert(Executed <= NumFunctions && "Covered functions over-counted"); in getPercentCovered()
222 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
HDExecuteStage.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()
HDRetireStage.cpp34 if (!Current.Executed) in cycleStart()
HDInOrderIssueStage.cpp188 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
HDScheduler.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()
HDRetireControlUnit.cpp91 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()
92 Queue[TokenID].Executed = true; in onInstructionExecuted()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
HDScheduler.h144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
226 SmallVectorImpl<InstRef> &Executed,
HDRetireControlUnit.h54 bool Executed; // True if the instruction is past the WB stage. member
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
HDTimelineView.cpp92 case HWInstructionEvent::Executed: in onEvent()
236 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry()
243 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
HDTimelineView.h157 static const char Executed = 'E'; member
HDSchedulerStatistics.cpp61 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
HDBottleneckAnalysis.cpp495 if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MCA/
HDHWEventListener.h45 Executed, enumerator
/freebsd-13-stable/contrib/libfido2/fuzz/
HDsummary.txt1 … Regions Missed Regions Cover Functions Missed Functions Executed Lines …
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp799 const Stmt *Executed = S.isNegatedConsteval() ? S.getThen() : S.getElse(); in EmitIfStmt() local
800 if (Executed) { in EmitIfStmt()
802 EmitStmt(Executed); in EmitIfStmt()
823 const Stmt *Executed = S.getThen(); in EmitIfStmt() local
826 std::swap(Executed, Skipped); in EmitIfStmt()
833 if (Executed) { in EmitIfStmt()
835 EmitStmt(Executed); in EmitIfStmt()