public class micro.benchmarks.MathFunctionBenchmark$ThreadState
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: micro.benchmarks.MathFunctionBenchmark$ThreadState
  super_class: java.lang.Object
{
  double[] data;
    descriptor: [D
    flags: (0x0000) 

  double[] result;
    descriptor: [D
    flags: (0x0000) 

  double k;
    descriptor: D
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // micro.benchmarks.MathFunctionBenchmark$ThreadState this
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            bipush 100
            invokestatic micro.benchmarks.MathFunctionBenchmark$ThreadState.randomDoubles:(I)[D
            putfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
         2: .line 42
            aload 0 /* this */
            bipush 100
            newarray 7
            putfield micro.benchmarks.MathFunctionBenchmark$ThreadState.result:[D
         3: .line 43
            aload 0 /* this */
            aload 0 /* this */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
            iconst_0
            daload
            putfield micro.benchmarks.MathFunctionBenchmark$ThreadState.k:D
         4: .line 40
            return
        end local 0 // micro.benchmarks.MathFunctionBenchmark$ThreadState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;

  static double[] randomDoubles(int);
    descriptor: (I)[D
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // int len
         0: .line 46
            iload 0 /* len */
            newarray 7
            astore 1 /* data */
        start local 1 // double[] data
         1: .line 47
            new java.util.Random
            dup
            invokespecial java.util.Random.<init>:()V
            astore 2 /* r */
        start local 2 // java.util.Random r
         2: .line 48
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 49
      StackMap locals: double[] java.util.Random int
      StackMap stack:
            aload 1 /* data */
            iload 3 /* i */
            aload 2 /* r */
            invokevirtual java.util.Random.nextDouble:()D
            dastore
         5: .line 48
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 1 /* data */
            arraylength
            if_icmplt 4
        end local 3 // int i
         7: .line 51
            aload 1 /* data */
            areturn
        end local 2 // java.util.Random r
        end local 1 // double[] data
        end local 0 // int len
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0   len  I
            1    8     1  data  [D
            2    8     2     r  Ljava/util/Random;
            3    7     3     i  I
    MethodParameters:
      Name  Flags
      len   
}
SourceFile: "MathFunctionBenchmark.java"
NestHost: micro.benchmarks.MathFunctionBenchmark
InnerClasses:
  public ThreadState = micro.benchmarks.MathFunctionBenchmark$ThreadState of micro.benchmarks.MathFunctionBenchmark
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.State(value = org.openjdk.jmh.annotations.Scope.Benchmark:Lorg/openjdk/jmh/annotations/Scope;)