Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h552 int LastCycle = 0; variable
574 LastCycle = 0; in reset()
635 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1010 unsigned LastCycle = getSUnit(&*(std::prev(std::end(*this))))->TopReadyCycle; in dumpScheduleTraceTopDown() local
1019 if (SU->TopReadyCycle + PI->ReleaseAtCycle - 1 > LastCycle) in dumpScheduleTraceTopDown()
1020 LastCycle = SU->TopReadyCycle + PI->ReleaseAtCycle - 1; in dumpScheduleTraceTopDown()
1025 for (unsigned C = FirstCycle; C <= LastCycle; ++C) in dumpScheduleTraceTopDown()
1039 for (; C <= LastCycle; ++C) { in dumpScheduleTraceTopDown()
1071 while (C++ <= LastCycle) in dumpScheduleTraceTopDown()
1092 int LastCycle = getSUnit(&*(std::prev(std::end(*this))))->BotReadyCycle; in dumpScheduleTraceBottomUp() local
1101 if ((int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1 < LastCycle) in dumpScheduleTraceBottomUp()
1102 LastCycle = (int)SU->BotReadyCycle - PI->ReleaseAtCycle + 1; in dumpScheduleTraceBottomUp()
1107 for (int C = FirstCycle; C >= LastCycle; --C) in dumpScheduleTraceBottomUp()
[all …]
H A DMachinePipeliner.cpp2843 if (curCycle > LastCycle) in insert()
2844 LastCycle = curCycle; in insert()
2922 for (int cycle = getFirstCycle(); cycle <= LastCycle; ++cycle) { in computeStart()
3225 LastCycle = NewLastCycle; in normalizeNonPipelinedInstructions()
3438 for (int cycle = getFinalCycle() + 1; cycle <= LastCycle; ++cycle) in finalizeSchedule()