Searched refs:u4codeLength (Results 1 - 25 of 31) sorted by relevance

12

/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditorResetter.java58 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DVariableRemapper.java66 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DMethodInvocationFixer.java66 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DAttributeAdder.java259 codeAttributeComposer.beginCodeFragment(codeAttribute.u4codeLength);
268 codeAttributeComposer.appendLabel(codeAttribute.u4codeLength);
H A DCodeAttributeEditor.java352 codeAttribute.u4codeLength =
410 codeAttribute.u4codeLength);
454 int codeLength = codeAttribute.u4codeLength;
480 int codeLength = codeAttribute.u4codeLength;
513 int oldLength = codeAttribute.u4codeLength;
H A DCodeAttributeComposer.java353 if (codeAttribute.u4codeLength < codeLength)
359 codeAttribute.u4codeLength = codeLength;
424 codeAttribute.u4codeLength);
/external/proguard/src/proguard/classfile/attribute/
H A DCodeAttribute.java37 public int u4codeLength; field in class:CodeAttribute
59 int u4codeLength,
70 this.u4codeLength = u4codeLength;
110 instructionsAccept(clazz, method, 0, u4codeLength, instructionVisitor);
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/preverify/
H A DCodeSubroutineInliner.java112 codeAttributeComposer.beginCodeFragment(codeAttribute.u4codeLength);
116 while (offset < codeAttribute.u4codeLength)
155 codeAttributeComposer.appendLabel(codeAttribute.u4codeLength);
168 for (int offset = 0; offset < codeAttribute.u4codeLength; offset++)
208 codeAttributeComposer.beginCodeFragment(codeAttribute.u4codeLength);
/external/proguard/src/proguard/optimize/peephole/
H A DMethodInliner.java151 estimatedResultingCodeLength = codeAttribute.u4codeLength;
181 codeAttribute.u4codeLength <= MAXIMUM_INLINED_CODE_LENGTH) &&
182 estimatedResultingCodeLength + codeAttribute.u4codeLength <
197 estimatedResultingCodeLength += codeAttribute.u4codeLength;
303 codeAttributeComposer.beginCodeFragment(codeAttribute.u4codeLength);
312 codeAttributeComposer.appendLabel(codeAttribute.u4codeLength);
341 if (offset < codeAttribute.u4codeLength-1)
346 codeAttribute.u4codeLength - offset);
H A DPeepholeOptimizer.java95 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DUnreachableCodeRemover.java113 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DGotoCommonCodeReplacer.java82 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DReachableCodeMarker.java85 int codeLength = codeAttribute.u4codeLength;
H A DBranchTargetFinder.java304 int codeLength = codeAttribute.u4codeLength;
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java237 System.arraycopy(code, 0, oldCode, 0, codeAttribute.u4codeLength);
254 if (oldCode.length != codeAttribute.u4codeLength)
259 for (int index = 0; index < codeAttribute.u4codeLength; index++)
282 for (int index = 0; index < codeAttribute.u4codeLength; index++)
H A DDuplicateInitializerInvocationFixer.java84 codeAttributeEditor.reset(codeAttribute.u4codeLength);
H A DTailRecursionSimplifier.java131 codeAttributeComposer.beginCodeFragment(codeAttribute.u4codeLength);
137 codeAttributeComposer.appendLabel(codeAttribute.u4codeLength);
/external/proguard/src/proguard/optimize/evaluation/
H A DVariableOptimizer.java113 int codeLength = codeAttribute.u4codeLength;
181 int codeLength = codeAttribute.u4codeLength;
H A DLivenessAnalyzer.java197 int codeLength = codeAttribute.u4codeLength;
411 int codeLength = codeAttribute.u4codeLength;
H A DPartialEvaluator.java227 codeAttribute.u4codeLength);
276 while (offset < codeAttribute.u4codeLength);
918 generalize(subroutinePartialEvaluator, 0, codeAttribute.u4codeLength);
1103 int codeLength = codeAttribute.u4codeLength;
H A DEvaluationShrinker.java157 int codeLength = codeAttribute.u4codeLength;
1585 int codeLength = codeAttribute.u4codeLength;
1682 int codeLength = codeAttribute.u4codeLength;
/external/proguard/src/proguard/optimize/info/
H A DSideEffectMethodMarker.java131 int length = codeAttribute.u4codeLength;
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DStackSizeComputer.java135 int codeLength = codeAttribute.u4codeLength;
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java356 dataOutput.writeInt(codeAttribute.u4codeLength);
358 dataOutput.write(codeAttribute.code, 0, codeAttribute.u4codeLength);
/external/proguard/src/proguard/classfile/util/
H A DDynamicClassReferenceInitializer.java419 if (codeAttribute.u4codeLength < codeLength)

Completed in 175 milliseconds

12