Searched refs:u2startPC (Results 1 - 25 of 26) sorted by relevance

12

/external/proguard/src/proguard/classfile/attribute/
H A DLineNumberInfo.java30 public int u2startPC; field in class:LineNumberInfo
45 public LineNumberInfo(int u2startPC, int u2lineNumber) argument
47 this.u2startPC = u2startPC;
H A DExceptionInfo.java32 public int u2startPC; field in class:ExceptionInfo
55 public ExceptionInfo(int u2startPC, argument
60 this.u2startPC = u2startPC;
73 return instructionOffset >= u2startPC &&
84 return u2startPC < endOffset &&
H A DLocalVariableInfo.java33 public int u2startPC; field in class:LocalVariableInfo
64 public LocalVariableInfo(int u2startPC, argument
70 this.u2startPC = u2startPC;
128 this.u2startPC < other.u2startPC ? -1 : this.u2startPC > other.u2startPC ? 1 :
H A DLocalVariableTypeInfo.java33 public int u2startPC; field in class:LocalVariableTypeInfo
65 public LocalVariableTypeInfo(int u2startPC, argument
71 this.u2startPC = u2startPC;
136 this.u2startPC < other.u2startPC ? -1 : this.u2startPC > other.u2startPC ? 1 :
H A DLineNumberTableAttribute.java68 if (pc >= info.u2startPC)
/external/proguard/src/proguard/classfile/attribute/annotation/target/
H A DLocalVariableTargetElement.java30 public int u2startPC; field in class:LocalVariableTargetElement
45 public LocalVariableTargetElement(int u2startPC, argument
49 this.u2startPC = u2startPC;
/external/proguard/src/proguard/classfile/editor/
H A DVariableCleaner.java145 (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;
H A DLineNumberInfoAdder.java53 new LineNumberInfo(lineNumberInfo.u2startPC,
H A DCodeAttributeComposer.java312 print(" ", "Exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]");
320 System.out.println(" -> ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]");
324 if (exceptionInfo.u2startPC == exceptionInfo.u2endPC)
592 exceptionInfo.u2startPC = newInstructionOffset(exceptionInfo.u2startPC);
676 lineNumberInfo.u2startPC = newInstructionOffset(lineNumberInfo.u2startPC);
686 int startPC = newInstructionOffset(localVariableInfo.u2startPC);
687 int endPC = newInstructionOffset(localVariableInfo.u2startPC +
690 localVariableInfo.u2startPC
[all...]
H A DExceptionInfoAdder.java58 new ExceptionInfo(exceptionInfo.u2startPC,
H A DLocalVariableInfoAdder.java56 new LocalVariableInfo(localVariableInfo.u2startPC,
H A DLocalVariableTypeInfoAdder.java56 new LocalVariableTypeInfo(localVariableTypeInfo.u2startPC,
H A DCodeAttributeEditor.java919 exceptionInfo.u2startPC = newInstructionOffset(exceptionInfo.u2startPC);
995 lineNumberInfo.u2startPC = newInstructionOffset(lineNumberInfo.u2startPC);
1005 localVariableInfo.u2length = newBranchOffset(localVariableInfo.u2startPC, localVariableInfo.u2length);
1006 localVariableInfo.u2startPC = newInstructionOffset(localVariableInfo.u2startPC);
1016 localVariableTypeInfo.u2length = newBranchOffset(localVariableTypeInfo.u2startPC, localVariableTypeInfo.u2length);
1017 localVariableTypeInfo.u2startPC = newInstructionOffset(localVariableTypeInfo.u2startPC);
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java88 exceptionInfo.u2startPC,
92 exceptionInfo.u2endPC = exceptionInfo.u2startPC;
148 if (exceptionInfo.u2startPC < exceptionInfo.u2endPC)
H A DReachableCodeMarker.java187 isReachable(exceptionInfo.u2startPC, exceptionInfo.u2endPC))
H A DBranchTargetFinder.java629 int startPC = exceptionInfo.u2startPC;
/external/proguard/src/proguard/obfuscate/
H A DParameterNameMarker.java71 if (localVariableInfo.u2startPC == 0)
103 if (localVariableTypeInfo.u2startPC == 0)
/external/proguard/src/proguard/optimize/evaluation/
H A DVariableOptimizer.java203 int startPC = localVariableInfo.u2startPC;
213 localVariableInfo.u2startPC = startPC;
226 int startPC = localVariableTypeInfo.u2startPC;
236 localVariableTypeInfo.u2startPC = startPC;
H A DLivenessAnalyzer.java393 int startOffset = exceptionInfo.u2startPC;
H A DPartialEvaluator.java1032 int startPC = exceptionInfo.u2startPC;
/external/proguard/src/proguard/preverify/
H A DCodeSubroutineInliner.java348 int startPC = Math.max(exceptionInfo.u2startPC, clipStart);
384 if (startPC == exceptionInfo.u2startPC &&
391 System.out.println(" Appending clipped exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+"] ~> ["+startPC+" -> "+endPC+"] -> "+handlerPC);
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java778 exceptionInfo.u2startPC + " -> " +
908 println("[" + lineNumberInfo.u2startPC + "] -> line " +
928 localVariableInfo.u2startPC + " -> " +
929 (localVariableInfo.u2startPC + localVariableInfo.u2length) + " [" +
940 localVariableTypeInfo.u2startPC + " -> " +
941 (localVariableTypeInfo.u2startPC + localVariableTypeInfo.u2length) + " [" +
1075 localVariableTargetElement.u2startPC + " -> " +
1076 (localVariableTargetElement.u2startPC + localVariableTargetElement.u2length));
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java541 dataOutput.writeShort(exceptionInfo.u2startPC);
564 dataOutput.writeShort(lineNumberInfo.u2startPC);
582 dataOutput.writeShort(localVariableInfo.u2startPC);
594 dataOutput.writeShort(localVariableTypeInfo.u2startPC);
714 dataOutput.writeShort(localVariableTargetElement.u2startPC);
H A DProgramClassReader.java634 exceptionInfo.u2startPC = dataInput.readUnsignedShort();
737 lineNumberInfo.u2startPC = dataInput.readUnsignedShort();
755 localVariableInfo.u2startPC = dataInput.readUnsignedShort();
767 localVariableTypeInfo.u2startPC = dataInput.readUnsignedShort();
907 localVariableTargetElement.u2startPC = dataInput.readShort();
/external/proguard/src/proguard/optimize/
H A DTailRecursionSimplifier.java226 codeAttributeComposer.appendException(new ExceptionInfo(exceptionInfo.u2startPC,

Completed in 858 milliseconds

12