Searched refs:callRetBlock (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/src/Shader/ |
D | VertexProgram.cpp | 116 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 …]
|
D | PixelProgram.cpp | 126 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 …]
|
D | VertexProgram.hpp | 136 …std::unordered_map<unsigned int, std::vector<BasicBlock*>> callRetBlock; // label -> list of call … member in sw::VertexProgram
|
D | PixelProgram.hpp | 146 …std::unordered_map<unsigned int, std::vector<BasicBlock*>> callRetBlock; // label -> list of call … member in sw::PixelProgram
|