Home
last modified time | relevance | path

Searched refs:lookUpSwitchInstruction (Results 1 – 10 of 10) sorted by relevance

/external/proguard/src/proguard/classfile/instruction/
DLookUpSwitchInstruction.java64 public LookUpSwitchInstruction copy(LookUpSwitchInstruction lookUpSwitchInstruction) in copy() argument
66 this.opcode = lookUpSwitchInstruction.opcode; in copy()
67 this.defaultOffset = lookUpSwitchInstruction.defaultOffset; in copy()
68 this.cases = lookUpSwitchInstruction.cases; in copy()
69 this.jumpOffsets = lookUpSwitchInstruction.jumpOffsets; in copy()
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationSimplifier.java380 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
383 replaceBranchInstruction(clazz, offset, lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
391 lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
396 cleanUpSwitchInstruction(clazz, offset, lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
398 trimSwitchInstruction(clazz, offset, lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
1149 LookUpSwitchInstruction lookUpSwitchInstruction) in trimSwitchInstruction() argument
1152 int defaultOffset = lookUpSwitchInstruction.defaultOffset; in trimSwitchInstruction()
1153 int[] jumpOffsets = lookUpSwitchInstruction.jumpOffsets; in trimSwitchInstruction()
1176 replaceInstruction(clazz, offset, lookUpSwitchInstruction, in trimSwitchInstruction()
1182 int[] cases = lookUpSwitchInstruction.cases; in trimSwitchInstruction()
[all …]
/external/proguard/src/proguard/optimize/peephole/
DInstructionSequenceReplacer.java312 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
315 new LookUpSwitchInstruction(lookUpSwitchInstruction.opcode, in visitLookUpSwitchInstruction()
316 … instructionSequenceMatcher.matchedBranchOffset(offset, lookUpSwitchInstruction.defaultOffset), in visitLookUpSwitchInstruction()
317 … instructionSequenceMatcher.matchedArguments(lookUpSwitchInstruction.cases), in visitLookUpSwitchInstruction()
318 … instructionSequenceMatcher.matchedJumpOffsets(offset, lookUpSwitchInstruction.jumpOffsets)); in visitLookUpSwitchInstruction()
/external/proguard/src/proguard/classfile/util/
DInstructionSequenceMatcher.java339 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
345 matchingOpcodes(lookUpSwitchInstruction, patternInstruction) && in visitLookUpSwitchInstruction()
347 lookUpSwitchInstruction.defaultOffset, in visitLookUpSwitchInstruction()
349 matchingArguments(lookUpSwitchInstruction.cases, in visitLookUpSwitchInstruction()
352 lookUpSwitchInstruction.jumpOffsets, in visitLookUpSwitchInstruction()
361 lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
DSimplifiedVisitor.java624 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
626 visitAnySwitchInstruction(clazz, method, codeAttribute, offset, lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
/external/proguard/src/proguard/classfile/instruction/visitor/
DMultiInstructionVisitor.java124 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
128 …index].visitLookUpSwitchInstruction(clazz, method, codeAttribute, offset, lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
DInstructionVisitor.java41 … method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); in visitLookUpSwitchInstruction() argument
/external/proguard/src/proguard/classfile/editor/
DCodeAttributeEditor.java891 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
894 lookUpSwitchInstruction.defaultOffset = in visitLookUpSwitchInstruction()
895 newBranchOffset(offset, lookUpSwitchInstruction.defaultOffset, newOffset); in visitLookUpSwitchInstruction()
899 lookUpSwitchInstruction.jumpOffsets, in visitLookUpSwitchInstruction()
907 lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
909 newOffset += lookUpSwitchInstruction.length(newOffset); in visitLookUpSwitchInstruction()
/external/proguard/src/proguard/evaluation/
DProcessor.java901 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
909 offset + lookUpSwitchInstruction.defaultOffset); in visitLookUpSwitchInstruction()
911 for (int index = 0; index < lookUpSwitchInstruction.jumpOffsets.length; index++) in visitLookUpSwitchInstruction()
914 lookUpSwitchInstruction.cases[index])); in visitLookUpSwitchInstruction()
917 offset + lookUpSwitchInstruction.jumpOffsets[index], in visitLookUpSwitchInstruction()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java750 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument
752 println(lookUpSwitchInstruction.toString(offset)); in visitLookUpSwitchInstruction()
756 int[] cases = lookUpSwitchInstruction.cases; in visitLookUpSwitchInstruction()
757 int[] jumpOffsets = lookUpSwitchInstruction.jumpOffsets; in visitLookUpSwitchInstruction()
765 int defaultOffset = lookUpSwitchInstruction.defaultOffset; in visitLookUpSwitchInstruction()