Home
last modified time | relevance | path

Searched refs:FirstCycle (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h737 int FirstCycle = 0; variable
761 FirstCycle = 0; in reset()
777 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
780 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
812 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
820 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
825 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1249 const unsigned FirstCycle = getSUnit(&*(std::begin(*this)))->TopReadyCycle; in dumpScheduleTraceTopDown() local
1265 for (unsigned C = FirstCycle; C <= LastCycle; ++C) in dumpScheduleTraceTopDown()
1278 unsigned C = FirstCycle; in dumpScheduleTraceTopDown()
1301 C = FirstCycle; in dumpScheduleTraceTopDown()
1331 const int FirstCycle = getSUnit(&*(std::begin(*this)))->BotReadyCycle; in dumpScheduleTraceBottomUp() local
1347 for (int C = FirstCycle; C >= LastCycle; --C) in dumpScheduleTraceBottomUp()
1360 int C = FirstCycle; in dumpScheduleTraceBottomUp()
1382 C = FirstCycle; in dumpScheduleTraceBottomUp()
H A DMachinePipeliner.cpp2719 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
2720 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
2721 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
3179 if (curCycle < FirstCycle) in insert()
3180 FirstCycle = curCycle; in insert()
3582 if (FirstCycle + InitiationInterval <= NewCycle) in normalizeNonPipelinedInstructions()