Package iota
Class NLoadStoreTuple
java.lang.Object
iota.NTuple
iota.NLoadStoreTuple
Representation of a load-store instruction.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionNLoadStoreTuple
(int pc, int opcode, byte index) Constructs an NLoadStoreTuple object. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Writes the information pertaining to this tuple to standard output.
-
Field Details
-
index
public byte indexIndex of the variable to load from or store to.
-
-
Constructor Details
-
NLoadStoreTuple
public NLoadStoreTuple(int pc, int opcode, byte index) Constructs an NLoadStoreTuple object.- Parameters:
pc
- program counter of the tuple.opcode
- tuple opcode.index
- variable index.
-
-
Method Details
-
writeToStdOut
Writes the information pertaining to this tuple to standard output.- Specified by:
writeToStdOut
in classNTuple
- Parameters:
p
- for pretty printing with indentation.
-