|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectserp.bytecode.Instruction
serp.bytecode.TypedInstruction
serp.bytecode.MathInstruction
public class MathInstruction
One of the math operations defined in the Constants
interface.
Changing the type or operation of the instruction will automatically
update the underlying opcode.
Method Summary | |
---|---|
void |
acceptVisit(BCVisitor visit)
Accept a visit from a BCVisitor , calling the appropriate methods
to notify the visitor that it has entered this entity, and
to provide it with the proper callbacks for each sub-entity owned
by this one. |
boolean |
equalsInstruction(Instruction other)
MathInstructions are equal if they have the same operation and type, or the operation and type of either is unset. |
int |
getLogicalStackChange()
Return the logical number of stack positions changed by this instruction. |
int |
getOperation()
Return the operation for this math instruction; will be one of the math constant defined in Constants , or -1 if unset. |
int |
getStackChange()
Return the number of stack positions this instruction pushes or pops during its execution. |
String |
getTypeName()
Return the type name for this instruction. |
MathInstruction |
setOperation(int operation)
Set the math operation to be performed. |
TypedInstruction |
setType(String type)
Set the type of this instruction. |
Methods inherited from class serp.bytecode.TypedInstruction |
---|
getType, getTypeBC, setType, setType |
Methods inherited from class serp.bytecode.Instruction |
---|
getByteIndex, getClassLoader, getCode, getLineNumber, getName, getOpcode, getPool, getProject, isValid |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public int getStackChange()
Instruction
getStackChange
in class Instruction
public int getLogicalStackChange()
Instruction
getLogicalStackChange
in class Instruction
public String getTypeName()
TypedInstruction
getTypeName
in class TypedInstruction
public TypedInstruction setType(String type)
TypedInstruction
setType
in class TypedInstruction
public MathInstruction setOperation(int operation)
Constants
.
public int getOperation()
Constants
, or -1 if unset.
public boolean equalsInstruction(Instruction other)
equalsInstruction
in class Instruction
public void acceptVisit(BCVisitor visit)
VisitAcceptor
BCVisitor
, calling the appropriate methods
to notify the visitor that it has entered this entity, and
to provide it with the proper callbacks for each sub-entity owned
by this one.
acceptVisit
in interface VisitAcceptor
acceptVisit
in class Instruction
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |