Searched defs:OPCODE_RET (Results 1 - 3 of 3) sorted by relevance

/external/swiftshader/src/Shader/
H A DShader.cpp833 case OPCODE_RET: return "ret";
1504 if(i == instruction.size() - 1 || instruction[i + 1]->opcode == OPCODE_RET)
1544 if(oldOpcode == OPCODE_RET)
1557 if(instruction.size() >= 2 && instruction[0]->opcode == OPCODE_CALL && instruction[1]->opcode == OPCODE_RET)
1566 if(instruction[i]->opcode == OPCODE_LABEL || instruction[i]->opcode == OPCODE_RET)
1776 else if(instruction[i]->opcode == OPCODE_RET) // End of the function
1811 if(inst->opcode == OPCODE_RET)
1485 ASSERT(i < instruction.size()); return instruction[i]; } void Shader::optimize() { optimizeLeave(); optimizeCall(); removeNull(); } void Shader::optimizeLeave() { for(unsigned int i = 0; i < instruction.size(); i++) { if(instruction[i]->opcode == OPCODE_LEAVE) { if(i == instruction.size() - 1 || instruction[i + 1]->opcode == OPCODE_RET) argument
H A DShader.hpp66 OPCODE_RET, enumerator in enum:sw::Shader::Opcode
/external/mesa3d/src/mesa/program/
H A Dprog_instruction.h158 OPCODE_RET, /* 2 2 opt */ enumerator in enum:prog_opcode

Completed in 103 milliseconds