/external/proguard/src/proguard/classfile/instruction/ |
D | LookUpSwitchInstruction.java | 64 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/ |
D | EvaluationSimplifier.java | 380 …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/ |
D | InstructionSequenceReplacer.java | 312 …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/ |
D | InstructionSequenceMatcher.java | 339 …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()
|
D | SimplifiedVisitor.java | 624 …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/ |
D | MultiInstructionVisitor.java | 124 …d method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) in visitLookUpSwitchInstruction() argument 128 …index].visitLookUpSwitchInstruction(clazz, method, codeAttribute, offset, lookUpSwitchInstruction); in visitLookUpSwitchInstruction()
|
D | InstructionVisitor.java | 41 … method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); in visitLookUpSwitchInstruction() argument
|
/external/proguard/src/proguard/classfile/editor/ |
D | CodeAttributeEditor.java | 891 …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/ |
D | Processor.java | 901 …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/ |
D | ClassPrinter.java | 750 …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()
|