public class micro.benchmarks.ArrayDuplicationBenchmark extends micro.benchmarks.BenchmarkBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: micro.benchmarks.ArrayDuplicationBenchmark
  super_class: micro.benchmarks.BenchmarkBase
{
  private static final int TESTSIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 300

  private java.lang.Object[][] testObjectArray;
    descriptor: [[Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object[][] testStringArray;
    descriptor: [[Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object[] dummy;
    descriptor: [Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 38
            aload 0 /* this */
            invokespecial micro.benchmarks.BenchmarkBase.<init>:()V
            return
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;

  public void setup();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 51
            aload 0 /* this */
            sipush 300
            anewarray java.lang.Object[]
            putfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
         1: .line 52
            aload 0 /* this */
            sipush 300
            anewarray java.lang.Object[]
            putfield micro.benchmarks.ArrayDuplicationBenchmark.testStringArray:[[Ljava/lang/Object;
         2: .line 53
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         3: goto 7
         4: .line 54
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
            iload 1 /* i */
            bipush 20
            anewarray java.lang.Object
            aastore
         5: .line 55
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testStringArray:[[Ljava/lang/Object;
            iload 1 /* i */
            sipush 200
            anewarray java.lang.String
            aastore
         6: .line 53
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 1 /* i */
            sipush 300
            if_icmplt 4
        end local 1 // int i
         8: .line 57
            return
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            3    8     1     i  I
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Setup()

  public void iterationSetup();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 61
            aload 0 /* this */
            sipush 900
            anewarray java.lang.Object
            putfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
         1: .line 62
            return
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Setup(value = org.openjdk.jmh.annotations.Level.Iteration:Lorg/openjdk/jmh/annotations/Level;)

  public void iterationTearDown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 66
            aload 0 /* this */
            aconst_null
            putfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
         1: .line 67
            return
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.TearDown(value = org.openjdk.jmh.annotations.Level.Iteration:Lorg/openjdk/jmh/annotations/Level;)

  public java.lang.Object[] normalArraycopy();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 72
            iconst_0
            istore 1 /* j */
        start local 1 // int j
         1: .line 73
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 74
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            iload 1 /* j */
            iinc 1 /* j */ 1
            aload 0 /* this */
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual micro.benchmarks.ArrayDuplicationBenchmark.normalArraycopy:([Ljava/lang/Object;)[Ljava/lang/Object;
            aastore
         4: .line 73
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            sipush 300
            if_icmplt 3
        end local 2 // int i
         6: .line 76
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            areturn
        end local 1 // int j
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            1    7     1     j  I
            2    6     2     i  I
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
      org.openjdk.jmh.annotations.OperationsPerInvocation(value = 300)

  public java.lang.Object[] normalArraycopy(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
        start local 1 // java.lang.Object[] cache
         0: .line 80
            aload 1 /* cache */
            arraylength
            anewarray java.lang.Object
            astore 2 /* result */
        start local 2 // java.lang.Object[] result
         1: .line 81
            aload 1 /* cache */
            iconst_0
            aload 2 /* result */
            iconst_0
            aload 2 /* result */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 82
            aload 2 /* result */
            areturn
        end local 2 // java.lang.Object[] result
        end local 1 // java.lang.Object[] cache
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            0    3     1   cache  [Ljava/lang/Object;
            1    3     2  result  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      cache  

  public java.lang.Object[] arraysCopyOf();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 88
            iconst_0
            istore 1 /* j */
        start local 1 // int j
         1: .line 89
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 90
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            iload 1 /* j */
            iinc 1 /* j */ 1
            aload 0 /* this */
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual micro.benchmarks.ArrayDuplicationBenchmark.arraysCopyOf:([Ljava/lang/Object;)[Ljava/lang/Object;
            aastore
         4: .line 89
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            sipush 300
            if_icmplt 3
        end local 2 // int i
         6: .line 92
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            areturn
        end local 1 // int j
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            1    7     1     j  I
            2    6     2     i  I
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
      org.openjdk.jmh.annotations.OperationsPerInvocation(value = 300)

  public java.lang.Object[] arraysCopyOf(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
        start local 1 // java.lang.Object[] cache
         0: .line 96
            aload 1 /* cache */
            aload 1 /* cache */
            arraylength
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] cache
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            0    1     1  cache  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      cache  

  public java.lang.Object[] arraysCopyOfToString();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 102
            iconst_0
            istore 1 /* j */
        start local 1 // int j
         1: .line 103
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 104
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            iload 1 /* j */
            iinc 1 /* j */ 1
            aload 0 /* this */
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testStringArray:[[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual micro.benchmarks.ArrayDuplicationBenchmark.arraysCopyOfToString:([Ljava/lang/Object;)[Ljava/lang/Object;
            aastore
         4: .line 103
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            sipush 300
            if_icmplt 3
        end local 2 // int i
         6: .line 106
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            areturn
        end local 1 // int j
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            1    7     1     j  I
            2    6     2     i  I
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
      org.openjdk.jmh.annotations.OperationsPerInvocation(value = 300)

  public java.lang.Object[] arraysCopyOfToString(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
        start local 1 // java.lang.Object[] cache
         0: .line 110
            aload 1 /* cache */
            aload 1 /* cache */
            arraylength
            ldc [Ljava/lang/String;
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] cache
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            0    1     1  cache  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      cache  

  public java.lang.Object[] cloneObjectArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 116
            iconst_0
            istore 1 /* j */
        start local 1 // int j
         1: .line 117
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 118
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            iload 1 /* j */
            iinc 1 /* j */ 1
            aload 0 /* this */
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokevirtual micro.benchmarks.ArrayDuplicationBenchmark.arraysClone:([Ljava/lang/Object;)[Ljava/lang/Object;
            aastore
         4: .line 117
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            sipush 300
            if_icmplt 3
        end local 2 // int i
         6: .line 120
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.dummy:[Ljava/lang/Object;
            areturn
        end local 1 // int j
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            1    7     1     j  I
            2    6     2     i  I
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
      org.openjdk.jmh.annotations.OperationsPerInvocation(value = 300)

  public java.lang.Object[] arraysClone(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
        start local 1 // java.lang.Object[] cache
         0: .line 125
            aload 1 /* cache */
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            areturn
        end local 1 // java.lang.Object[] cache
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
            0    1     1  cache  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      cache  

  public void checkcastArrayCopy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
         0: .line 130
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
            iconst_0
            aaload
            iconst_0
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testStringArray:[[Ljava/lang/Object;
            iconst_0
            aaload
            iconst_0
            aload 0 /* this */
            getfield micro.benchmarks.ArrayDuplicationBenchmark.testObjectArray:[[Ljava/lang/Object;
            iconst_0
            aaload
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 131
            return
        end local 0 // micro.benchmarks.ArrayDuplicationBenchmark this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lmicro/benchmarks/ArrayDuplicationBenchmark;
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.Benchmark()
}
SourceFile: "ArrayDuplicationBenchmark.java"
    RuntimeVisibleAnnotations: 
      org.openjdk.jmh.annotations.State(value = org.openjdk.jmh.annotations.Scope.Thread:Lorg/openjdk/jmh/annotations/Scope;)