Home
last modified time | relevance | path

Searched refs:callRetBlock (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Shader/
DVertexProgram.cpp116 ASSERT(callRetBlock[dst.label].size() == dst.callSite); in program()
117 callRetBlock[dst.label].push_back(Nucleus::createBasicBlock()); in program()
1139 if(callRetBlock[labelIndex].size() > 1) in CALL()
1147 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1179 if(callRetBlock[labelIndex].size() > 1) in CALLNZb()
1186 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1187 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1208 if(callRetBlock[labelIndex].size() > 1) in CALLNZp()
1218 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1219 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
[all …]
DPixelProgram.cpp126 ASSERT(callRetBlock[dst.label].size() == dst.callSite); in applyShader()
127 callRetBlock[dst.label].push_back(Nucleus::createBasicBlock()); in applyShader()
1455 if(callRetBlock[labelIndex].size() > 1) in CALL()
1463 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALL()
1495 if(callRetBlock[labelIndex].size() > 1) in CALLNZb()
1502 branch(condition, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1503 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZb()
1524 if(callRetBlock[labelIndex].size() > 1) in CALLNZp()
1534 branch(notAllFalse, labelBlock[labelIndex], callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
1535 Nucleus::setInsertBlock(callRetBlock[labelIndex][callSiteIndex]); in CALLNZp()
[all …]
DVertexProgram.hpp136 …std::unordered_map<unsigned int, std::vector<BasicBlock*>> callRetBlock; // label -> list of call … member in sw::VertexProgram
DPixelProgram.hpp146 …std::unordered_map<unsigned int, std::vector<BasicBlock*>> callRetBlock; // label -> list of call … member in sw::PixelProgram