Lines Matching refs:callSiteIndex
1034 void VertexProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1043 callStack[stackIndex++] = UInt(callSiteIndex); in CALL()
1049 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1054 void VertexProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1058 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1062 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1067 void VertexProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1083 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZb()
1088 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1089 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1094 void VertexProgram::CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister) in CALLNZp() argument
1112 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZp()
1120 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1121 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()