Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h484 int FirstCycle = 0; variable
509 FirstCycle = 0; in reset()
519 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
522 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
552 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
560 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
565 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1799 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
1800 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
1801 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
3130 for (int checkCycle = FirstCycle + ((curCycle - FirstCycle) % II); in insert()
3155 if (curCycle < FirstCycle) in insert()
3156 FirstCycle = curCycle; in insert()