public class sun.management.ThreadImpl implements java.lang.management.ThreadMXBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, 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

  protected void <init>(sun.management.VMManagement);
    descriptor: (Lsun/management/VMManagement;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // sun.management.VMManagement vm
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            iconst_0
            putfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
         2: .line 53
            aload 0 /* this */
            aload 1 /* vm */
            putfield sun.management.ThreadImpl.jvm:Lsun/management/VMManagement;
         3: .line 54
            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 55
            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 56
            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 65
            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 70
            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 75
            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 80
            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 85
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadContentionMonitoringSupported:()Z
            ifne 4
         1: .line 86
            new java.lang.UnsupportedOperationException
            dup
         2: .line 87
            ldc "Thread contention monitoring is not supported."
         3: .line 86
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 89
      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 94
            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 99
            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;

  protected boolean isThreadAllocatedMemorySupported();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 103
            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 108
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 5
         1: .line 109
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 5
         2: .line 110
            new java.lang.UnsupportedOperationException
            dup
         3: .line 111
            ldc "Thread CPU time measurement is not supported"
         4: .line 110
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 113
      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;

  private void ensureThreadAllocatedMemorySupported();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 117
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemorySupported:()Z
            ifne 4
         1: .line 118
            new java.lang.UnsupportedOperationException
            dup
         2: .line 119
            ldc "Thread allocated memory measurement is not supported."
         3: .line 118
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 121
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/management/ThreadImpl;

  protected boolean isThreadAllocatedMemoryEnabled();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 124
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.ensureThreadAllocatedMemorySupported:()V
         1: .line 125
            aload 0 /* this */
            getfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
            ireturn
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     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 130
            invokestatic sun.management.Util.checkMonitorAccess:()V
         1: .line 132
            invokestatic sun.management.ThreadImpl.getThreads:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         2: .line 133
            aload 1 /* threads */
            arraylength
            istore 2 /* length */
        start local 2 // int length
         3: .line 134
            iload 2 /* length */
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         4: .line 135
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 9
         6: .line 136
      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 137
            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 135
            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 139
            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 144
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 145
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 146
            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 147
            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 152
            iconst_1
            newarray 11
            astore 4 /* ids */
        start local 4 // long[] ids
         1: .line 153
            aload 4 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 154
            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 155
            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 160
            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 verifyThreadId(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 id
         0: .line 164
            lload 1 /* id */
            lconst_0
            lcmp
            ifgt 4
         1: .line 165
            new java.lang.IllegalArgumentException
            dup
         2: .line 166
            new java.lang.StringBuilder
            dup
            ldc "Invalid thread ID parameter: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 1 /* id */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 165
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 168
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/management/ThreadImpl;
            0    5     1    id  J
    MethodParameters:
      Name  Flags
      id    

  private void verifyThreadIds(long[]);
    descriptor: ([J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 171
            aload 1 /* ids */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 173
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 174
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ids */
            iload 2 /* i */
            laload
            invokevirtual sun.management.ThreadImpl.verifyThreadId:(J)V
         4: .line 173
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* ids */
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 176
            return
        end local 1 // long[] ids
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/management/ThreadImpl;
            0    7     1   ids  [J
            2    6     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 180
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 182
            iload 2 /* maxDepth */
            ifge 5
         2: .line 183
            new java.lang.IllegalArgumentException
            dup
         3: .line 184
            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 183
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 189
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            arraylength
            ifne 6
            iconst_0
            anewarray java.lang.management.ThreadInfo
            areturn
         6: .line 191
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         7: .line 193
            aload 1 /* ids */
            arraylength
            anewarray java.lang.management.ThreadInfo
            astore 3 /* infos */
        start local 3 // java.lang.management.ThreadInfo[] infos
         8: .line 194
            iload 2 /* maxDepth */
            ldc 2147483647
            if_icmpne 11
         9: .line 195
            aload 1 /* ids */
            iconst_m1
            aload 3 /* infos */
            invokestatic sun.management.ThreadImpl.getThreadInfo1:([JI[Ljava/lang/management/ThreadInfo;)V
        10: .line 196
            goto 12
        11: .line 197
      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
        12: .line 199
      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   13     0      this  Lsun/management/ThreadImpl;
            0   13     1       ids  [J
            0   13     2  maxDepth  I
            8   13     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 204
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadContentionMonitoringSupported:()Z
            ifne 4
         1: .line 205
            new java.lang.UnsupportedOperationException
            dup
         2: .line 206
            ldc "Thread contention monitoring is not supported"
         3: .line 205
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 209
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         5: .line 211
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         6: .line 212
            aload 0 /* this */
            getfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
            iload 1 /* enable */
            if_icmpeq 11
         7: .line 213
            iload 1 /* enable */
            ifeq 9
         8: .line 216
            lconst_0
            invokestatic sun.management.ThreadImpl.resetContentionTimes0:(J)V
         9: .line 220
      StackMap locals: sun.management.ThreadImpl
      StackMap stack:
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadContentionMonitoringEnabled0:(Z)V
        10: .line 222
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
        11: .line 211
      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 225
      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 229
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 4
         1: .line 230
            new java.lang.UnsupportedOperationException
            dup
         2: .line 231
            ldc "Current thread CPU time measurement is not supported."
         3: .line 230
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 233
      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 238
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.verifyCurrentThreadCpuTime:()Z
            ifeq 2
         1: .line 239
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime0:(J)J
            lreturn
         2: .line 241
      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 246
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 247
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 248
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadCpuTime:([J)[J
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 249
            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 253
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 256
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 6
         2: .line 257
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 6
         3: .line 258
            new java.lang.UnsupportedOperationException
            dup
         4: .line 259
            ldc "Thread CPU time measurement is not supported."
         5: .line 258
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 15
         7: .line 264
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         8: goto 14
         9: .line 265
      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 266
            new java.lang.UnsupportedOperationException
            dup
        11: .line 267
            ldc "Thread CPU time measurement is only supported for the current thread."
        12: .line 266
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 264
      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 273
      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   

  protected long[] getThreadCpuTime(long[]);
    descriptor: ([J)[J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 277
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadCpuTime:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 279
            aload 1 /* ids */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 280
            iload 3 /* length */
            newarray 11
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 281
            aload 4 /* times */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 283
            iload 2 /* verified */
            ifeq 12
         5: .line 284
            iload 3 /* length */
            iconst_1
            if_icmpne 11
         6: .line 285
            aload 1 /* ids */
            iconst_0
            laload
            lstore 5 /* id */
        start local 5 // long id
         7: .line 286
            lload 5 /* id */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifne 9
         8: .line 287
            lconst_0
            lstore 5 /* id */
         9: .line 289
      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 290
            goto 12
        11: .line 291
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            aload 4 /* times */
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime1:([J[J)V
        12: .line 294
      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 299
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.verifyCurrentThreadCpuTime:()Z
            ifeq 2
         1: .line 300
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime0:(J)J
            lreturn
         2: .line 302
      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 307
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 308
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 309
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadUserTime:([J)[J
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 310
            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    

  protected long[] getThreadUserTime(long[]);
    descriptor: ([J)[J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 314
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadCpuTime:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 316
            aload 1 /* ids */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 317
            iload 3 /* length */
            newarray 11
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 318
            aload 4 /* times */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 320
            iload 2 /* verified */
            ifeq 12
         5: .line 321
            iload 3 /* length */
            iconst_1
            if_icmpne 11
         6: .line 322
            aload 1 /* ids */
            iconst_0
            laload
            lstore 5 /* id */
        start local 5 // long id
         7: .line 323
            lload 5 /* id */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifne 9
         8: .line 324
            lconst_0
            lstore 5 /* id */
         9: .line 326
      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 327
            goto 12
        11: .line 328
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            aload 4 /* times */
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime1:([J[J)V
        12: .line 331
      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 336
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 5
         1: .line 337
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 5
         2: .line 338
            new java.lang.UnsupportedOperationException
            dup
         3: .line 339
            ldc "Thread CPU time measurement is not supported"
         4: .line 338
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 342
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         6: .line 343
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         7: .line 344
            aload 0 /* this */
            getfield sun.management.ThreadImpl.cpuTimeEnabled:Z
            iload 1 /* enable */
            if_icmpeq 10
         8: .line 346
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadCpuTimeEnabled0:(Z)V
         9: .line 347
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.cpuTimeEnabled:Z
        10: .line 343
      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 350
      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  

  protected long getCurrentThreadAllocatedBytes();
    descriptor: ()J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.management.ThreadImpl this
         0: .line 353
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemoryEnabled:()Z
            ifeq 2
         1: .line 354
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadAllocatedMemory0:(J)J
            lreturn
         2: .line 356
      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;

  private boolean verifyThreadAllocatedMemory(long);
    descriptor: (J)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
         0: .line 360
            aload 0 /* this */
            lload 1 /* id */
            invokevirtual sun.management.ThreadImpl.verifyThreadId:(J)V
         1: .line 361
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemoryEnabled:()Z
            ireturn
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/management/ThreadImpl;
            0    2     1    id  J
    MethodParameters:
      Name  Flags
      id    

  protected long getThreadAllocatedBytes(long);
    descriptor: (J)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long id
         0: .line 365
            aload 0 /* this */
            lload 1 /* id */
            invokevirtual sun.management.ThreadImpl.verifyThreadAllocatedMemory:(J)Z
            istore 3 /* verified */
        start local 3 // boolean verified
         1: .line 367
            iload 3 /* verified */
            ifeq 5
         2: .line 369
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lload 1 /* id */
            lcmp
            ifne 3
            lconst_0
            goto 4
      StackMap locals: int
      StackMap stack:
         3: lload 1 /* id */
         4: .line 368
      StackMap locals:
      StackMap stack: long
            invokestatic sun.management.ThreadImpl.getThreadAllocatedMemory0:(J)J
            lreturn
         5: .line 371
      StackMap locals:
      StackMap stack:
            ldc -1
            lreturn
        end local 3 // boolean verified
        end local 1 // long id
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lsun/management/ThreadImpl;
            0    6     1        id  J
            1    6     3  verified  Z
    MethodParameters:
      Name  Flags
      id    

  private boolean verifyThreadAllocatedMemory(long[]);
    descriptor: ([J)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 375
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 376
            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    2     0  this  Lsun/management/ThreadImpl;
            0    2     1   ids  [J
    MethodParameters:
      Name  Flags
      ids   

  protected long[] getThreadAllocatedBytes(long[]);
    descriptor: ([J)[J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
         0: .line 380
            aload 1 /* ids */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 382
            aload 1 /* ids */
            arraylength
            iconst_1
            if_icmpne 4
         2: .line 383
            aload 0 /* this */
            aload 1 /* ids */
            iconst_0
            laload
            invokevirtual sun.management.ThreadImpl.getThreadAllocatedBytes:(J)J
            lstore 2 /* size */
        start local 2 // long size
         3: .line 384
            iconst_1
            newarray 11
            dup
            iconst_0
            lload 2 /* size */
            lastore
            areturn
        end local 2 // long size
         4: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadAllocatedMemory:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         5: .line 389
            aload 1 /* ids */
            arraylength
            newarray 11
            astore 3 /* sizes */
        start local 3 // long[] sizes
         6: .line 390
            aload 3 /* sizes */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         7: .line 392
            iload 2 /* verified */
            ifeq 9
         8: .line 393
            aload 1 /* ids */
            aload 3 /* sizes */
            invokestatic sun.management.ThreadImpl.getThreadAllocatedMemory1:([J[J)V
         9: .line 395
      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   10     0      this  Lsun/management/ThreadImpl;
            0   10     1       ids  [J
            3    4     2      size  J
            5   10     2  verified  Z
            6   10     3     sizes  [J
    MethodParameters:
      Name  Flags
      ids   

  protected void setThreadAllocatedMemoryEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean enable
         0: .line 399
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.ensureThreadAllocatedMemorySupported:()V
         1: .line 401
            invokestatic sun.management.Util.checkControlAccess:()V
         2: .line 402
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 403
            aload 0 /* this */
            getfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
            iload 1 /* enable */
            if_icmpeq 6
         4: .line 405
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadAllocatedMemoryEnabled0:(Z)V
         5: .line 406
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
         6: .line 402
      StackMap locals: sun.management.ThreadImpl
      StackMap stack:
            aload 2
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 2
            monitorexit
         9: athrow
        10: .line 409
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean enable
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lsun/management/ThreadImpl;
            0   11     1  enable  Z
      Exception table:
        from    to  target  type
           3     7       8  any
           8     9       8  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 413
            invokestatic sun.management.Util.checkMonitorAccess:()V
         1: .line 415
            invokestatic sun.management.ThreadImpl.findMonitorDeadlockedThreads0:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         2: .line 416
            aload 1 /* threads */
            ifnonnull 4
         3: .line 417
            aconst_null
            areturn
         4: .line 420
      StackMap locals: java.lang.Thread[]
      StackMap stack:
            aload 1 /* threads */
            arraylength
            newarray 11
            astore 2 /* ids */
        start local 2 // long[] ids
         5: .line 421
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 422
      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 423
            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 421
            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 425
            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 430
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isSynchronizerUsageSupported:()Z
            ifne 4
         1: .line 431
            new java.lang.UnsupportedOperationException
            dup
         2: .line 432
            ldc "Monitoring of Synchronizer Usage is not supported."
         3: .line 431
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 435
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         5: .line 437
            invokestatic sun.management.ThreadImpl.findDeadlockedThreads0:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         6: .line 438
            aload 1 /* threads */
            ifnonnull 8
         7: .line 439
            aconst_null
            areturn
         8: .line 442
      StackMap locals: java.lang.Thread[]
      StackMap stack:
            aload 1 /* threads */
            arraylength
            newarray 11
            astore 2 /* ids */
        start local 2 // long[] ids
         9: .line 443
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 14
        11: .line 444
      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 445
            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 443
            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 447
            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 452
            invokestatic sun.management.Util.checkControlAccess:()V
         1: .line 453
            invokestatic sun.management.ThreadImpl.resetPeakThreadCount0:()V
         2: .line 454
            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 458
            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 463
            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 468
            iload 1 /* lockedMonitors */
            ifeq 4
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isObjectMonitorUsageSupported:()Z
            ifne 4
         1: .line 469
            new java.lang.UnsupportedOperationException
            dup
         2: .line 470
            ldc "Monitoring of Object Monitor Usage is not supported."
         3: .line 469
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 473
      StackMap locals:
      StackMap stack:
            iload 2 /* lockedSynchronizers */
            ifeq 8
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isSynchronizerUsageSupported:()Z
            ifne 8
         5: .line 474
            new java.lang.UnsupportedOperationException
            dup
         6: .line 475
            ldc "Monitoring of Synchronizer Usage is not supported."
         7: .line 474
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 478
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         9: .line 479
            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=4, 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 485
            aload 1 /* ids */
            iload 2 /* lockedMonitors */
            iload 3 /* lockedSynchronizers */
         1: .line 486
            ldc 2147483647
         2: .line 485
            invokestatic sun.management.ThreadImpl.dumpThreads0:([JZZI)[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[] getThreadInfo(long[], boolean, boolean, int);
    descriptor: ([JZZI)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // sun.management.ThreadImpl this
        start local 1 // long[] ids
        start local 2 // boolean lockedMonitors
        start local 3 // boolean lockedSynchronizers
        start local 4 // int maxDepth
         0: .line 493
            iload 4 /* maxDepth */
            ifge 4
         1: .line 494
            new java.lang.IllegalArgumentException
            dup
         2: .line 495
            new java.lang.StringBuilder
            dup
            ldc "Invalid maxDepth parameter: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* maxDepth */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 494
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 497
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         5: .line 500
            aload 1 /* ids */
            arraylength
            ifne 6
            iconst_0
            anewarray java.lang.management.ThreadInfo
            areturn
         6: .line 502
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* lockedMonitors */
            iload 3 /* lockedSynchronizers */
            invokevirtual sun.management.ThreadImpl.verifyDumpThreads:(ZZ)V
         7: .line 503
            aload 1 /* ids */
            iload 2 /* lockedMonitors */
            iload 3 /* lockedSynchronizers */
            iload 4 /* maxDepth */
            invokestatic sun.management.ThreadImpl.dumpThreads0:([JZZI)[Ljava/lang/management/ThreadInfo;
            areturn
        end local 4 // int maxDepth
        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    8     0                 this  Lsun/management/ThreadImpl;
            0    8     1                  ids  [J
            0    8     2       lockedMonitors  Z
            0    8     3  lockedSynchronizers  Z
            0    8     4             maxDepth  I
    MethodParameters:
                     Name  Flags
      ids                  
      lockedMonitors       
      lockedSynchronizers  
      maxDepth             

  public java.lang.management.ThreadInfo[] dumpAllThreads(boolean, boolean);
    descriptor: (ZZ)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean lockedMonitors
        start local 2 // boolean lockedSynchronizers
         0: .line 509
            aload 0 /* this */
            iload 1 /* lockedMonitors */
            iload 2 /* lockedSynchronizers */
         1: .line 510
            ldc 2147483647
         2: .line 509
            invokevirtual sun.management.ThreadImpl.dumpAllThreads:(ZZI)[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    3     0                 this  Lsun/management/ThreadImpl;
            0    3     1       lockedMonitors  Z
            0    3     2  lockedSynchronizers  Z
    MethodParameters:
                     Name  Flags
      lockedMonitors       
      lockedSynchronizers  

  public java.lang.management.ThreadInfo[] dumpAllThreads(boolean, boolean, int);
    descriptor: (ZZI)[Ljava/lang/management/ThreadInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // sun.management.ThreadImpl this
        start local 1 // boolean lockedMonitors
        start local 2 // boolean lockedSynchronizers
        start local 3 // int maxDepth
         0: .line 516
            iload 3 /* maxDepth */
            ifge 4
         1: .line 517
            new java.lang.IllegalArgumentException
            dup
         2: .line 518
            new java.lang.StringBuilder
            dup
            ldc "Invalid maxDepth parameter: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* maxDepth */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 517
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 520
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* lockedMonitors */
            iload 2 /* lockedSynchronizers */
            invokevirtual sun.management.ThreadImpl.verifyDumpThreads:(ZZ)V
         5: .line 521
            aconst_null
            iload 1 /* lockedMonitors */
            iload 2 /* lockedSynchronizers */
            iload 3 /* maxDepth */
            invokestatic sun.management.ThreadImpl.dumpThreads0:([JZZI)[Ljava/lang/management/ThreadInfo;
            areturn
        end local 3 // int maxDepth
        end local 2 // boolean lockedSynchronizers
        end local 1 // boolean lockedMonitors
        end local 0 // sun.management.ThreadImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    6     0                 this  Lsun/management/ThreadImpl;
            0    6     1       lockedMonitors  Z
            0    6     2  lockedSynchronizers  Z
            0    6     3             maxDepth  I
    MethodParameters:
                     Name  Flags
      lockedMonitors       
      lockedSynchronizers  
      maxDepth             

  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 long getThreadAllocatedMemory0(long);
    descriptor: (J)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      id    

  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, int);
    descriptor: ([JZZI)[Ljava/lang/management/ThreadInfo;
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
                     Name  Flags
      ids                  
      lockedMonitors       
      lockedSynchronizers  
      maxDepth             

  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 551
            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"