public class org.jruby.compiler.BlockJITClassGenerator extends org.jruby.compiler.JITClassGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.compiler.BlockJITClassGenerator
  super_class: org.jruby.compiler.JITClassGenerator
{
  private final org.jruby.runtime.MixedModeIRBlockBody body;
    descriptor: Lorg/jruby/runtime/MixedModeIRBlockBody;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String, java.lang.String, java.lang.String, org.jruby.Ruby, org.jruby.runtime.MixedModeIRBlockBody, org.jruby.ir.targets.JVMVisitor);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/jruby/Ruby;Lorg/jruby/runtime/MixedModeIRBlockBody;Lorg/jruby/ir/targets/JVMVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // org.jruby.compiler.BlockJITClassGenerator this
        start local 1 // java.lang.String className
        start local 2 // java.lang.String methodName
        start local 3 // java.lang.String key
        start local 4 // org.jruby.Ruby ruby
        start local 5 // org.jruby.runtime.MixedModeIRBlockBody body
        start local 6 // org.jruby.ir.targets.JVMVisitor visitor
         0: .line 38
            aload 0 /* this */
            aload 1 /* className */
            aload 2 /* methodName */
            aload 3 /* key */
            aload 4 /* ruby */
            aload 6 /* visitor */
            invokespecial org.jruby.compiler.JITClassGenerator.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/jruby/Ruby;Lorg/jruby/ir/targets/JVMVisitor;)V
         1: .line 39
            aload 0 /* this */
            aload 5 /* body */
            putfield org.jruby.compiler.BlockJITClassGenerator.body:Lorg/jruby/runtime/MixedModeIRBlockBody;
         2: .line 40
            return
        end local 6 // org.jruby.ir.targets.JVMVisitor visitor
        end local 5 // org.jruby.runtime.MixedModeIRBlockBody body
        end local 4 // org.jruby.Ruby ruby
        end local 3 // java.lang.String key
        end local 2 // java.lang.String methodName
        end local 1 // java.lang.String className
        end local 0 // org.jruby.compiler.BlockJITClassGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/jruby/compiler/BlockJITClassGenerator;
            0    3     1   className  Ljava/lang/String;
            0    3     2  methodName  Ljava/lang/String;
            0    3     3         key  Ljava/lang/String;
            0    3     4        ruby  Lorg/jruby/Ruby;
            0    3     5        body  Lorg/jruby/runtime/MixedModeIRBlockBody;
            0    3     6     visitor  Lorg/jruby/ir/targets/JVMVisitor;
    MethodParameters:
            Name  Flags
      className   
      methodName  
      key         
      ruby        
      body        
      visitor     

  protected void compile(org.jruby.ir.targets.JVMVisitorMethodContext);
    descriptor: (Lorg/jruby/ir/targets/JVMVisitorMethodContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.jruby.compiler.BlockJITClassGenerator this
        start local 1 // org.jruby.ir.targets.JVMVisitorMethodContext context
         0: .line 44
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.bytecode:[B
            ifnull 1
            return
         1: .line 47
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.nanoTime:()J
            lstore 2 /* start */
        start local 2 // long start
         2: .line 49
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.body:Lorg/jruby/runtime/MixedModeIRBlockBody;
            invokevirtual org.jruby.runtime.MixedModeIRBlockBody.ensureInstrsReady:()Lorg/jruby/ir/interpreter/InterpreterContext;
            astore 4 /* ic */
        start local 4 // org.jruby.ir.interpreter.InterpreterContext ic
         3: .line 51
            aload 4 /* ic */
            invokevirtual org.jruby.ir.interpreter.InterpreterContext.getInstructions:()[Lorg/jruby/ir/instructions/Instr;
            arraylength
            istore 5 /* insnCount */
        start local 5 // int insnCount
         4: .line 52
            iload 5 /* insnCount */
            getstatic org.jruby.util.cli.Options.JIT_MAXSIZE:Lcom/headius/options/Option;
            invokevirtual com.headius.options.Option.load:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            if_icmple 6
         5: .line 54
            new org.jruby.compiler.NotCompilableException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Could not compile "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.body:Lorg/jruby/runtime/MixedModeIRBlockBody;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "; instruction count "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 5 /* insnCount */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " exceeds threshold of "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic org.jruby.util.cli.Options.JIT_MAXSIZE:Lcom/headius/options/Option;
            invokevirtual com.headius.options.Option.load:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.jruby.compiler.NotCompilableException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 59
      StackMap locals: long org.jruby.ir.interpreter.InterpreterContext int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.visitor:Lorg/jruby/ir/targets/JVMVisitor;
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.body:Lorg/jruby/runtime/MixedModeIRBlockBody;
            invokevirtual org.jruby.runtime.MixedModeIRBlockBody.getIRScope:()Lorg/jruby/ir/IRScope;
            aload 1 /* context */
            invokevirtual org.jruby.ir.targets.JVMVisitor.compileToBytecode:(Lorg/jruby/ir/IRScope;Lorg/jruby/ir/targets/JVMVisitorMethodContext;)[B
            putfield org.jruby.compiler.BlockJITClassGenerator.bytecode:[B
         7: .line 61
            aload 0 /* this */
            invokestatic java.lang.System.nanoTime:()J
            lload 2 /* start */
            lsub
            putfield org.jruby.compiler.BlockJITClassGenerator.compileTime:J
         8: .line 62
            return
        end local 5 // int insnCount
        end local 4 // org.jruby.ir.interpreter.InterpreterContext ic
        end local 2 // long start
        end local 1 // org.jruby.ir.targets.JVMVisitorMethodContext context
        end local 0 // org.jruby.compiler.BlockJITClassGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/jruby/compiler/BlockJITClassGenerator;
            0    9     1    context  Lorg/jruby/ir/targets/JVMVisitorMethodContext;
            2    9     2      start  J
            3    9     4         ic  Lorg/jruby/ir/interpreter/InterpreterContext;
            4    9     5  insnCount  I
    MethodParameters:
         Name  Flags
      context  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.compiler.BlockJITClassGenerator this
         0: .line 66
            new java.lang.StringBuilder
            dup
            ldc "{} at "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.body:Lorg/jruby/runtime/MixedModeIRBlockBody;
            invokevirtual org.jruby.runtime.MixedModeIRBlockBody.getFile:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 58
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.jruby.compiler.BlockJITClassGenerator.body:Lorg/jruby/runtime/MixedModeIRBlockBody;
            invokevirtual org.jruby.runtime.MixedModeIRBlockBody.getLine:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.jruby.compiler.BlockJITClassGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/compiler/BlockJITClassGenerator;
}
SourceFile: "BlockJITClassGenerator.java"