LocalExpr represents an expression that accesses a variable in a method's
local variable table. Note that during register allocation the index becomes
the color that the LocalExpr (variable) is assigned.
See Also:Tree.newStackLocal See Also:Tree.newLocal(Type)
public LocalExpr(int index, boolean fromStack, Type type)(Code)
Constructor.
Parameters: index - Index into the local variable table for this expression. Parameters: fromStack - Is the local allocated on the stack? Parameters: type - The type of this expression
Constructor. LocalExpr is not allocated on the stack.
Parameters: index - Index into the local variable table for this expression. Parameters: type - The type of this expression.