Lines Matching refs:callSiteIndex
1413 void PixelProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1422 callStack[Min(stackIndex++, Int(MAX_SHADER_CALL_STACK_SIZE))] = UInt(callSiteIndex); in CALL()
1428 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1433 void PixelProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1437 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1441 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1446 void PixelProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1462 callStack[Min(stackIndex++, Int(MAX_SHADER_CALL_STACK_SIZE))] = UInt(callSiteIndex); in CALLNZb()
1467 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1468 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1473 void PixelProgram::CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister) in CALLNZp() argument
1491 callStack[Min(stackIndex++, Int(MAX_SHADER_CALL_STACK_SIZE))] = UInt(callSiteIndex); in CALLNZp()
1499 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1500 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()