SWAPpublic class SWAP extends StackInstruction implements StackProducer, StackConsumerSWAP - Swa top operand stack word
Stack: ..., word2, word1 -> ..., word1, word2 |
Constructors Summary |
---|
public SWAP()
super(com.sun.org.apache.bcel.internal.Constants.SWAP);
|
Methods Summary |
---|
public void | accept(com.sun.org.apache.bcel.internal.generic.Visitor v)Call corresponding visitor method(s). The order is:
Call visitor methods of implemented interfaces first, then
call methods according to the class hierarchy in descending order,
i.e., the most specific visitXXX() call comes last.
v.visitStackConsumer(this);
v.visitStackProducer(this);
v.visitStackInstruction(this);
v.visitSWAP(this);
|
|