Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h543 int FirstCycle = 0; variable
567 FirstCycle = 0; in reset()
583 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
586 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
616 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
624 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
629 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2027 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
2028 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
2029 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
2356 if (curCycle < FirstCycle) in insert()
2357 FirstCycle = curCycle; in insert()