Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
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()
/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DRetireControlUnit.cpp76 assert(Queue[TokenID].Executed == false && Queue[TokenID].IR.isValid()); in onInstructionExecuted()
77 Queue[TokenID].Executed = true; in onInstructionExecuted()
DTimelineView.cpp64 case HWInstructionEvent::Executed: in onEvent()
160 OS << TimelineView::DisplayChar::DisplayChar::Executed; in printTimelineViewEntry()
167 OS << TimelineView::DisplayChar::Executed; in printTimelineViewEntry()
DRetireControlUnit.h54 bool Executed; // True if the instruction is past the WB stage. member
DRetireStage.cpp37 if (!Current.Executed) in cycleStart()
DTimelineView.h159 static const char Executed = 'E'; member
DHWEventListener.h44 Executed, enumerator
DScheduler.cpp355 void Scheduler::updateIssuedQueue(SmallVectorImpl<InstRef> &Executed) { in updateIssuedQueue() argument
361 Executed.push_back({Entry.first, Entry.second}); in updateIssuedQueue()
DExecuteStage.cpp158 HWInstructionEvent(HWInstructionEvent::Executed, IR)); in notifyInstructionExecuted()
DScheduler.h478 void updateIssuedQueue(llvm::SmallVectorImpl<InstRef> &Executed);
/external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/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/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/clang/docs/
DSourceBasedCodeCoverage.rst155 Filename Regions Miss Cover Functions Executed