Lines Matching refs:callSiteIndex
1132 void VertexProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1141 callStack[stackIndex++] = UInt(callSiteIndex); in CALL()
1147 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1152 void VertexProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1156 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1160 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1165 void VertexProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1181 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZb()
1186 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1187 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1192 void VertexProgram::CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister) in CALLNZp() argument
1210 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZp()
1218 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1219 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()