/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageSummaryInfo.h | 189 size_t Executed; 195 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} 197 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageSummary() 198 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageSummary() 201 Executed += RHS.Executed; in FunctionCoverageSummary() 208 ++Executed; 212 size_t getExecuted() const { return Executed; } 216 bool isFullyCovered() const { return Executed 148 size_t Executed; global() variable 156 FunctionCoverageInfo(size_t Executed,size_t NumFunctions) FunctionCoverageInfo() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/ |
H A D | ExecuteStage.cpp | 95 SmallVector<InstRef, 4> Executed; in cycleStart() local 99 HWS.cycleEvent(Freed, Executed, Pending, Ready); in cycleStart() 106 for (InstRef &IR : Executed) { in cycleStart() 228 LLVM_DEBUG(dbgs() << "[E] Instruction Executed: #" << IR << '\n'); in notifyInstructionExecuted() 230 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
|
H A D | RetireStage.cpp | 34 if (!Current.Executed) in cycleStart()
|
H A D | InOrderIssueStage.cpp | 188 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
|
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
H A D | Scheduler.cpp | 218 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 D | RetireControlUnit.cpp | 91 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted() 92 Queue[TokenID].Executed = true; in onInstructionExecuted()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
H A D | Scheduler.h | 143 // vector 'Executed'. 144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed); 218 /// Instructions executed are added to vector Executed, while vector Ready is 226 SmallVectorImpl<InstRef> &Executed,
|
H A D | RetireControlUnit.h | 54 bool Executed; // True if the instruction is past the WB stage. member
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | TimelineView.cpp | 92 case HWInstructionEvent::Executed: in onEvent() 236 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry() 243 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
|
H A D | TimelineView.h | 157 static const char Executed = 'E'; member
|
H A D | SchedulerStatistics.cpp | 61 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
|
H A D | BottleneckAnalysis.cpp | 495 if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/ |
H A D | HWEventListener.h | 45 Executed, enumerator
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | summary.txt | 1 Filename Regions Missed Regions Cover Functions Missed Functions Executed Lines Missed Lines Cover
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 799 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()
|