| /openbsd-src/gnu/llvm/llvm/tools/llvm-cov/ |
| H A D | CoverageSummaryInfo.h | 148 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()
|
| /openbsd-src/gnu/llvm/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() 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() 265 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in tryIssue()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | Scheduler.h | 144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed); 226 SmallVectorImpl<InstRef> &Executed,
|
| H A D | RetireControlUnit.h | 54 bool Executed; // True if the instruction is past the WB stage. member
|
| /openbsd-src/gnu/llvm/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 | 494 if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MCA/ |
| H A D | HWEventListener.h | 45 Executed, enumerator
|
| /openbsd-src/gnu/llvm/llvm/docs/HistoricalNotes/ |
| H A D | 2001-05-18-ExceptionHandling.txt | 109 TryCleanup: // Executed if an exception escapes the try block 111 barCleanup: // Executed if an exception escapes from bar() 113 fooCleanup: // Executed if an exception escapes from foo()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 767 const Stmt *Executed = S.isNegatedConsteval() ? S.getThen() : S.getElse(); in EmitIfStmt() local 768 if (Executed) { in EmitIfStmt() 770 EmitStmt(Executed); in EmitIfStmt() 791 const Stmt *Executed = S.getThen(); in EmitIfStmt() local 794 std::swap(Executed, Skipped); in EmitIfStmt() 801 if (Executed) { in EmitIfStmt() 803 EmitStmt(Executed); in EmitIfStmt()
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | SourceBasedCodeCoverage.rst | 214 …Filename Regions Missed Regions Cover Functions Missed Functions Executed …
|