Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h498 int FirstCycle = 0; variable
521 FirstCycle = 0; in reset()
534 int getFirstCycle() const { return FirstCycle; } in getFirstCycle()
537 int getFinalCycle() const { return FirstCycle + InitiationInterval - 1; } in getFinalCycle()
567 return (it->second - FirstCycle) / InitiationInterval; in stageScheduled()
575 return (it->second - FirstCycle) % InitiationInterval; in cycleScheduled()
580 return (LastCycle - FirstCycle) / InitiationInterval; in getMaxStageCount()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2081 int FirstCycle = Schedule.getFirstCycle(); in schedulePipeline() local
2082 scheduleFound = Schedule.insert(SU, FirstCycle + getASAP(SU), in schedulePipeline()
2083 FirstCycle + getASAP(SU) + II - 1, II); in schedulePipeline()
2381 for (int checkCycle = FirstCycle + ((curCycle - FirstCycle) % II); in insert()
2404 if (curCycle < FirstCycle) in insert()
2405 FirstCycle = curCycle; in insert()