Uses of Class
com.android.dx.rop.code.LocalItem

Packages that use LocalItem
com.android.dx.cf.code Implementation of classes having to do with Java simulation, such as is needed for verification or stack-to-register conversion. 
com.android.dx.rop.code Classes relating to a register-based opcode system. 
com.android.dx.ssa   
 

Uses of LocalItem in com.android.dx.cf.code
 

Methods in com.android.dx.cf.code that return LocalItem
 LocalItem LocalVariableList.Item.getLocalItem()
          Gets the variable's LocalItem, a (name, signature) tuple
 

Methods in com.android.dx.cf.code with parameters of type LocalItem
 void BaseMachine.localTarget(int idx, Type type, LocalItem local)
          Indicates that the target of this operation is the given local.
 void Machine.localTarget(int idx, Type type, LocalItem local)
          Indicates that the target of this operation is the given local.
 

Uses of LocalItem in com.android.dx.rop.code
 

Methods in com.android.dx.rop.code that return LocalItem
 LocalItem RegisterSpec.getLocalItem()
          Gets the variable info associated with this instance, if any.
static LocalItem LocalItem.make(CstString name, CstString signature)
          Make a new item.
 

Methods in com.android.dx.rop.code with parameters of type LocalItem
 int LocalItem.compareTo(LocalItem local)
          
 RegisterSpec RegisterSpecSet.localItemToSpec(LocalItem local)
          Returns the spec in this set that's currently associated with a given local (name and signature), or null if there is none.
static RegisterSpec RegisterSpec.make(int reg, TypeBearer type, LocalItem local)
          Returns an instance for the given register number, type, and variable info.
static RegisterSpec RegisterSpec.makeLocalOptional(int reg, TypeBearer type, LocalItem local)
          Returns an instance for the given register number, type, and variable info.
 RegisterSpec RegisterSpec.withLocalItem(LocalItem local)
          Returns an instance that is identical to this one except that the local variable is as specified in the parameter.
 

Uses of LocalItem in com.android.dx.ssa
 

Methods in com.android.dx.ssa with parameters of type LocalItem
 void PhiInsn.changeResultType(TypeBearer type, LocalItem local)
          Changes the result type.
 void SsaInsn.setResultLocal(LocalItem local)
          Sets the local association for the result of this insn.
 



Copyright © 2015. All rights reserved.