Searched refs:Executed (Results 1 – 12 of 12) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | CoverageSummaryInfo.h | 108 size_t Executed; variable 114 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo() 116 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument 117 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo() 120 Executed += RHS.Executed; 127 ++Executed; in addFunction() 131 size_t getExecuted() const { return Executed; } in getExecuted() 135 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered() 138 assert(Executed <= NumFunctions && "Covered functions over-counted"); in getPercentCovered() 141 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
|
| /freebsd-12.1/contrib/llvm/lib/MCA/Stages/ |
| H A D | ExecuteStage.cpp | 89 SmallVector<InstRef, 4> Executed; in cycleStart() local 92 HWS.cycleEvent(Freed, Executed, Ready); in cycleStart() 97 for (InstRef &IR : Executed) { in cycleStart() 170 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
|
| H A D | RetireStage.cpp | 36 if (!Current.Executed) in cycleStart()
|
| /freebsd-12.1/contrib/llvm/lib/MCA/HardwareUnits/ |
| H A D | Scheduler.cpp | 158 void Scheduler::updateIssuedSet(SmallVectorImpl<InstRef> &Executed) { in updateIssuedSet() argument 174 Executed.emplace_back(IR); in updateIssuedSet() 184 SmallVectorImpl<InstRef> &Executed, in cycleEvent() argument 193 updateIssuedSet(Executed); in cycleEvent()
|
| H A D | RetireControlUnit.cpp | 76 assert(Queue[TokenID].Executed == false && Queue[TokenID].IR); in onInstructionExecuted() 77 Queue[TokenID].Executed = true; in onInstructionExecuted()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | Scheduler.h | 113 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed); 186 SmallVectorImpl<InstRef> &Executed);
|
| H A D | RetireControlUnit.h | 55 bool Executed; // True if the instruction is past the WB stage. member
|
| /freebsd-12.1/contrib/llvm/tools/llvm-mca/Views/ |
| H A D | TimelineView.cpp | 90 case HWInstructionEvent::Executed: in onEvent() 215 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry() 222 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
|
| H A D | TimelineView.h | 160 static const char Executed = 'E'; member
|
| H A D | SchedulerStatistics.cpp | 62 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MCA/ |
| H A D | HWEventListener.h | 45 Executed, enumerator
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 617 const Stmt *Executed = S.getThen(); in EmitIfStmt() local 620 std::swap(Executed, Skipped); in EmitIfStmt() 627 if (Executed) { in EmitIfStmt() 629 EmitStmt(Executed); in EmitIfStmt()
|