class sun.management.ThreadImpl implements com.sun.management.ThreadMXBean
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.management.ThreadImpl
  super_class: java.lang.Object
{
  private final sun.management.VMManagement jvm;
    descriptor: Lsun/management/VMManagement;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean contentionMonitoringEnabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean cpuTimeEnabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean allocatedMemoryEnabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.management.VMManagement);
    descriptor: (Lsun/management/VMManagement;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // sun.management.VMManagement vm
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            iconst_0
            putfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
         2: .line 54
            aload 0 /* this */
            aload 1 /* vm */
            putfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
         3: .line 55
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isThreadCpuTimeEnabled:()Z
            putfield sun.management.ThreadImpl.cpuTimeEnabled:Z
         4: .line 56
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isThreadAllocatedMemoryEnabled:()Z
            putfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
         5: .line 57
            return
        end local 1 // sun.management.VMManagement vm
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/management/ThreadImpl;
            0    6     1    vm  Lsun/management/VMManagement;
    MethodParameters:
      Name  Flags
      vm    

  public int getThreadCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 60
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.getLiveThreadCount:()I
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public int getPeakThreadCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 64
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.getPeakThreadCount:()I
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public long getTotalStartedThreadCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 68
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.getTotalThreadCount:()J
            lreturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public int getDaemonThreadCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 72
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.getDaemonThreadCount:()I
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public boolean isThreadContentionMonitoringSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 76
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isThreadContentionMonitoringSupported:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public synchronized boolean isThreadContentionMonitoringEnabled();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 80
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadContentionMonitoringSupported:()Z
            ifne 4
         1: .line 81
            new java.lang.UnsupportedOperationException
            dup
         2: .line 82
            ldc "Thread contention monitoring is not supported."
         3: .line 81
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/management/ThreadImpl;

  public boolean isThreadCpuTimeSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 88
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isOtherThreadCpuTimeSupported:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public boolean isCurrentThreadCpuTimeSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 92
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isCurrentThreadCpuTimeSupported:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public boolean isThreadAllocatedMemorySupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 96
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isThreadAllocatedMemorySupported:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public boolean isThreadCpuTimeEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 100
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 5
         1: .line 101
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 5
         2: .line 102
            new java.lang.UnsupportedOperationException
            dup
         3: .line 103
            ldc "Thread CPU time measurement is not supported"
         4: .line 102
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.management.ThreadImpl.cpuTimeEnabled:Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/management/ThreadImpl;

  public boolean isThreadAllocatedMemoryEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 109
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemorySupported:()Z
            ifne 4
         1: .line 110
            new java.lang.UnsupportedOperationException
            dup
         2: .line 111
            ldc "Thread allocated memory measurement is not supported"
         3: .line 110
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/management/ThreadImpl;

  public long[] getAllThreadIds();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 117
            invokestatic sun.management.Util.checkMonitorAccess:()V
         1: .line 119
            invokestatic sun.management.ThreadImpl.getThreads:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         2: .line 120
            aload 1 /* threads */
            arraylength
            istore 2 /* length */
        start local 2 // int length
         3: .line 121
            iload 2 /* length */
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         4: .line 122
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 9
         6: .line 123
      StackMap locals: sun.management.ThreadImpl java.lang.Thread[] int long[] int
      StackMap stack:
            aload 1 /* threads */
            iload 4 /* i */
            aaload
            astore 5 /* t */
        start local 5 // java.lang.Thread t
         7: .line 124
            aload 3 /* ids */
            iload 4 /* i */
            aload 5 /* t */
            invokevirtual java.lang.Thread.getId:()J
            lastore
        end local 5 // java.lang.Thread t
         8: .line 122
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            iload 2 /* length */
            if_icmplt 6
        end local 4 // int i
        10: .line 126
            aload 3 /* ids */
            areturn
        end local 3 // long[] ids
        end local 2 // int length
        end local 1 // java.lang.Thread[] threads
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lsun/management/ThreadImpl;
            2   11     1  threads  [Ljava/lang/Thread;
            3   11     2   length  I
            4   11     3      ids  [J
            5   10     4        i  I
            7    8     5        t  Ljava/lang/Thread;

  public java.lang.management.ThreadInfo getThreadInfo(long);
    descriptor: (J)Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
         0: .line 130
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 131
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 132
            aload 0 /* this */
            aload 3 /* ids */
            iconst_0
            invokevirtual sun.management.ThreadImpl.getThreadInfo:([JI)[Ljava/lang/management/ThreadInfo;
            astore 4 /* infos */
        start local 4 // java.lang.management.ThreadInfo[] infos
         3: .line 133
            aload 4 /* infos */
            iconst_0
            aaload
            areturn
        end local 4 // java.lang.management.ThreadInfo[] infos
        end local 3 // long[] ids
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/management/ThreadImpl;
            0    4     1     id  J
            1    4     3    ids  [J
            3    4     4  infos  [Ljava/lang/management/ThreadInfo;
    MethodParameters:
      Name  Flags
      id    

  public java.lang.management.ThreadInfo getThreadInfo(long, int);
    descriptor: (JI)Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
        start local 3 // int maxDepth
         0: .line 137
            iconst_1
            newarray 11
            astore 4 /* ids */
        start local 4 // long[] ids
         1: .line 138
            aload 4 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 139
            aload 0 /* this */
            aload 4 /* ids */
            iload 3 /* maxDepth */
            invokevirtual sun.management.ThreadImpl.getThreadInfo:([JI)[Ljava/lang/management/ThreadInfo;
            astore 5 /* infos */
        start local 5 // java.lang.management.ThreadInfo[] infos
         3: .line 140
            aload 5 /* infos */
            iconst_0
            aaload
            areturn
        end local 5 // java.lang.management.ThreadInfo[] infos
        end local 4 // long[] ids
        end local 3 // int maxDepth
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/management/ThreadImpl;
            0    4     1        id  J
            0    4     3  maxDepth  I
            1    4     4       ids  [J
            3    4     5     infos  [Ljava/lang/management/ThreadInfo;
    MethodParameters:
          Name  Flags
      id        
      maxDepth  

  public java.lang.management.ThreadInfo[] getThreadInfo(long[]);
    descriptor: ([J)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 144
            aload 0 /* this */
            aload 1 /* ids */
            iconst_0
            invokevirtual sun.management.ThreadImpl.getThreadInfo:([JI)[Ljava/lang/management/ThreadInfo;
            areturn
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;
            0    1     1   ids  [J
    MethodParameters:
      Name  Flags
      ids   

  private void verifyThreadIds(long[]);
    descriptor: ([J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 148
            aload 1 /* ids */
            ifnonnull 2
         1: .line 149
            new java.lang.NullPointerException
            dup
            ldc "Null ids parameter."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 152
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 9
         4: .line 153
      StackMap locals: int
      StackMap stack:
            aload 1 /* ids */
            iload 2 /* i */
            laload
            lconst_0
            lcmp
            ifgt 8
         5: .line 154
            new java.lang.IllegalArgumentException
            dup
         6: .line 155
            new java.lang.StringBuilder
            dup
            ldc "Invalid thread ID parameter: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* ids */
            iload 2 /* i */
            laload
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 154
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 152
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 1 /* ids */
            arraylength
            if_icmplt 4
        end local 2 // int i
        10: .line 158
            return
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/management/ThreadImpl;
            0   11     1   ids  [J
            3   10     2     i  I
    MethodParameters:
      Name  Flags
      ids   

  public java.lang.management.ThreadInfo[] getThreadInfo(long[], int);
    descriptor: ([JI)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
        start local 2 // int maxDepth
         0: .line 161
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 163
            iload 2 /* maxDepth */
            ifge 5
         2: .line 164
            new java.lang.IllegalArgumentException
            dup
         3: .line 165
            new java.lang.StringBuilder
            dup
            ldc "Invalid maxDepth parameter: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* maxDepth */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 164
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 168
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         6: .line 170
            aload 1 /* ids */
            arraylength
            anewarray java.lang.management.ThreadInfo
            astore 3 /* infos */
        start local 3 // java.lang.management.ThreadInfo[] infos
         7: .line 171
            iload 2 /* maxDepth */
            ldc 2147483647
            if_icmpne 10
         8: .line 172
            aload 1 /* ids */
            iconst_m1
            aload 3 /* infos */
            invokestatic sun.management.ThreadImpl.getThreadInfo1:([JI[Ljava/lang/management/ThreadInfo;)V
         9: .line 173
            goto 11
        10: .line 174
      StackMap locals: java.lang.management.ThreadInfo[]
      StackMap stack:
            aload 1 /* ids */
            iload 2 /* maxDepth */
            aload 3 /* infos */
            invokestatic sun.management.ThreadImpl.getThreadInfo1:([JI[Ljava/lang/management/ThreadInfo;)V
        11: .line 176
      StackMap locals:
      StackMap stack:
            aload 3 /* infos */
            areturn
        end local 3 // java.lang.management.ThreadInfo[] infos
        end local 2 // int maxDepth
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lsun/management/ThreadImpl;
            0   12     1       ids  [J
            0   12     2  maxDepth  I
            7   12     3     infos  [Ljava/lang/management/ThreadInfo;
    MethodParameters:
          Name  Flags
      ids       
      maxDepth  

  public void setThreadContentionMonitoringEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean enable
         0: .line 180
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadContentionMonitoringSupported:()Z
            ifne 4
         1: .line 181
            new java.lang.UnsupportedOperationException
            dup
         2: .line 182
            ldc "Thread contention monitoring is not supported"
         3: .line 181
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 185
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         5: .line 187
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         6: .line 188
            aload 0 /* this */
            getfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
            iload 1 /* enable */
            if_icmpeq 11
         7: .line 189
            iload 1 /* enable */
            ifeq 9
         8: .line 192
            lconst_0
            invokestatic sun.management.ThreadImpl.resetContentionTimes0:(J)V
         9: .line 196
      StackMap locals: sun.management.ThreadImpl
      StackMap stack:
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadContentionMonitoringEnabled0:(Z)V
        10: .line 198
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
        11: .line 187
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 201
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean enable
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lsun/management/ThreadImpl;
            0   16     1  enable  Z
      Exception table:
        from    to  target  type
           6    12      13  any
          13    14      13  any
    MethodParameters:
        Name  Flags
      enable  

  private boolean verifyCurrentThreadCpuTime();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 205
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 4
         1: .line 206
            new java.lang.UnsupportedOperationException
            dup
         2: .line 207
            ldc "Current thread CPU time measurement is not supported."
         3: .line 206
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeEnabled:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/management/ThreadImpl;

  public long getCurrentThreadCpuTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 213
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.verifyCurrentThreadCpuTime:()Z
            ifeq 2
         1: .line 214
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime0:(J)J
            lreturn
         2: .line 216
      StackMap locals:
      StackMap stack:
            ldc -1
            lreturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/management/ThreadImpl;

  public long getThreadCpuTime(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
         0: .line 220
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 221
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 222
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadCpuTime:([J)[J
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 223
            aload 4 /* times */
            iconst_0
            laload
            lreturn
        end local 4 // long[] times
        end local 3 // long[] ids
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/management/ThreadImpl;
            0    4     1     id  J
            1    4     3    ids  [J
            3    4     4  times  [J
    MethodParameters:
      Name  Flags
      id    

  private boolean verifyThreadCpuTime(long[]);
    descriptor: ([J)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 227
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 230
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 6
         2: .line 231
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 6
         3: .line 232
            new java.lang.UnsupportedOperationException
            dup
         4: .line 233
            ldc "Thread CPU time measurement is not supported."
         5: .line 232
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 15
         7: .line 238
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         8: goto 14
         9: .line 239
      StackMap locals: int
      StackMap stack:
            aload 1 /* ids */
            iload 2 /* i */
            laload
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifeq 13
        10: .line 240
            new java.lang.UnsupportedOperationException
            dup
        11: .line 241
            ldc "Thread CPU time measurement is only supported for the current thread."
        12: .line 240
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 238
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 1 /* ids */
            arraylength
            if_icmplt 9
        end local 2 // int i
        15: .line 247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeEnabled:()Z
            ireturn
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lsun/management/ThreadImpl;
            0   16     1   ids  [J
            8   15     2     i  I
    MethodParameters:
      Name  Flags
      ids   

  public long[] getThreadCpuTime(long[]);
    descriptor: ([J)[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 251
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadCpuTime:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 253
            aload 1 /* ids */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 254
            iload 3 /* length */
            newarray 11
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 255
            aload 4 /* times */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 257
            iload 2 /* verified */
            ifeq 12
         5: .line 258
            iload 3 /* length */
            iconst_1
            if_icmpne 11
         6: .line 259
            aload 1 /* ids */
            iconst_0
            laload
            lstore 5 /* id */
        start local 5 // long id
         7: .line 260
            lload 5 /* id */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifne 9
         8: .line 261
            lconst_0
            lstore 5 /* id */
         9: .line 263
      StackMap locals: sun.management.ThreadImpl long[] int int long[] long
      StackMap stack:
            aload 4 /* times */
            iconst_0
            lload 5 /* id */
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime0:(J)J
            lastore
        end local 5 // long id
        10: .line 264
            goto 12
        11: .line 265
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            aload 4 /* times */
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime1:([J[J)V
        12: .line 268
      StackMap locals:
      StackMap stack:
            aload 4 /* times */
            areturn
        end local 4 // long[] times
        end local 3 // int length
        end local 2 // boolean verified
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lsun/management/ThreadImpl;
            0   13     1       ids  [J
            1   13     2  verified  Z
            2   13     3    length  I
            3   13     4     times  [J
            7   10     5        id  J
    MethodParameters:
      Name  Flags
      ids   

  public long getCurrentThreadUserTime();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 272
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.verifyCurrentThreadCpuTime:()Z
            ifeq 2
         1: .line 273
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime0:(J)J
            lreturn
         2: .line 275
      StackMap locals:
      StackMap stack:
            ldc -1
            lreturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/management/ThreadImpl;

  public long getThreadUserTime(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
         0: .line 279
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 280
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 281
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadUserTime:([J)[J
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 282
            aload 4 /* times */
            iconst_0
            laload
            lreturn
        end local 4 // long[] times
        end local 3 // long[] ids
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/management/ThreadImpl;
            0    4     1     id  J
            1    4     3    ids  [J
            3    4     4  times  [J
    MethodParameters:
      Name  Flags
      id    

  public long[] getThreadUserTime(long[]);
    descriptor: ([J)[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 286
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadCpuTime:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 288
            aload 1 /* ids */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 289
            iload 3 /* length */
            newarray 11
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 290
            aload 4 /* times */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 292
            iload 2 /* verified */
            ifeq 12
         5: .line 293
            iload 3 /* length */
            iconst_1
            if_icmpne 11
         6: .line 294
            aload 1 /* ids */
            iconst_0
            laload
            lstore 5 /* id */
        start local 5 // long id
         7: .line 295
            lload 5 /* id */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifne 9
         8: .line 296
            lconst_0
            lstore 5 /* id */
         9: .line 298
      StackMap locals: sun.management.ThreadImpl long[] int int long[] long
      StackMap stack:
            aload 4 /* times */
            iconst_0
            lload 5 /* id */
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime0:(J)J
            lastore
        end local 5 // long id
        10: .line 299
            goto 12
        11: .line 300
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            aload 4 /* times */
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime1:([J[J)V
        12: .line 303
      StackMap locals:
      StackMap stack:
            aload 4 /* times */
            areturn
        end local 4 // long[] times
        end local 3 // int length
        end local 2 // boolean verified
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lsun/management/ThreadImpl;
            0   13     1       ids  [J
            1   13     2  verified  Z
            2   13     3    length  I
            3   13     4     times  [J
            7   10     5        id  J
    MethodParameters:
      Name  Flags
      ids   

  public void setThreadCpuTimeEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean enable
         0: .line 307
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 5
         1: .line 308
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 5
         2: .line 309
            new java.lang.UnsupportedOperationException
            dup
         3: .line 310
            ldc "Thread CPU time measurement is not supported"
         4: .line 309
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 313
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         6: .line 314
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         7: .line 315
            aload 0 /* this */
            getfield sun.management.ThreadImpl.cpuTimeEnabled:Z
            iload 1 /* enable */
            if_icmpeq 10
         8: .line 317
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadCpuTimeEnabled0:(Z)V
         9: .line 318
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.cpuTimeEnabled:Z
        10: .line 314
      StackMap locals: sun.management.ThreadImpl
      StackMap stack:
            aload 2
            monitorexit
        11: goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: aload 2
            monitorexit
        13: athrow
        14: .line 321
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean enable
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lsun/management/ThreadImpl;
            0   15     1  enable  Z
      Exception table:
        from    to  target  type
           7    11      12  any
          12    13      12  any
    MethodParameters:
        Name  Flags
      enable  

  public long getThreadAllocatedBytes(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
         0: .line 324
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 325
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 326
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadAllocatedBytes:([J)[J
            astore 4 /* sizes */
        start local 4 // long[] sizes
         3: .line 327
            aload 4 /* sizes */
            iconst_0
            laload
            lreturn
        end local 4 // long[] sizes
        end local 3 // long[] ids
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/management/ThreadImpl;
            0    4     1     id  J
            1    4     3    ids  [J
            3    4     4  sizes  [J
    MethodParameters:
      Name  Flags
      id    

  private boolean verifyThreadAllocatedMemory(long[]);
    descriptor: ([J)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 331
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 334
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemorySupported:()Z
            ifne 5
         2: .line 335
            new java.lang.UnsupportedOperationException
            dup
         3: .line 336
            ldc "Thread allocated memory measurement is not supported."
         4: .line 335
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemoryEnabled:()Z
            ireturn
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/management/ThreadImpl;
            0    6     1   ids  [J
    MethodParameters:
      Name  Flags
      ids   

  public long[] getThreadAllocatedBytes(long[]);
    descriptor: ([J)[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 343
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadAllocatedMemory:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 345
            aload 1 /* ids */
            arraylength
            newarray 11
            astore 3 /* sizes */
        start local 3 // long[] sizes
         2: .line 346
            aload 3 /* sizes */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         3: .line 348
            iload 2 /* verified */
            ifeq 5
         4: .line 349
            aload 1 /* ids */
            aload 3 /* sizes */
            invokestatic sun.management.ThreadImpl.getThreadAllocatedMemory1:([J[J)V
         5: .line 351
      StackMap locals: int long[]
      StackMap stack:
            aload 3 /* sizes */
            areturn
        end local 3 // long[] sizes
        end local 2 // boolean verified
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lsun/management/ThreadImpl;
            0    6     1       ids  [J
            1    6     2  verified  Z
            2    6     3     sizes  [J
    MethodParameters:
      Name  Flags
      ids   

  public void setThreadAllocatedMemoryEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean enable
         0: .line 355
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemorySupported:()Z
            ifne 4
         1: .line 356
            new java.lang.UnsupportedOperationException
            dup
         2: .line 357
            ldc "Thread allocated memory measurement is not supported."
         3: .line 356
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 360
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         5: .line 361
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         6: .line 362
            aload 0 /* this */
            getfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
            iload 1 /* enable */
            if_icmpeq 9
         7: .line 364
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadAllocatedMemoryEnabled0:(Z)V
         8: .line 365
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
         9: .line 361
      StackMap locals: sun.management.ThreadImpl
      StackMap stack:
            aload 2
            monitorexit
        10: goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 2
            monitorexit
        12: athrow
        13: .line 368
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean enable
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lsun/management/ThreadImpl;
            0   14     1  enable  Z
      Exception table:
        from    to  target  type
           6    10      11  any
          11    12      11  any
    MethodParameters:
        Name  Flags
      enable  

  public long[] findMonitorDeadlockedThreads();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 371
            invokestatic sun.management.Util.checkMonitorAccess:()V
         1: .line 373
            invokestatic sun.management.ThreadImpl.findMonitorDeadlockedThreads0:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         2: .line 374
            aload 1 /* threads */
            ifnonnull 4
         3: .line 375
            aconst_null
            areturn
         4: .line 378
      StackMap locals: java.lang.Thread[]
      StackMap stack:
            aload 1 /* threads */
            arraylength
            newarray 11
            astore 2 /* ids */
        start local 2 // long[] ids
         5: .line 379
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 380
      StackMap locals: long[] int
      StackMap stack:
            aload 1 /* threads */
            iload 3 /* i */
            aaload
            astore 4 /* t */
        start local 4 // java.lang.Thread t
         8: .line 381
            aload 2 /* ids */
            iload 3 /* i */
            aload 4 /* t */
            invokevirtual java.lang.Thread.getId:()J
            lastore
        end local 4 // java.lang.Thread t
         9: .line 379
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 1 /* threads */
            arraylength
            if_icmplt 7
        end local 3 // int i
        11: .line 383
            aload 2 /* ids */
            areturn
        end local 2 // long[] ids
        end local 1 // java.lang.Thread[] threads
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lsun/management/ThreadImpl;
            2   12     1  threads  [Ljava/lang/Thread;
            5   12     2      ids  [J
            6   11     3        i  I
            8    9     4        t  Ljava/lang/Thread;

  public long[] findDeadlockedThreads();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 387
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isSynchronizerUsageSupported:()Z
            ifne 4
         1: .line 388
            new java.lang.UnsupportedOperationException
            dup
         2: .line 389
            ldc "Monitoring of Synchronizer Usage is not supported."
         3: .line 388
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 392
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         5: .line 394
            invokestatic sun.management.ThreadImpl.findDeadlockedThreads0:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         6: .line 395
            aload 1 /* threads */
            ifnonnull 8
         7: .line 396
            aconst_null
            areturn
         8: .line 399
      StackMap locals: java.lang.Thread[]
      StackMap stack:
            aload 1 /* threads */
            arraylength
            newarray 11
            astore 2 /* ids */
        start local 2 // long[] ids
         9: .line 400
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 14
        11: .line 401
      StackMap locals: long[] int
      StackMap stack:
            aload 1 /* threads */
            iload 3 /* i */
            aaload
            astore 4 /* t */
        start local 4 // java.lang.Thread t
        12: .line 402
            aload 2 /* ids */
            iload 3 /* i */
            aload 4 /* t */
            invokevirtual java.lang.Thread.getId:()J
            lastore
        end local 4 // java.lang.Thread t
        13: .line 400
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 3 /* i */
            aload 1 /* threads */
            arraylength
            if_icmplt 11
        end local 3 // int i
        15: .line 404
            aload 2 /* ids */
            areturn
        end local 2 // long[] ids
        end local 1 // java.lang.Thread[] threads
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lsun/management/ThreadImpl;
            6   16     1  threads  [Ljava/lang/Thread;
            9   16     2      ids  [J
           10   15     3        i  I
           12   13     4        t  Ljava/lang/Thread;

  public void resetPeakThreadCount();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 408
            invokestatic sun.management.Util.checkControlAccess:()V
         1: .line 409
            invokestatic sun.management.ThreadImpl.resetPeakThreadCount0:()V
         2: .line 410
            return
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/management/ThreadImpl;

  public boolean isObjectMonitorUsageSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 413
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isObjectMonitorUsageSupported:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  public boolean isSynchronizerUsageSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 417
            aload 0 /* this */
            getfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
            invokeinterface sun.management.VMManagement.isSynchronizerUsageSupported:()Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;

  private void verifyDumpThreads(boolean, boolean);
    descriptor: (ZZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean lockedMonitors
        start local 2 // boolean lockedSynchronizers
         0: .line 422
            iload 1 /* lockedMonitors */
            ifeq 4
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isObjectMonitorUsageSupported:()Z
            ifne 4
         1: .line 423
            new java.lang.UnsupportedOperationException
            dup
         2: .line 424
            ldc "Monitoring of Object Monitor Usage is not supported."
         3: .line 423
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 427
      StackMap locals:
      StackMap stack:
            iload 2 /* lockedSynchronizers */
            ifeq 8
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isSynchronizerUsageSupported:()Z
            ifne 8
         5: .line 428
            new java.lang.UnsupportedOperationException
            dup
         6: .line 429
            ldc "Monitoring of Synchronizer Usage is not supported."
         7: .line 428
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 432
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         9: .line 433
            return
        end local 2 // boolean lockedSynchronizers
        end local 1 // boolean lockedMonitors
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   10     0                 this  Lsun/management/ThreadImpl;
            0   10     1       lockedMonitors  Z
            0   10     2  lockedSynchronizers  Z
    MethodParameters:
                     Name  Flags
      lockedMonitors       
      lockedSynchronizers  

  public java.lang.management.ThreadInfo[] getThreadInfo(long[], boolean, boolean);
    descriptor: ([JZZ)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
        start local 2 // boolean lockedMonitors
        start local 3 // boolean lockedSynchronizers
         0: .line 438
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 439
            aload 0 /* this */
            iload 2 /* lockedMonitors */
            iload 3 /* lockedSynchronizers */
            invokevirtual sun.management.ThreadImpl.verifyDumpThreads:(ZZ)V
         2: .line 440
            aload 1 /* ids */
            iload 2 /* lockedMonitors */
            iload 3 /* lockedSynchronizers */
            invokestatic sun.management.ThreadImpl.dumpThreads0:([JZZ)[Ljava/lang/management/ThreadInfo;
            areturn
        end local 3 // boolean lockedSynchronizers
        end local 2 // boolean lockedMonitors
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    3     0                 this  Lsun/management/ThreadImpl;
            0    3     1                  ids  [J
            0    3     2       lockedMonitors  Z
            0    3     3  lockedSynchronizers  Z
    MethodParameters:
                     Name  Flags
      ids                  
      lockedMonitors       
      lockedSynchronizers  

  public java.lang.management.ThreadInfo[] dumpAllThreads(boolean, boolean);
    descriptor: (ZZ)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean lockedMonitors
        start local 2 // boolean lockedSynchronizers
         0: .line 445
            aload 0 /* this */
            iload 1 /* lockedMonitors */
            iload 2 /* lockedSynchronizers */
            invokevirtual sun.management.ThreadImpl.verifyDumpThreads:(ZZ)V
         1: .line 446
            aconst_null
            iload 1 /* lockedMonitors */
            iload 2 /* lockedSynchronizers */
            invokestatic sun.management.ThreadImpl.dumpThreads0:([JZZ)[Ljava/lang/management/ThreadInfo;
            areturn
        end local 2 // boolean lockedSynchronizers
        end local 1 // boolean lockedMonitors
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lsun/management/ThreadImpl;
            0    2     1       lockedMonitors  Z
            0    2     2  lockedSynchronizers  Z
    MethodParameters:
                     Name  Flags
      lockedMonitors       
      lockedSynchronizers  

  private static native java.lang.Thread[] getThreads();
    descriptor: ()[Ljava/lang/Thread;
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  private static native void getThreadInfo1(long[], int, java.lang.management.ThreadInfo[]);
    descriptor: ([JI[Ljava/lang/management/ThreadInfo;)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
          Name  Flags
      ids       
      maxDepth  
      result    

  private static native long getThreadTotalCpuTime0(long);
    descriptor: (J)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      id    

  private static native void getThreadTotalCpuTime1(long[], long[]);
    descriptor: ([J[J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      ids     
      result  

  private static native long getThreadUserCpuTime0(long);
    descriptor: (J)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      id    

  private static native void getThreadUserCpuTime1(long[], long[]);
    descriptor: ([J[J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      ids     
      result  

  private static native void getThreadAllocatedMemory1(long[], long[]);
    descriptor: ([J[J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      ids     
      result  

  private static native void setThreadCpuTimeEnabled0(boolean);
    descriptor: (Z)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      enable  

  private static native void setThreadAllocatedMemoryEnabled0(boolean);
    descriptor: (Z)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      enable  

  private static native void setThreadContentionMonitoringEnabled0(boolean);
    descriptor: (Z)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      enable  

  private static native java.lang.Thread[] findMonitorDeadlockedThreads0();
    descriptor: ()[Ljava/lang/Thread;
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  private static native java.lang.Thread[] findDeadlockedThreads0();
    descriptor: ()[Ljava/lang/Thread;
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  private static native void resetPeakThreadCount0();
    descriptor: ()V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  private static native java.lang.management.ThreadInfo[] dumpThreads0(long[], boolean, boolean);
    descriptor: ([JZZ)[Ljava/lang/management/ThreadInfo;
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
                     Name  Flags
      ids                  
      lockedMonitors       
      lockedSynchronizers  

  private static native void resetContentionTimes0(long);
    descriptor: (J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      tid   

  public javax.management.ObjectName getObjectName();
    descriptor: ()Ljavax/management/ObjectName;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 473
            ldc "java.lang:type=Threading"
            invokestatic sun.management.Util.newObjectName:(Ljava/lang/String;)Ljavax/management/ObjectName;
            areturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/ThreadImpl;
}
SourceFile: "ThreadImpl.java"