Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h507 int FirstCycle = 0; variable
530 FirstCycle = 0; in reset()
543 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
546 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
576 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
584 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
589 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2070 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
2071 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
2072 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
2375 for (int checkCycle = FirstCycle + ((curCycle - FirstCycle) % II); in insert()
2398 if (curCycle < FirstCycle) in insert()
2399 FirstCycle = curCycle; in insert()