Package com.android.dx.dex.code

Examples of com.android.dx.dex.code.HighRegisterPrefix


        }
      }
    }
    else if (instruction instanceof HighRegisterPrefix)
    {
      HighRegisterPrefix highRegisterPrefix= (HighRegisterPrefix) instruction;
      SimpleInsn[] moveInstructions= highRegisterPrefix.getMoveInstructions();
      for (SimpleInsn moveInstruction : moveInstructions)
      {
        // Recurse.
        processInstruction(moveInstruction, methodDeps);
      }
View Full Code Here


        dexInstruction.setAttribute("target", String.valueOf(targetInsn.getTargetAddress()));
      }
    }
    else if (instruction instanceof HighRegisterPrefix)
    {
      HighRegisterPrefix highRegisterPrefix= (HighRegisterPrefix) instruction;
      SimpleInsn[] moveInstructions= highRegisterPrefix.getMoveInstructions();
      for (SimpleInsn moveInstruction : moveInstructions)
      {
        processInstruction(moveInstruction, parentElement, switchDataBlocks, arrayData, sourceLinesAlreadyPut, referencedTypes);
      }
    }
View Full Code Here

TOP

Related Classes of com.android.dx.dex.code.HighRegisterPrefix

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.