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

/external/dexmaker/src/dx/java/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...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DAnalyzedInstruction.java58 protected final LinkedList<AnalyzedInstruction> successors = new LinkedList<AnalyzedInstruction>(); field in class:AnalyzedInstruction
113 successors.add(successor);
127 return successors.size();
131 return Collections.unmodifiableList(successors);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaBasicBlock.java58 private BitSet successors; field in class:SsaBasicBlock
129 this.successors = new BitSet(parent.getBlocks().size());
162 result.successors
348 * @return {@code non-null;} successors set, indexed by block index
351 return successors;
421 newPred.successors.set(index) ;
456 if (!successors.get(other.index)) {
463 newSucc.successors.set(other.index) ;
477 successors.clear(other.index);
478 successors
[all...]
/external/llvm/lib/CodeGen/
H A DShrinkWrapping.cpp17 // placed in the loop exit nodes (the successors of loop _exiting_ nodes).
199 /// successors.
205 SmallVector<MachineBasicBlock*, 4> successors; local
210 successors.push_back(SUCC);
213 unsigned i = 0, e = successors.size();
216 MachineBasicBlock* SUCC = successors[i];
220 SUCC = successors[i];
292 // anticipated at successors of MBB.
353 /// 3. all CSRs are used in all immediate successors of the entry block.
482 << ": all CSRs used in imm successors o
745 SmallVector<MachineBasicBlock*, 4> successors; local
[all...]
/external/v8/src/
H A Djsregexp.h355 // The successors are a list of sets that contain the same values
358 ZoneList<OutSet*>* successors() { return successors_; } function in class:v8::internal::OutSet
414 // successors in a zone and caches them.

Completed in 179 milliseconds