Home
last modified time | relevance | path

Searched refs:LastCycle (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp25 LastCycle(0), WaitTime(S.size()), UsedBuffer(S.size()) { in TimelineView()
106 LastCycle = std::max(LastCycle, CurrentCycle); in onEvent()
253 for (unsigned I = Entry.CycleRetired + 1, E = LastCycle; I <= E; ++I) in printTimelineViewEntry()
254 OS << ((I % 5 == 0 || I == LastCycle) ? '.' : ' '); in printTimelineViewEntry()
283 printTimelineHeader(FOS, LastCycle); in printTimeline()
H A DTimelineView.h125 unsigned LastCycle; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h547 int LastCycle = 0; variable
569 LastCycle = 0; in reset()
630 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp983 if (SU->TopReadyCycle + PI->ReleaseAtCycle - 1 > LastCycle) in dumpScheduleTraceTopDown()
984 LastCycle = SU->TopReadyCycle + PI->ReleaseAtCycle - 1; in dumpScheduleTraceTopDown()
989 for (unsigned C = FirstCycle; C <= LastCycle; ++C) in dumpScheduleTraceTopDown()
1003 for (; C <= LastCycle; ++C) { in dumpScheduleTraceTopDown()
1035 while (C++ <= LastCycle) in dumpScheduleTraceTopDown()
1056 int LastCycle = getSUnit(&*(std::prev(std::end(*this))))->BotReadyCycle; in dumpScheduleTraceBottomUp() local
1065 if ((int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1 < LastCycle) in dumpScheduleTraceBottomUp()
1066 LastCycle = (int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1; in dumpScheduleTraceBottomUp()
1071 for (int C = FirstCycle; C >= LastCycle; --C) in dumpScheduleTraceBottomUp()
1085 for (; C >= LastCycle; --C) { in dumpScheduleTraceBottomUp()
[all …]
H A DMachinePipeliner.cpp2786 if (curCycle > LastCycle) in insert()
2787 LastCycle = curCycle; in insert()
2866 for (int cycle = getFirstCycle(); cycle <= LastCycle; ++cycle) { in computeStart()
3156 LastCycle = NewLastCycle; in normalizeNonPipelinedInstructions()
3369 for (int cycle = getFinalCycle() + 1; cycle <= LastCycle; ++cycle) in finalizeSchedule()