Searched refs:u2maxLocals (Results 1 - 21 of 21) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
H A DVariableSizeUpdater.java60 codeAttribute.u2maxLocals =
67 System.out.println(" Max locals: "+codeAttribute.u2maxLocals+" <- parameters");
88 if (codeAttribute.u2maxLocals < variableSize)
90 codeAttribute.u2maxLocals = variableSize;
94 System.out.println("Max locals: "+codeAttribute.u2maxLocals+" <- "+variableInstruction.toString(offset));
H A DVariableEditor.java104 int oldMaxLocals = codeAttribute.u2maxLocals;
127 codeAttribute.u2maxLocals = newVariableIndex;
H A DVariableCleaner.java65 codeAttribute.u2maxLocals);
75 codeAttribute.u2maxLocals);
H A DCodeAttributeComposer.java437 codeAttribute.u2maxLocals);
450 codeAttribute.u2maxLocals);
H A DAttributeAdder.java245 codeAttribute.u2maxLocals,
H A DCodeAttributeEditor.java423 codeAttribute.u2maxLocals);
436 codeAttribute.u2maxLocals);
/external/proguard/src/proguard/classfile/attribute/
H A DCodeAttribute.java36 public int u2maxLocals; field in class:CodeAttribute
58 int u2maxLocals,
69 this.u2maxLocals = u2maxLocals;
56 CodeAttribute(int u2attributeNameIndex, int u2maxStack, int u2maxLocals, int u4codeLength, byte[] code, int u2exceptionTableLength, ExceptionInfo[] exceptionTable, int u2attributesCount, Attribute[] attributes) argument
/external/proguard/src/proguard/optimize/info/
H A DVariableUsageMarker.java60 int maxLocals = codeAttribute.u2maxLocals;
H A DParameterUsageMarker.java194 if (parameterIndex < codeAttribute.u2maxLocals)
/external/proguard/src/proguard/optimize/
H A DDuplicateInitializerFixer.java156 if (codeAttribute.u2maxLocals < maxLocals)
158 codeAttribute.u2maxLocals = maxLocals;
H A DParameterShrinker.java90 int maxLocals = codeAttribute.u2maxLocals;
/external/proguard/src/proguard/optimize/peephole/
H A DVariableShrinker.java89 int maxLocals = codeAttribute.u2maxLocals;
H A DMethodInliner.java403 variableOffset += codeAttribute.u2maxLocals;
407 variableOffset -= codeAttribute.u2maxLocals;
/external/proguard/src/proguard/optimize/evaluation/
H A DVariableOptimizer.java112 int variableSize = codeAttribute.u2maxLocals;
H A DPartialEvaluator.java206 System.out.println(" Max locals = "+codeAttribute.u2maxLocals);
211 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals);
1030 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals);
1138 variablesBefore[index].reset(codeAttribute.u2maxLocals);
1148 variablesAfter[index].reset(codeAttribute.u2maxLocals);
1159 TracedVariables parameters = new TracedVariables(codeAttribute.u2maxLocals);
H A DLivenessAnalyzer.java198 int variablesSize = codeAttribute.u2maxLocals;
H A DEvaluationShrinker.java1586 int maxLocals = codeAttribute.u2maxLocals;
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java353 dataOutput.writeShort(codeAttribute.u2maxLocals);
H A DProgramClassReader.java359 codeAttribute.u2maxLocals = dataInput.readUnsignedShort();
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java462 ", locals = "+ codeAttribute.u2maxLocals +
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 1035 milliseconds