Home
last modified time | relevance | path

Searched refs:callSiteIndex (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/src/Pipeline/
DVertexProgram.hpp87 void CALL(int labelIndex, int callSiteIndex);
88 void CALLNZ(int labelIndex, int callSiteIndex, const Src &src);
89 void CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister);
90 void CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister);
DPixelProgram.hpp132 void CALL(int labelIndex, int callSiteIndex);
133 void CALLNZ(int labelIndex, int callSiteIndex, const Src &src);
134 void CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister);
135 void CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister);
DVertexProgram.cpp1034 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()
[all …]
DPixelProgram.cpp1382 void PixelProgram::CALL(int labelIndex, int callSiteIndex) in CALL() argument
1391 callStack[stackIndex++] = UInt(callSiteIndex); in CALL()
1397 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1402 void PixelProgram::CALLNZ(int labelIndex, int callSiteIndex, const Src &src) in CALLNZ() argument
1406 CALLNZb(labelIndex, callSiteIndex, src); in CALLNZ()
1410 CALLNZp(labelIndex, callSiteIndex, src); in CALLNZ()
1415 void PixelProgram::CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister) in CALLNZb() argument
1431 callStack[stackIndex++] = UInt(callSiteIndex); in CALLNZb()
1436 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1437 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
[all …]
DShader.cpp1880 int callSiteIndex[2048] = {0}; in analyzeCallSites() local
1888 inst->dst.callSite = callSiteIndex[label]++; in analyzeCallSites()
/external/swiftshader/src/Shader/
DVertexProgram.hpp90 void CALL(int labelIndex, int callSiteIndex);
91 void CALLNZ(int labelIndex, int callSiteIndex, const Src &src);
92 void CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister);
93 void CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister);
DPixelProgram.hpp133 void CALL(int labelIndex, int callSiteIndex);
134 void CALLNZ(int labelIndex, int callSiteIndex, const Src &src);
135 void CALLNZb(int labelIndex, int callSiteIndex, const Src &boolRegister);
136 void CALLNZp(int labelIndex, int callSiteIndex, const Src &predicateRegister);
DVertexProgram.cpp1118 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()
[all …]
DPixelProgram.cpp1413 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()
[all …]
DShader.cpp1880 int callSiteIndex[MAX_SHADER_CALL_SITES] = {0}; in analyzeCallSites() local
1888 inst->dst.callSite = callSiteIndex[label]++; in analyzeCallSites()
/external/dexmaker/lib/
Ddalvik-dx-9.0.0_r3.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...