Home
last modified time | relevance | path

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

12

/external/llvm-project/llvm/tools/llvm-cov/
DCoverageSummaryInfo.h107 size_t Executed; variable
113 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo()
115 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo() argument
116 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo()
119 Executed += RHS.Executed;
126 ++Executed; in addFunction()
130 size_t getExecuted() const { return Executed; } in getExecuted()
134 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
137 assert(Executed <= NumFunctions && "Covered functions over-counted"); in getPercentCovered()
140 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
/external/llvm/tools/llvm-cov/
DCoverageSummaryInfo.h97 size_t Executed; member
102 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {} in FunctionCoverageInfo()
104 FunctionCoverageInfo(size_t Executed, size_t NumFunctions) in FunctionCoverageInfo()
105 : Executed(Executed), NumFunctions(NumFunctions) {} in FunctionCoverageInfo()
109 ++Executed; in addFunction()
113 bool isFullyCovered() const { return Executed == NumFunctions; } in isFullyCovered()
118 return double(Executed) / double(NumFunctions) * 100.0; in getPercentCovered()
/external/llvm-project/llvm/unittests/Support/
DThreading.cpp73 std::atomic_bool Executed(false); in TEST() local
76 &Executed); in TEST()
77 ASSERT_EQ(Executed, true); in TEST()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/
DExecuteStage.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()
DRetireStage.cpp35 if (!Current.Executed) in cycleStart()
/external/llvm-project/llvm/lib/MCA/Stages/
DExecuteStage.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()
DRetireStage.cpp35 if (!Current.Executed) in cycleStart()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
DRetireControlUnit.cpp88 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()
89 Queue[TokenID].Executed = true; in onInstructionExecuted()
DScheduler.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()
/external/llvm-project/llvm/lib/MCA/HardwareUnits/
DRetireControlUnit.cpp88 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted()
89 Queue[TokenID].Executed = true; in onInstructionExecuted()
DScheduler.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()
/external/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
DScheduler.h144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
226 SmallVectorImpl<InstRef> &Executed,
DRetireControlUnit.h54 bool Executed; // True if the instruction is past the WB stage. member
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
DScheduler.h144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
226 SmallVectorImpl<InstRef> &Executed,
DRetireControlUnit.h54 bool Executed; // True if the instruction is past the WB stage. member
/external/llvm-project/llvm/tools/llvm-mca/Views/
DTimelineView.cpp90 case HWInstructionEvent::Executed: in onEvent()
233 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry()
240 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
DTimelineView.h156 static const char Executed = 'E'; member
DSchedulerStatistics.cpp61 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DHWEventListener.h45 Executed, enumerator
/external/llvm-project/llvm/include/llvm/MCA/
DHWEventListener.h45 Executed, enumerator
/external/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt109 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()
/external/llvm-project/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt109 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()
/external/clang/lib/CodeGen/
DCGStmt.cpp587 const Stmt *Executed = S.getThen(); in EmitIfStmt() local
590 std::swap(Executed, Skipped); in EmitIfStmt()
597 if (Executed) { in EmitIfStmt()
599 EmitStmt(Executed); in EmitIfStmt()
/external/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp695 const Stmt *Executed = S.getThen(); in EmitIfStmt() local
698 std::swap(Executed, Skipped); in EmitIfStmt()
705 if (Executed) { in EmitIfStmt()
707 EmitStmt(Executed); in EmitIfStmt()
/external/clang/docs/
DSourceBasedCodeCoverage.rst155 Filename Regions Miss Cover Functions Executed

12