public class com.oracle.truffle.llvm.runtime.LLVMAlias extends com.oracle.truffle.llvm.runtime.LLVMSymbol
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMAlias
  super_class: com.oracle.truffle.llvm.runtime.LLVMSymbol
{
  private com.oracle.truffle.llvm.runtime.LLVMSymbol target;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  public void <init>(java.lang.String, com.oracle.truffle.llvm.runtime.LLVMSymbol, boolean);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
        start local 1 // java.lang.String name
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol target
        start local 3 // boolean exported
         0: .line 43
            aload 0 /* this */
            aload 1 /* name */
            iconst_m1
            iconst_m1
            iload 3 /* exported */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMSymbol.<init>:(Ljava/lang/String;IIZ)V
         1: .line 44
            aload 0 /* this */
            aload 2 /* target */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMAlias.setTarget:(Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)V
         2: .line 45
            return
        end local 3 // boolean exported
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol target
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;
            0    3     1      name  Ljava/lang/String;
            0    3     2    target  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            0    3     3  exported  Z
    MethodParameters:
          Name  Flags
      name      
      target    
      exported  

  public com.oracle.truffle.llvm.runtime.LLVMSymbol getTarget();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 48
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  public void setTarget(com.oracle.truffle.llvm.runtime.LLVMSymbol);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMSymbol value
         0: .line 52
            aload 0 /* this */
            aload 1 /* value */
            putfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
         1: .line 53
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            instanceof com.oracle.truffle.llvm.runtime.LLVMAlias
            ifeq 4
         2: .line 54
            getstatic org.graalvm.collections.Equivalence.IDENTITY:Lorg/graalvm/collections/Equivalence;
            invokestatic org.graalvm.collections.EconomicSet.create:(Lorg/graalvm/collections/Equivalence;)Lorg/graalvm/collections/EconomicSet;
            astore 2 /* visited */
        start local 2 // org.graalvm.collections.EconomicSet visited
         3: .line 55
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* visited */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMAlias.checkForCycle:(Lcom/oracle/truffle/llvm/runtime/LLVMAlias;Lorg/graalvm/collections/EconomicSet;)V
        end local 2 // org.graalvm.collections.EconomicSet visited
         4: .line 57
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMSymbol value
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;
            0    5     1    value  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            3    4     2  visited  Lorg/graalvm/collections/EconomicSet<Lcom/oracle/truffle/llvm/runtime/LLVMAlias;>;
    MethodParameters:
       Name  Flags
      value  

  public boolean isFunction();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 61
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isFunction:()Z
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  public boolean isGlobalVariable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 66
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isGlobalVariable:()Z
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  public boolean isAlias();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 71
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  public com.oracle.truffle.llvm.runtime.LLVMFunction asFunction();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 76
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.asFunction:()Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  public com.oracle.truffle.llvm.runtime.global.LLVMGlobal asGlobalVariable();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/global/LLVMGlobal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 81
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.asGlobalVariable:()Lcom/oracle/truffle/llvm/runtime/global/LLVMGlobal;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
         0: .line 86
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMSymbol.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMAlias.target:Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;

  private void checkForCycle(com.oracle.truffle.llvm.runtime.LLVMAlias, org.graalvm.collections.EconomicSet<com.oracle.truffle.llvm.runtime.LLVMAlias>);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMAlias;Lorg/graalvm/collections/EconomicSet;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMAlias alias
        start local 2 // org.graalvm.collections.EconomicSet visited
         0: .line 90
            aload 2 /* visited */
            aload 1 /* alias */
            invokeinterface org.graalvm.collections.EconomicSet.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 91
            new com.oracle.truffle.llvm.runtime.except.LLVMLinkerException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Found a cycle between the following aliases: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* visited */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial com.oracle.truffle.llvm.runtime.except.LLVMLinkerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 2 /* visited */
            aload 1 /* alias */
            invokeinterface org.graalvm.collections.EconomicSet.add:(Ljava/lang/Object;)Z
            pop
         3: .line 94
            aload 1 /* alias */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMAlias.getTarget:()Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            instanceof com.oracle.truffle.llvm.runtime.LLVMAlias
            ifeq 5
         4: .line 95
            aload 0 /* this */
            aload 1 /* alias */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMAlias.getTarget:()Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            checkcast com.oracle.truffle.llvm.runtime.LLVMAlias
            aload 2 /* visited */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMAlias.checkForCycle:(Lcom/oracle/truffle/llvm/runtime/LLVMAlias;Lorg/graalvm/collections/EconomicSet;)V
         5: .line 97
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.graalvm.collections.EconomicSet visited
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMAlias alias
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMAlias this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;
            0    6     1    alias  Lcom/oracle/truffle/llvm/runtime/LLVMAlias;
            0    6     2  visited  Lorg/graalvm/collections/EconomicSet<Lcom/oracle/truffle/llvm/runtime/LLVMAlias;>;
    Signature: (Lcom/oracle/truffle/llvm/runtime/LLVMAlias;Lorg/graalvm/collections/EconomicSet<Lcom/oracle/truffle/llvm/runtime/LLVMAlias;>;)V
    MethodParameters:
         Name  Flags
      alias    
      visited  

  public static com.oracle.truffle.llvm.runtime.LLVMSymbol resolveAlias(com.oracle.truffle.llvm.runtime.LLVMSymbol);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         0: .line 100
            aload 0 /* symbol */
            ifnonnull 2
         1: .line 101
            aconst_null
            areturn
         2: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* symbol */
            astore 1 /* tmp */
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMSymbol tmp
         3: .line 104
            goto 5
         4: .line 105
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack:
            aload 1 /* tmp */
            checkcast com.oracle.truffle.llvm.runtime.LLVMAlias
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMAlias.getTarget:()Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 1 /* tmp */
         5: .line 104
      StackMap locals:
      StackMap stack:
            aload 1 /* tmp */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isAlias:()Z
            ifne 4
         6: .line 107
            aload 1 /* tmp */
            areturn
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMSymbol tmp
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            3    7     1     tmp  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    MethodParameters:
        Name  Flags
      symbol  
}
SourceFile: "LLVMAlias.java"
InnerClasses:
  public abstract CompilationFinal = com.oracle.truffle.api.CompilerDirectives$CompilationFinal of com.oracle.truffle.api.CompilerDirectives