Lines Matching refs:callSiteIndex
1448 void PixelProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1457 callStack[stackIndex++] = UInt(callSiteIndex); in CALL()
1463 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1468 void PixelProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1472 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1476 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1481 void PixelProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1497 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZb()
1502 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1503 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1508 void PixelProgram::CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister) in CALLNZp() argument
1526 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZp()
1534 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1535 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()