Searched defs:successors (Results 1 - 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteBlock.java36 /** {@code non-null;} list of successors that this block may branch to */
37 private final IntList successors; field in class:ByteBlock
50 * @param successors {@code non-null;} list of successors that this block may
55 public ByteBlock(int label, int start, int end, IntList successors, argument
69 if (successors == null) {
73 int sz = successors.size();
75 if (successors.get(i) < 0) {
76 throw new IllegalArgumentException("successors[" + i +
78 successors
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteBlock.java36 /** {@code non-null;} list of successors that this block may branch to */
37 private final IntList successors; field in class:ByteBlock
50 * @param successors {@code non-null;} list of successors that this block may
55 public ByteBlock(int label, int start, int end, IntList successors, argument
69 if (successors == null) {
73 int sz = successors.size();
75 if (successors.get(i) < 0) {
76 throw new IllegalArgumentException("successors[" + i +
78 successors
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DBasicBlock.java35 * {@code non-null;} full list of successors that this block may
38 private final IntList successors; field in class:BasicBlock
42 * {@code -1} if this block has no successors (that is, it
52 * @param successors {@code non-null;} full list of successors that this
56 * successors (that is, it exits the function/method or is an
59 public BasicBlock(int label, InsnList insns, IntList successors, argument
94 successors.throwIfMutable();
97 throw new NullPointerException("successors == null");
104 if (primarySuccessor >= 0 && !successors
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DBasicBlock.java35 * {@code non-null;} full list of successors that this block may
38 private final IntList successors; field in class:BasicBlock
42 * {@code -1} if this block has no successors (that is, it
52 * @param successors {@code non-null;} full list of successors that this
56 * successors (that is, it exits the function/method or is an
59 public BasicBlock(int label, InsnList insns, IntList successors, argument
94 successors.throwIfMutable();
97 throw new NullPointerException("successors == null");
104 if (primarySuccessor >= 0 && !successors
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java57 private BitSet successors; field in class:SsaBasicBlock
128 this.successors = new BitSet(parent.getBlocks().size());
161 result.successors
347 * @return {@code non-null;} successors set, indexed by block index
350 return successors;
420 newPred.successors.set(index) ;
455 if (!successors.get(other.index)) {
462 newSucc.successors.set(other.index) ;
476 successors.clear(other.index);
477 successors
[all...]

Completed in 127 milliseconds