Home
last modified time | relevance | path

Searched refs:TYPICAL_CODE_LENGTH (Results 1 – 9 of 9) sorted by relevance

/external/proguard/src/proguard/optimize/peephole/
DBranchTargetFinder.java67 private short[] instructionMarks = new short[ClassConstants.TYPICAL_CODE_LENGTH + 1];
68 private int[] subroutineStarts = new int[ClassConstants.TYPICAL_CODE_LENGTH];
69 private int[] subroutineEnds = new int[ClassConstants.TYPICAL_CODE_LENGTH];
70 private int[] creationOffsets = new int[ClassConstants.TYPICAL_CODE_LENGTH];
71 private int[] initializationOffsets = new int[ClassConstants.TYPICAL_CODE_LENGTH];
DReachableCodeMarker.java42 private boolean[] isReachable = new boolean[ClassConstants.TYPICAL_CODE_LENGTH];
/external/proguard/src/proguard/optimize/evaluation/
DPartialEvaluator.java63 …ffsetValue[] branchOriginValues = new InstructionOffsetValue[ClassConstants.TYPICAL_CODE_LENGTH];
64 …ffsetValue[] branchTargetValues = new InstructionOffsetValue[ClassConstants.TYPICAL_CODE_LENGTH];
65 …dVariables[] variablesBefore = new TracedVariables[ClassConstants.TYPICAL_CODE_LENGTH];
66 …racedStack[] stacksBefore = new TracedStack[ClassConstants.TYPICAL_CODE_LENGTH];
67 …dVariables[] variablesAfter = new TracedVariables[ClassConstants.TYPICAL_CODE_LENGTH];
68 …racedStack[] stacksAfter = new TracedStack[ClassConstants.TYPICAL_CODE_LENGTH];
69 …te boolean[] generalizedContexts = new boolean[ClassConstants.TYPICAL_CODE_LENGTH];
70 …rivate int[] evaluationCounts = new int[ClassConstants.TYPICAL_CODE_LENGTH];
71 …rivate int[] initializedVariables = new int[ClassConstants.TYPICAL_CODE_LENGTH];
DLivenessAnalyzer.java53 private long[] isAliveBefore = new long[ClassConstants.TYPICAL_CODE_LENGTH];
54 private long[] isAliveAfter = new long[ClassConstants.TYPICAL_CODE_LENGTH];
55 private long[] isCategory2 = new long[ClassConstants.TYPICAL_CODE_LENGTH];
DEvaluationShrinker.java66 …private boolean[][] variablesNecessaryAfter = new boolean[ClassConstants.TYPICAL_CODE_LENGTH][Clas…
67 …private boolean[][] stacksNecessaryAfter = new boolean[ClassConstants.TYPICAL_CODE_LENGTH][Clas…
68 …private boolean[][] stacksSimplifiedBefore = new boolean[ClassConstants.TYPICAL_CODE_LENGTH][Clas…
69 private boolean[] instructionsNecessary = new boolean[ClassConstants.TYPICAL_CODE_LENGTH];
/external/proguard/src/proguard/classfile/editor/
DCodeAttributeEditor.java62 …vate*/public Instruction[] preInsertions = new Instruction[ClassConstants.TYPICAL_CODE_LENGTH];
63 …vate*/public Instruction[] replacements = new Instruction[ClassConstants.TYPICAL_CODE_LENGTH];
64 …vate*/public Instruction[] postInsertions = new Instruction[ClassConstants.TYPICAL_CODE_LENGTH];
65 …*private*/public boolean[] deleted = new boolean[ClassConstants.TYPICAL_CODE_LENGTH];
67 private int[] instructionOffsetMap = new int[ClassConstants.TYPICAL_CODE_LENGTH];
DCodeAttributeComposer.java67 private byte[] code = new byte[ClassConstants.TYPICAL_CODE_LENGTH];
68 private int[] oldInstructionOffsets = new int[ClassConstants.TYPICAL_CODE_LENGTH];
72 …nal int[][] instructionOffsetMap = new int[MAXIMUM_LEVELS][ClassConstants.TYPICAL_CODE_LENGTH + 1];
/external/proguard/src/proguard/classfile/attribute/visitor/
DStackSizeComputer.java49 private boolean[] evaluated = new boolean[ClassConstants.TYPICAL_CODE_LENGTH];
50 private int[] stackSizes = new int[ClassConstants.TYPICAL_CODE_LENGTH];
/external/proguard/src/proguard/classfile/
DClassConstants.java251 public static final int TYPICAL_CODE_LENGTH = 1024; field