public class micro.benchmarks.MathFunctionBenchmark extends micro.benchmarks.BenchmarkBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: micro.benchmarks.MathFunctionBenchmark
  super_class: micro.benchmarks.BenchmarkBase
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
         0: .line 37
            aload 0 /* this */
            invokespecial micro.benchmarks.BenchmarkBase.<init>:()V
            return
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lmicro/benchmarks/MathFunctionBenchmark;

  public void mathLog(micro.benchmarks.MathFunctionBenchmark$ThreadState);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
         0: .line 57
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
            astore 2 /* data */
        start local 2 // double[] data
         1: .line 58
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 59
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.result:[D
            astore 4 /* result */
        start local 4 // double[] result
         4: .line 60
            aload 4 /* result */
            iload 3 /* i */
            aload 2 /* data */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.log:(D)D
            dastore
        end local 4 // double[] result
         5: .line 58
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* data */
            arraylength
            if_icmplt 3
        end local 3 // int i
         7: .line 62
            return
        end local 2 // double[] data
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    8     1   state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            1    8     2    data  [D
            2    7     3       i  I
            4    5     4  result  [D
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
       Name  Flags
      state  

  public void mathLog10(micro.benchmarks.MathFunctionBenchmark$ThreadState);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
         0: .line 66
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
            astore 2 /* data */
        start local 2 // double[] data
         1: .line 67
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 68
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.result:[D
            astore 4 /* result */
        start local 4 // double[] result
         4: .line 69
            aload 4 /* result */
            iload 3 /* i */
            aload 2 /* data */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.log10:(D)D
            dastore
        end local 4 // double[] result
         5: .line 67
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* data */
            arraylength
            if_icmplt 3
        end local 3 // int i
         7: .line 71
            return
        end local 2 // double[] data
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    8     1   state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            1    8     2    data  [D
            2    7     3       i  I
            4    5     4  result  [D
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
       Name  Flags
      state  

  public void mathSin(micro.benchmarks.MathFunctionBenchmark$ThreadState);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
         0: .line 75
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
            astore 2 /* data */
        start local 2 // double[] data
         1: .line 76
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 77
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.result:[D
            astore 4 /* result */
        start local 4 // double[] result
         4: .line 78
            aload 4 /* result */
            iload 3 /* i */
            aload 2 /* data */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.sin:(D)D
            dastore
        end local 4 // double[] result
         5: .line 76
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* data */
            arraylength
            if_icmplt 3
        end local 3 // int i
         7: .line 80
            return
        end local 2 // double[] data
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    8     1   state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            1    8     2    data  [D
            2    7     3       i  I
            4    5     4  result  [D
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
       Name  Flags
      state  

  public void mathCos(micro.benchmarks.MathFunctionBenchmark$ThreadState);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
         0: .line 84
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
            astore 2 /* data */
        start local 2 // double[] data
         1: .line 85
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 86
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.result:[D
            astore 4 /* result */
        start local 4 // double[] result
         4: .line 87
            aload 4 /* result */
            iload 3 /* i */
            aload 2 /* data */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.cos:(D)D
            dastore
        end local 4 // double[] result
         5: .line 85
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* data */
            arraylength
            if_icmplt 3
        end local 3 // int i
         7: .line 89
            return
        end local 2 // double[] data
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    8     1   state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            1    8     2    data  [D
            2    7     3       i  I
            4    5     4  result  [D
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
       Name  Flags
      state  

  public void mathTan(micro.benchmarks.MathFunctionBenchmark$ThreadState);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
         0: .line 93
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.data:[D
            astore 2 /* data */
        start local 2 // double[] data
         1: .line 94
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 95
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.result:[D
            astore 4 /* result */
        start local 4 // double[] result
         4: .line 96
            aload 4 /* result */
            iload 3 /* i */
            aload 2 /* data */
            iload 3 /* i */
            daload
            invokestatic java.lang.Math.tan:(D)D
            dastore
        end local 4 // double[] result
         5: .line 94
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* data */
            arraylength
            if_icmplt 3
        end local 3 // int i
         7: .line 98
            return
        end local 2 // double[] data
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    8     1   state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            1    8     2    data  [D
            2    7     3       i  I
            4    5     4  result  [D
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
       Name  Flags
      state  

  public void mathSqrt(micro.benchmarks.MathFunctionBenchmark$ThreadState, org.openjdk.jmh.infra.Blackhole);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;Lorg/openjdk/jmh/infra/Blackhole;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        start local 2 // org.openjdk.jmh.infra.Blackhole blackhole
         0: .line 102
            aload 2 /* blackhole */
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.k:D
            invokestatic java.lang.Math.sqrt:(D)D
            invokevirtual org.openjdk.jmh.infra.Blackhole.consume:(D)V
         1: .line 103
            return
        end local 2 // org.openjdk.jmh.infra.Blackhole blackhole
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    2     1      state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            0    2     2  blackhole  Lorg/openjdk/jmh/infra/Blackhole;
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
           Name  Flags
      state      
      blackhole  

  public void strictMathSqrt(micro.benchmarks.MathFunctionBenchmark$ThreadState, org.openjdk.jmh.infra.Blackhole);
    descriptor: (Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;Lorg/openjdk/jmh/infra/Blackhole;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // micro.benchmarks.MathFunctionBenchmark this
        start local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        start local 2 // org.openjdk.jmh.infra.Blackhole blackhole
         0: .line 107
            aload 2 /* blackhole */
            aload 1 /* state */
            getfield micro.benchmarks.MathFunctionBenchmark$ThreadState.k:D
            invokestatic java.lang.StrictMath.sqrt:(D)D
            invokevirtual org.openjdk.jmh.infra.Blackhole.consume:(D)V
         1: .line 108
            return
        end local 2 // org.openjdk.jmh.infra.Blackhole blackhole
        end local 1 // micro.benchmarks.MathFunctionBenchmark$ThreadState state
        end local 0 // micro.benchmarks.MathFunctionBenchmark this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lmicro/benchmarks/MathFunctionBenchmark;
            0    2     1      state  Lmicro/benchmarks/MathFunctionBenchmark$ThreadState;
            0    2     2  blackhole  Lorg/openjdk/jmh/infra/Blackhole;
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
    MethodParameters:
           Name  Flags
      state      
      blackhole  
}
SourceFile: "MathFunctionBenchmark.java"
NestMembers:
  micro.benchmarks.MathFunctionBenchmark$ThreadState
InnerClasses:
  public ThreadState = micro.benchmarks.MathFunctionBenchmark$ThreadState of micro.benchmarks.MathFunctionBenchmark