Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h544 int FirstCycle = 0; variable
568 FirstCycle = 0; in reset()
584 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
587 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
617 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
625 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
630 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp973 const unsigned FirstCycle = getSUnit(&*(std::begin(*this)))->TopReadyCycle; in dumpScheduleTraceTopDown() local
989 for (unsigned C = FirstCycle; C <= LastCycle; ++C) in dumpScheduleTraceTopDown()
1002 unsigned C = FirstCycle; in dumpScheduleTraceTopDown()
1025 C = FirstCycle; in dumpScheduleTraceTopDown()
1055 const int FirstCycle = getSUnit(&*(std::begin(*this)))->BotReadyCycle; in dumpScheduleTraceBottomUp() local
1071 for (int C = FirstCycle; C >= LastCycle; --C) in dumpScheduleTraceBottomUp()
1084 int C = FirstCycle; in dumpScheduleTraceBottomUp()
1106 C = FirstCycle; in dumpScheduleTraceBottomUp()
H A DMachinePipeliner.cpp2451 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
2452 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
2453 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
2788 if (curCycle < FirstCycle) in insert()
2789 FirstCycle = curCycle; in insert()