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

/external/chromium_org/v8/src/compiler/
H A Dschedule.cc73 BasicBlock::Successors successors = block->successors(); local
75 for (BasicBlock::Successors::iterator j = successors.begin();
76 j != successors.end(); ++j) {
H A Dinstruction.cc472 BasicBlock::Successors successors = block->successors(); local
473 for (BasicBlock::Successors::iterator iter = successors.begin();
474 iter != successors.end(); ++iter) {
H A Dschedule.h103 Successors successors() { return static_cast<Successors>(uses()); } function in class:v8::internal::compiler::FINAL
H A Dscheduler.cc66 ConnectBlocks(*i); // Connect block to its predecessor/successors.
133 Node* successors[2]; local
134 CollectSuccessorProjections(node, successors, a, b);
135 BuildBlockForNode(successors[0]);
136 BuildBlockForNode(successors[1]);
164 Node* successors[2]; local
165 CollectSuccessorProjections(node, successors, true_opcode, false_opcode);
166 buffer[0] = schedule_->block(successors[0]);
167 buffer[1] = schedule_->block(successors[1]);
972 // Finished with all successors; po
[all...]
H A Dregister-allocator.cc533 BasicBlock::Successors successors = block->successors(); local
534 for (BasicBlock::Successors::iterator i = successors.begin();
535 i != successors.end(); ++i) {
775 BasicBlock::Successors successors = block->successors(); local
776 for (BasicBlock::Successors::iterator succ = successors.begin();
777 succ != successors.end(); ++succ) {
793 BasicBlock::Successors successors = block->successors(); local
[all...]
/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/mockito/cglib-and-asm/src/org/mockito/asm/
H A DLabel.java161 * of this basic block. Each node also stores the list of its successors in
222 * The successors of this node in the control flow graph. These successors
226 Edge successors; field in class:Label
483 // adds JSR to the successors of this block, if it is a RET block
488 e.successor = JSR.successors.successor;
489 e.next = successors;
490 successors = e;
502 Edge e = successors;
504 // if this block is a JSR block, then 'successors
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DAnalyzedInstruction.java61 protected final LinkedList<AnalyzedInstruction> successors = new LinkedList<AnalyzedInstruction>(); field in class:AnalyzedInstruction
109 successors.add(successor);
123 return successors.size();
127 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/include/llvm/CodeGen/
H A DMachineBasicBlock.h74 /// Weights - Keep track of the weights to the successors. This vector
309 inline iterator_range<succ_iterator> successors() { function in class:llvm::MachineBasicBlock
312 inline iterator_range<const_succ_iterator> successors() const { function in class:llvm::MachineBasicBlock
392 /// removeSuccessor - Remove successor from the successors list of this
397 /// removeSuccessor - Remove specified successor from the successors list of
408 /// transferSuccessors - Transfers all the successors from MBB to this
409 /// machine basic block (i.e., copies all the successors fromMBB and
410 /// remove all the successors from fromMBB).
413 /// transferSuccessorsAndUpdatePHIs - Transfers all the successors, as
596 /// DestA and DestB, remove any other MBB successors fro
[all...]
/external/chromium_org/v8/src/
H A Djsregexp.h309 // The successors are a list of sets that contain the same values
312 ZoneList<OutSet*>* successors(Zone* zone) { return successors_; } function in class:v8::internal::OutSet
374 // successors in a zone and caches them.
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 496 milliseconds