Home
last modified time | relevance | path

Searched refs:CycleDispatched (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp71 assert(TVEntry.CycleDispatched >= 0 && "Invalid TVEntry found!"); in onEvent()
72 unsigned CycleDispatched = static_cast<unsigned>(TVEntry.CycleDispatched); in onEvent() local
75 TVEntry.CycleIssued - CycleDispatched; in onEvent()
76 assert(CycleDispatched <= TVEntry.CycleReady && in onEvent()
99 if (Timeline[Index].CycleDispatched == -1) in onEvent()
100 Timeline[Index].CycleDispatched = static_cast<int>(CurrentCycle); in onEvent()
225 assert(Entry.CycleDispatched >= 0 && "Invalid TimelineViewEntry!"); in printTimelineViewEntry()
226 unsigned CycleDispatched = static_cast<unsigned>(Entry.CycleDispatched); in printTimelineViewEntry() local
227 for (unsigned I = 0, E = CycleDispatched; I < E; ++I) in printTimelineViewEntry()
230 if (CycleDispatched != Entry.CycleExecuted) { in printTimelineViewEntry()
[all …]
H A DTimelineView.h128 int CycleDispatched; // A negative value is an "invalid cycle". member