public class sun.jvm.hotspot.interpreter.Interpreter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.interpreter.Interpreter
  super_class: java.lang.Object
{
  private static sun.jvm.hotspot.types.AddressField codeField;
    descriptor: Lsun/jvm/hotspot/types/AddressField;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 39
            new sun.jvm.hotspot.interpreter.Interpreter$1
            dup
            invokespecial sun.jvm.hotspot.interpreter.Interpreter$1.<init>:()V
            invokestatic sun.jvm.hotspot.runtime.VM.registerVMInitializedObserver:(Lsun/jvm/hotspot/utilities/Observer;)V
         1: .line 44
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static synchronized void initialize(sun.jvm.hotspot.types.TypeDataBase);
    descriptor: (Lsun/jvm/hotspot/types/TypeDataBase;)V
    flags: (0x002a) ACC_PRIVATE, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.types.TypeDataBase db
         0: .line 47
            aload 0 /* db */
            ldc "AbstractInterpreter"
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.lookupType:(Ljava/lang/String;)Lsun/jvm/hotspot/types/Type;
            astore 1 /* type */
        start local 1 // sun.jvm.hotspot.types.Type type
         1: .line 49
            aload 1 /* type */
            ldc "_code"
            invokeinterface sun.jvm.hotspot.types.Type.getAddressField:(Ljava/lang/String;)Lsun/jvm/hotspot/types/AddressField;
            putstatic sun.jvm.hotspot.interpreter.Interpreter.codeField:Lsun/jvm/hotspot/types/AddressField;
         2: .line 50
            return
        end local 1 // sun.jvm.hotspot.types.Type type
        end local 0 // sun.jvm.hotspot.types.TypeDataBase db
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    db  Lsun/jvm/hotspot/types/TypeDataBase;
            1    3     1  type  Lsun/jvm/hotspot/types/Type;
    MethodParameters:
      Name  Flags
      db    

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.interpreter.Interpreter this
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            return
        end local 0 // sun.jvm.hotspot.interpreter.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/interpreter/Interpreter;

  public sun.jvm.hotspot.code.StubQueue getCode();
    descriptor: ()Lsun/jvm/hotspot/code/StubQueue;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.interpreter.Interpreter this
         0: .line 56
            getstatic sun.jvm.hotspot.interpreter.Interpreter.codeField:Lsun/jvm/hotspot/types/AddressField;
            invokeinterface sun.jvm.hotspot.types.AddressField.getValue:()Lsun/jvm/hotspot/debugger/Address;
            astore 1 /* code */
        start local 1 // sun.jvm.hotspot.debugger.Address code
         1: .line 57
            aload 1 /* code */
            ifnonnull 2
            aconst_null
            areturn
         2: .line 58
      StackMap locals: sun.jvm.hotspot.debugger.Address
      StackMap stack:
            new sun.jvm.hotspot.code.StubQueue
            dup
            aload 1 /* code */
            ldc Lsun/jvm/hotspot/interpreter/InterpreterCodelet;
            invokespecial sun.jvm.hotspot.code.StubQueue.<init>:(Lsun/jvm/hotspot/debugger/Address;Ljava/lang/Class;)V
            areturn
        end local 1 // sun.jvm.hotspot.debugger.Address code
        end local 0 // sun.jvm.hotspot.interpreter.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/interpreter/Interpreter;
            1    3     1  code  Lsun/jvm/hotspot/debugger/Address;

  public boolean contains(sun.jvm.hotspot.debugger.Address);
    descriptor: (Lsun/jvm/hotspot/debugger/Address;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.interpreter.Interpreter this
        start local 1 // sun.jvm.hotspot.debugger.Address pc
         0: .line 62
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.interpreter.Interpreter.getCode:()Lsun/jvm/hotspot/code/StubQueue;
            aload 1 /* pc */
            invokevirtual sun.jvm.hotspot.code.StubQueue.contains:(Lsun/jvm/hotspot/debugger/Address;)Z
            ireturn
        end local 1 // sun.jvm.hotspot.debugger.Address pc
        end local 0 // sun.jvm.hotspot.interpreter.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/interpreter/Interpreter;
            0    1     1    pc  Lsun/jvm/hotspot/debugger/Address;
    MethodParameters:
      Name  Flags
      pc    

  public sun.jvm.hotspot.interpreter.InterpreterCodelet getCodeletContaining(sun.jvm.hotspot.debugger.Address);
    descriptor: (Lsun/jvm/hotspot/debugger/Address;)Lsun/jvm/hotspot/interpreter/InterpreterCodelet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.interpreter.Interpreter this
        start local 1 // sun.jvm.hotspot.debugger.Address pc
         0: .line 67
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.interpreter.Interpreter.getCode:()Lsun/jvm/hotspot/code/StubQueue;
            aload 1 /* pc */
            invokevirtual sun.jvm.hotspot.code.StubQueue.getStubContaining:(Lsun/jvm/hotspot/debugger/Address;)Lsun/jvm/hotspot/code/Stub;
            checkcast sun.jvm.hotspot.interpreter.InterpreterCodelet
            areturn
        end local 1 // sun.jvm.hotspot.debugger.Address pc
        end local 0 // sun.jvm.hotspot.interpreter.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/interpreter/Interpreter;
            0    1     1    pc  Lsun/jvm/hotspot/debugger/Address;
    MethodParameters:
      Name  Flags
      pc    
}
SourceFile: "Interpreter.java"
NestMembers:
  sun.jvm.hotspot.interpreter.Interpreter$1
InnerClasses:
  sun.jvm.hotspot.interpreter.Interpreter$1