Uses of Class
at.dms.optimize.InstructionHandle

Packages that use InstructionHandle
at.dms.optimize   
 

Uses of InstructionHandle in at.dms.optimize
 

Methods in at.dms.optimize that return InstructionHandle
 InstructionHandle Optimizer.getCodeStart()
           
 InstructionHandle InstructionHandle.getNext()
          Returns the handle of the next instruction in textual order.
 InstructionHandle InstructionHandle.getPrevious()
          Returns the handle of the next instruction in textual order.
 InstructionHandle InstructionHandle.getTarget()
          Returns the target of this jump instruction
 

Methods in at.dms.optimize with parameters of type InstructionHandle
static boolean Patterns.optimize(InstructionHandle handle)
          Optimizes the byte code for a single method.
static boolean Patterns.optimizeJump(InstructionHandle handle, int opcode)
          Optimizes the byte code for a single method.
static boolean Patterns.optimizeNoArgInstruction(InstructionHandle handle, int opcode)
          Optimizes the byte code for a single method.
static boolean Patterns.optimizePushLiteralInstruction(InstructionHandle handle, int opcode)
          Optimizes the byte code for a single method.
 void Optimizer.setCodeStart(InstructionHandle handle)
           
 void InstructionHandle.setNext(InstructionHandle next)
          Sets the handle of the next instruction in textual order.
 void InstructionHandle.setTarget(InstructionHandle target)
          Returns the target of this jump instruction
 

Constructors in at.dms.optimize with parameters of type InstructionHandle
InstructionHandle(Instruction insn, InstructionHandle prev)
          Creates a new instruction handle.