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.h549 int FirstCycle = 0; variable
573 FirstCycle = 0; in reset()
589 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
592 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
622 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
630 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
635 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1009 const unsigned FirstCycle = getSUnit(&*(std::begin(*this)))->TopReadyCycle; in dumpScheduleTraceTopDown() local
1025 for (unsigned C = FirstCycle; C <= LastCycle; ++C) in dumpScheduleTraceTopDown()
1038 unsigned C = FirstCycle; in dumpScheduleTraceTopDown()
1061 C = FirstCycle; in dumpScheduleTraceTopDown()
1091 const int FirstCycle = getSUnit(&*(std::begin(*this)))->BotReadyCycle; in dumpScheduleTraceBottomUp() local
1107 for (int C = FirstCycle; C >= LastCycle; --C) in dumpScheduleTraceBottomUp()
1120 int C = FirstCycle; in dumpScheduleTraceBottomUp()
1142 C = FirstCycle; in dumpScheduleTraceBottomUp()
H A DMachinePipeliner.cpp2506 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
2507 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
2508 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
2845 if (curCycle < FirstCycle) in insert()
2846 FirstCycle = curCycle; in insert()