Lines Matching refs:callSiteIndex
1118 void VertexProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1127 callStack[Min(stackIndex++, Int(MAX_SHADER_CALL_STACK_SIZE))] = UInt(callSiteIndex); in CALL()
1133 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1138 void VertexProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1142 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1146 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1151 void VertexProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1167 callStack[Min(stackIndex++, Int(MAX_SHADER_CALL_STACK_SIZE))] = UInt(callSiteIndex); in CALLNZb()
1172 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1173 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1178 void VertexProgram::CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister) in CALLNZp() argument
1196 callStack[Min(stackIndex++, Int(MAX_SHADER_CALL_STACK_SIZE))] = UInt(callSiteIndex); in CALLNZp()
1204 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1205 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()