Package gov.nasa.jpf.vm

Examples of gov.nasa.jpf.vm.MethodInfo


    ConverterBase.init();
  }

  public void executeInstruction (VM vm, ThreadInfo currentThread, Instruction instructionToExecute) {
    if(instructionToExecute instanceof EXECUTENATIVE) {
      MethodInfo mi = ((EXECUTENATIVE)instructionToExecute).getMethodInfo();
      if(mi.isNative() && (mi instanceof HandledMethodInfo)) {
        // --- any method handled by nhandler is caught here ---
      }
    }
  }
View Full Code Here

TOP

Related Classes of gov.nasa.jpf.vm.MethodInfo

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.