/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
RopMethod.java | 21 import com.android.dexgen.util.IntList; 37 private IntList[] predecessors; 43 private IntList exitPredecessors; 93 public IntList labelToPredecessors(int label) { 98 IntList result = predecessors[label]; 112 public IntList getExitPredecessors() { 153 IntList[] predecessors = new IntList[maxLabel]; 154 IntList exitPredecessors = new IntList(10) [all...] |
SwitchInsn.java | 22 import com.android.dexgen.util.IntList; 30 private final IntList cases; 42 RegisterSpecList sources, IntList cases) { 116 public IntList getCases() {
|
/dalvik/dx/src/com/android/dx/rop/code/ |
RopMethod.java | 20 import com.android.dx.util.IntList; 36 private IntList[] predecessors; 42 private IntList exitPredecessors; 92 public IntList labelToPredecessors(int label) { 97 IntList result = predecessors[label]; 111 public IntList getExitPredecessors() { 152 IntList[] predecessors = new IntList[maxLabel]; 153 IntList exitPredecessors = new IntList(10) [all...] |
SwitchInsn.java | 22 import com.android.dx.util.IntList; 30 private final IntList cases; 42 RegisterSpecList sources, IntList cases) { 116 public IntList getCases() {
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
RopMethod.java | 21 import com.android.dx.util.IntList; 37 private IntList[] predecessors; 43 private IntList exitPredecessors; 93 public IntList labelToPredecessors(int label) { 98 IntList result = predecessors[label]; 112 public IntList getExitPredecessors() { 153 IntList[] predecessors = new IntList[maxLabel]; 154 IntList exitPredecessors = new IntList(10) [all...] |
SwitchInsn.java | 22 import com.android.dx.util.IntList; 30 private final IntList cases; 42 RegisterSpecList sources, IntList cases) { 116 public IntList getCases() {
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
IntList.java | 24 public final class IntList extends MutabilityControl { 26 public static final IntList EMPTY = new IntList(0); 46 public static IntList makeImmutable(int value) { 47 IntList result = new IntList(1); 61 public static IntList makeImmutable(int value0, int value1) { 62 IntList result = new IntList(2); 74 public IntList() { [all...] |
/dalvik/dx/src/com/android/dx/util/ |
IntList.java | 24 public final class IntList extends MutabilityControl { 26 public static final IntList EMPTY = new IntList(0); 46 public static IntList makeImmutable(int value) { 47 IntList result = new IntList(1); 61 public static IntList makeImmutable(int value0, int value1) { 62 IntList result = new IntList(2); 74 public IntList() { [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
IntList.java | 24 public final class IntList extends MutabilityControl { 26 public static final IntList EMPTY = new IntList(0); 46 public static IntList makeImmutable(int value) { 47 IntList result = new IntList(1); 61 public static IntList makeImmutable(int value0, int value1) { 62 IntList result = new IntList(2); 74 public IntList() { [all...] |
/dalvik/dx/junit-tests/com/android/dx/util/ |
IntListTest.java | 24 IntList list = new IntList(sz); 42 IntList list = new IntList(2); 52 IntList list = new IntList(2);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
SwitchList.java | 19 import com.android.dx.util.IntList; 29 private final IntList values; 36 private final IntList targets; 48 this.values = new IntList(size); 49 this.targets = new IntList(size + 1); 107 public IntList getTargets() { 116 public IntList getValues() {
|
Frame.java | 23 import com.android.dx.util.IntList; 39 private final IntList subroutines; 48 this(locals, stack, IntList.EMPTY); 60 ExecutionStack stack, IntList subroutines) { 148 public IntList getSubroutines() { 187 IntList newSubroutines; 215 IntList resultSubroutines; 242 private IntList mergeSubroutineLists(IntList otherSubroutines) { 247 IntList resultSubroutines = new IntList() [all...] |
ByteBlock.java | 20 import com.android.dx.util.IntList; 37 private final IntList successors; 55 public ByteBlock(int label, int start, int end, IntList successors, 133 public IntList getSuccessors() {
|
Ropper.java | 44 import com.android.dx.util.IntList; 119 private final ArrayList<IntList> resultSubroutines; 290 IntList getSuccessors() { 291 IntList successors = new IntList(callerBlocks.size()); 393 new ArrayList<IntList>(blocks.size() * 2 + 10); 585 private void addBlock(BasicBlock block, IntList subroutines) { 606 private boolean addOrReplaceBlock(BasicBlock block, IntList subroutines) { 645 IntList subroutines) { 678 IntList successors = block.getSuccessors() [all...] |
ByteCatchList.java | 23 import com.android.dx.util.IntList; 162 public IntList toTargetList(int noException) { 176 return IntList.makeImmutable(noException); 182 return IntList.EMPTY; 185 IntList result = new IntList(sz + (hasDefault ? 1 : 0));
|
/dalvik/dexgen/src/com/android/dexgen/rop/ |
ByteBlock.java | 20 import com.android.dexgen.util.IntList; 37 private final IntList successors; 55 public ByteBlock(int label, int start, int end, IntList successors, 133 public IntList getSuccessors() {
|
ByteCatchList.java | 23 import com.android.dexgen.util.IntList; 162 public IntList toTargetList(int noException) { 176 return IntList.makeImmutable(noException); 182 return IntList.EMPTY; 185 IntList result = new IntList(sz + (hasDefault ? 1 : 0));
|
/dalvik/dx/src/com/android/dx/ssa/ |
BasicRegisterMapper.java | 20 import com.android.dx.util.IntList; 28 private IntList oldToNew; 39 oldToNew = new IntList(countOldRegisters);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
BasicRegisterMapper.java | 21 import com.android.dx.util.IntList; 29 private IntList oldToNew; 40 oldToNew = new IntList(countOldRegisters);
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
IdenticalBlockCombiner.java | 23 import com.android.dx.util.IntList; 69 IntList preds = ropMethod.labelToPredecessors(b.getLabel()); 85 IntList toCombine = new IntList(); 135 private void combineBlocks(int alphaLabel, IntList betaLabels) { 141 IntList preds = ropMethod.labelToPredecessors(bb.getLabel()); 160 IntList newSuccessors = block.getSuccessors().mutableCopy();
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
IdenticalBlockCombiner.java | 27 import com.android.dx.util.IntList; 74 IntList preds = ropMethod.labelToPredecessors(b.getLabel()); 90 IntList toCombine = new IntList(); 140 private void combineBlocks(int alphaLabel, IntList betaLabels) { 146 IntList preds = ropMethod.labelToPredecessors(bb.getLabel()); 165 IntList newSuccessors = block.getSuccessors().mutableCopy();
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
SwitchData.java | 23 import com.android.dexgen.util.IntList; 38 private final IntList cases; 61 IntList cases, CodeAddress[] targets) { 209 private static long packedCodeSize(IntList cases) { 225 private static long sparseCodeSize(IntList cases) { 238 private static boolean shouldPack(IntList cases) {
|
/dalvik/dx/src/com/android/dx/dex/code/ |
SwitchData.java | 24 import com.android.dx.util.IntList; 39 private final IntList cases; 62 IntList cases, CodeAddress[] targets) { 210 private static long packedCodeSize(IntList cases) { 226 private static long sparseCodeSize(IntList cases) { 239 private static boolean shouldPack(IntList cases) {
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
SwitchData.java | 24 import com.android.dx.util.IntList; 39 private final IntList cases; 62 IntList cases, CodeAddress[] targets) { 210 private static long packedCodeSize(IntList cases) { 226 private static long sparseCodeSize(IntList cases) { 239 private static boolean shouldPack(IntList cases) {
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Label.java | 22 import com.android.dx.util.IntList; 77 IntList successors = new IntList();
|