Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java192 private Label currentLabel; field in Code
221 this.currentLabel = new Label(); in Code()
222 adopt(this.currentLabel); in Code()
223 this.currentLabel.marked = true; in Code()
339 if (currentLabel != null) { in mark()
342 currentLabel = label; in mark()
411 if (currentLabel == null || !currentLabel.marked) { in addInstruction()
414 currentLabel.instructions.add(insn); in addInstruction()
427 currentLabel = null; in addInstruction()
434 currentLabel.primarySuccessor = branch; in addInstruction()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMethodLocation.java132 private @Nullable Label currentLabel = null; in getLabels()
139 currentLabel = it.next(); in getLabels()
140 return currentLabel; in getLabels()
144 if (currentLabel != null) { in getLabels()
145 currentLabel.location = null; in getLabels()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java61 private final List<Label> currentLabel = new ArrayList<Label>(2); field in MethodAnalyzer
182 currentLabel.add(label); in visitLabel()
206 final int labelCount = currentLabel.size(); in visitInsn()
209 LabelInfo.setInstruction(currentLabel.get(i), insn); in visitInsn()
211 currentLabel.clear(); in visitInsn()
/external/swiftshader/src/Pipeline/
DPixelProgram.hpp28 loopDepth(-1), ifDepth(0), loopRepDepth(0), currentLabel(-1), whileTest(false) in PixelProgram()
157 int currentLabel; member in sw::PixelProgram
DVertexProgram.cpp31 currentLabel = -1; in VertexProgram()
598 if(currentLabel != -1) in program()
1321 currentLabel = labelIndex; in LABEL()
1441 if(currentLabel == -1) in RET()
1450 if(callRetBlock[currentLabel].size() > 1) // Pop the return destination from the call stack in RET()
1456 …itchCases = Nucleus::createSwitch(value, unreachableBlock, (int)callRetBlock[currentLabel].size()); in RET()
1458 for(unsigned int i = 0; i < callRetBlock[currentLabel].size(); i++) in RET()
1460 Nucleus::addSwitchCase(switchCases, i, callRetBlock[currentLabel][i]); in RET()
1463 …else if(callRetBlock[currentLabel].size() == 1) // Jump directly to the unique return destination in RET()
1465 Nucleus::createBr(callRetBlock[currentLabel][0]); in RET()
DPixelProgram.cpp550 if(currentLabel != -1) in applyShader()
1669 currentLabel = labelIndex; in LABEL()
1788 if(currentLabel == -1) in RET()
1797 if(callRetBlock[currentLabel].size() > 1) // Pop the return destination from the call stack in RET()
1803 …itchCases = Nucleus::createSwitch(value, unreachableBlock, (int)callRetBlock[currentLabel].size()); in RET()
1805 for(unsigned int i = 0; i < callRetBlock[currentLabel].size(); i++) in RET()
1807 Nucleus::addSwitchCase(switchCases, i, callRetBlock[currentLabel][i]); in RET()
1810 …else if(callRetBlock[currentLabel].size() == 1) // Jump directly to the unique return destination in RET()
1812 Nucleus::createBr(callRetBlock[currentLabel][0]); in RET()
DVertexProgram.hpp124 int currentLabel; member in sw::VertexProgram
/external/swiftshader/src/Shader/
DVertexProgram.cpp606 if(currentLabel != -1) in program()
1405 currentLabel = labelIndex; in LABEL()
1525 if(currentLabel == -1) in RET()
1534 if(callRetBlock[currentLabel].size() > 1) // Pop the return destination from the call stack in RET()
1540 …itchCases = Nucleus::createSwitch(value, unreachableBlock, (int)callRetBlock[currentLabel].size()); in RET()
1542 for(unsigned int i = 0; i < callRetBlock[currentLabel].size(); i++) in RET()
1544 Nucleus::addSwitchCase(switchCases, i, callRetBlock[currentLabel][i]); in RET()
1547 …else if(callRetBlock[currentLabel].size() == 1) // Jump directly to the unique return destination in RET()
1549 Nucleus::createBr(callRetBlock[currentLabel][0]); in RET()
DPixelProgram.cpp551 if(currentLabel != -1) in applyShader()
1700 currentLabel = labelIndex; in LABEL()
1819 if(currentLabel == -1) in RET()
1828 if(callRetBlock[currentLabel].size() > 1) // Pop the return destination from the call stack in RET()
1834 …itchCases = Nucleus::createSwitch(value, unreachableBlock, (int)callRetBlock[currentLabel].size()); in RET()
1836 for(unsigned int i = 0; i < callRetBlock[currentLabel].size(); i++) in RET()
1838 Nucleus::addSwitchCase(switchCases, i, callRetBlock[currentLabel][i]); in RET()
1841 …else if(callRetBlock[currentLabel].size() == 1) // Jump directly to the unique return destination in RET()
1843 Nucleus::createBr(callRetBlock[currentLabel][0]); in RET()
DVertexProgram.hpp127 BoundedIndex<MAX_SHADER_CALL_SITES> currentLabel = -1; member in sw::VertexProgram
DPixelProgram.hpp158 BoundedIndex<MAX_SHADER_CALL_SITES> currentLabel = -1; member in sw::PixelProgram