/external/llvm-project/llvm/tools/llvm-cov/ |
D | CoverageSummaryInfo.h | 107 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/ |
D | CoverageSummaryInfo.h | 97 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/ |
D | Threading.cpp | 73 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/ |
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()
|
D | RetireStage.cpp | 35 if (!Current.Executed) in cycleStart()
|
/external/llvm-project/llvm/lib/MCA/Stages/ |
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()
|
D | RetireStage.cpp | 35 if (!Current.Executed) in cycleStart()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | RetireControlUnit.cpp | 88 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted() 89 Queue[TokenID].Executed = true; in onInstructionExecuted()
|
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()
|
/external/llvm-project/llvm/lib/MCA/HardwareUnits/ |
D | RetireControlUnit.cpp | 88 assert(Queue[TokenID].Executed == false && "Instruction already executed!"); in onInstructionExecuted() 89 Queue[TokenID].Executed = true; in onInstructionExecuted()
|
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()
|
/external/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
D | Scheduler.h | 144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed); 226 SmallVectorImpl<InstRef> &Executed,
|
D | RetireControlUnit.h | 54 bool Executed; // True if the instruction is past the WB stage. member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/ |
D | Scheduler.h | 144 void updateIssuedSet(SmallVectorImpl<InstRef> &Executed); 226 SmallVectorImpl<InstRef> &Executed,
|
D | RetireControlUnit.h | 54 bool Executed; // True if the instruction is past the WB stage. member
|
/external/llvm-project/llvm/tools/llvm-mca/Views/ |
D | TimelineView.cpp | 90 case HWInstructionEvent::Executed: in onEvent() 233 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry() 240 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
|
D | TimelineView.h | 156 static const char Executed = 'E'; member
|
D | SchedulerStatistics.cpp | 61 } else if (Event.Type == HWInstructionEvent::Executed) { in onEvent()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
D | HWEventListener.h | 45 Executed, enumerator
|
/external/llvm-project/llvm/include/llvm/MCA/ |
D | HWEventListener.h | 45 Executed, enumerator
|
/external/llvm/docs/HistoricalNotes/ |
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()
|
/external/llvm-project/llvm/docs/HistoricalNotes/ |
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()
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 587 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/ |
D | CGStmt.cpp | 695 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/ |
D | SourceBasedCodeCoverage.rst | 155 Filename Regions Miss Cover Functions Executed
|