Searched refs:jumpOffsets (Results 1 - 17 of 17) sorted by relevance

/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java32 public int[] jumpOffsets; field in class:SwitchInstruction
46 int[] jumpOffsets)
50 this.jumpOffsets = jumpOffsets;
63 this.jumpOffsets = switchInstruction.jumpOffsets;
81 return getName()+" ("+jumpOffsets.length+" offsets, default="+defaultOffset+")";
44 SwitchInstruction(byte opcode, int defaultOffset, int[] jumpOffsets) argument
H A DTableSwitchInstruction.java52 int[] jumpOffsets)
58 this.jumpOffsets = jumpOffsets;
73 this.jumpOffsets = tableSwitchInstruction.jumpOffsets;
98 jumpOffsets = new int[highCase - lowCase + 1];
100 for (int index = 0; index < jumpOffsets.length; index++)
102 jumpOffsets[index] = readInt(code, offset); offset += 4;
124 writeInt(code, offset, jumpOffsets[index]); offset += 4;
48 TableSwitchInstruction(byte opcode, int defaultOffset, int lowCase, int highCase, int[] jumpOffsets) argument
H A DLookUpSwitchInstruction.java50 int[] jumpOffsets)
55 this.jumpOffsets = jumpOffsets;
69 this.jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
94 jumpOffsets = new int[jumpOffsetCount];
99 jumpOffsets[index] = readInt(code, offset); offset += 4;
120 writeInt(code, offset, jumpOffsets[index]); offset += 4;
47 LookUpSwitchInstruction(byte opcode, int defaultOffset, int[] cases, int[] jumpOffsets) argument
/external/proguard/src/proguard/optimize/info/
H A DBackwardBranchMarker.java54 for (int index = 0; index < switchInstruction.jumpOffsets.length; index++)
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
/external/proguard/src/proguard/optimize/peephole/
H A DReachableCodeMarker.java176 switchInstruction.jumpOffsets);
203 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets) argument
205 for (int index = 0; index < jumpOffsets.length; index++)
207 markCode(clazz, method, codeAttribute, offset + jumpOffsets[index]);
H A DBranchTargetFinder.java581 switchInstruction.jumpOffsets);
616 private void markBranchTargets(int offset, int[] jumpOffsets) argument
618 for (int index = 0; index < jumpOffsets.length; index++)
620 markBranchTarget(offset, jumpOffsets[index]);
H A DInstructionSequenceReplacer.java264 instructionSequenceMatcher.matchedJumpOffsets(offset, tableSwitchInstruction.jumpOffsets));
275 instructionSequenceMatcher.matchedJumpOffsets(offset, lookUpSwitchInstruction.jumpOffsets));
/external/proguard/src/proguard/classfile/util/
H A DInstructionSequenceMatcher.java169 public int[] matchedJumpOffsets(int offset, int[] jumpOffsets) argument
171 int[] matchedJumpOffsets = new int[jumpOffsets.length];
173 for (int index = 0; index < jumpOffsets.length; index++)
176 jumpOffsets[index]);
287 tableSwitchInstruction.jumpOffsets,
288 ((TableSwitchInstruction)patternInstruction).jumpOffsets);
313 lookUpSwitchInstruction.jumpOffsets,
314 ((LookUpSwitchInstruction)patternInstruction).jumpOffsets);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DStackSizeComputer.java232 int[] jumpOffsets = switchInstruction.jumpOffsets;
234 for (int index = 0; index < jumpOffsets.length; index++)
240 offset + jumpOffsets[index]);
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java637 int[] jumpOffsets = tableSwitchInstruction.jumpOffsets;
639 for (int index = 0; index < jumpOffsets.length; index++)
641 int jumpOffset = jumpOffsets[index];
659 int[] jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
661 for (int index = 0; index < jumpOffsets.length; index++)
663 int jumpOffset = jumpOffsets[index];
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java475 switchInstruction.jumpOffsets);
626 private void remapJumpOffsets(int offset, int[] jumpOffsets) argument
628 for (int index = 0; index < jumpOffsets.length; index++)
630 jumpOffsets[index] = remapBranchOffset(offset, jumpOffsets[index]);
H A DCodeAttributeEditor.java790 tableSwitchInstruction.jumpOffsets);
811 lookUpSwitchInstruction.jumpOffsets);
939 private void remapJumpOffsets(int offset, int[] jumpOffsets) argument
941 for (int index = 0; index < jumpOffsets.length; index++)
943 jumpOffsets[index] = remapBranchOffset(offset, jumpOffsets[index]);
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationSimplifier.java824 int[] jumpOffsets = switchInstruction.jumpOffsets;
825 for (int index = 0; index < jumpOffsets.length; index++)
827 if (!branchTargets.contains(offset + jumpOffsets[index]))
830 jumpOffsets[index] = defaultOffset;
/external/proguard/src/proguard/evaluation/
H A DProcessor.java866 for (int index = 0; index < tableSwitchInstruction.jumpOffsets.length; index++)
872 offset + tableSwitchInstruction.jumpOffsets[index],
894 for (int index = 0; index < lookUpSwitchInstruction.jumpOffsets.length; index++)
900 offset + lookUpSwitchInstruction.jumpOffsets[index],
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 246 milliseconds