Package vm

Examples of vm.VMMethodInfo


      case opc_invokevirtual_fast:
      case opc_invokespecial_fast:
      case opc_invokestatic_fast: {
    int index = method.getUnsignedShort(pc + 1);
    MethodConstant mc = (MethodConstant) cp[index];
    VMMethodInfo targetMethod = mc.find().vmMethodInfo;
    rewrite = MethodCallInline(pc, (EVMMethodInfo)targetMethod);
    if (rewrite != null) {
        isRewritten = true;
        System.arraycopy(rewrite, 0, code, pc, 3);
    }
View Full Code Here

TOP

Related Classes of vm.VMMethodInfo

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.