uk.ac.man.cs.rainbow.simulator.rasm
Class Add

java.lang.Object
  |
  +--uk.ac.man.cs.rainbow.simulator.Instruction
        |
        +--uk.ac.man.cs.rainbow.simulator.RASM.BinaryIntFunction
              |
              +--uk.ac.man.cs.rainbow.simulator.rasm.Add
All Implemented Interfaces:
Serializable

public class Add
extends RASM.BinaryIntFunction

Addition. Can take any enumerable values as input, and generates integer output.

x y x+y

See Also:
Serialized Form

Inner classes inherited from class uk.ac.man.cs.rainbow.simulator.Instruction
Instruction.MACRO
 
Constructor Summary
Add()
           
Add(RASMCode code)
           
 
Method Summary
protected  int execute(int x, int y)
          Perform an integer binary operation.
 String toString()
           
 
Methods inherited from class uk.ac.man.cs.rainbow.simulator.RASM.BinaryIntFunction
execute
 
Methods inherited from class uk.ac.man.cs.rainbow.simulator.Instruction
addClass, getInstruction, getInstruction, getInstruction
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Add

public Add()

Add

public Add(RASMCode code)
Method Detail

toString

public String toString()
Overrides:
toString in class Object

execute

protected int execute(int x,
                      int y)
Description copied from class: RASM.BinaryIntFunction
Perform an integer binary operation.
Overrides:
execute in class RASM.BinaryIntFunction
Following copied from class: uk.ac.man.cs.rainbow.simulator.RASM.BinaryIntFunction
Parameters:
x - The first (lower on the stack) value argument.
y - The second (higher on the stack) value argument.
Returns:
The result of the operation.