Package alt.jiapi.reflect

Examples of alt.jiapi.reflect.BranchInstruction


             Instruction firstBeforeInstruction) {
  for (int idx = 0; idx < methodList.size(); idx++) {
      Instruction i = (Instruction)methodList.get(idx);

      if (i instanceof BranchInstruction) {
    BranchInstruction bi = (BranchInstruction)i;
    if (bi.getTarget() == firstHotSpotInstruction) {
        bi.setTarget(firstBeforeInstruction);
    }
      }
  }
    }
View Full Code Here

TOP

Related Classes of alt.jiapi.reflect.BranchInstruction

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.