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 170
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            arraylength
            ifne 6
            iconst_0
            anewarray java.lang.management.ThreadInfo
            areturn
         6: .line 172
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         7: .line 174
            aload 1 /* ids */
            arraylength
            anewarray java.lang.management.ThreadInfo
            astore 3 /* infos */
        start local 3 // java.lang.management.ThreadInfo[] infos
         8: .line 175
            iload 2 /* maxDepth */
            ldc 2147483647
            if_icmpne 11
         9: .line 176
            aload 1 /* ids */
            iconst_m1
            aload 3 /* infos */
            invokestatic sun.management.ThreadImpl.getThreadInfo1:([JI[Ljava/lang/management/ThreadInfo;)V
        10: .line 177
            goto 12
        11: .line 178
      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 180
      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 184
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadContentionMonitoringSupported:()Z
            ifne 4
         1: .line 185
            new java.lang.UnsupportedOperationException
            dup
         2: .line 186
            ldc "Thread contention monitoring is not supported"
         3: .line 185
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 189
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         5: .line 191
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         6: .line 192
            aload 0 /* this */
            getfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
            iload 1 /* enable */
            if_icmpeq 11
         7: .line 193
            iload 1 /* enable */
            ifeq 9
         8: .line 196
            lconst_0
            invokestatic sun.management.ThreadImpl.resetContentionTimes0:(J)V
         9: .line 200
      StackMap locals: sun.management.ThreadImpl
      StackMap stack:
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadContentionMonitoringEnabled0:(Z)V
        10: .line 202
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.contentionMonitoringEnabled:Z
        11: .line 191
      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 205
      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 209
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 4
         1: .line 210
            new java.lang.UnsupportedOperationException
            dup
         2: .line 211
            ldc "Current thread CPU time measurement is not supported."
         3: .line 210
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 213
      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 217
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.verifyCurrentThreadCpuTime:()Z
            ifeq 2
         1: .line 218
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime0:(J)J
            lreturn
         2: .line 220
      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 224
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 225
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 226
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadCpuTime:([J)[J
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 227
            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 231
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 234
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 6
         2: .line 235
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 6
         3: .line 236
            new java.lang.UnsupportedOperationException
            dup
         4: .line 237
            ldc "Thread CPU time measurement is not supported."
         5: .line 236
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 15
         7: .line 242
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         8: goto 14
         9: .line 243
      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 244
            new java.lang.UnsupportedOperationException
            dup
        11: .line 245
            ldc "Thread CPU time measurement is only supported for the current thread."
        12: .line 244
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 242
      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 251
      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 255
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadCpuTime:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 257
            aload 1 /* ids */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 258
            iload 3 /* length */
            newarray 11
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 259
            aload 4 /* times */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 261
            iload 2 /* verified */
            ifeq 12
         5: .line 262
            iload 3 /* length */
            iconst_1
            if_icmpne 11
         6: .line 263
            aload 1 /* ids */
            iconst_0
            laload
            lstore 5 /* id */
        start local 5 // long id
         7: .line 264
            lload 5 /* id */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifne 9
         8: .line 265
            lconst_0
            lstore 5 /* id */
         9: .line 267
      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 268
            goto 12
        11: .line 269
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            aload 4 /* times */
            invokestatic sun.management.ThreadImpl.getThreadTotalCpuTime1:([J[J)V
        12: .line 272
      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 276
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.verifyCurrentThreadCpuTime:()Z
            ifeq 2
         1: .line 277
            lconst_0
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime0:(J)J
            lreturn
         2: .line 279
      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 283
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 284
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 285
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadUserTime:([J)[J
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 286
            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 290
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadCpuTime:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 292
            aload 1 /* ids */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 293
            iload 3 /* length */
            newarray 11
            astore 4 /* times */
        start local 4 // long[] times
         3: .line 294
            aload 4 /* times */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         4: .line 296
            iload 2 /* verified */
            ifeq 12
         5: .line 297
            iload 3 /* length */
            iconst_1
            if_icmpne 11
         6: .line 298
            aload 1 /* ids */
            iconst_0
            laload
            lstore 5 /* id */
        start local 5 // long id
         7: .line 299
            lload 5 /* id */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getId:()J
            lcmp
            ifne 9
         8: .line 300
            lconst_0
            lstore 5 /* id */
         9: .line 302
      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 303
            goto 12
        11: .line 304
      StackMap locals:
      StackMap stack:
            aload 1 /* ids */
            aload 4 /* times */
            invokestatic sun.management.ThreadImpl.getThreadUserCpuTime1:([J[J)V
        12: .line 307
      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 311
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadCpuTimeSupported:()Z
            ifne 5
         1: .line 312
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isCurrentThreadCpuTimeSupported:()Z
            ifne 5
         2: .line 313
            new java.lang.UnsupportedOperationException
            dup
         3: .line 314
            ldc "Thread CPU time measurement is not supported"
         4: .line 313
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 317
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         6: .line 318
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         7: .line 319
            aload 0 /* this */
            getfield sun.management.ThreadImpl.cpuTimeEnabled:Z
            iload 1 /* enable */
            if_icmpeq 10
         8: .line 321
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadCpuTimeEnabled0:(Z)V
         9: .line 322
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.cpuTimeEnabled:Z
        10: .line 318
      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 325
      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 328
            iconst_1
            newarray 11
            astore 3 /* ids */
        start local 3 // long[] ids
         1: .line 329
            aload 3 /* ids */
            iconst_0
            lload 1 /* id */
            lastore
         2: .line 330
            aload 0 /* this */
            aload 3 /* ids */
            invokevirtual sun.management.ThreadImpl.getThreadAllocatedBytes:([J)[J
            astore 4 /* sizes */
        start local 4 // long[] sizes
         3: .line 331
            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 335
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 338
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemorySupported:()Z
            ifne 5
         2: .line 339
            new java.lang.UnsupportedOperationException
            dup
         3: .line 340
            ldc "Thread allocated memory measurement is not supported."
         4: .line 339
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 343
      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 347
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadAllocatedMemory:([J)Z
            istore 2 /* verified */
        start local 2 // boolean verified
         1: .line 349
            aload 1 /* ids */
            arraylength
            newarray 11
            astore 3 /* sizes */
        start local 3 // long[] sizes
         2: .line 350
            aload 3 /* sizes */
            ldc -1
            invokestatic java.util.Arrays.fill:([JJ)V
         3: .line 352
            iload 2 /* verified */
            ifeq 5
         4: .line 353
            aload 1 /* ids */
            aload 3 /* sizes */
            invokestatic sun.management.ThreadImpl.getThreadAllocatedMemory1:([J[J)V
         5: .line 355
      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 359
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isThreadAllocatedMemorySupported:()Z
            ifne 4
         1: .line 360
            new java.lang.UnsupportedOperationException
            dup
         2: .line 361
            ldc "Thread allocated memory measurement is not supported."
         3: .line 360
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 364
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkControlAccess:()V
         5: .line 365
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         6: .line 366
            aload 0 /* this */
            getfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
            iload 1 /* enable */
            if_icmpeq 9
         7: .line 368
            iload 1 /* enable */
            invokestatic sun.management.ThreadImpl.setThreadAllocatedMemoryEnabled0:(Z)V
         8: .line 369
            aload 0 /* this */
            iload 1 /* enable */
            putfield sun.management.ThreadImpl.allocatedMemoryEnabled:Z
         9: .line 365
      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 372
      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 375
            invokestatic sun.management.Util.checkMonitorAccess:()V
         1: .line 377
            invokestatic sun.management.ThreadImpl.findMonitorDeadlockedThreads0:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         2: .line 378
            aload 1 /* threads */
            ifnonnull 4
         3: .line 379
            aconst_null
            areturn
         4: .line 382
      StackMap locals: java.lang.Thread[]
      StackMap stack:
            aload 1 /* threads */
            arraylength
            newarray 11
            astore 2 /* ids */
        start local 2 // long[] ids
         5: .line 383
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 384
      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 385
            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 383
            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 387
            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 391
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isSynchronizerUsageSupported:()Z
            ifne 4
         1: .line 392
            new java.lang.UnsupportedOperationException
            dup
         2: .line 393
            ldc "Monitoring of Synchronizer Usage is not supported."
         3: .line 392
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 396
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         5: .line 398
            invokestatic sun.management.ThreadImpl.findDeadlockedThreads0:()[Ljava/lang/Thread;
            astore 1 /* threads */
        start local 1 // java.lang.Thread[] threads
         6: .line 399
            aload 1 /* threads */
            ifnonnull 8
         7: .line 400
            aconst_null
            areturn
         8: .line 403
      StackMap locals: java.lang.Thread[]
      StackMap stack:
            aload 1 /* threads */
            arraylength
            newarray 11
            astore 2 /* ids */
        start local 2 // long[] ids
         9: .line 404
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 14
        11: .line 405
      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 406
            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 404
            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 408
            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 412
            invokestatic sun.management.Util.checkControlAccess:()V
         1: .line 413
            invokestatic sun.management.ThreadImpl.resetPeakThreadCount0:()V
         2: .line 414
            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 417
            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 421
            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 426
            iload 1 /* lockedMonitors */
            ifeq 4
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isObjectMonitorUsageSupported:()Z
            ifne 4
         1: .line 427
            new java.lang.UnsupportedOperationException
            dup
         2: .line 428
            ldc "Monitoring of Object Monitor Usage is not supported."
         3: .line 427
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 431
      StackMap locals:
      StackMap stack:
            iload 2 /* lockedSynchronizers */
            ifeq 8
            aload 0 /* this */
            invokevirtual sun.management.ThreadImpl.isSynchronizerUsageSupported:()Z
            ifne 8
         5: .line 432
            new java.lang.UnsupportedOperationException
            dup
         6: .line 433
            ldc "Monitoring of Synchronizer Usage is not supported."
         7: .line 432
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 436
      StackMap locals:
      StackMap stack:
            invokestatic sun.management.Util.checkMonitorAccess:()V
         9: .line 437
            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 442
            aload 0 /* this */
            aload 1 /* ids */
            invokevirtual sun.management.ThreadImpl.verifyThreadIds:([J)V
         1: .line 445
            aload 1 /* ids */
            arraylength
            ifne 2
            iconst_0
            anewarray java.lang.management.ThreadInfo
            areturn
         2: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* lockedMonitors */
            iload 3 /* lockedSynchronizers */
            invokevirtual sun.management.ThreadImpl.verifyDumpThreads:(ZZ)V
         3: .line 448
            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    4     0                 this  Lsun/management/ThreadImpl;
            0    4     1                  ids  [J
            0    4     2       lockedMonitors  Z
            0    4     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 453
            aload 0 /* this */
            iload 1 /* lockedMonitors */
            iload 2 /* lockedSynchronizers */
            invokevirtual sun.management.ThreadImpl.verifyDumpThreads:(ZZ)V
         1: .line 454
            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 481
            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"