Home
last modified time | relevance | path

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

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/
H A DLocalRA.cpp225 int maxSendReg = 0; in preLocalRAAnalysis() local
232 maxSendReg = ((int)inst->getMsgDesc()->getDstLenRegs() > maxSendReg) ? in preLocalRAAnalysis()
233 ((int)inst->getMsgDesc()->getDstLenRegs()) : maxSendReg; in preLocalRAAnalysis()
234 maxSendReg = ((int)inst->getMsgDesc()->getSrc0LenRegs() > maxSendReg) ? in preLocalRAAnalysis()
235 ((int)inst->getMsgDesc()->getSrc0LenRegs()) : maxSendReg; in preLocalRAAnalysis()
236 maxSendReg = ((int)inst->getMsgDesc()->getSrc1LenRegs() > maxSendReg) ? in preLocalRAAnalysis()
237 ((int)inst->getMsgDesc()->getSrc1LenRegs()) : maxSendReg; in preLocalRAAnalysis()
243 if (maxSendReg > (numGRF - USABLE_GRFS_WITH_DEBUG_INFO)) in preLocalRAAnalysis()
245 maxRegsToUse = (numGRF - maxSendReg) - 10; in preLocalRAAnalysis()