Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp29 Timeline.resize(NumInstructions); in TimelineView()
31 std::fill(Timeline.begin(), Timeline.end(), InvalidTVEntry); in TimelineView()
61 if (Index >= Timeline.size()) in onEvent()
66 TimelineViewEntry &TVEntry = Timeline[Index]; in onEvent()
87 Timeline[Index].CycleReady = CurrentCycle; in onEvent()
90 Timeline[Index].CycleIssued = CurrentCycle; in onEvent()
93 Timeline[Index].CycleExecuted = CurrentCycle; in onEvent()
99 if (Timeline[Index].CycleDispatched == -1) in onEvent()
100 Timeline[Index].CycleDispatched = static_cast<int>(CurrentCycle); in onEvent()
139 unsigned CumulativeExecutions = PrintingTotals ? Timeline.size() : Executions; in printWaitTimeEntry()
[all …]
H A DTimelineView.h134 std::vector<TimelineViewEntry> Timeline; variable