Package org.adoptopenjdk.jitwatch.ui.triview.bytecode

Examples of org.adoptopenjdk.jitwatch.ui.triview.bytecode.BytecodeLabel


    if (metaClass != null)
    {
      ClassBC classBytecode = metaClass.getClassBytecode(config.getClassLocations());

      BytecodeLabel bcLabel = (BytecodeLabel) viewerBytecode.getLabelAtIndex(index);

      if (bcLabel != null)
      {
        BytecodeInstruction instruction = bcLabel.getInstruction();

        int bytecodeOffset = instruction.getOffset();

        int sourceHighlight = -1;
        int assemblyHighlight = viewerAssembly.getIndexForBytecodeOffset(metaClass.getFullyQualifiedName(), bytecodeOffset);
View Full Code Here

TOP

Related Classes of org.adoptopenjdk.jitwatch.ui.triview.bytecode.BytecodeLabel

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.