Searched refs:Executed (Results 1 – 16 of 16) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/ |
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()
|
/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | RetireControlUnit.cpp | 76 assert(Queue[TokenID].Executed == false && Queue[TokenID].IR.isValid()); in onInstructionExecuted() 77 Queue[TokenID].Executed = true; in onInstructionExecuted()
|
D | TimelineView.cpp | 64 case HWInstructionEvent::Executed: in onEvent() 160 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry() 167 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
|
D | RetireControlUnit.h | 54 bool Executed; // True if the instruction is past the WB stage. member
|
D | RetireStage.cpp | 37 if (!Current.Executed) in cycleStart()
|
D | TimelineView.h | 159 static const char Executed = 'E'; member
|
D | HWEventListener.h | 44 Executed, enumerator
|
D | Scheduler.cpp | 355 void Scheduler::updateIssuedQueue(SmallVectorImpl<InstRef> &Executed) { in updateIssuedQueue() argument 361 Executed.push_back({Entry.first, Entry.second}); in updateIssuedQueue()
|
D | ExecuteStage.cpp | 158 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
|
D | Scheduler.h | 478 void updateIssuedQueue(llvm::SmallVectorImpl<InstRef> &Executed);
|
/external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/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/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/clang/docs/ |
D | SourceBasedCodeCoverage.rst | 155 Filename Regions Miss Cover Functions Executed
|