public abstract class sun.jvm.hotspot.runtime.RegisterMap implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.jvm.hotspot.runtime.RegisterMap
  super_class: java.lang.Object
{
  protected sun.jvm.hotspot.debugger.Address[] location;
    descriptor: [Lsun/jvm/hotspot/debugger/Address;
    flags: (0x0004) ACC_PROTECTED

  protected long[] locationValid;
    descriptor: [J
    flags: (0x0004) ACC_PROTECTED

  protected boolean includeArgumentOops;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected sun.jvm.hotspot.runtime.JavaThread thread;
    descriptor: Lsun/jvm/hotspot/runtime/JavaThread;
    flags: (0x0004) ACC_PROTECTED

  protected boolean updateMap;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected static int regCount;
    descriptor: I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC

  protected static int locationValidTypeSize;
    descriptor: I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC

  protected static int locationValidSize;
    descriptor: I
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC

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

  private static void initialize(sun.jvm.hotspot.types.TypeDataBase);
    descriptor: (Lsun/jvm/hotspot/types/TypeDataBase;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.types.TypeDataBase db
         0: .line 74
            aload 0 /* db */
            ldc "ConcreteRegisterImpl::number_of_registers"
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.lookupIntConstant:(Ljava/lang/String;)Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            putstatic sun.jvm.hotspot.runtime.RegisterMap.regCount:I
         1: .line 77
            aload 0 /* db */
            ldc "julong"
            invokeinterface sun.jvm.hotspot.types.TypeDataBase.lookupType:(Ljava/lang/String;)Lsun/jvm/hotspot/types/Type;
            invokeinterface sun.jvm.hotspot.types.Type.getSize:()J
            l2i
            bipush 8
            imul
            putstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
         2: .line 78
            getstatic sun.jvm.hotspot.runtime.RegisterMap.regCount:I
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            iadd
            iconst_1
            isub
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            idiv
            putstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidSize:I
         3: .line 79
            return
        end local 0 // sun.jvm.hotspot.types.TypeDataBase db
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0    db  Lsun/jvm/hotspot/types/TypeDataBase;
    MethodParameters:
      Name  Flags
      db    

  protected void <init>(sun.jvm.hotspot.runtime.JavaThread, boolean);
    descriptor: (Lsun/jvm/hotspot/runtime/JavaThread;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
        start local 1 // sun.jvm.hotspot.runtime.JavaThread thread
        start local 2 // boolean updateMap
         0: .line 81
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 82
            aload 0 /* this */
            aload 1 /* thread */
            putfield sun.jvm.hotspot.runtime.RegisterMap.thread:Lsun/jvm/hotspot/runtime/JavaThread;
         2: .line 83
            aload 0 /* this */
            iload 2 /* updateMap */
            putfield sun.jvm.hotspot.runtime.RegisterMap.updateMap:Z
         3: .line 84
            aload 0 /* this */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.regCount:I
            anewarray sun.jvm.hotspot.debugger.Address
            putfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
         4: .line 85
            aload 0 /* this */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidSize:I
            newarray 11
            putfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
         5: .line 86
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.clear:()V
         6: .line 87
            return
        end local 2 // boolean updateMap
        end local 1 // sun.jvm.hotspot.runtime.JavaThread thread
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lsun/jvm/hotspot/runtime/RegisterMap;
            0    7     1     thread  Lsun/jvm/hotspot/runtime/JavaThread;
            0    7     2  updateMap  Z
    MethodParameters:
           Name  Flags
      thread     
      updateMap  

  protected void <init>(sun.jvm.hotspot.runtime.RegisterMap);
    descriptor: (Lsun/jvm/hotspot/runtime/RegisterMap;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
        start local 1 // sun.jvm.hotspot.runtime.RegisterMap map
         0: .line 90
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 91
            getstatic sun.jvm.hotspot.utilities.Assert.ASSERTS_ENABLED:Z
            ifeq 5
         2: .line 92
            aload 1 /* map */
            ifnull 3
            iconst_1
            goto 4
      StackMap locals: sun.jvm.hotspot.runtime.RegisterMap sun.jvm.hotspot.runtime.RegisterMap
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: ldc "RegisterMap must be present"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
         5: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.getThread:()Lsun/jvm/hotspot/runtime/JavaThread;
            putfield sun.jvm.hotspot.runtime.RegisterMap.thread:Lsun/jvm/hotspot/runtime/JavaThread;
         6: .line 95
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.getUpdateMap:()Z
            putfield sun.jvm.hotspot.runtime.RegisterMap.updateMap:Z
         7: .line 96
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.getIncludeArgumentOops:()Z
            putfield sun.jvm.hotspot.runtime.RegisterMap.includeArgumentOops:Z
         8: .line 97
            aload 0 /* this */
            aload 1 /* map */
            getfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
            arraylength
            anewarray sun.jvm.hotspot.debugger.Address
            putfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
         9: .line 98
            aload 0 /* this */
            aload 1 /* map */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            arraylength
            newarray 11
            putfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
        10: .line 99
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.initializeFromPD:(Lsun/jvm/hotspot/runtime/RegisterMap;)V
        11: .line 100
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.updateMap:Z
            ifeq 31
        12: .line 101
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        13: goto 30
        14: .line 102
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.getUpdateMap:()Z
            ifne 15
            lconst_0
            goto 16
      StackMap locals:
      StackMap stack:
        15: aload 1 /* map */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            iload 2 /* i */
            laload
      StackMap locals:
      StackMap stack: long
        16: lstore 3 /* bits */
        start local 3 // long bits
        17: .line 103
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            iload 2 /* i */
            lload 3 /* bits */
            lastore
        18: .line 105
            iload 2 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            imul
            istore 5 /* j */
        start local 5 // int j
        19: .line 106
            goto 28
        20: .line 107
      StackMap locals: long int
      StackMap stack:
            lload 3 /* bits */
            lconst_1
            land
            lconst_0
            lcmp
            ifeq 26
        21: .line 108
            getstatic sun.jvm.hotspot.utilities.Assert.ASSERTS_ENABLED:Z
            ifeq 25
        22: .line 109
            iload 5 /* j */
            iflt 23
            iload 5 /* j */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.regCount:I
            if_icmpge 23
            iconst_1
            goto 24
      StackMap locals:
      StackMap stack:
        23: iconst_0
      StackMap locals:
      StackMap stack: int
        24: ldc "range check"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
        25: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
            iload 5 /* j */
            aload 1 /* map */
            getfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
            iload 5 /* j */
            aaload
            aastore
        26: .line 113
      StackMap locals:
      StackMap stack:
            lload 3 /* bits */
            iconst_1
            lushr
            lstore 3 /* bits */
        27: .line 114
            iinc 5 /* j */ 1
        28: .line 106
      StackMap locals:
      StackMap stack:
            lload 3 /* bits */
            lconst_0
            lcmp
            ifne 20
        end local 5 // int j
        end local 3 // long bits
        29: .line 101
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        30: iload 2 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidSize:I
            if_icmplt 14
        end local 2 // int i
        31: .line 118
      StackMap locals:
      StackMap stack:
            return
        end local 1 // sun.jvm.hotspot.runtime.RegisterMap map
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   32     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;
            0   32     1   map  Lsun/jvm/hotspot/runtime/RegisterMap;
           13   31     2     i  I
           17   29     3  bits  J
           19   29     5     j  I
    MethodParameters:
      Name  Flags
      map   

  public abstract java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public sun.jvm.hotspot.runtime.RegisterMap copy();
    descriptor: ()Lsun/jvm/hotspot/runtime/RegisterMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
         0: .line 123
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.clone:()Ljava/lang/Object;
            checkcast sun.jvm.hotspot.runtime.RegisterMap
            areturn
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
         0: .line 127
            aload 0 /* this */
            iconst_1
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.setIncludeArgumentOops:(Z)V
         1: .line 128
            invokestatic sun.jvm.hotspot.runtime.VM.getVM:()Lsun/jvm/hotspot/runtime/VM;
            invokevirtual sun.jvm.hotspot.runtime.VM.isCore:()Z
            ifne 11
         2: .line 129
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.updateMap:Z
            ifeq 10
         3: .line 130
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         4: goto 7
         5: .line 131
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            iload 1 /* i */
            lconst_0
            lastore
         6: .line 130
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 1 /* i */
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            arraylength
            if_icmplt 5
        end local 1 // int i
         8: .line 133
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.clearPD:()V
         9: .line 134
            goto 11
        10: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.initializePD:()V
        11: .line 138
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;
            4    8     1     i  I

  public sun.jvm.hotspot.debugger.Address getLocation(sun.jvm.hotspot.runtime.VMReg);
    descriptor: (Lsun/jvm/hotspot/runtime/VMReg;)Lsun/jvm/hotspot/debugger/Address;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
        start local 1 // sun.jvm.hotspot.runtime.VMReg reg
         0: .line 141
            aload 1 /* reg */
            invokevirtual sun.jvm.hotspot.runtime.VMReg.getValue:()I
            istore 2 /* i */
        start local 2 // int i
         1: .line 142
            iload 2 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            idiv
            istore 3 /* index */
        start local 3 // int index
         2: .line 143
            getstatic sun.jvm.hotspot.utilities.Assert.ASSERTS_ENABLED:Z
            ifeq 9
         3: .line 144
            iload 2 /* i */
            iflt 4
            iload 2 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.regCount:I
            if_icmpge 4
            iconst_1
            goto 5
      StackMap locals: int int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: ldc "sanity check"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
         6: .line 145
            iload 3 /* index */
            iflt 7
            iload 3 /* index */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidSize:I
            if_icmpge 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: ldc "sanity check"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
         9: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            iload 3 /* index */
            laload
            iconst_1
            iload 2 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            irem
            ishl
            i2l
            land
            lconst_0
            lcmp
            ifeq 11
        10: .line 148
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
            iload 2 /* i */
            aaload
            areturn
        11: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* reg */
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.getLocationPD:(Lsun/jvm/hotspot/runtime/VMReg;)Lsun/jvm/hotspot/debugger/Address;
            areturn
        end local 3 // int index
        end local 2 // int i
        end local 1 // sun.jvm.hotspot.runtime.VMReg reg
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lsun/jvm/hotspot/runtime/RegisterMap;
            0   12     1    reg  Lsun/jvm/hotspot/runtime/VMReg;
            1   12     2      i  I
            2   12     3  index  I
    MethodParameters:
      Name  Flags
      reg   

  public void setLocation(sun.jvm.hotspot.runtime.VMReg, sun.jvm.hotspot.debugger.Address);
    descriptor: (Lsun/jvm/hotspot/runtime/VMReg;Lsun/jvm/hotspot/debugger/Address;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
        start local 1 // sun.jvm.hotspot.runtime.VMReg reg
        start local 2 // sun.jvm.hotspot.debugger.Address loc
         0: .line 155
            aload 1 /* reg */
            invokevirtual sun.jvm.hotspot.runtime.VMReg.getValue:()I
            istore 3 /* i */
        start local 3 // int i
         1: .line 156
            iload 3 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            idiv
            istore 4 /* index */
        start local 4 // int index
         2: .line 157
            getstatic sun.jvm.hotspot.utilities.Assert.ASSERTS_ENABLED:Z
            ifeq 10
         3: .line 158
            iload 3 /* i */
            iflt 4
            iload 3 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.regCount:I
            if_icmpge 4
            iconst_1
            goto 5
      StackMap locals: int int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: ldc "sanity check"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
         6: .line 159
            iload 4 /* index */
            iflt 7
            iload 4 /* index */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidSize:I
            if_icmpge 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: ldc "sanity check"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
         9: .line 160
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.updateMap:Z
            ldc "updating map that does not need updating"
            invokestatic sun.jvm.hotspot.utilities.Assert.that:(ZLjava/lang/String;)V
        10: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
            iload 3 /* i */
            aload 2 /* loc */
            aastore
        11: .line 163
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.locationValid:[J
            iload 4 /* index */
            dup2
            laload
            iconst_1
            iload 3 /* i */
            getstatic sun.jvm.hotspot.runtime.RegisterMap.locationValidTypeSize:I
            irem
            ishl
            i2l
            lor
            lastore
        12: .line 164
            return
        end local 4 // int index
        end local 3 // int i
        end local 2 // sun.jvm.hotspot.debugger.Address loc
        end local 1 // sun.jvm.hotspot.runtime.VMReg reg
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lsun/jvm/hotspot/runtime/RegisterMap;
            0   13     1    reg  Lsun/jvm/hotspot/runtime/VMReg;
            0   13     2    loc  Lsun/jvm/hotspot/debugger/Address;
            1   13     3      i  I
            2   13     4  index  I
    MethodParameters:
      Name  Flags
      reg   
      loc   

  public boolean getIncludeArgumentOops();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
         0: .line 167
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.includeArgumentOops:Z
            ireturn
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;

  public void setIncludeArgumentOops(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
        start local 1 // boolean f
         0: .line 171
            aload 0 /* this */
            iload 1 /* f */
            putfield sun.jvm.hotspot.runtime.RegisterMap.includeArgumentOops:Z
         1: .line 172
            return
        end local 1 // boolean f
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;
            0    2     1     f  Z
    MethodParameters:
      Name  Flags
      f     

  public sun.jvm.hotspot.runtime.JavaThread getThread();
    descriptor: ()Lsun/jvm/hotspot/runtime/JavaThread;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
         0: .line 175
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.thread:Lsun/jvm/hotspot/runtime/JavaThread;
            areturn
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;

  public boolean getUpdateMap();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
         0: .line 179
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.updateMap:Z
            ireturn
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;

  public void print();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
         0: .line 183
            aload 0 /* this */
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.printOn:(Ljava/io/PrintStream;)V
         1: .line 184
            return
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;

  public void printOn(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.jvm.hotspot.runtime.RegisterMap this
        start local 1 // java.io.PrintStream tty
         0: .line 187
            aload 1 /* tty */
            ldc "Register map"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 188
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 13
         3: .line 189
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            new sun.jvm.hotspot.runtime.VMReg
            dup
            iload 2 /* i */
            invokespecial sun.jvm.hotspot.runtime.VMReg.<init>:(I)V
            invokevirtual sun.jvm.hotspot.runtime.RegisterMap.getLocation:(Lsun/jvm/hotspot/runtime/VMReg;)Lsun/jvm/hotspot/debugger/Address;
            astore 3 /* src */
        start local 3 // sun.jvm.hotspot.debugger.Address src
         4: .line 190
            aload 3 /* src */
            ifnull 12
         5: .line 191
            aload 1 /* tty */
            new java.lang.StringBuilder
            dup
            ldc "  "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* i */
            invokestatic sun.jvm.hotspot.code.VMRegImpl.getRegisterName:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 192
            ldc " ["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* src */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "] = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 191
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         8: .line 193
            aload 3 /* src */
            invokestatic sun.jvm.hotspot.runtime.VM.getVM:()Lsun/jvm/hotspot/runtime/VM;
            invokevirtual sun.jvm.hotspot.runtime.VM.getAddressSize:()J
            lconst_1
            lsub
            invokeinterface sun.jvm.hotspot.debugger.Address.andWithMask:(J)Lsun/jvm/hotspot/debugger/Address;
            ifnull 11
         9: .line 194
            aload 1 /* tty */
            ldc "<misaligned>"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        10: .line 195
            goto 12
        11: .line 196
      StackMap locals: sun.jvm.hotspot.debugger.Address
      StackMap stack:
            aload 1 /* tty */
            aload 3 /* src */
            lconst_0
            invokeinterface sun.jvm.hotspot.debugger.Address.getAddressAt:(J)Lsun/jvm/hotspot/debugger/Address;
            invokevirtual java.io.PrintStream.print:(Ljava/lang/Object;)V
        end local 3 // sun.jvm.hotspot.debugger.Address src
        12: .line 188
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 2 /* i */
            aload 0 /* this */
            getfield sun.jvm.hotspot.runtime.RegisterMap.location:[Lsun/jvm/hotspot/debugger/Address;
            arraylength
            if_icmplt 3
        end local 2 // int i
        14: .line 200
            return
        end local 1 // java.io.PrintStream tty
        end local 0 // sun.jvm.hotspot.runtime.RegisterMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lsun/jvm/hotspot/runtime/RegisterMap;
            0   15     1   tty  Ljava/io/PrintStream;
            2   14     2     i  I
            4   12     3   src  Lsun/jvm/hotspot/debugger/Address;
    MethodParameters:
      Name  Flags
      tty   

  protected abstract void clearPD();
    descriptor: ()V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected abstract void initializePD();
    descriptor: ()V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected abstract void initializeFromPD(sun.jvm.hotspot.runtime.RegisterMap);
    descriptor: (Lsun/jvm/hotspot/runtime/RegisterMap;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      map   

  protected abstract sun.jvm.hotspot.debugger.Address getLocationPD(sun.jvm.hotspot.runtime.VMReg);
    descriptor: (Lsun/jvm/hotspot/runtime/VMReg;)Lsun/jvm/hotspot/debugger/Address;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      reg   
}
SourceFile: "RegisterMap.java"
NestMembers:
  sun.jvm.hotspot.runtime.RegisterMap$1
InnerClasses:
  sun.jvm.hotspot.runtime.RegisterMap$1