public class org.graalvm.compiler.core.gen.LIRCompilerBackend
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.core.gen.LIRCompilerBackend
  super_class: java.lang.Object
{
  private static final org.graalvm.compiler.debug.TimerKey EmitLIR;
    descriptor: Lorg/graalvm/compiler/debug/TimerKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.graalvm.compiler.debug.TimerKey EmitCode;
    descriptor: Lorg/graalvm/compiler/debug/TimerKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.graalvm.compiler.debug.TimerKey BackEnd;
    descriptor: Lorg/graalvm/compiler/debug/TimerKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 73
            ldc Lorg/graalvm/compiler/core/gen/LIRCompilerBackend;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.$assertionsDisabled:Z
         3: .line 74
            ldc "EmitLIR"
            invokestatic org.graalvm.compiler.debug.DebugContext.timer:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/TimerKey;
            ldc "Time spent generating LIR from HIR."
            invokeinterface org.graalvm.compiler.debug.TimerKey.doc:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/TimerKey;
            putstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.EmitLIR:Lorg/graalvm/compiler/debug/TimerKey;
         4: .line 75
            ldc "EmitCode"
            invokestatic org.graalvm.compiler.debug.DebugContext.timer:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/TimerKey;
            ldc "Time spent generating machine code from LIR."
            invokeinterface org.graalvm.compiler.debug.TimerKey.doc:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/TimerKey;
            putstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.EmitCode:Lorg/graalvm/compiler/debug/TimerKey;
         5: .line 76
            ldc "BackEnd"
            invokestatic org.graalvm.compiler.debug.DebugContext.timer:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/TimerKey;
            ldc "Time spent in EmitLIR and EmitCode."
            invokeinterface org.graalvm.compiler.debug.TimerKey.doc:(Ljava/lang/String;)Lorg/graalvm/compiler/debug/TimerKey;
            putstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.BackEnd:Lorg/graalvm/compiler/debug/TimerKey;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.core.gen.LIRCompilerBackend this
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.graalvm.compiler.core.gen.LIRCompilerBackend this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/core/gen/LIRCompilerBackend;

  public static <T extends org.graalvm.compiler.code.CompilationResult> void emitBackEnd(org.graalvm.compiler.nodes.StructuredGraph, , jdk.vm.ci.meta.ResolvedJavaMethod, org.graalvm.compiler.core.target.Backend, T, org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory, jdk.vm.ci.code.RegisterConfig, org.graalvm.compiler.lir.phases.LIRSuites);
    descriptor: (Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/core/target/Backend;Lorg/graalvm/compiler/code/CompilationResult;Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=11, locals=19, args_size=8
        start local 0 // org.graalvm.compiler.nodes.StructuredGraph graph
        start local 1 // java.lang.Object stub
        start local 2 // jdk.vm.ci.meta.ResolvedJavaMethod installedCodeOwner
        start local 3 // org.graalvm.compiler.core.target.Backend backend
        start local 4 // org.graalvm.compiler.code.CompilationResult compilationResult
        start local 5 // org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory factory
        start local 6 // jdk.vm.ci.code.RegisterConfig registerConfig
        start local 7 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
         0: .line 81
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getDebug:()Lorg/graalvm/compiler/debug/DebugContext;
            astore 8 /* debug */
        start local 8 // org.graalvm.compiler.debug.DebugContext debug
         1: .line 82
            aconst_null
            astore 9
            aconst_null
            astore 10
         2: aload 8 /* debug */
            ldc "BackEnd"
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getLastSchedule:()Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;
            invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
            astore 11 /* s */
        start local 11 // org.graalvm.compiler.debug.DebugContext$Scope s
         3: getstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.BackEnd:Lorg/graalvm/compiler/debug/TimerKey;
            aload 8 /* debug */
            invokeinterface org.graalvm.compiler.debug.TimerKey.start:(Lorg/graalvm/compiler/debug/DebugContext;)Lorg/graalvm/compiler/debug/DebugCloseable;
            astore 12 /* a */
        start local 12 // org.graalvm.compiler.debug.DebugCloseable a
         4: .line 83
            aconst_null
            astore 13 /* lirGen */
        start local 13 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGen
         5: .line 84
            aload 3 /* backend */
            aload 0 /* graph */
            aload 1 /* stub */
            aload 6 /* registerConfig */
            aload 7 /* lirSuites */
            invokestatic org.graalvm.compiler.core.gen.LIRCompilerBackend.emitLIR:(Lorg/graalvm/compiler/core/target/Backend;Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            astore 13 /* lirGen */
         6: .line 85
            aconst_null
            astore 14
            aconst_null
            astore 15
         7: aload 8 /* debug */
            ldc "CodeGen"
            aload 13 /* lirGen */
            aload 13 /* lirGen */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
            astore 16 /* s2 */
        start local 16 // org.graalvm.compiler.debug.DebugContext$Scope s2
         8: .line 86
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.method:()Ljdk/vm/ci/meta/ResolvedJavaMethod;
            ifnonnull 9
            iconst_0
            goto 10
      StackMap locals: org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.core.target.Backend org.graalvm.compiler.code.CompilationResult org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.lir.gen.LIRGenerationResult java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope
      StackMap stack:
         9: aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getBytecodeSize:()I
      StackMap locals:
      StackMap stack: int
        10: istore 17 /* bytecodeSize */
        start local 17 // int bytecodeSize
        11: .line 87
            aload 4 /* compilationResult */
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.hasUnsafeAccess:()Z
            invokevirtual org.graalvm.compiler.code.CompilationResult.setHasUnsafeAccess:(Z)V
        12: .line 88
            aload 3 /* backend */
        13: .line 89
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getAssumptions:()Ljdk/vm/ci/meta/Assumptions;
        14: .line 90
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.method:()Ljdk/vm/ci/meta/ResolvedJavaMethod;
        15: .line 91
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getMethods:()Ljava/util/List;
        16: .line 92
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getFields:()Ljdk/internal/vm/compiler/collections/EconomicSet;
        17: .line 93
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getSpeculationLog:()Ljdk/vm/ci/meta/SpeculationLog;
        18: .line 94
            iload 17 /* bytecodeSize */
        19: .line 95
            aload 13 /* lirGen */
        20: .line 96
            aload 4 /* compilationResult */
        21: .line 97
            aload 2 /* installedCodeOwner */
        22: .line 98
            aload 5 /* factory */
        23: .line 88
            invokestatic org.graalvm.compiler.core.gen.LIRCompilerBackend.emitCode:(Lorg/graalvm/compiler/core/target/Backend;Ljdk/vm/ci/meta/Assumptions;Ljdk/vm/ci/meta/ResolvedJavaMethod;Ljava/util/Collection;Ljdk/internal/vm/compiler/collections/EconomicSet;Ljdk/vm/ci/meta/SpeculationLog;ILorg/graalvm/compiler/lir/gen/LIRGenerationResult;Lorg/graalvm/compiler/code/CompilationResult;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;)V
        end local 17 // int bytecodeSize
        24: .line 99
            aload 16 /* s2 */
            ifnull 32
            aload 16 /* s2 */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
            goto 32
      StackMap locals:
      StackMap stack: java.lang.Throwable
        25: astore 14
            aload 16 /* s2 */
            ifnull 26
            aload 16 /* s2 */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
        end local 16 // org.graalvm.compiler.debug.DebugContext$Scope s2
      StackMap locals:
      StackMap stack:
        26: aload 14
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        27: astore 15
            aload 14
            ifnonnull 28
            aload 15
            astore 14
            goto 29
      StackMap locals:
      StackMap stack:
        28: aload 14
            aload 15
            if_acmpeq 29
            aload 14
            aload 15
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        29: aload 14
            athrow
      StackMap locals: org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.core.target.Backend org.graalvm.compiler.code.CompilationResult org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.lir.gen.LIRGenerationResult
      StackMap stack: java.lang.Throwable
        30: astore 14 /* e */
        start local 14 // java.lang.Throwable e
        31: .line 100
            aload 8 /* debug */
            aload 14 /* e */
            invokevirtual org.graalvm.compiler.debug.DebugContext.handle:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 14 // java.lang.Throwable e
        end local 13 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGen
        32: .line 102
      StackMap locals:
      StackMap stack:
            aload 12 /* a */
            ifnull 35
            aload 12 /* a */
            invokeinterface org.graalvm.compiler.debug.DebugCloseable.close:()V
            goto 35
      StackMap locals:
      StackMap stack: java.lang.Throwable
        33: astore 9
            aload 12 /* a */
            ifnull 34
            aload 12 /* a */
            invokeinterface org.graalvm.compiler.debug.DebugCloseable.close:()V
        end local 12 // org.graalvm.compiler.debug.DebugCloseable a
      StackMap locals:
      StackMap stack:
        34: aload 9
            athrow
      StackMap locals:
      StackMap stack:
        35: aload 11 /* s */
            ifnull 48
            aload 11 /* s */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
            goto 48
      StackMap locals:
      StackMap stack: java.lang.Throwable
        36: astore 10
            aload 9
            ifnonnull 37
            aload 10
            astore 9
            goto 38
      StackMap locals:
      StackMap stack:
        37: aload 9
            aload 10
            if_acmpeq 38
            aload 9
            aload 10
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        38: aload 11 /* s */
            ifnull 39
            aload 11 /* s */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
        end local 11 // org.graalvm.compiler.debug.DebugContext$Scope s
      StackMap locals:
      StackMap stack:
        39: aload 9
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        40: astore 10
            aload 9
            ifnonnull 41
            aload 10
            astore 9
            goto 42
      StackMap locals:
      StackMap stack:
        41: aload 9
            aload 10
            if_acmpeq 42
            aload 9
            aload 10
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        42: aload 9
            athrow
      StackMap locals: org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.core.target.Backend org.graalvm.compiler.code.CompilationResult org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites org.graalvm.compiler.debug.DebugContext
      StackMap stack: java.lang.Throwable
        43: astore 9 /* e */
        start local 9 // java.lang.Throwable e
        44: .line 103
            aload 8 /* debug */
            aload 9 /* e */
            invokevirtual org.graalvm.compiler.debug.DebugContext.handle:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 9 // java.lang.Throwable e
        45: .line 104
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 18
        46: .line 105
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
        47: .line 106
            aload 18
            athrow
        48: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
        49: .line 107
            return
        end local 8 // org.graalvm.compiler.debug.DebugContext debug
        end local 7 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
        end local 6 // jdk.vm.ci.code.RegisterConfig registerConfig
        end local 5 // org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory factory
        end local 4 // org.graalvm.compiler.code.CompilationResult compilationResult
        end local 3 // org.graalvm.compiler.core.target.Backend backend
        end local 2 // jdk.vm.ci.meta.ResolvedJavaMethod installedCodeOwner
        end local 1 // java.lang.Object stub
        end local 0 // org.graalvm.compiler.nodes.StructuredGraph graph
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   50     0               graph  Lorg/graalvm/compiler/nodes/StructuredGraph;
            0   50     1                stub  Ljava/lang/Object;
            0   50     2  installedCodeOwner  Ljdk/vm/ci/meta/ResolvedJavaMethod;
            0   50     3             backend  Lorg/graalvm/compiler/core/target/Backend;
            0   50     4   compilationResult  TT;
            0   50     5             factory  Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;
            0   50     6      registerConfig  Ljdk/vm/ci/code/RegisterConfig;
            0   50     7           lirSuites  Lorg/graalvm/compiler/lir/phases/LIRSuites;
            1   50     8               debug  Lorg/graalvm/compiler/debug/DebugContext;
            3   39    11                   s  Lorg/graalvm/compiler/debug/DebugContext$Scope;
            4   34    12                   a  Lorg/graalvm/compiler/debug/DebugCloseable;
            5   32    13              lirGen  Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            8   26    16                  s2  Lorg/graalvm/compiler/debug/DebugContext$Scope;
           11   24    17        bytecodeSize  I
           31   32    14                   e  Ljava/lang/Throwable;
           44   45     9                   e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           8    24      25  any
           7    27      27  any
           6    30      30  Class java.lang.Throwable
           4    32      33  any
           3    35      36  any
           2    40      40  any
           1    43      43  Class java.lang.Throwable
           1    45      45  any
    Signature: <T:Lorg/graalvm/compiler/code/CompilationResult;>(Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/core/target/Backend;TT;Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;)V
    MethodParameters:
                    Name  Flags
      graph               
      stub                
      installedCodeOwner  
      backend             
      compilationResult   
      factory             
      registerConfig      
      lirSuites           

  public static org.graalvm.compiler.lir.gen.LIRGenerationResult emitLIR(org.graalvm.compiler.core.target.Backend, org.graalvm.compiler.nodes.StructuredGraph, java.lang.Object, jdk.vm.ci.code.RegisterConfig, org.graalvm.compiler.lir.phases.LIRSuites);
    descriptor: (Lorg/graalvm/compiler/core/target/Backend;Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=10, args_size=5
        start local 0 // org.graalvm.compiler.core.target.Backend backend
        start local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        start local 2 // java.lang.Object stub
        start local 3 // jdk.vm.ci.code.RegisterConfig registerConfig
        start local 4 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
         0: .line 111
            getstatic org.graalvm.compiler.core.common.GraalOptions.RegisterPressure:Lorg/graalvm/compiler/options/OptionKey;
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getOptions:()Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.options.OptionKey.getValue:(Lorg/graalvm/compiler/options/OptionValues;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* registerPressure */
        start local 5 // java.lang.String registerPressure
         1: .line 112
            aload 5 /* registerPressure */
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: java.lang.String
      StackMap stack:
         2: aload 5 /* registerPressure */
            ldc ","
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String[]
         3: astore 6 /* allocationRestrictedTo */
        start local 6 // java.lang.String[] allocationRestrictedTo
         4: .line 114
            aload 0 /* backend */
            aload 1 /* graph */
            aload 2 /* stub */
            aload 3 /* registerConfig */
            aload 4 /* lirSuites */
            aload 6 /* allocationRestrictedTo */
            invokestatic org.graalvm.compiler.core.gen.LIRCompilerBackend.emitLIR0:(Lorg/graalvm/compiler/core/target/Backend;Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;[Ljava/lang/String;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            astore 9
         5: .line 123
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
         6: .line 114
            aload 9
            areturn
         7: .line 115
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String java.lang.String[]
      StackMap stack: org.graalvm.compiler.lir.alloc.OutOfRegistersException
            astore 7 /* e */
        start local 7 // org.graalvm.compiler.lir.alloc.OutOfRegistersException e
         8: .line 116
            aload 6 /* allocationRestrictedTo */
            ifnull 13
         9: .line 117
            aconst_null
            astore 6 /* allocationRestrictedTo */
        10: .line 118
            aload 0 /* backend */
            aload 1 /* graph */
            aload 2 /* stub */
            aload 3 /* registerConfig */
            aload 4 /* lirSuites */
            aload 6 /* allocationRestrictedTo */
            invokestatic org.graalvm.compiler.core.gen.LIRCompilerBackend.emitLIR0:(Lorg/graalvm/compiler/core/target/Backend;Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;[Ljava/lang/String;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            astore 9
        11: .line 123
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
        12: .line 118
            aload 9
            areturn
        13: .line 121
      StackMap locals: org.graalvm.compiler.lir.alloc.OutOfRegistersException
      StackMap stack:
            new org.graalvm.compiler.debug.GraalError
            dup
            aload 7 /* e */
            invokespecial org.graalvm.compiler.debug.GraalError.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 7 // org.graalvm.compiler.lir.alloc.OutOfRegistersException e
        14: .line 122
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String java.lang.String[]
      StackMap stack: java.lang.Throwable
            astore 8
        15: .line 123
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
        16: .line 124
            aload 8
            athrow
        end local 6 // java.lang.String[] allocationRestrictedTo
        end local 5 // java.lang.String registerPressure
        end local 4 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
        end local 3 // jdk.vm.ci.code.RegisterConfig registerConfig
        end local 2 // java.lang.Object stub
        end local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        end local 0 // org.graalvm.compiler.core.target.Backend backend
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   17     0                 backend  Lorg/graalvm/compiler/core/target/Backend;
            0   17     1                   graph  Lorg/graalvm/compiler/nodes/StructuredGraph;
            0   17     2                    stub  Ljava/lang/Object;
            0   17     3          registerConfig  Ljdk/vm/ci/code/RegisterConfig;
            0   17     4               lirSuites  Lorg/graalvm/compiler/lir/phases/LIRSuites;
            1   17     5        registerPressure  Ljava/lang/String;
            4   17     6  allocationRestrictedTo  [Ljava/lang/String;
            8   14     7                       e  Lorg/graalvm/compiler/lir/alloc/OutOfRegistersException;
      Exception table:
        from    to  target  type
           4     5       7  Class org.graalvm.compiler.lir.alloc.OutOfRegistersException
           4     5      14  any
           7    11      14  any
          13    14      14  any
    MethodParameters:
                Name  Flags
      backend         
      graph           
      stub            
      registerConfig  
      lirSuites       

  private static org.graalvm.compiler.lir.gen.LIRGenerationResult emitLIR0(org.graalvm.compiler.core.target.Backend, org.graalvm.compiler.nodes.StructuredGraph, java.lang.Object, jdk.vm.ci.code.RegisterConfig, org.graalvm.compiler.lir.phases.LIRSuites, java.lang.String[]);
    descriptor: (Lorg/graalvm/compiler/core/target/Backend;Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;Ljdk/vm/ci/code/RegisterConfig;Lorg/graalvm/compiler/lir/phases/LIRSuites;[Ljava/lang/String;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=29, args_size=6
        start local 0 // org.graalvm.compiler.core.target.Backend backend
        start local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        start local 2 // java.lang.Object stub
        start local 3 // jdk.vm.ci.code.RegisterConfig registerConfig
        start local 4 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
        start local 5 // java.lang.String[] allocationRestrictedTo
         0: .line 134
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getDebug:()Lorg/graalvm/compiler/debug/DebugContext;
            astore 6 /* debug */
        start local 6 // org.graalvm.compiler.debug.DebugContext debug
         1: .line 135
            aconst_null
            astore 7
            aconst_null
            astore 8
         2: aload 6 /* debug */
            ldc "EmitLIR"
            invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
            astore 9 /* ds */
        start local 9 // org.graalvm.compiler.debug.DebugContext$Scope ds
         3: getstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.EmitLIR:Lorg/graalvm/compiler/debug/TimerKey;
            aload 6 /* debug */
            invokeinterface org.graalvm.compiler.debug.TimerKey.start:(Lorg/graalvm/compiler/debug/DebugContext;)Lorg/graalvm/compiler/debug/DebugCloseable;
            astore 10 /* a */
        start local 10 // org.graalvm.compiler.debug.DebugCloseable a
         4: .line 136
            getstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.$assertionsDisabled:Z
            ifne 5
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.hasValueProxies:()Z
            ifeq 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 138
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String[] org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable
      StackMap stack:
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getLastSchedule:()Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;
            astore 11 /* schedule */
        start local 11 // org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult schedule
         6: .line 139
            aload 11 /* schedule */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult.getCFG:()Lorg/graalvm/compiler/nodes/cfg/ControlFlowGraph;
            invokevirtual org.graalvm.compiler.nodes.cfg.ControlFlowGraph.getBlocks:()[Lorg/graalvm/compiler/nodes/cfg/Block;
            astore 12 /* blocks */
        start local 12 // org.graalvm.compiler.nodes.cfg.Block[] blocks
         7: .line 140
            aload 11 /* schedule */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult.getCFG:()Lorg/graalvm/compiler/nodes/cfg/ControlFlowGraph;
            invokevirtual org.graalvm.compiler.nodes.cfg.ControlFlowGraph.getStartBlock:()Lorg/graalvm/compiler/nodes/cfg/Block;
            astore 13 /* startBlock */
        start local 13 // org.graalvm.compiler.nodes.cfg.Block startBlock
         8: .line 141
            getstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.$assertionsDisabled:Z
            ifne 9
            aload 13 /* startBlock */
            ifnonnull 9
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         9: .line 142
      StackMap locals: org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult org.graalvm.compiler.nodes.cfg.Block[] org.graalvm.compiler.nodes.cfg.Block
      StackMap stack:
            getstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.$assertionsDisabled:Z
            ifne 10
            aload 13 /* startBlock */
            invokevirtual org.graalvm.compiler.nodes.cfg.Block.getPredecessorCount:()I
            ifeq 10
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        10: .line 144
      StackMap locals:
      StackMap stack:
            aload 12 /* blocks */
            arraylength
            aload 13 /* startBlock */
            invokestatic org.graalvm.compiler.core.common.alloc.ComputeBlockOrder.computeCodeEmittingOrder:(ILorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;)[Lorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;
            astore 14 /* codeEmittingOrder */
        start local 14 // org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] codeEmittingOrder
        11: .line 145
            aload 12 /* blocks */
            arraylength
            aload 13 /* startBlock */
            invokestatic org.graalvm.compiler.core.common.alloc.ComputeBlockOrder.computeLinearScanOrder:(ILorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;)[Lorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;
            astore 15 /* linearScanOrder */
        start local 15 // org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] linearScanOrder
        12: .line 146
            new org.graalvm.compiler.lir.LIR
            dup
            aload 11 /* schedule */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult.getCFG:()Lorg/graalvm/compiler/nodes/cfg/ControlFlowGraph;
            aload 15 /* linearScanOrder */
            aload 14 /* codeEmittingOrder */
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getOptions:()Lorg/graalvm/compiler/options/OptionValues;
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getDebug:()Lorg/graalvm/compiler/debug/DebugContext;
            invokespecial org.graalvm.compiler.lir.LIR.<init>:(Lorg/graalvm/compiler/core/common/cfg/AbstractControlFlowGraph;[Lorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;[Lorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;Lorg/graalvm/compiler/options/OptionValues;Lorg/graalvm/compiler/debug/DebugContext;)V
            astore 16 /* lir */
        start local 16 // org.graalvm.compiler.lir.LIR lir
        13: .line 148
            aload 0 /* backend */
            checkcast org.graalvm.compiler.core.gen.LIRGenerationProvider
            astore 17 /* lirBackend */
        start local 17 // org.graalvm.compiler.core.gen.LIRGenerationProvider lirBackend
        14: .line 149
            aload 0 /* backend */
            aload 3 /* registerConfig */
            aload 5 /* allocationRestrictedTo */
            invokevirtual org.graalvm.compiler.core.target.Backend.newRegisterAllocationConfig:(Ljdk/vm/ci/code/RegisterConfig;[Ljava/lang/String;)Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;
            astore 18 /* registerAllocationConfig */
        start local 18 // org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig registerAllocationConfig
        15: .line 150
            aload 17 /* lirBackend */
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.compilationId:()Lorg/graalvm/compiler/core/common/CompilationIdentifier;
            aload 16 /* lir */
            aload 18 /* registerAllocationConfig */
            aload 1 /* graph */
            aload 2 /* stub */
            invokeinterface org.graalvm.compiler.core.gen.LIRGenerationProvider.newLIRGenerationResult:(Lorg/graalvm/compiler/core/common/CompilationIdentifier;Lorg/graalvm/compiler/lir/LIR;Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;Lorg/graalvm/compiler/nodes/StructuredGraph;Ljava/lang/Object;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            astore 19 /* lirGenRes */
        start local 19 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGenRes
        16: .line 151
            aload 17 /* lirBackend */
            aload 19 /* lirGenRes */
            invokeinterface org.graalvm.compiler.core.gen.LIRGenerationProvider.newLIRGenerator:(Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;)Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;
            astore 20 /* lirGen */
        start local 20 // org.graalvm.compiler.lir.gen.LIRGeneratorTool lirGen
        17: .line 152
            aload 17 /* lirBackend */
            aload 1 /* graph */
            aload 20 /* lirGen */
            invokeinterface org.graalvm.compiler.core.gen.LIRGenerationProvider.newNodeLIRBuilder:(Lorg/graalvm/compiler/nodes/StructuredGraph;Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;)Lorg/graalvm/compiler/nodes/spi/NodeLIRBuilderTool;
            astore 21 /* nodeLirGen */
        start local 21 // org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool nodeLirGen
        18: .line 155
            new org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext
            dup
            aload 20 /* lirGen */
            aload 21 /* nodeLirGen */
            aload 1 /* graph */
            aload 11 /* schedule */
            invokespecial org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext.<init>:(Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;Lorg/graalvm/compiler/nodes/spi/NodeLIRBuilderTool;Lorg/graalvm/compiler/nodes/StructuredGraph;Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;)V
            astore 22 /* context */
        start local 22 // org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext context
        19: .line 156
            new org.graalvm.compiler.core.LIRGenerationPhase
            dup
            invokespecial org.graalvm.compiler.core.LIRGenerationPhase.<init>:()V
            aload 0 /* backend */
            invokevirtual org.graalvm.compiler.core.target.Backend.getTarget:()Ljdk/vm/ci/code/TargetDescription;
            aload 19 /* lirGenRes */
            aload 22 /* context */
            invokevirtual org.graalvm.compiler.core.LIRGenerationPhase.apply:(Ljdk/vm/ci/code/TargetDescription;Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Ljava/lang/Object;)V
        20: .line 158
            aconst_null
            astore 23
            aconst_null
            astore 24
        21: aload 6 /* debug */
            ldc "LIRStages"
            aload 21 /* nodeLirGen */
            aload 19 /* lirGenRes */
            aload 16 /* lir */
            invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
            astore 25 /* s */
        start local 25 // org.graalvm.compiler.debug.DebugContext$Scope s
        22: .line 160
            aload 6 /* debug */
            iconst_1
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getLastSchedule:()Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;
            ldc "After LIR generation"
            invokevirtual org.graalvm.compiler.debug.DebugContext.dump:(ILjava/lang/Object;Ljava/lang/String;)V
        23: .line 161
            aload 0 /* backend */
            invokevirtual org.graalvm.compiler.core.target.Backend.getTarget:()Ljdk/vm/ci/code/TargetDescription;
            aload 19 /* lirGenRes */
            aload 20 /* lirGen */
            aload 4 /* lirSuites */
            aload 18 /* registerAllocationConfig */
            invokestatic org.graalvm.compiler.core.gen.LIRCompilerBackend.emitLowLevel:(Ljdk/vm/ci/code/TargetDescription;Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;Lorg/graalvm/compiler/lir/phases/LIRSuites;Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            astore 26 /* result */
        start local 26 // org.graalvm.compiler.lir.gen.LIRGenerationResult result
        24: .line 162
            aload 26 /* result */
            astore 28
        25: .line 163
            aload 25 /* s */
            ifnull 26
            aload 25 /* s */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
        26: .line 166
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String[] org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult org.graalvm.compiler.nodes.cfg.Block[] org.graalvm.compiler.nodes.cfg.Block org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] org.graalvm.compiler.lir.LIR org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.lir.gen.LIRGeneratorTool org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.lir.gen.LIRGenerationResult top org.graalvm.compiler.lir.gen.LIRGenerationResult
      StackMap stack:
            aload 10 /* a */
            ifnull 27
            aload 10 /* a */
            invokeinterface org.graalvm.compiler.debug.DebugCloseable.close:()V
      StackMap locals:
      StackMap stack:
        27: aload 9 /* ds */
            ifnull 28
            aload 9 /* ds */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
        28: .line 169
      StackMap locals:
      StackMap stack:
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
        29: .line 162
            aload 28
            areturn
        end local 26 // org.graalvm.compiler.lir.gen.LIRGenerationResult result
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String[] org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult org.graalvm.compiler.nodes.cfg.Block[] org.graalvm.compiler.nodes.cfg.Block org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] org.graalvm.compiler.lir.LIR org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.lir.gen.LIRGeneratorTool org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope
      StackMap stack: java.lang.Throwable
        30: astore 23
        31: .line 163
            aload 25 /* s */
            ifnull 32
            aload 25 /* s */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
        end local 25 // org.graalvm.compiler.debug.DebugContext$Scope s
      StackMap locals:
      StackMap stack:
        32: aload 23
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        33: astore 24
            aload 23
            ifnonnull 34
            aload 24
            astore 23
            goto 35
      StackMap locals:
      StackMap stack:
        34: aload 23
            aload 24
            if_acmpeq 35
            aload 23
            aload 24
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        35: aload 23
            athrow
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String[] org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult org.graalvm.compiler.nodes.cfg.Block[] org.graalvm.compiler.nodes.cfg.Block org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] org.graalvm.compiler.lir.LIR org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.lir.gen.LIRGeneratorTool org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext
      StackMap stack: java.lang.Throwable
        36: astore 23 /* e */
        start local 23 // java.lang.Throwable e
        37: .line 164
            aload 6 /* debug */
            aload 23 /* e */
            invokevirtual org.graalvm.compiler.debug.DebugContext.handle:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 23 // java.lang.Throwable e
        end local 22 // org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext context
        end local 21 // org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool nodeLirGen
        end local 20 // org.graalvm.compiler.lir.gen.LIRGeneratorTool lirGen
        end local 19 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGenRes
        end local 18 // org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig registerAllocationConfig
        end local 17 // org.graalvm.compiler.core.gen.LIRGenerationProvider lirBackend
        end local 16 // org.graalvm.compiler.lir.LIR lir
        end local 15 // org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] linearScanOrder
        end local 14 // org.graalvm.compiler.core.common.cfg.AbstractBlockBase[] codeEmittingOrder
        end local 13 // org.graalvm.compiler.nodes.cfg.Block startBlock
        end local 12 // org.graalvm.compiler.nodes.cfg.Block[] blocks
        end local 11 // org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult schedule
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String[] org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugContext$Scope org.graalvm.compiler.debug.DebugCloseable
      StackMap stack: java.lang.Throwable
        38: astore 7
        39: .line 166
            aload 10 /* a */
            ifnull 40
            aload 10 /* a */
            invokeinterface org.graalvm.compiler.debug.DebugCloseable.close:()V
        end local 10 // org.graalvm.compiler.debug.DebugCloseable a
      StackMap locals:
      StackMap stack:
        40: aload 7
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        41: astore 8
            aload 7
            ifnonnull 42
            aload 8
            astore 7
            goto 43
      StackMap locals:
      StackMap stack:
        42: aload 7
            aload 8
            if_acmpeq 43
            aload 7
            aload 8
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        43: aload 9 /* ds */
            ifnull 44
            aload 9 /* ds */
            invokeinterface org.graalvm.compiler.debug.DebugContext$Scope.close:()V
        end local 9 // org.graalvm.compiler.debug.DebugContext$Scope ds
      StackMap locals:
      StackMap stack:
        44: aload 7
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        45: astore 8
            aload 7
            ifnonnull 46
            aload 8
            astore 7
            goto 47
      StackMap locals:
      StackMap stack:
        46: aload 7
            aload 8
            if_acmpeq 47
            aload 7
            aload 8
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        47: aload 7
            athrow
      StackMap locals: org.graalvm.compiler.core.target.Backend org.graalvm.compiler.nodes.StructuredGraph java.lang.Object jdk.vm.ci.code.RegisterConfig org.graalvm.compiler.lir.phases.LIRSuites java.lang.String[] org.graalvm.compiler.debug.DebugContext
      StackMap stack: java.lang.Throwable
        48: astore 7 /* e */
        start local 7 // java.lang.Throwable e
        49: .line 167
            aload 6 /* debug */
            aload 7 /* e */
            invokevirtual org.graalvm.compiler.debug.DebugContext.handle:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 7 // java.lang.Throwable e
        50: .line 168
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 27
        51: .line 169
            aload 1 /* graph */
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.checkCancellation:()V
        52: .line 170
            aload 27
            athrow
        end local 6 // org.graalvm.compiler.debug.DebugContext debug
        end local 5 // java.lang.String[] allocationRestrictedTo
        end local 4 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
        end local 3 // jdk.vm.ci.code.RegisterConfig registerConfig
        end local 2 // java.lang.Object stub
        end local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        end local 0 // org.graalvm.compiler.core.target.Backend backend
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   53     0                   backend  Lorg/graalvm/compiler/core/target/Backend;
            0   53     1                     graph  Lorg/graalvm/compiler/nodes/StructuredGraph;
            0   53     2                      stub  Ljava/lang/Object;
            0   53     3            registerConfig  Ljdk/vm/ci/code/RegisterConfig;
            0   53     4                 lirSuites  Lorg/graalvm/compiler/lir/phases/LIRSuites;
            0   53     5    allocationRestrictedTo  [Ljava/lang/String;
            1   53     6                     debug  Lorg/graalvm/compiler/debug/DebugContext;
            3   44     9                        ds  Lorg/graalvm/compiler/debug/DebugContext$Scope;
            4   40    10                         a  Lorg/graalvm/compiler/debug/DebugCloseable;
            6   38    11                  schedule  Lorg/graalvm/compiler/nodes/StructuredGraph$ScheduleResult;
            7   38    12                    blocks  [Lorg/graalvm/compiler/nodes/cfg/Block;
            8   38    13                startBlock  Lorg/graalvm/compiler/nodes/cfg/Block;
           11   38    14         codeEmittingOrder  [Lorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;
           12   38    15           linearScanOrder  [Lorg/graalvm/compiler/core/common/cfg/AbstractBlockBase;
           13   38    16                       lir  Lorg/graalvm/compiler/lir/LIR;
           14   38    17                lirBackend  Lorg/graalvm/compiler/core/gen/LIRGenerationProvider;
           15   38    18  registerAllocationConfig  Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;
           16   38    19                 lirGenRes  Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
           17   38    20                    lirGen  Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;
           18   38    21                nodeLirGen  Lorg/graalvm/compiler/nodes/spi/NodeLIRBuilderTool;
           19   38    22                   context  Lorg/graalvm/compiler/core/LIRGenerationPhase$LIRGenerationContext;
           22   32    25                         s  Lorg/graalvm/compiler/debug/DebugContext$Scope;
           24   30    26                    result  Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
           37   38    23                         e  Ljava/lang/Throwable;
           49   50     7                         e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          22    25      30  any
          21    26      33  any
          30    33      33  any
          20    26      36  Class java.lang.Throwable
          30    36      36  Class java.lang.Throwable
           4    26      38  any
          30    38      38  any
           3    27      41  any
          30    41      41  any
           2    28      45  any
          30    45      45  any
           1    28      48  Class java.lang.Throwable
          30    48      48  Class java.lang.Throwable
           1    28      50  any
          30    50      50  any
    MethodParameters:
                        Name  Flags
      backend                 
      graph                   
      stub                    
      registerConfig          
      lirSuites               
      allocationRestrictedTo  

  private static org.graalvm.compiler.lir.gen.LIRGenerationResult emitLowLevel(jdk.vm.ci.code.TargetDescription, org.graalvm.compiler.lir.gen.LIRGenerationResult, org.graalvm.compiler.lir.gen.LIRGeneratorTool, org.graalvm.compiler.lir.phases.LIRSuites, org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig);
    descriptor: (Ljdk/vm/ci/code/TargetDescription;Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;Lorg/graalvm/compiler/lir/phases/LIRSuites;Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;)Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=9, args_size=5
        start local 0 // jdk.vm.ci.code.TargetDescription target
        start local 1 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGenRes
        start local 2 // org.graalvm.compiler.lir.gen.LIRGeneratorTool lirGen
        start local 3 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
        start local 4 // org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig registerAllocationConfig
         0: .line 175
            aload 1 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            invokevirtual org.graalvm.compiler.lir.LIR.getDebug:()Lorg/graalvm/compiler/debug/DebugContext;
            astore 5 /* debug */
        start local 5 // org.graalvm.compiler.debug.DebugContext debug
         1: .line 176
            new org.graalvm.compiler.lir.phases.PreAllocationOptimizationPhase$PreAllocationOptimizationContext
            dup
            aload 2 /* lirGen */
            invokespecial org.graalvm.compiler.lir.phases.PreAllocationOptimizationPhase$PreAllocationOptimizationContext.<init>:(Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;)V
            astore 6 /* preAllocOptContext */
        start local 6 // org.graalvm.compiler.lir.phases.PreAllocationOptimizationPhase$PreAllocationOptimizationContext preAllocOptContext
         2: .line 177
            aload 3 /* lirSuites */
            invokevirtual org.graalvm.compiler.lir.phases.LIRSuites.getPreAllocationOptimizationStage:()Lorg/graalvm/compiler/lir/phases/LIRPhaseSuite;
            aload 0 /* target */
            aload 1 /* lirGenRes */
            aload 6 /* preAllocOptContext */
            invokevirtual org.graalvm.compiler.lir.phases.LIRPhaseSuite.apply:(Ljdk/vm/ci/code/TargetDescription;Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Ljava/lang/Object;)V
         3: .line 178
            aload 5 /* debug */
            iconst_1
            aload 1 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            ldc "After PreAllocationOptimizationStage"
            invokevirtual org.graalvm.compiler.debug.DebugContext.dump:(ILjava/lang/Object;Ljava/lang/String;)V
         4: .line 180
            new org.graalvm.compiler.lir.phases.AllocationPhase$AllocationContext
            dup
            aload 2 /* lirGen */
            invokeinterface org.graalvm.compiler.lir.gen.LIRGeneratorTool.getSpillMoveFactory:()Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool$MoveFactory;
            aload 4 /* registerAllocationConfig */
            invokespecial org.graalvm.compiler.lir.phases.AllocationPhase$AllocationContext.<init>:(Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool$MoveFactory;Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;)V
            astore 7 /* allocContext */
        start local 7 // org.graalvm.compiler.lir.phases.AllocationPhase$AllocationContext allocContext
         5: .line 181
            aload 3 /* lirSuites */
            invokevirtual org.graalvm.compiler.lir.phases.LIRSuites.getAllocationStage:()Lorg/graalvm/compiler/lir/phases/LIRPhaseSuite;
            aload 0 /* target */
            aload 1 /* lirGenRes */
            aload 7 /* allocContext */
            invokevirtual org.graalvm.compiler.lir.phases.LIRPhaseSuite.apply:(Ljdk/vm/ci/code/TargetDescription;Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Ljava/lang/Object;)V
         6: .line 182
            aload 5 /* debug */
            iconst_1
            aload 1 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            ldc "After AllocationStage"
            invokevirtual org.graalvm.compiler.debug.DebugContext.dump:(ILjava/lang/Object;Ljava/lang/String;)V
         7: .line 184
            new org.graalvm.compiler.lir.phases.PostAllocationOptimizationPhase$PostAllocationOptimizationContext
            dup
            aload 2 /* lirGen */
            invokespecial org.graalvm.compiler.lir.phases.PostAllocationOptimizationPhase$PostAllocationOptimizationContext.<init>:(Lorg/graalvm/compiler/lir/gen/DiagnosticLIRGeneratorTool;)V
            astore 8 /* postAllocOptContext */
        start local 8 // org.graalvm.compiler.lir.phases.PostAllocationOptimizationPhase$PostAllocationOptimizationContext postAllocOptContext
         8: .line 185
            aload 3 /* lirSuites */
            invokevirtual org.graalvm.compiler.lir.phases.LIRSuites.getPostAllocationOptimizationStage:()Lorg/graalvm/compiler/lir/phases/LIRPhaseSuite;
            aload 0 /* target */
            aload 1 /* lirGenRes */
            aload 8 /* postAllocOptContext */
            invokevirtual org.graalvm.compiler.lir.phases.LIRPhaseSuite.apply:(Ljdk/vm/ci/code/TargetDescription;Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Ljava/lang/Object;)V
         9: .line 186
            aload 5 /* debug */
            iconst_1
            aload 1 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            ldc "After PostAllocationOptimizationStage"
            invokevirtual org.graalvm.compiler.debug.DebugContext.dump:(ILjava/lang/Object;Ljava/lang/String;)V
        10: .line 188
            aload 1 /* lirGenRes */
            areturn
        end local 8 // org.graalvm.compiler.lir.phases.PostAllocationOptimizationPhase$PostAllocationOptimizationContext postAllocOptContext
        end local 7 // org.graalvm.compiler.lir.phases.AllocationPhase$AllocationContext allocContext
        end local 6 // org.graalvm.compiler.lir.phases.PreAllocationOptimizationPhase$PreAllocationOptimizationContext preAllocOptContext
        end local 5 // org.graalvm.compiler.debug.DebugContext debug
        end local 4 // org.graalvm.compiler.core.common.alloc.RegisterAllocationConfig registerAllocationConfig
        end local 3 // org.graalvm.compiler.lir.phases.LIRSuites lirSuites
        end local 2 // org.graalvm.compiler.lir.gen.LIRGeneratorTool lirGen
        end local 1 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGenRes
        end local 0 // jdk.vm.ci.code.TargetDescription target
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   11     0                    target  Ljdk/vm/ci/code/TargetDescription;
            0   11     1                 lirGenRes  Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            0   11     2                    lirGen  Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;
            0   11     3                 lirSuites  Lorg/graalvm/compiler/lir/phases/LIRSuites;
            0   11     4  registerAllocationConfig  Lorg/graalvm/compiler/core/common/alloc/RegisterAllocationConfig;
            1   11     5                     debug  Lorg/graalvm/compiler/debug/DebugContext;
            2   11     6        preAllocOptContext  Lorg/graalvm/compiler/lir/phases/PreAllocationOptimizationPhase$PreAllocationOptimizationContext;
            5   11     7              allocContext  Lorg/graalvm/compiler/lir/phases/AllocationPhase$AllocationContext;
            8   11     8       postAllocOptContext  Lorg/graalvm/compiler/lir/phases/PostAllocationOptimizationPhase$PostAllocationOptimizationContext;
    MethodParameters:
                          Name  Flags
      target                    
      lirGenRes                 
      lirGen                    
      lirSuites                 
      registerAllocationConfig  

  public static void emitCode(org.graalvm.compiler.core.target.Backend, jdk.vm.ci.meta.Assumptions, jdk.vm.ci.meta.ResolvedJavaMethod, java.util.Collection<jdk.vm.ci.meta.ResolvedJavaMethod>, jdk.internal.vm.compiler.collections.EconomicSet<jdk.vm.ci.meta.ResolvedJavaField>, jdk.vm.ci.meta.SpeculationLog, int, org.graalvm.compiler.lir.gen.LIRGenerationResult, org.graalvm.compiler.code.CompilationResult, jdk.vm.ci.meta.ResolvedJavaMethod, org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory);
    descriptor: (Lorg/graalvm/compiler/core/target/Backend;Ljdk/vm/ci/meta/Assumptions;Ljdk/vm/ci/meta/ResolvedJavaMethod;Ljava/util/Collection;Ljdk/internal/vm/compiler/collections/EconomicSet;Ljdk/vm/ci/meta/SpeculationLog;ILorg/graalvm/compiler/lir/gen/LIRGenerationResult;Lorg/graalvm/compiler/code/CompilationResult;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=26, args_size=11
        start local 0 // org.graalvm.compiler.core.target.Backend backend
        start local 1 // jdk.vm.ci.meta.Assumptions assumptions
        start local 2 // jdk.vm.ci.meta.ResolvedJavaMethod rootMethod
        start local 3 // java.util.Collection inlinedMethods
        start local 4 // jdk.internal.vm.compiler.collections.EconomicSet accessedFields
        start local 5 // jdk.vm.ci.meta.SpeculationLog speculationLog
        start local 6 // int bytecodeSize
        start local 7 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGenRes
        start local 8 // org.graalvm.compiler.code.CompilationResult compilationResult
        start local 9 // jdk.vm.ci.meta.ResolvedJavaMethod installedCodeOwner
        start local 10 // org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory factory
         0: .line 203
            aload 7 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            invokevirtual org.graalvm.compiler.lir.LIR.getDebug:()Lorg/graalvm/compiler/debug/DebugContext;
            astore 11 /* debug */
        start local 11 // org.graalvm.compiler.debug.DebugContext debug
         1: .line 204
            aconst_null
            astore 12
            aconst_null
            astore 13
         2: getstatic org.graalvm.compiler.core.gen.LIRCompilerBackend.EmitCode:Lorg/graalvm/compiler/debug/TimerKey;
            aload 11 /* debug */
            invokeinterface org.graalvm.compiler.debug.TimerKey.start:(Lorg/graalvm/compiler/debug/DebugContext;)Lorg/graalvm/compiler/debug/DebugCloseable;
            astore 14 /* a */
        start local 14 // org.graalvm.compiler.debug.DebugCloseable a
         3: aload 11 /* debug */
            ldc "Emit code"
            invokevirtual org.graalvm.compiler.debug.DebugContext.enterCompilerPhase:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/DebugContext$CompilerPhaseScope;
            astore 15 /* cps */
        start local 15 // org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope cps
         4: .line 205
            aload 0 /* backend */
            checkcast org.graalvm.compiler.core.gen.LIRGenerationProvider
            astore 16 /* lirBackend */
        start local 16 // org.graalvm.compiler.core.gen.LIRGenerationProvider lirBackend
         5: .line 207
            aload 7 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getFrameMap:()Lorg/graalvm/compiler/lir/framemap/FrameMap;
            astore 17 /* frameMap */
        start local 17 // org.graalvm.compiler.lir.framemap.FrameMap frameMap
         6: .line 208
            aload 16 /* lirBackend */
            aload 7 /* lirGenRes */
            aload 17 /* frameMap */
            aload 8 /* compilationResult */
            aload 10 /* factory */
            invokeinterface org.graalvm.compiler.core.gen.LIRGenerationProvider.newCompilationResultBuilder:(Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;Lorg/graalvm/compiler/lir/framemap/FrameMap;Lorg/graalvm/compiler/code/CompilationResult;Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;)Lorg/graalvm/compiler/lir/asm/CompilationResultBuilder;
            astore 18 /* crb */
        start local 18 // org.graalvm.compiler.lir.asm.CompilationResultBuilder crb
         7: .line 209
            aload 16 /* lirBackend */
            aload 18 /* crb */
            aload 7 /* lirGenRes */
            invokevirtual org.graalvm.compiler.lir.gen.LIRGenerationResult.getLIR:()Lorg/graalvm/compiler/lir/LIR;
            aload 9 /* installedCodeOwner */
            invokeinterface org.graalvm.compiler.core.gen.LIRGenerationProvider.emitCode:(Lorg/graalvm/compiler/lir/asm/CompilationResultBuilder;Lorg/graalvm/compiler/lir/LIR;Ljdk/vm/ci/meta/ResolvedJavaMethod;)V
         8: .line 210
            aload 1 /* assumptions */
            ifnull 10
            aload 1 /* assumptions */
            invokevirtual jdk.vm.ci.meta.Assumptions.isEmpty:()Z
            ifne 10
         9: .line 211
            aload 8 /* compilationResult */
            aload 1 /* assumptions */
            invokevirtual jdk.vm.ci.meta.Assumptions.toArray:()[Ljdk/vm/ci/meta/Assumptions$Assumption;
            invokevirtual org.graalvm.compiler.code.CompilationResult.setAssumptions:([Ljdk/vm/ci/meta/Assumptions$Assumption;)V
        10: .line 213
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.lir.framemap.FrameMap org.graalvm.compiler.lir.asm.CompilationResultBuilder
      StackMap stack:
            aload 2 /* rootMethod */
            ifnull 14
        11: .line 214
            aload 8 /* compilationResult */
            aload 2 /* rootMethod */
            aload 3 /* inlinedMethods */
            invokevirtual org.graalvm.compiler.code.CompilationResult.setMethods:(Ljdk/vm/ci/meta/ResolvedJavaMethod;Ljava/util/Collection;)V
        12: .line 215
            aload 8 /* compilationResult */
            aload 4 /* accessedFields */
            invokevirtual org.graalvm.compiler.code.CompilationResult.setFields:(Ljdk/internal/vm/compiler/collections/EconomicSet;)V
        13: .line 216
            aload 8 /* compilationResult */
            iload 6 /* bytecodeSize */
            invokevirtual org.graalvm.compiler.code.CompilationResult.setBytecodeSize:(I)V
        14: .line 218
      StackMap locals:
      StackMap stack:
            aload 5 /* speculationLog */
            ifnull 16
        15: .line 219
            aload 8 /* compilationResult */
            aload 5 /* speculationLog */
            invokevirtual org.graalvm.compiler.code.CompilationResult.setSpeculationLog:(Ljdk/vm/ci/meta/SpeculationLog;)V
        16: .line 221
      StackMap locals:
      StackMap stack:
            aload 18 /* crb */
            invokevirtual org.graalvm.compiler.lir.asm.CompilationResultBuilder.finish:()V
        17: .line 222
            aload 11 /* debug */
            invokevirtual org.graalvm.compiler.debug.DebugContext.isCountEnabled:()Z
            ifeq 40
        18: .line 223
            aload 8 /* compilationResult */
            invokevirtual org.graalvm.compiler.code.CompilationResult.getDataPatches:()Ljava/util/List;
            astore 19 /* ldp */
        start local 19 // java.util.List ldp
        19: .line 224
            invokestatic jdk.vm.ci.meta.JavaKind.values:()[Ljdk/vm/ci/meta/JavaKind;
            astore 20 /* kindValues */
        start local 20 // jdk.vm.ci.meta.JavaKind[] kindValues
        20: .line 225
            aload 20 /* kindValues */
            arraylength
            anewarray org.graalvm.compiler.debug.CounterKey
            astore 21 /* dms */
        start local 21 // org.graalvm.compiler.debug.CounterKey[] dms
        21: .line 226
            iconst_0
            istore 22 /* i */
        start local 22 // int i
        22: goto 25
        23: .line 227
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.lir.framemap.FrameMap org.graalvm.compiler.lir.asm.CompilationResultBuilder java.util.List jdk.vm.ci.meta.JavaKind[] org.graalvm.compiler.debug.CounterKey[] int
      StackMap stack:
            aload 21 /* dms */
            iload 22 /* i */
            ldc "DataPatches-%s"
            aload 20 /* kindValues */
            iload 22 /* i */
            aaload
            invokestatic org.graalvm.compiler.debug.DebugContext.counter:(Ljava/lang/String;Ljava/lang/Object;)Lorg/graalvm/compiler/debug/CounterKey;
            aastore
        24: .line 226
            iinc 22 /* i */ 1
      StackMap locals:
      StackMap stack:
        25: iload 22 /* i */
            aload 21 /* dms */
            arraylength
            if_icmplt 23
        end local 22 // int i
        26: .line 230
            aload 19 /* ldp */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 23
            goto 34
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.lir.framemap.FrameMap org.graalvm.compiler.lir.asm.CompilationResultBuilder java.util.List jdk.vm.ci.meta.JavaKind[] org.graalvm.compiler.debug.CounterKey[] top java.util.Iterator
      StackMap stack:
        27: aload 23
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.vm.ci.code.site.DataPatch
            astore 22 /* dp */
        start local 22 // jdk.vm.ci.code.site.DataPatch dp
        28: .line 231
            getstatic jdk.vm.ci.meta.JavaKind.Illegal:Ljdk/vm/ci/meta/JavaKind;
            astore 24 /* kind */
        start local 24 // jdk.vm.ci.meta.JavaKind kind
        29: .line 232
            aload 22 /* dp */
            getfield jdk.vm.ci.code.site.DataPatch.reference:Ljdk/vm/ci/code/site/Reference;
            instanceof jdk.vm.ci.code.site.ConstantReference
            ifeq 33
        30: .line 233
            aload 22 /* dp */
            getfield jdk.vm.ci.code.site.DataPatch.reference:Ljdk/vm/ci/code/site/Reference;
            checkcast jdk.vm.ci.code.site.ConstantReference
            invokevirtual jdk.vm.ci.code.site.ConstantReference.getConstant:()Ljdk/vm/ci/meta/VMConstant;
            astore 25 /* constant */
        start local 25 // jdk.vm.ci.meta.VMConstant constant
        31: .line 234
            aload 25 /* constant */
            instanceof jdk.vm.ci.meta.JavaConstant
            ifeq 33
        32: .line 235
            aload 25 /* constant */
            checkcast jdk.vm.ci.meta.JavaConstant
            invokeinterface jdk.vm.ci.meta.JavaConstant.getJavaKind:()Ljdk/vm/ci/meta/JavaKind;
            astore 24 /* kind */
        end local 25 // jdk.vm.ci.meta.VMConstant constant
        33: .line 238
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.lir.framemap.FrameMap org.graalvm.compiler.lir.asm.CompilationResultBuilder java.util.List jdk.vm.ci.meta.JavaKind[] org.graalvm.compiler.debug.CounterKey[] jdk.vm.ci.code.site.DataPatch java.util.Iterator jdk.vm.ci.meta.JavaKind
      StackMap stack:
            aload 21 /* dms */
            aload 24 /* kind */
            invokevirtual jdk.vm.ci.meta.JavaKind.ordinal:()I
            aaload
            aload 11 /* debug */
            lconst_1
            invokeinterface org.graalvm.compiler.debug.CounterKey.add:(Lorg/graalvm/compiler/debug/DebugContext;J)V
        end local 24 // jdk.vm.ci.meta.JavaKind kind
        end local 22 // jdk.vm.ci.code.site.DataPatch dp
        34: .line 230
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.lir.framemap.FrameMap org.graalvm.compiler.lir.asm.CompilationResultBuilder java.util.List jdk.vm.ci.meta.JavaKind[] org.graalvm.compiler.debug.CounterKey[] top java.util.Iterator
      StackMap stack:
            aload 23
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 27
        35: .line 241
            ldc "CompilationResults"
            invokestatic org.graalvm.compiler.debug.DebugContext.counter:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/CounterKey;
            aload 11 /* debug */
            invokeinterface org.graalvm.compiler.debug.CounterKey.increment:(Lorg/graalvm/compiler/debug/DebugContext;)V
        36: .line 242
            ldc "CodeBytesEmitted"
            invokestatic org.graalvm.compiler.debug.DebugContext.counter:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/CounterKey;
            aload 11 /* debug */
            aload 8 /* compilationResult */
            invokevirtual org.graalvm.compiler.code.CompilationResult.getTargetCodeSize:()I
            i2l
            invokeinterface org.graalvm.compiler.debug.CounterKey.add:(Lorg/graalvm/compiler/debug/DebugContext;J)V
        37: .line 243
            ldc "InfopointsEmitted"
            invokestatic org.graalvm.compiler.debug.DebugContext.counter:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/CounterKey;
            aload 11 /* debug */
            aload 8 /* compilationResult */
            invokevirtual org.graalvm.compiler.code.CompilationResult.getInfopoints:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            invokeinterface org.graalvm.compiler.debug.CounterKey.add:(Lorg/graalvm/compiler/debug/DebugContext;J)V
        38: .line 244
            ldc "DataPatches"
            invokestatic org.graalvm.compiler.debug.DebugContext.counter:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/CounterKey;
            aload 11 /* debug */
            aload 19 /* ldp */
            invokeinterface java.util.List.size:()I
            i2l
            invokeinterface org.graalvm.compiler.debug.CounterKey.add:(Lorg/graalvm/compiler/debug/DebugContext;J)V
        39: .line 245
            ldc "ExceptionHandlersEmitted"
            invokestatic org.graalvm.compiler.debug.DebugContext.counter:(Ljava/lang/CharSequence;)Lorg/graalvm/compiler/debug/CounterKey;
            aload 11 /* debug */
            aload 8 /* compilationResult */
            invokevirtual org.graalvm.compiler.code.CompilationResult.getExceptionHandlers:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            invokeinterface org.graalvm.compiler.debug.CounterKey.add:(Lorg/graalvm/compiler/debug/DebugContext;J)V
        end local 21 // org.graalvm.compiler.debug.CounterKey[] dms
        end local 20 // jdk.vm.ci.meta.JavaKind[] kindValues
        end local 19 // java.util.List ldp
        40: .line 248
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope org.graalvm.compiler.core.gen.LIRGenerationProvider org.graalvm.compiler.lir.framemap.FrameMap org.graalvm.compiler.lir.asm.CompilationResultBuilder
      StackMap stack:
            aload 11 /* debug */
            iconst_1
            aload 8 /* compilationResult */
            ldc "After code generation"
            invokevirtual org.graalvm.compiler.debug.DebugContext.dump:(ILjava/lang/Object;Ljava/lang/String;)V
        end local 18 // org.graalvm.compiler.lir.asm.CompilationResultBuilder crb
        end local 17 // org.graalvm.compiler.lir.framemap.FrameMap frameMap
        end local 16 // org.graalvm.compiler.core.gen.LIRGenerationProvider lirBackend
        41: .line 249
            aload 15 /* cps */
            ifnull 44
            aload 15 /* cps */
            invokeinterface org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope.close:()V
            goto 44
      StackMap locals: org.graalvm.compiler.core.target.Backend jdk.vm.ci.meta.Assumptions jdk.vm.ci.meta.ResolvedJavaMethod java.util.Collection jdk.internal.vm.compiler.collections.EconomicSet jdk.vm.ci.meta.SpeculationLog int org.graalvm.compiler.lir.gen.LIRGenerationResult org.graalvm.compiler.code.CompilationResult jdk.vm.ci.meta.ResolvedJavaMethod org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory org.graalvm.compiler.debug.DebugContext java.lang.Throwable java.lang.Throwable org.graalvm.compiler.debug.DebugCloseable org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope
      StackMap stack: java.lang.Throwable
        42: astore 12
            aload 15 /* cps */
            ifnull 43
            aload 15 /* cps */
            invokeinterface org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope.close:()V
        end local 15 // org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope cps
      StackMap locals:
      StackMap stack:
        43: aload 12
            athrow
      StackMap locals:
      StackMap stack:
        44: aload 14 /* a */
            ifnull 52
            aload 14 /* a */
            invokeinterface org.graalvm.compiler.debug.DebugCloseable.close:()V
            goto 52
      StackMap locals:
      StackMap stack: java.lang.Throwable
        45: astore 13
            aload 12
            ifnonnull 46
            aload 13
            astore 12
            goto 47
      StackMap locals:
      StackMap stack:
        46: aload 12
            aload 13
            if_acmpeq 47
            aload 12
            aload 13
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        47: aload 14 /* a */
            ifnull 48
            aload 14 /* a */
            invokeinterface org.graalvm.compiler.debug.DebugCloseable.close:()V
        end local 14 // org.graalvm.compiler.debug.DebugCloseable a
      StackMap locals:
      StackMap stack:
        48: aload 12
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        49: astore 13
            aload 12
            ifnonnull 50
            aload 13
            astore 12
            goto 51
      StackMap locals:
      StackMap stack:
        50: aload 12
            aload 13
            if_acmpeq 51
            aload 12
            aload 13
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        51: aload 12
            athrow
        52: .line 250
      StackMap locals:
      StackMap stack:
            return
        end local 11 // org.graalvm.compiler.debug.DebugContext debug
        end local 10 // org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory factory
        end local 9 // jdk.vm.ci.meta.ResolvedJavaMethod installedCodeOwner
        end local 8 // org.graalvm.compiler.code.CompilationResult compilationResult
        end local 7 // org.graalvm.compiler.lir.gen.LIRGenerationResult lirGenRes
        end local 6 // int bytecodeSize
        end local 5 // jdk.vm.ci.meta.SpeculationLog speculationLog
        end local 4 // jdk.internal.vm.compiler.collections.EconomicSet accessedFields
        end local 3 // java.util.Collection inlinedMethods
        end local 2 // jdk.vm.ci.meta.ResolvedJavaMethod rootMethod
        end local 1 // jdk.vm.ci.meta.Assumptions assumptions
        end local 0 // org.graalvm.compiler.core.target.Backend backend
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   53     0             backend  Lorg/graalvm/compiler/core/target/Backend;
            0   53     1         assumptions  Ljdk/vm/ci/meta/Assumptions;
            0   53     2          rootMethod  Ljdk/vm/ci/meta/ResolvedJavaMethod;
            0   53     3      inlinedMethods  Ljava/util/Collection<Ljdk/vm/ci/meta/ResolvedJavaMethod;>;
            0   53     4      accessedFields  Ljdk/internal/vm/compiler/collections/EconomicSet<Ljdk/vm/ci/meta/ResolvedJavaField;>;
            0   53     5      speculationLog  Ljdk/vm/ci/meta/SpeculationLog;
            0   53     6        bytecodeSize  I
            0   53     7           lirGenRes  Lorg/graalvm/compiler/lir/gen/LIRGenerationResult;
            0   53     8   compilationResult  Lorg/graalvm/compiler/code/CompilationResult;
            0   53     9  installedCodeOwner  Ljdk/vm/ci/meta/ResolvedJavaMethod;
            0   53    10             factory  Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;
            1   53    11               debug  Lorg/graalvm/compiler/debug/DebugContext;
            3   48    14                   a  Lorg/graalvm/compiler/debug/DebugCloseable;
            4   43    15                 cps  Lorg/graalvm/compiler/debug/DebugContext$CompilerPhaseScope;
            5   41    16          lirBackend  Lorg/graalvm/compiler/core/gen/LIRGenerationProvider;
            6   41    17            frameMap  Lorg/graalvm/compiler/lir/framemap/FrameMap;
            7   41    18                 crb  Lorg/graalvm/compiler/lir/asm/CompilationResultBuilder;
           19   40    19                 ldp  Ljava/util/List<Ljdk/vm/ci/code/site/DataPatch;>;
           20   40    20          kindValues  [Ljdk/vm/ci/meta/JavaKind;
           21   40    21                 dms  [Lorg/graalvm/compiler/debug/CounterKey;
           22   26    22                   i  I
           28   34    22                  dp  Ljdk/vm/ci/code/site/DataPatch;
           29   34    24                kind  Ljdk/vm/ci/meta/JavaKind;
           31   33    25            constant  Ljdk/vm/ci/meta/VMConstant;
      Exception table:
        from    to  target  type
           4    41      42  any
           3    44      45  any
           2    49      49  any
    Signature: (Lorg/graalvm/compiler/core/target/Backend;Ljdk/vm/ci/meta/Assumptions;Ljdk/vm/ci/meta/ResolvedJavaMethod;Ljava/util/Collection<Ljdk/vm/ci/meta/ResolvedJavaMethod;>;Ljdk/internal/vm/compiler/collections/EconomicSet<Ljdk/vm/ci/meta/ResolvedJavaField;>;Ljdk/vm/ci/meta/SpeculationLog;ILorg/graalvm/compiler/lir/gen/LIRGenerationResult;Lorg/graalvm/compiler/code/CompilationResult;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/lir/asm/CompilationResultBuilderFactory;)V
    MethodParameters:
                    Name  Flags
      backend             
      assumptions         
      rootMethod          
      inlinedMethods      
      accessedFields      
      speculationLog      
      bytecodeSize        
      lirGenRes           
      compilationResult   
      installedCodeOwner  
      factory             
}
SourceFile: "LIRCompilerBackend.java"
InnerClasses:
  public abstract Assumption = jdk.vm.ci.meta.Assumptions$Assumption of jdk.vm.ci.meta.Assumptions
  public final LIRGenerationContext = org.graalvm.compiler.core.LIRGenerationPhase$LIRGenerationContext of org.graalvm.compiler.core.LIRGenerationPhase
  public abstract CompilerPhaseScope = org.graalvm.compiler.debug.DebugContext$CompilerPhaseScope of org.graalvm.compiler.debug.DebugContext
  public abstract Scope = org.graalvm.compiler.debug.DebugContext$Scope of org.graalvm.compiler.debug.DebugContext
  public abstract MoveFactory = org.graalvm.compiler.lir.gen.LIRGeneratorTool$MoveFactory of org.graalvm.compiler.lir.gen.LIRGeneratorTool
  public final AllocationContext = org.graalvm.compiler.lir.phases.AllocationPhase$AllocationContext of org.graalvm.compiler.lir.phases.AllocationPhase
  public final PostAllocationOptimizationContext = org.graalvm.compiler.lir.phases.PostAllocationOptimizationPhase$PostAllocationOptimizationContext of org.graalvm.compiler.lir.phases.PostAllocationOptimizationPhase
  public final PreAllocationOptimizationContext = org.graalvm.compiler.lir.phases.PreAllocationOptimizationPhase$PreAllocationOptimizationContext of org.graalvm.compiler.lir.phases.PreAllocationOptimizationPhase
  public ScheduleResult = org.graalvm.compiler.nodes.StructuredGraph$ScheduleResult of org.graalvm.compiler.nodes.StructuredGraph