Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZHazardRecognizer.cpp62 unsigned Idx = CurrGroupSize; in getCurrCycleIdx()
82 CurrGroupSize = 0; in Reset()
100 return (CurrGroupSize == 0); in fitsIntoCurrentGroup()
103 assert ((CurrGroupSize < 2 || !CurrGroupHas4RegOps) && in fitsIntoCurrentGroup()
105 if (CurrGroupSize == 2 && has4RegOps(SU->getInstr())) in fitsIntoCurrentGroup()
111 assert ((getNumDecoderSlots(SU) <= 1) && (CurrGroupSize < 3) && in fitsIntoCurrentGroup()
135 if (CurrGroupSize == 0) in nextGroup()
141 int NumGroups = ((CurrGroupSize > 3) ? (CurrGroupSize / 3) : 1); in nextGroup()
142 assert((CurrGroupSize < in nextGroup()
[all...]
H A DSystemZHazardRecognizer.h52 unsigned CurrGroupSize; variable
94 unsigned getCurrGroupSize() {return CurrGroupSize;}; in getCurrGroupSize()