Uses of Interface
org.cojen.classfile.LocalVariable

Packages that use LocalVariable
org.cojen.classfile   
org.cojen.classfile.attribute   
 

Uses of LocalVariable in org.cojen.classfile
 

Methods in org.cojen.classfile that return LocalVariable
 LocalVariable CodeAssemblerPrinter.createLocalVariable(String name, TypeDesc type)
           
 LocalVariable CodeBuilder.createLocalVariable(String name, TypeDesc type)
           
 LocalVariable CodeAssembler.createLocalVariable(String name, TypeDesc type)
          Creates a LocalVariable reference from a name and type.
 LocalVariable DelegatedCodeAssembler.createLocalVariable(String name, TypeDesc type)
           
 LocalVariable CodeAssemblerPrinter.getParameter(int index)
           
 LocalVariable CodeBuilder.getParameter(int index)
           
 LocalVariable CodeAssembler.getParameter(int index)
          Returns a specific parameter, whose index lies within 0 to getParameterCount() - 1.
 LocalVariable DelegatedCodeAssembler.getParameter(int index)
           
 

Methods in org.cojen.classfile with parameters of type LocalVariable
 void CodeDisassembler.disassemble(CodeAssembler assembler, LocalVariable[] params, Location returnLocation)
          Disassemble the MethodInfo into the given assembler.
 void CodeAssemblerPrinter.integerIncrement(LocalVariable local, int amount)
           
 void CodeBuilder.integerIncrement(LocalVariable local, int amount)
           
 void CodeAssembler.integerIncrement(LocalVariable local, int amount)
          Generates code that increments a local integer variable by a signed constant amount.
 void DelegatedCodeAssembler.integerIncrement(LocalVariable local, int amount)
           
 void CodeAssemblerPrinter.loadLocal(LocalVariable local)
           
 void CodeBuilder.loadLocal(LocalVariable local)
           
 void CodeAssembler.loadLocal(LocalVariable local)
          Generates code that loads a local variable onto the stack.
 void DelegatedCodeAssembler.loadLocal(LocalVariable local)
           
 void CodeAssemblerPrinter.ret(LocalVariable local)
           
 void CodeBuilder.ret(LocalVariable local)
           
 void CodeAssembler.ret(LocalVariable local)
          Generates code that returns from a subroutine invoked by jsr.
 void DelegatedCodeAssembler.ret(LocalVariable local)
           
 void CodeAssemblerPrinter.storeLocal(LocalVariable local)
           
 void CodeBuilder.storeLocal(LocalVariable local)
           
 void CodeAssembler.storeLocal(LocalVariable local)
          Generates code that pops a value off of the stack into a local variable.
 void DelegatedCodeAssembler.storeLocal(LocalVariable local)
           
 

Uses of LocalVariable in org.cojen.classfile.attribute
 

Methods in org.cojen.classfile.attribute with parameters of type LocalVariable
 void LocalVariableTableAttr.addEntry(LocalVariable localVar)
          Add an entry into the LocalVariableTableAttr.
 void CodeAttr.localVariableUse(LocalVariable localVar)
          Indicate a local variable's use information be recorded in the ClassFile as a debugging aid.
 



Copyright © 2004-2011 Brian S O'Neill. All Rights Reserved.