Lines Matching refs:SALUCycles
109 uint8_t SALUCycles = 0; member
129 SALUCycles = std::min(Cycles, SALU_CYCLES_MAX); in DelayInfo()
137 TRANSNumVALU == RHS.TRANSNumVALU && SALUCycles == RHS.SALUCycles; in operator ==()
150 SALUCycles = std::max(SALUCycles, RHS.SALUCycles); in merge()
184 if (SALUCycles <= Cycles) { in advance()
187 SALUCycles = 0; in advance()
189 SALUCycles -= Cycles; in advance()
208 if (SALUCycles) in dump()
209 dbgs() << " SALUCycles=" << (int)SALUCycles; in dump()
286 if (Delay.SALUCycles) { in emitDelayAlu()
287 assert(Delay.SALUCycles < DelayInfo::SALU_CYCLES_MAX); in emitDelayAlu()
292 Imm |= (Delay.SALUCycles + 8) << 7; in emitDelayAlu()
294 Imm |= Delay.SALUCycles + 8; in emitDelayAlu()