Package com.android.dx.dex.code

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


      // Ignore here because we already processed these and they were
      // given to this method as an argument.
    }
    else if (instruction instanceof SimpleInsn)
    {
      SimpleInsn simpleInsn= (SimpleInsn) instruction;
      String instructionName= simpleInsn.getOpcode().getName();

      // If this is a move-result instruction, we don't add it
      // explicitly, but instead add the result register to the previous
      // invoke instruction's return.
      if (instructionName.startsWith("move-result"))
      {
        // Sanity Check
        if (simpleInsn.getRegisters().size() != 1)
        {
          Log.error(TAG, "DEXmlvmOutputProcess: Register Size doesn't fit 'move-result'.");
          System.exit(-1);
        }
        Element moveInstruction= new Element("move-result", NS_DEX);
View Full Code Here

TOP

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

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.