/external/proguard/src/proguard/classfile/attribute/ |
LineNumberInfo.java | 30 public int u2startPC; 45 public LineNumberInfo(int u2startPC, int u2lineNumber) 47 this.u2startPC = u2startPC;
|
ExceptionInfo.java | 32 public int u2startPC; 55 public ExceptionInfo(int u2startPC, 60 this.u2startPC = u2startPC; 73 return instructionOffset >= u2startPC && 84 return u2startPC < endOffset &&
|
LocalVariableInfo.java | 33 public int u2startPC; 64 public LocalVariableInfo(int u2startPC, 70 this.u2startPC = u2startPC; 110 this.u2startPC < other.u2startPC ? -1 : this.u2startPC > other.u2startPC ? 1 :
|
LocalVariableTypeInfo.java | 33 public int u2startPC; 65 public LocalVariableTypeInfo(int u2startPC, 71 this.u2startPC = u2startPC; 118 this.u2startPC < other.u2startPC ? -1 : this.u2startPC > other.u2startPC ? 1 :
|
LineNumberTableAttribute.java | 68 if (pc >= info.u2startPC)
|
/external/proguard/src/proguard/classfile/editor/ |
VariableCleaner.java | 145 (localVariableInfo.u2startPC == 0 || 176 (localVariableTypeInfo.u2startPC == 0 || 212 localVariableInfo.u2startPC; 219 startPCs[localVariableInfo.u2index] = localVariableInfo.u2startPC; 246 localVariableTypeInfo.u2startPC; 253 startPCs[localVariableTypeInfo.u2index] = localVariableTypeInfo.u2startPC;
|
LineNumberInfoAdder.java | 53 new LineNumberInfo(lineNumberInfo.u2startPC,
|
CodeAttributeComposer.java | 303 print(" ", "Exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]"); 311 System.out.println(" -> ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]"); 315 if (exceptionInfo.u2startPC == exceptionInfo.u2endPC) 559 exceptionInfo.u2startPC = newInstructionOffset(exceptionInfo.u2startPC); 643 lineNumberInfo.u2startPC = newInstructionOffset(lineNumberInfo.u2startPC); 653 int startPC = newInstructionOffset(localVariableInfo.u2startPC); 654 int endPC = newInstructionOffset(localVariableInfo.u2startPC + 657 localVariableInfo.u2startPC = startPC [all...] |
ExceptionInfoAdder.java | 58 new ExceptionInfo(exceptionInfo.u2startPC,
|
LocalVariableInfoAdder.java | 56 new LocalVariableInfo(localVariableInfo.u2startPC,
|
LocalVariableTypeInfoAdder.java | 56 new LocalVariableTypeInfo(localVariableTypeInfo.u2startPC,
|
CodeAttributeEditor.java | 906 exceptionInfo.u2startPC = newInstructionOffset(exceptionInfo.u2startPC); [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
UnreachableExceptionRemover.java | 91 exceptionInfo.u2startPC, 95 exceptionInfo.u2endPC = exceptionInfo.u2startPC; 155 if (exceptionInfo.u2startPC < exceptionInfo.u2endPC)
|
ReachableCodeMarker.java | 187 isReachable(exceptionInfo.u2startPC, exceptionInfo.u2endPC))
|
BranchTargetFinder.java | 625 instructionMarks[exceptionInfo.u2startPC] |= EXCEPTION_START;
|
/external/proguard/src/proguard/obfuscate/ |
ParameterNameMarker.java | 71 if (localVariableInfo.u2startPC == 0) 103 if (localVariableTypeInfo.u2startPC == 0)
|
/external/proguard/src/proguard/optimize/evaluation/ |
VariableOptimizer.java | 203 int startPC = localVariableInfo.u2startPC; 213 localVariableInfo.u2startPC = startPC; 226 int startPC = localVariableTypeInfo.u2startPC; 236 localVariableTypeInfo.u2startPC = startPC;
|
LivenessAnalyzer.java | 393 int startOffset = exceptionInfo.u2startPC;
|
PartialEvaluator.java | [all...] |
/external/proguard/src/proguard/preverify/ |
CodeSubroutineInliner.java | 335 int startPC = Math.max(exceptionInfo.u2startPC, clipStart); 371 if (startPC == exceptionInfo.u2startPC && 378 System.out.println(" Appending clipped exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+"] ~> ["+startPC+" -> "+endPC+"] -> "+handlerPC);
|
/external/proguard/src/proguard/classfile/io/ |
ProgramClassWriter.java | 516 dataOutput.writeShort(exceptionInfo.u2startPC); 539 dataOutput.writeShort(lineNumberInfo.u2startPC); 548 dataOutput.writeShort(localVariableInfo.u2startPC); 560 dataOutput.writeShort(localVariableTypeInfo.u2startPC);
|
ProgramClassReader.java | 597 exceptionInfo.u2startPC = dataInput.readUnsignedShort(); 700 lineNumberInfo.u2startPC = dataInput.readUnsignedShort(); 709 localVariableInfo.u2startPC = dataInput.readUnsignedShort(); 721 localVariableTypeInfo.u2startPC = dataInput.readUnsignedShort(); [all...] |
/external/proguard/src/proguard/classfile/visitor/ |
ClassPrinter.java | 738 exceptionInfo.u2startPC + " -> " + 868 println("[" + lineNumberInfo.u2startPC + "] -> line " + 878 localVariableInfo.u2startPC + " -> " + 879 (localVariableInfo.u2startPC + localVariableInfo.u2length) + " [" + 890 localVariableTypeInfo.u2startPC + " -> " [all...] |
/external/proguard/src/proguard/optimize/ |
TailRecursionSimplifier.java | 227 codeAttributeComposer.appendException(new ExceptionInfo(exceptionInfo.u2startPC,
|
/prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/ |
proguard-base-4.10.jar | |