public abstract class com.oracle.truffle.llvm.runtime.LLVMSymbol
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.llvm.runtime.LLVMSymbol
  super_class: java.lang.Object
{
  public static final com.oracle.truffle.llvm.runtime.LLVMSymbol[] EMPTY;
    descriptor: [Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private final boolean exported;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public static final int INVALID_INDEX;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  public static final int INVALID_ID;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 39
            iconst_0
            anewarray com.oracle.truffle.llvm.runtime.LLVMSymbol
            putstatic com.oracle.truffle.llvm.runtime.LLVMSymbol.EMPTY:[Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
         1: .line 50
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, int, int, boolean);
    descriptor: (Ljava/lang/String;IIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
        start local 1 // java.lang.String name
        start local 2 // int bitcodeID
        start local 3 // int symbolIndex
        start local 4 // boolean exported
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* name */
            putfield com.oracle.truffle.llvm.runtime.LLVMSymbol.name:Ljava/lang/String;
         2: .line 54
            aload 0 /* this */
            iload 2 /* bitcodeID */
            putfield com.oracle.truffle.llvm.runtime.LLVMSymbol.moduleId:I
         3: .line 55
            aload 0 /* this */
            iload 3 /* symbolIndex */
            putfield com.oracle.truffle.llvm.runtime.LLVMSymbol.symbolIndex:I
         4: .line 56
            aload 0 /* this */
            iload 4 /* exported */
            putfield com.oracle.truffle.llvm.runtime.LLVMSymbol.exported:Z
         5: .line 57
            return
        end local 4 // boolean exported
        end local 3 // int symbolIndex
        end local 2 // int bitcodeID
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            0    6     1         name  Ljava/lang/String;
            0    6     2    bitcodeID  I
            0    6     3  symbolIndex  I
            0    6     4     exported  Z
    MethodParameters:
             Name  Flags
      name         
      bitcodeID    
      symbolIndex  
      exported     

  public final java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
         0: .line 60
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.name:Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;

  public final java.lang.String getKind();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
         0: .line 64
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:()V
         1: .line 65
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;

  public final boolean isExported();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
         0: .line 69
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.exported:Z
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;

  public final int getSymbolIndex(boolean);
    descriptor: (Z)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
        start local 1 // boolean illegalOK
         0: .line 79
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.symbolIndex:I
            ifge 1
            iload 1 /* illegalOK */
            ifeq 2
         1: .line 80
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.symbolIndex:I
            ireturn
         2: .line 82
      StackMap locals:
      StackMap stack:
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreter:()V
         3: .line 83
            new com.oracle.truffle.llvm.runtime.except.LLVMIllegalSymbolIndexException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid function index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.symbolIndex:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.oracle.truffle.llvm.runtime.except.LLVMIllegalSymbolIndexException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // boolean illegalOK
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            0    4     1  illegalOK  Z
    MethodParameters:
           Name  Flags
      illegalOK  

  public final int getBitcodeID(boolean);
    descriptor: (Z)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
        start local 1 // boolean illegalOK
         0: .line 94
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.moduleId:I
            ifge 1
            iload 1 /* illegalOK */
            ifeq 2
         1: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.moduleId:I
            ireturn
         2: .line 97
      StackMap locals:
      StackMap stack:
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreter:()V
         3: .line 98
            new com.oracle.truffle.llvm.runtime.except.LLVMIllegalSymbolIndexException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid function ID: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.moduleId:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.oracle.truffle.llvm.runtime.except.LLVMIllegalSymbolIndexException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // boolean illegalOK
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            0    4     1  illegalOK  Z
    MethodParameters:
           Name  Flags
      illegalOK  

  public final boolean hasValidIndexAndID();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
         0: .line 102
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.symbolIndex:I
            iflt 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMSymbol.moduleId:I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;

  public abstract boolean isGlobalVariable();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isFunction();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isAlias();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract com.oracle.truffle.llvm.runtime.LLVMFunction asFunction();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract com.oracle.truffle.llvm.runtime.global.LLVMGlobal asGlobalVariable();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/global/LLVMGlobal;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "LLVMSymbol.java"