public final class com.oracle.truffle.llvm.parser.model.functions.FunctionParameter implements com.oracle.truffle.llvm.runtime.types.symbols.SSAValue, com.oracle.truffle.llvm.parser.model.ValueSymbol
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.parser.model.functions.FunctionParameter
  super_class: java.lang.Object
{
  private final com.oracle.truffle.llvm.runtime.types.Type type;
    descriptor: Lcom/oracle/truffle/llvm/runtime/types/Type;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int frameIdentifier;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup parameterAttribute;
    descriptor: Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int argIndex;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  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=1, locals=0, args_size=0
         0: .line 40
            ldc Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;
            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 com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(com.oracle.truffle.llvm.runtime.types.Type, com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup, int);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/types/Type;Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
        start local 1 // com.oracle.truffle.llvm.runtime.types.Type type
        start local 2 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup parameterAttribute
        start local 3 // int argIndex
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_m1
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.frameIdentifier:I
         2: .line 48
            aload 0 /* this */
            ldc "<anon>"
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.name:Ljava/lang/String;
         3: .line 51
            aload 0 /* this */
            aload 1 /* type */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.type:Lcom/oracle/truffle/llvm/runtime/types/Type;
         4: .line 52
            aload 0 /* this */
            aload 2 /* parameterAttribute */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.parameterAttribute:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
         5: .line 53
            aload 0 /* this */
            iload 3 /* argIndex */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.argIndex:I
         6: .line 54
            return
        end local 3 // int argIndex
        end local 2 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup parameterAttribute
        end local 1 // com.oracle.truffle.llvm.runtime.types.Type type
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    7     0                this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;
            0    7     1                type  Lcom/oracle/truffle/llvm/runtime/types/Type;
            0    7     2  parameterAttribute  Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            0    7     3            argIndex  I
    MethodParameters:
                    Name  Flags
      type                
      parameterAttribute  
      argIndex            

  public int getArgIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
         0: .line 57
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.argIndex:I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
         0: .line 62
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.name:Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;

  public void setName(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
        start local 1 // java.lang.String name
         0: .line 67
            aload 0 /* this */
            aload 1 /* name */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.name:Ljava/lang/String;
         1: .line 68
            return
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public int getFrameIdentifier();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
         0: .line 72
            getstatic com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.frameIdentifier:I
            iconst_m1
            if_icmpne 1
            new java.lang.AssertionError
            dup
            ldc "uninitialized frame identifier"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.frameIdentifier:I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;

  public void setFrameIdentifier(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
        start local 1 // int frameIdentifier
         0: .line 78
            getstatic com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.frameIdentifier:I
            iconst_m1
            if_icmpeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* frameIdentifier */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.frameIdentifier:I
         2: .line 80
            return
        end local 1 // int frameIdentifier
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;
            0    3     1  frameIdentifier  I
    MethodParameters:
                 Name  Flags
      frameIdentifier  

  public com.oracle.truffle.llvm.runtime.types.Type getType();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/types/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
         0: .line 84
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.type:Lcom/oracle/truffle/llvm/runtime/types/Type;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;

  public com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup getParameterAttribute();
    descriptor: ()Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
         0: .line 88
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.parameterAttribute:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;

  public void replace(com.oracle.truffle.llvm.parser.model.SymbolImpl, com.oracle.truffle.llvm.parser.model.SymbolImpl);
    descriptor: (Lcom/oracle/truffle/llvm/parser/model/SymbolImpl;Lcom/oracle/truffle/llvm/parser/model/SymbolImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
        start local 1 // com.oracle.truffle.llvm.parser.model.SymbolImpl oldValue
        start local 2 // com.oracle.truffle.llvm.parser.model.SymbolImpl newValue
         0: .line 93
            return
        end local 2 // com.oracle.truffle.llvm.parser.model.SymbolImpl newValue
        end local 1 // com.oracle.truffle.llvm.parser.model.SymbolImpl oldValue
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;
            0    1     1  oldValue  Lcom/oracle/truffle/llvm/parser/model/SymbolImpl;
            0    1     2  newValue  Lcom/oracle/truffle/llvm/parser/model/SymbolImpl;
    MethodParameters:
          Name  Flags
      oldValue  
      newValue  

  public void accept(com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor);
    descriptor: (Lcom/oracle/truffle/llvm/parser/model/visitors/SymbolVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
        start local 1 // com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor visitor
         0: .line 97
            aload 1 /* visitor */
            aload 0 /* this */
            invokeinterface com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor.visit:(Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;)V
         1: .line 98
            return
        end local 1 // com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor visitor
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;
            0    2     1  visitor  Lcom/oracle/truffle/llvm/parser/model/visitors/SymbolVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
         0: .line 102
            ldc "Parameter %s (%s)"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.name:Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.type:Lcom/oracle/truffle/llvm/runtime/types/Type;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionParameter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionParameter;

  public void replace(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.parser.model.SymbolImpl
            aload 2
            checkcast com.oracle.truffle.llvm.parser.model.SymbolImpl
            invokevirtual com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.replace:(Lcom/oracle/truffle/llvm/parser/model/SymbolImpl;Lcom/oracle/truffle/llvm/parser/model/SymbolImpl;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void accept(com.oracle.truffle.llvm.parser.ValueList$ValueVisitor);
    descriptor: (Lcom/oracle/truffle/llvm/parser/ValueList$ValueVisitor;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.parser.model.visitors.SymbolVisitor
            invokevirtual com.oracle.truffle.llvm.parser.model.functions.FunctionParameter.accept:(Lcom/oracle/truffle/llvm/parser/model/visitors/SymbolVisitor;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "FunctionParameter.java"
InnerClasses:
  public abstract ValueVisitor = com.oracle.truffle.llvm.parser.ValueList$ValueVisitor of com.oracle.truffle.llvm.parser.ValueList