Uses of Class
tip.instructions.Instruction

Packages that use Instruction
tip.instructions Provides instruction classes for the TIP virtual machine. 
tip.node Provides node classes for representing the TIP ASTs. 
 

Uses of Instruction in tip.instructions
 

Subclasses of Instruction in tip.instructions
 class Iadd
           
 class Iaload
           
 class Icall
           
 class Icall_indirect
           
 class Ideref
           
 class Idiv
           
 class Igoto
           
 class Iifcmp_eq
           
 class Iifcmp_gt
           
 class Iifeq
           
 class Iifne
           
 class Iinput
           
 class Ilabel
           
 class Iload
           
 class Iloadc
           
 class Imalloc
           
 class Imload
           
 class Imstore
           
 class Imul
           
 class Ioutput
           
 class Ireturn
           
 class Istore
           
 class Isub
           
 class JumpInstruction
           
 

Method parameters in tip.instructions with type arguments of type Instruction
static int Instruction.getID(Class<? extends Instruction> c)
          Returns an identification number associated with the instruction type.
 

Uses of Instruction in tip.node
 

Methods in tip.node that return types with arguments of type Instruction
abstract  LinkedList<Instruction> PBody.getInstructions()
          Returns the instructions field of this PBody node.
 LinkedList<Instruction> ABody.getInstructions()
          Returns the instructions field of this ABody node.
 

Method parameters in tip.node with type arguments of type Instruction
abstract  void PBody.setInstructions(List<? extends Instruction> value)
          Sets the instructions field of this PBody node.
 void ABody.setInstructions(List<? extends Instruction> value)
          Sets the instructions field of this ABody node.
 

Constructor parameters in tip.node with type arguments of type Instruction
ABody(ABlock _block_, List<? extends Instruction> _instructions_)
          Creates a new ABody node with the given nodes as children.