public class com.oracle.truffle.llvm.parser.listeners.ParameterAttributes implements com.oracle.truffle.llvm.parser.listeners.ParserListener
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.llvm.parser.listeners.ParameterAttributes
  super_class: java.lang.Object
{
  private static final int PARAMATTR_CODE_ENTRY_OLD;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int PARAMATTR_CODE_ENTRY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final int PARAMATTR_GRP_CODE_ENTRY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private static final int WELL_KNOWN_ATTRIBUTE_KIND;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int WELL_KNOWN_INTEGER_ATTRIBUTE_KIND;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int STRING_ATTRIBUTE_KIND;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private static final int STRING_VALUE_ATTRIBUTE_KIND;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private static final int BYVAL_ATTRIBUTE_KIND;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  private static final int TYPED_BYVAL_ATTRIBUTE_KIND;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

  private final java.util.List<com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup> attributes;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;>;

  private final java.util.List<com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry> parameterCodeEntry;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;>;

  private final com.oracle.truffle.llvm.parser.listeners.Types types;
    descriptor: Lcom/oracle/truffle/llvm/parser/listeners/Types;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(com.oracle.truffle.llvm.parser.listeners.Types);
    descriptor: (Lcom/oracle/truffle/llvm/parser/listeners/Types;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
        start local 1 // com.oracle.truffle.llvm.parser.listeners.Types types
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.attributes:Ljava/util/List;
         2: .line 61
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.parameterCodeEntry:Ljava/util/List;
         3: .line 66
            aload 0 /* this */
            aload 1 /* types */
            putfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.types:Lcom/oracle/truffle/llvm/parser/listeners/Types;
         4: .line 67
            return
        end local 1 // com.oracle.truffle.llvm.parser.listeners.Types types
        end local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/truffle/llvm/parser/listeners/ParameterAttributes;
            0    5     1  types  Lcom/oracle/truffle/llvm/parser/listeners/Types;
    MethodParameters:
       Name  Flags
      types  

  public com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry getCodeEntry(long);
    descriptor: (J)Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
        start local 1 // long idx
         0: .line 76
            lload 1 /* idx */
            lconst_0
            lcmp
            ifle 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.parameterCodeEntry:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            lload 1 /* idx */
            lcmp
            ifge 2
         1: .line 77
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry.EMPTY:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
            areturn
         2: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.parameterCodeEntry:Ljava/util/List;
            lload 1 /* idx */
            lconst_1
            lsub
            l2i
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry
            areturn
        end local 1 // long idx
        end local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/parser/listeners/ParameterAttributes;
            0    3     1   idx  J
    MethodParameters:
      Name  Flags
      idx   

  public void record(com.oracle.truffle.llvm.parser.scanner.RecordBuffer);
    descriptor: (Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
        start local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
         0: .line 85
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.getId:()I
            istore 2 /* id */
        start local 2 // int id
         1: .line 86
            iload 2 /* id */
            tableswitch { // 1 - 3
                    1: 2
                    2: 4
                    3: 6
              default: 8
          }
         2: .line 88
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.decodeOldCodeEntry:(Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
         3: .line 89
            goto 8
         4: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.decodeCodeEntry:(Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
         5: .line 93
            goto 8
         6: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.decodeGroupCodeEntry:(Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
         7: .line 97
            goto 8
         8: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int id
        end local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
        end local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/oracle/truffle/llvm/parser/listeners/ParameterAttributes;
            0    9     1  buffer  Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;
            1    9     2      id  I
    MethodParameters:
        Name  Flags
      buffer  

  private void decodeOldCodeEntry(com.oracle.truffle.llvm.parser.scanner.RecordBuffer);
    descriptor: (Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
        start local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
         0: .line 105
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* attrGroup */
        start local 2 // java.util.List attrGroup
         1: .line 107
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 108
      StackMap locals: java.util.List int
      StackMap stack:
            aload 2 /* attrGroup */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokestatic com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.decodeOldGroupCodeEntry:(JJ)Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 107
            iinc 3 /* i */ 2
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.size:()I
            if_icmplt 3
        end local 3 // int i
         6: .line 111
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.parameterCodeEntry:Ljava/util/List;
            new com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry
            dup
            aload 2 /* attrGroup */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry.<init>:(Ljava/util/List;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 112
            return
        end local 2 // java.util.List attrGroup
        end local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
        end local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/oracle/truffle/llvm/parser/listeners/ParameterAttributes;
            0    8     1     buffer  Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;
            1    8     2  attrGroup  Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;>;
            2    6     3          i  I
    MethodParameters:
        Name  Flags
      buffer  

  private static com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup decodeOldGroupCodeEntry(long, long);
    descriptor: (JJ)Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // long paramIdx
        start local 2 // long attr
         0: .line 115
            new com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup
            dup
            ldc -1
            lload 0 /* paramIdx */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.<init>:(JJ)V
            astore 4 /* group */
        start local 4 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup group
         1: .line 117
            lload 2 /* attr */
            lconst_1
            land
            lconst_0
            lcmp
            ifeq 3
         2: .line 118
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.ZEROEXT:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
         3: .line 120
      StackMap locals: com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup
      StackMap stack:
            lload 2 /* attr */
            ldc 2
            land
            lconst_0
            lcmp
            ifeq 5
         4: .line 121
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.SIGNEXT:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
         5: .line 123
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 4
            land
            lconst_0
            lcmp
            ifeq 7
         6: .line 124
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NORETURN:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
         7: .line 126
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 8
            land
            lconst_0
            lcmp
            ifeq 9
         8: .line 127
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.INREG:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
         9: .line 129
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 16
            land
            lconst_0
            lcmp
            ifeq 11
        10: .line 130
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.SRET:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        11: .line 132
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 32
            land
            lconst_0
            lcmp
            ifeq 13
        12: .line 133
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NOUNWIND:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        13: .line 135
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 64
            land
            lconst_0
            lcmp
            ifeq 15
        14: .line 136
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NOALIAS:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        15: .line 138
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 128
            land
            lconst_0
            lcmp
            ifeq 17
        16: .line 139
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.BYVAL:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        17: .line 141
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 256
            land
            lconst_0
            lcmp
            ifeq 19
        18: .line 142
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NEST:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        19: .line 144
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 512
            land
            lconst_0
            lcmp
            ifeq 21
        20: .line 145
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.READNONE:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        21: .line 147
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 1024
            land
            lconst_0
            lcmp
            ifeq 23
        22: .line 148
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.READONLY:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        23: .line 150
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 2048
            land
            lconst_0
            lcmp
            ifeq 25
        24: .line 151
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NOINLINE:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        25: .line 153
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 4096
            land
            lconst_0
            lcmp
            ifeq 27
        26: .line 154
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.ALWAYSINLINE:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        27: .line 156
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 8192
            land
            lconst_0
            lcmp
            ifeq 29
        28: .line 157
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.OPTSIZE:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        29: .line 159
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 16384
            land
            lconst_0
            lcmp
            ifeq 31
        30: .line 160
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.SSP:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        31: .line 162
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 32768
            land
            lconst_0
            lcmp
            ifeq 33
        32: .line 163
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.SSPREQ:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        33: .line 165
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 16711680
            land
            lconst_0
            lcmp
            ifeq 36
        34: .line 166
            lload 2 /* attr */
            bipush 16
            lshr
            ldc 255
            land
            l2i
            istore 5 /* align */
        start local 5 // int align
        35: .line 167
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.ALIGN:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            iload 5 /* align */
            i2l
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;J)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        end local 5 // int align
        36: .line 169
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 4294967296
            land
            lconst_0
            lcmp
            ifeq 38
        37: .line 170
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NOCAPTURE:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        38: .line 172
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 8589934592
            land
            lconst_0
            lcmp
            ifeq 40
        39: .line 173
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NOREDZONE:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        40: .line 175
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 17179869184
            land
            lconst_0
            lcmp
            ifeq 42
        41: .line 176
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NOIMPLICITFLOAT:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        42: .line 178
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 34359738368
            land
            lconst_0
            lcmp
            ifeq 44
        43: .line 179
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.NAKED:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        44: .line 181
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 68719476736
            land
            lconst_0
            lcmp
            ifeq 46
        45: .line 182
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.INLINEHINT:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        46: .line 184
      StackMap locals:
      StackMap stack:
            lload 2 /* attr */
            ldc 962072674304
            land
            lconst_0
            lcmp
            ifeq 49
        47: .line 185
            iconst_1
            lload 2 /* attr */
            bipush 37
            lshr
            ldc 7
            land
            l2i
            iconst_1
            isub
            ishl
            istore 5 /* alignstack */
        start local 5 // int alignstack
        48: .line 186
            aload 4 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.ALIGNSTACK:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            iload 5 /* alignstack */
            i2l
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;J)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        end local 5 // int alignstack
        49: .line 189
      StackMap locals:
      StackMap stack:
            aload 4 /* group */
            areturn
        end local 4 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup group
        end local 2 // long attr
        end local 0 // long paramIdx
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   50     0    paramIdx  J
            0   50     2        attr  J
            1   50     4       group  Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
           35   36     5       align  I
           48   49     5  alignstack  I
    MethodParameters:
          Name  Flags
      paramIdx  
      attr      

  private void decodeCodeEntry(com.oracle.truffle.llvm.parser.scanner.RecordBuffer);
    descriptor: (Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
        start local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
         0: .line 193
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* attrGroup */
        start local 2 // java.util.List attrGroup
         1: .line 195
            goto 9
         2: .line 196
      StackMap locals: java.util.List
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            lstore 3 /* groupId */
        start local 3 // long groupId
         3: .line 197
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.attributes:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 8
      StackMap locals: com.oracle.truffle.llvm.parser.listeners.ParameterAttributes com.oracle.truffle.llvm.parser.scanner.RecordBuffer java.util.List long top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup
            astore 5 /* attr */
        start local 5 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup attr
         5: .line 198
            aload 5 /* attr */
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.getGroupId:()J
            lload 3 /* groupId */
            lcmp
            ifne 8
         6: .line 199
            aload 2 /* attrGroup */
            aload 5 /* attr */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 200
            goto 9
        end local 5 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup attr
         8: .line 197
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        end local 3 // long groupId
         9: .line 195
      StackMap locals: com.oracle.truffle.llvm.parser.listeners.ParameterAttributes com.oracle.truffle.llvm.parser.scanner.RecordBuffer java.util.List
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.remaining:()I
            ifgt 2
        10: .line 205
            aload 2 /* attrGroup */
            invokeinterface java.util.List.size:()I
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.size:()I
            if_icmpeq 12
        11: .line 206
            new com.oracle.truffle.llvm.runtime.except.LLVMParserException
            dup
            ldc "Mismatching number of defined and found attributes in AttributesGroup"
            invokespecial com.oracle.truffle.llvm.runtime.except.LLVMParserException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.parameterCodeEntry:Ljava/util/List;
            new com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry
            dup
            aload 2 /* attrGroup */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry.<init>:(Ljava/util/List;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        13: .line 210
            return
        end local 2 // java.util.List attrGroup
        end local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
        end local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lcom/oracle/truffle/llvm/parser/listeners/ParameterAttributes;
            0   14     1     buffer  Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;
            1   14     2  attrGroup  Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;>;
            3    9     3    groupId  J
            5    8     5       attr  Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    MethodParameters:
        Name  Flags
      buffer  

  private void decodeGroupCodeEntry(com.oracle.truffle.llvm.parser.scanner.RecordBuffer);
    descriptor: (Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
        start local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
         0: .line 213
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            lstore 2 /* groupId */
        start local 2 // long groupId
         1: .line 214
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            lstore 4 /* paramIdx */
        start local 4 // long paramIdx
         2: .line 216
            new com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup
            dup
            lload 2 /* groupId */
            lload 4 /* paramIdx */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.<init>:(JJ)V
            astore 6 /* group */
        start local 6 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup group
         3: .line 217
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.attributes:Ljava/util/List;
            aload 6 /* group */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 219
            goto 30
         5: .line 220
      StackMap locals: long long com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.readInt:()I
            istore 7 /* type */
        start local 7 // int type
         6: .line 221
            iload 7 /* type */
            tableswitch { // 0 - 6
                    0: 7
                    1: 10
                    2: 29
                    3: 13
                    4: 16
                    5: 20
                    6: 24
              default: 29
          }
         7: .line 223
      StackMap locals: int
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokestatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.decode:(J)Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            astore 8 /* attr */
        start local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
         8: .line 224
            aload 6 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            aload 8 /* attr */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
         9: .line 225
            goto 30
        end local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        10: .line 229
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokestatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.decode:(J)Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            astore 8 /* attr */
        start local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        11: .line 230
            aload 6 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute
            dup
            aload 8 /* attr */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;J)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        12: .line 231
            goto 30
        end local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        13: .line 235
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokestatic com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.readString:(Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)Ljava/lang/String;
            astore 8 /* strAttr */
        start local 8 // java.lang.String strAttr
        14: .line 236
            aload 6 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$StringAttribute
            dup
            aload 8 /* strAttr */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$StringAttribute.<init>:(Ljava/lang/String;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        15: .line 237
            goto 30
        end local 8 // java.lang.String strAttr
        16: .line 241
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokestatic com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.readString:(Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)Ljava/lang/String;
            astore 8 /* strAttr */
        start local 8 // java.lang.String strAttr
        17: .line 242
            aload 1 /* buffer */
            invokestatic com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.readString:(Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)Ljava/lang/String;
            astore 9 /* strVal */
        start local 9 // java.lang.String strVal
        18: .line 243
            aload 6 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$StringValueAttribute
            dup
            aload 8 /* strAttr */
            aload 9 /* strVal */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$StringValueAttribute.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        19: .line 244
            goto 30
        end local 9 // java.lang.String strVal
        end local 8 // java.lang.String strAttr
        20: .line 248
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokestatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.decode:(J)Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            astore 8 /* attr */
        start local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        21: .line 249
            aload 8 /* attr */
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.BYVAL:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            if_acmpne 30
        22: .line 250
            aload 6 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.BYVAL:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        23: .line 252
            goto 30
        end local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        24: .line 256
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokestatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.decode:(J)Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            astore 8 /* attr */
        start local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        25: .line 257
            aload 8 /* attr */
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.BYVAL:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            if_acmpne 30
        26: .line 258
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.listeners.ParameterAttributes.types:Lcom/oracle/truffle/llvm/parser/listeners/Types;
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            invokevirtual com.oracle.truffle.llvm.parser.listeners.Types.get:(J)Lcom/oracle/truffle/llvm/runtime/types/Type;
            astore 9 /* valueType */
        start local 9 // com.oracle.truffle.llvm.runtime.types.Type valueType
        27: .line 259
            aload 6 /* group */
            new com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownTypedAttribute
            dup
            getstatic com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind.BYVAL:Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
            aload 9 /* valueType */
            invokespecial com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownTypedAttribute.<init>:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;Lcom/oracle/truffle/llvm/runtime/types/Type;)V
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup.addAttribute:(Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute;)V
        end local 9 // com.oracle.truffle.llvm.runtime.types.Type valueType
        28: .line 261
            goto 30
        end local 8 // com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind attr
        29: .line 265
      StackMap locals:
      StackMap stack:
            new com.oracle.truffle.llvm.runtime.except.LLVMParserException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unexpected code of attribute group: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 7 /* type */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.oracle.truffle.llvm.runtime.except.LLVMParserException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // int type
        30: .line 219
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.remaining:()I
            ifgt 5
        31: .line 268
            return
        end local 6 // com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup group
        end local 4 // long paramIdx
        end local 2 // long groupId
        end local 1 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
        end local 0 // com.oracle.truffle.llvm.parser.listeners.ParameterAttributes this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   32     0       this  Lcom/oracle/truffle/llvm/parser/listeners/ParameterAttributes;
            0   32     1     buffer  Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;
            1   32     2    groupId  J
            2   32     4   paramIdx  J
            3   32     6      group  Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            6   30     7       type  I
            8   10     8       attr  Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
           11   13     8       attr  Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
           14   16     8    strAttr  Ljava/lang/String;
           17   20     8    strAttr  Ljava/lang/String;
           18   20     9     strVal  Ljava/lang/String;
           21   24     8       attr  Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
           25   29     8       attr  Lcom/oracle/truffle/llvm/parser/model/attributes/Attribute$Kind;
           27   28     9  valueType  Lcom/oracle/truffle/llvm/runtime/types/Type;
    MethodParameters:
        Name  Flags
      buffer  

  private static java.lang.String readString(com.oracle.truffle.llvm.parser.scanner.RecordBuffer);
    descriptor: (Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
         0: .line 271
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 273
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 0 /* buffer */
            invokevirtual com.oracle.truffle.llvm.parser.scanner.RecordBuffer.read:()J
            lstore 2 /* value */
        start local 2 // long value
         2: .line 274
            lload 2 /* value */
            lconst_0
            lcmp
            ifne 4
         3: .line 275
            goto 6
         4: .line 277
      StackMap locals: long
      StackMap stack:
            aload 1 /* sb */
            lload 2 /* value */
            l2i
            i2c
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        end local 2 // long value
         5: .line 272
            goto 1
         6: .line 279
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // com.oracle.truffle.llvm.parser.scanner.RecordBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  buffer  Lcom/oracle/truffle/llvm/parser/scanner/RecordBuffer;
            1    7     1      sb  Ljava/lang/StringBuilder;
            2    5     2   value  J
    MethodParameters:
        Name  Flags
      buffer  
}
SourceFile: "ParameterAttributes.java"
InnerClasses:
  public final Kind = com.oracle.truffle.llvm.parser.model.attributes.Attribute$Kind of com.oracle.truffle.llvm.parser.model.attributes.Attribute
  public KnownAttribute = com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownAttribute of com.oracle.truffle.llvm.parser.model.attributes.Attribute
  public final KnownIntegerValueAttribute = com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownIntegerValueAttribute of com.oracle.truffle.llvm.parser.model.attributes.Attribute
  public KnownTypedAttribute = com.oracle.truffle.llvm.parser.model.attributes.Attribute$KnownTypedAttribute of com.oracle.truffle.llvm.parser.model.attributes.Attribute
  public StringAttribute = com.oracle.truffle.llvm.parser.model.attributes.Attribute$StringAttribute of com.oracle.truffle.llvm.parser.model.attributes.Attribute
  public final StringValueAttribute = com.oracle.truffle.llvm.parser.model.attributes.Attribute$StringValueAttribute of com.oracle.truffle.llvm.parser.model.attributes.Attribute