public final class org.graalvm.compiler.hotspot.nodes.AllocaNode extends org.graalvm.compiler.nodes.FixedWithNextNode implements org.graalvm.compiler.nodes.spi.LIRLowerable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.compiler.hotspot.nodes.AllocaNode
  super_class: org.graalvm.compiler.nodes.FixedWithNextNode
{
  public static final org.graalvm.compiler.graph.NodeClass<org.graalvm.compiler.hotspot.nodes.AllocaNode> TYPE;
    descriptor: Lorg/graalvm/compiler/graph/NodeClass;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Lorg/graalvm/compiler/graph/NodeClass<Lorg/graalvm/compiler/hotspot/nodes/AllocaNode;>;

  protected final int slots;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 49
            ldc Lorg/graalvm/compiler/hotspot/nodes/AllocaNode;
            invokestatic org.graalvm.compiler.graph.NodeClass.create:(Ljava/lang/Class;)Lorg/graalvm/compiler/graph/NodeClass;
            putstatic org.graalvm.compiler.hotspot.nodes.AllocaNode.TYPE:Lorg/graalvm/compiler/graph/NodeClass;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(org.graalvm.compiler.word.WordTypes, int);
    descriptor: (Lorg/graalvm/compiler/word/WordTypes;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.hotspot.nodes.AllocaNode this
        start local 1 // org.graalvm.compiler.word.WordTypes wordTypes
        start local 2 // int slots
         0: .line 56
            aload 0 /* this */
            getstatic org.graalvm.compiler.hotspot.nodes.AllocaNode.TYPE:Lorg/graalvm/compiler/graph/NodeClass;
            aload 1 /* wordTypes */
            invokevirtual org.graalvm.compiler.word.WordTypes.getWordKind:()Ljdk/vm/ci/meta/JavaKind;
            invokestatic org.graalvm.compiler.core.common.type.StampFactory.forKind:(Ljdk/vm/ci/meta/JavaKind;)Lorg/graalvm/compiler/core/common/type/Stamp;
            invokespecial org.graalvm.compiler.nodes.FixedWithNextNode.<init>:(Lorg/graalvm/compiler/graph/NodeClass;Lorg/graalvm/compiler/core/common/type/Stamp;)V
         1: .line 57
            aload 0 /* this */
            iload 2 /* slots */
            putfield org.graalvm.compiler.hotspot.nodes.AllocaNode.slots:I
         2: .line 58
            return
        end local 2 // int slots
        end local 1 // org.graalvm.compiler.word.WordTypes wordTypes
        end local 0 // org.graalvm.compiler.hotspot.nodes.AllocaNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/graalvm/compiler/hotspot/nodes/AllocaNode;
            0    3     1  wordTypes  Lorg/graalvm/compiler/word/WordTypes;
            0    3     2      slots  I
    RuntimeVisibleParameterAnnotations: 
      0:
        org.graalvm.compiler.graph.Node$InjectedNodeParameter()
      1:
    MethodParameters:
           Name  Flags
      wordTypes  
      slots      

  public void generate(org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool);
    descriptor: (Lorg/graalvm/compiler/nodes/spi/NodeLIRBuilderTool;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.graalvm.compiler.hotspot.nodes.AllocaNode this
        start local 1 // org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool gen
         0: .line 62
            aload 1 /* gen */
            invokeinterface org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool.getLIRGeneratorTool:()Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.nodes.AllocaNode.slots:I
            invokeinterface org.graalvm.compiler.lir.gen.LIRGeneratorTool.allocateStackSlots:(I)Lorg/graalvm/compiler/lir/VirtualStackSlot;
            astore 2 /* array */
        start local 2 // org.graalvm.compiler.lir.VirtualStackSlot array
         1: .line 63
            aload 1 /* gen */
            invokeinterface org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool.getLIRGeneratorTool:()Lorg/graalvm/compiler/lir/gen/LIRGeneratorTool;
            aload 2 /* array */
            invokeinterface org.graalvm.compiler.lir.gen.LIRGeneratorTool.emitAddress:(Ljdk/vm/ci/meta/AllocatableValue;)Lorg/graalvm/compiler/lir/Variable;
            astore 3 /* result */
        start local 3 // jdk.vm.ci.meta.Value result
         2: .line 64
            aload 1 /* gen */
            aload 0 /* this */
            aload 3 /* result */
            invokeinterface org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool.setResult:(Lorg/graalvm/compiler/nodes/ValueNode;Ljdk/vm/ci/meta/Value;)Ljdk/vm/ci/meta/Value;
            pop
         3: .line 65
            return
        end local 3 // jdk.vm.ci.meta.Value result
        end local 2 // org.graalvm.compiler.lir.VirtualStackSlot array
        end local 1 // org.graalvm.compiler.nodes.spi.NodeLIRBuilderTool gen
        end local 0 // org.graalvm.compiler.hotspot.nodes.AllocaNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/graalvm/compiler/hotspot/nodes/AllocaNode;
            0    4     1     gen  Lorg/graalvm/compiler/nodes/spi/NodeLIRBuilderTool;
            1    4     2   array  Lorg/graalvm/compiler/lir/VirtualStackSlot;
            2    4     3  result  Ljdk/vm/ci/meta/Value;
    MethodParameters:
      Name  Flags
      gen   

  public static native org.graalvm.compiler.word.Word alloca(int);
    descriptor: (I)Lorg/graalvm/compiler/word/Word;
    flags: (0x0109) ACC_PUBLIC, ACC_STATIC, ACC_NATIVE
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.graph.Node$NodeIntrinsic()
    RuntimeVisibleParameterAnnotations: 
      0:
        org.graalvm.compiler.graph.Node$ConstantNodeParameter()
    MethodParameters:
       Name  Flags
      slots  
}
SourceFile: "AllocaNode.java"
InnerClasses:
  public abstract ConstantNodeParameter = org.graalvm.compiler.graph.Node$ConstantNodeParameter of org.graalvm.compiler.graph.Node
  public abstract InjectedNodeParameter = org.graalvm.compiler.graph.Node$InjectedNodeParameter of org.graalvm.compiler.graph.Node
  public abstract NodeIntrinsic = org.graalvm.compiler.graph.Node$NodeIntrinsic of org.graalvm.compiler.graph.Node
    RuntimeVisibleAnnotations: 
      org.graalvm.compiler.nodeinfo.NodeInfo(cycles = org.graalvm.compiler.nodeinfo.NodeCycles.CYCLES_2:Lorg/graalvm/compiler/nodeinfo/NodeCycles;, size = org.graalvm.compiler.nodeinfo.NodeSize.SIZE_1:Lorg/graalvm/compiler/nodeinfo/NodeSize;)