Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A DCoverageSummaryInfo.h108 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 DExecuteStage.cpp89 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 DRetireStage.cpp36 if (!Current.Executed) in cycleStart()
/freebsd-12.1/contrib/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp158 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 DRetireControlUnit.cpp76 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 DScheduler.h113 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
186 SmallVectorImpl<InstRef> &Executed);
H A DRetireControlUnit.h55 bool Executed; // True if the instruction is past the WB stage. member
/freebsd-12.1/contrib/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp90 case HWInstructionEvent::Executed: in onEvent()
215 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry()
222 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
H A DTimelineView.h160 static const char Executed = 'E'; member
H A DSchedulerStatistics.cpp62 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
/freebsd-12.1/contrib/llvm/include/llvm/MCA/
H A DHWEventListener.h45 Executed, enumerator
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp617 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()