Searched defs:successor (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DEdge.java96 * The successor block of the basic block from which this edge originates.
98 Label successor; field in class:Edge
H A DLabel.java243 * The successor of this label, in the order they are visited. This linked
249 Label successor; field in class:Label
501 * null it is added to the successor of the RET blocks found in the
518 e.successor = JSR.successors.successor;
531 // calls this method recursively on each successor, except JSR targets
538 e.successor.visitSubroutine(JSR, id, nbSubroutines);
H A DMethodWriter.java389 * {@link Label#successor} field, in the order they are visited by
680 // if opcode == ATHROW or xRETURN, ends current block (no successor)
720 // no stack change, but end of current block (no successor)
894 // adds 'label' as a successor of this basic block
966 // is also a successor of this instruction. Calling visitLabel
967 // adds the label of this next instruction as a successor of the
992 // ends current block (with one new successor)
1009 previousBlock.successor = label;
1014 // ends current block (with one new successor)
1025 previousBlock.successor
1514 addSuccessor(final int info, final Label successor) argument
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dregister_zero.hpp55 Register successor() const { function in class:RegisterImpl
90 FloatRegister successor() const { function in class:FloatRegisterImpl
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dregister_x86.hpp57 Register successor() const { return as_Register(encoding() + 1); } function in class:RegisterImpl
116 FloatRegister successor() const { return as_FloatRegister(encoding() + 1); } function in class:FloatRegisterImpl
158 XMMRegister successor() const { return as_XMMRegister(encoding() + 1); } function in class:XMMRegisterImpl
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DFigureWidget.java297 public void addFigureToSubMenu(JMenu subMenu, final Figure f, boolean successor, int depth) { argument
299 if (successor) {
314 addFigureToMenu(subMenu, f2, successor, depth - 1);
321 public void addFigureToMenu(JMenu m, final Figure f, boolean successor, int depth) { argument
330 if (successor) {
335 addFigureToSubMenu(subMenu, f, successor, depth);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.hpp100 SharkTopLevelBlock* successor(int index) const { function in class:SharkTopLevelBlock
H A DsharkTopLevelBlock.cpp240 successor(i)->enter(this, false);
313 ciTypeFlow::Block *successor = ciblock()->successors()->at(i); local
314 if (successor->start() == bci)
315 return function()->block(successor->pre_order());
619 SharkTopLevelBlock *successor = this->exception(index); local
620 if (successor) {
621 successor->add_incoming(current_state());
622 return successor->entry_block();
672 if (successor(i)->can_reach(this)) {
696 if (successor(
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dregister_sparc.hpp83 Register successor() const { return as_Register(encoding() + 1); } function in class:RegisterImpl
267 FloatRegister successor() const { return as_FloatRegister(encoding() + 1); }
H A Dassembler_sparc.hpp520 Argument successor() const { return Argument(number() + 1, is_in()); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/jdk/src/share/classes/java/util/
H A DTreeMap.java244 for (Entry<K,V> e = getFirstEntry(); e != null; e = successor(e))
959 for (Entry<K,V> e = getFirstEntry(); e != null; e = successor(e)) {
1116 next = successor(e);
1595 next = successor(e);
1982 * Returns the successor of the specified Entry, or null if no such.
1984 static <K,V> TreeMap.Entry<K,V> successor(Entry<K,V> t) { method in class:TreeMap
2141 // If strictly internal, copy successor's element to p and then make p
2142 // point to successor.
2144 Entry<K,V> s = successor(p);
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp1898 st->print_cr(" No successor information");
1903 Block* successor = _successors->at(i); local
1905 successor->print_value_on(st);
2376 // Find successor edges based on old state and new JsrSet.
2491 // Found backedge since predecessor post visited, but successor is not
2514 // Successor has already been visited. If the successor's loop head
2775 // Remove dead blocks from successor lists:
2782 tty->print("Removing dead %s successor of #%d: ", (e? "exceptional": "normal"), block->pre_order());

Completed in 83 milliseconds