public class com.oracle.truffle.llvm.runtime.LLVMScope implements com.oracle.truffle.api.interop.TruffleObject
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMScope
  super_class: java.lang.Object
{
  private final java.util.HashMap<java.lang.String, com.oracle.truffle.llvm.runtime.LLVMSymbol> symbols;
    descriptor: Ljava/util/HashMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/HashMap<Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;>;

  private final java.util.ArrayList<java.lang.String> functionKeys;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Ljava/lang/String;>;

  private final java.util.HashMap<java.lang.String, java.lang.String> linkageNames;
    descriptor: Ljava/util/HashMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/HashMap<Ljava/lang/String;Ljava/lang/String;>;

  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 56
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            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.runtime.LLVMScope.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
         2: .line 64
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.LLVMScope.functionKeys:Ljava/util/ArrayList;
         3: .line 65
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
         4: .line 66
            return
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;

  public com.oracle.truffle.llvm.runtime.LLVMSymbol get(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
         0: .line 70
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMSymbol
            areturn
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    1     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      name  

  public java.lang.String getKey(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // int idx
         0: .line 75
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.functionKeys:Ljava/util/ArrayList;
            iload 1 /* idx */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 1 // int idx
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    1     1   idx  I
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      idx   

  public com.oracle.truffle.llvm.runtime.LLVMFunction getFunction(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
         0: .line 87
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.get:(Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 2 /* symbol */
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         1: .line 88
            aload 2 /* symbol */
            ifnull 3
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isFunction:()Z
            ifeq 3
         2: .line 89
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.asFunction:()Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            areturn
         3: .line 91
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* newName */
        start local 3 // java.lang.String newName
         4: .line 92
            aload 3 /* newName */
            ifnull 8
         5: .line 93
            aload 0 /* this */
            aload 3 /* newName */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.get:(Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 2 /* symbol */
         6: .line 94
            aload 2 /* symbol */
            ifnull 8
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isFunction:()Z
            ifeq 8
         7: .line 95
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.asFunction:()Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            areturn
         8: .line 99
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            areturn
        end local 3 // java.lang.String newName
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    9     1     name  Ljava/lang/String;
            1    9     2   symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            4    9     3  newName  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      name  

  public void registerLinkageName(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String linkageName
         0: .line 110
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
            aload 1 /* name */
            aload 2 /* linkageName */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 111
            return
        end local 2 // java.lang.String linkageName
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    2     1         name  Ljava/lang/String;
            0    2     2  linkageName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      name         
      linkageName  

  public com.oracle.truffle.llvm.runtime.global.LLVMGlobal getGlobalVariable(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/global/LLVMGlobal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
         0: .line 121
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.get:(Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 2 /* symbol */
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         1: .line 122
            aload 2 /* symbol */
            ifnull 3
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isGlobalVariable:()Z
            ifeq 3
         2: .line 123
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.asGlobalVariable:()Lcom/oracle/truffle/llvm/runtime/global/LLVMGlobal;
            areturn
         3: .line 125
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack:
            aconst_null
            areturn
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    4     1    name  Ljava/lang/String;
            1    4     2  symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      name  

  public void register(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.LLVMScope this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         0: .line 130
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.getName:()Ljava/lang/String;
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMSymbol
            astore 2 /* existing */
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol existing
         1: .line 131
            aload 2 /* existing */
            ifnonnull 4
         2: .line 132
            aload 0 /* this */
            aload 1 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.getName:()Ljava/lang/String;
            aload 1 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.put:(Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)V
         3: .line 133
            goto 5
         4: .line 134
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack:
            getstatic com.oracle.truffle.llvm.runtime.LLVMScope.$assertionsDisabled:Z
            ifne 5
            aload 2 /* existing */
            aload 1 /* symbol */
            if_acmpeq 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 136
      StackMap locals:
      StackMap stack:
            return
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol existing
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    6     1    symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            1    6     2  existing  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
        Name  Flags
      symbol  

  public boolean contains(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
         0: .line 140
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    1     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      name  

  public boolean exports(com.oracle.truffle.llvm.runtime.LLVMContext, java.lang.String);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        start local 2 // java.lang.String name
         0: .line 145
            aload 0 /* this */
            aload 2 /* name */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.get:(Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 3 /* localSymbol */
        start local 3 // com.oracle.truffle.llvm.runtime.LLVMSymbol localSymbol
         1: .line 146
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getGlobalScope:()Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            aload 2 /* name */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.get:(Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 4 /* globalSymbol */
        start local 4 // com.oracle.truffle.llvm.runtime.LLVMSymbol globalSymbol
         2: .line 147
            aload 3 /* localSymbol */
            ifnull 3
            aload 3 /* localSymbol */
            aload 4 /* globalSymbol */
            if_acmpne 3
            iconst_1
            ireturn
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMSymbol com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack:
         3: iconst_0
            ireturn
        end local 4 // com.oracle.truffle.llvm.runtime.LLVMSymbol globalSymbol
        end local 3 // com.oracle.truffle.llvm.runtime.LLVMSymbol localSymbol
        end local 2 // java.lang.String name
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    4     1       context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            0    4     2          name  Ljava/lang/String;
            1    4     3   localSymbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            2    4     4  globalSymbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
         Name  Flags
      context  
      name     

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 151
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.isEmpty:()Z
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;

  public void addMissingLinkageName(com.oracle.truffle.llvm.runtime.LLVMScope);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMScope;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMScope other
         0: .line 156
            aload 1 /* other */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMScope com.oracle.truffle.llvm.runtime.LLVMScope top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* entry */
        start local 2 // java.util.Map$Entry entry
         2: .line 157
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.util.HashMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.util.Map$Entry entry
         3: .line 156
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 159
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMScope other
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    5     1  other  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            2    3     2  entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      other  

  public void addMissingEntries(com.oracle.truffle.llvm.runtime.LLVMScope);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMScope;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMScope other
         0: .line 163
            aload 1 /* other */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMScope com.oracle.truffle.llvm.runtime.LLVMScope top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* entry */
        start local 2 // java.util.Map$Entry entry
         2: .line 164
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMSymbol
            invokevirtual java.util.HashMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.util.Map$Entry entry
         3: .line 163
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 167
            aload 1 /* other */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 7
      StackMap locals:
      StackMap stack:
         5: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* entry */
        start local 2 // java.util.Map$Entry entry
         6: .line 168
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.linkageNames:Ljava/util/HashMap;
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual java.util.HashMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.util.Map$Entry entry
         7: .line 167
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
         8: .line 170
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMScope other
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    9     1  other  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            2    3     2  entry  Ljava/util/Map$Entry<Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;>;
            6    7     2  entry  Ljava/util/Map$Entry<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      other  

  public java.util.Collection<com.oracle.truffle.llvm.runtime.LLVMSymbol> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 174
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.values:()Ljava/util/Collection;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    Signature: ()Ljava/util/Collection<Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;>;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()

  public void rename(java.lang.String, com.oracle.truffle.llvm.runtime.LLVMSymbol);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String oldName
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         0: .line 179
            aload 0 /* this */
            aload 1 /* oldName */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.remove:(Ljava/lang/String;)V
         1: .line 180
            aload 0 /* this */
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.register:(Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)V
         2: .line 181
            return
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
        end local 1 // java.lang.String oldName
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    3     1  oldName  Ljava/lang/String;
            0    3     2   symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
         Name  Flags
      oldName  
      symbol   

  public java.lang.Object getKeys();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 184
            new com.oracle.truffle.llvm.runtime.LLVMScope$Keys
            dup
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMScope$Keys.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMScope;)V
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;

  private void put(java.lang.String, com.oracle.truffle.llvm.runtime.LLVMSymbol);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         0: .line 188
            getstatic com.oracle.truffle.llvm.runtime.LLVMScope.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.containsKey:(Ljava/lang/Object;)Z
            ifeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* name */
            aload 2 /* symbol */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 191
            aload 2 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isFunction:()Z
            ifeq 6
         3: .line 192
            getstatic com.oracle.truffle.llvm.runtime.LLVMScope.$assertionsDisabled:Z
            ifne 4
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.functionKeys:Ljava/util/ArrayList;
            aload 1 /* name */
            invokevirtual java.util.ArrayList.contains:(Ljava/lang/Object;)Z
            ifeq 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 193
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.llvm.runtime.LLVMScope.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.functionKeys:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            invokevirtual java.util.HashMap.size:()I
            if_icmplt 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.functionKeys:Ljava/util/ArrayList;
            aload 1 /* name */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 196
      StackMap locals:
      StackMap stack:
            return
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    7     1    name  Ljava/lang/String;
            0    7     2  symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
    MethodParameters:
        Name  Flags
      name    
      symbol  

  public void remove(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
         0: .line 200
            getstatic com.oracle.truffle.llvm.runtime.LLVMScope.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.containsKey:(Ljava/lang/Object;)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.symbols:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMSymbol
            astore 2 /* removedSymbol */
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol removedSymbol
         2: .line 203
            aload 2 /* removedSymbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isFunction:()Z
            ifeq 5
         3: .line 204
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMScope.functionKeys:Ljava/util/ArrayList;
            aload 1 /* name */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            istore 3 /* contained */
        start local 3 // boolean contained
         4: .line 205
            getstatic com.oracle.truffle.llvm.runtime.LLVMScope.$assertionsDisabled:Z
            ifne 5
            iload 3 /* contained */
            ifne 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 3 // boolean contained
         5: .line 207
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack:
            return
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMSymbol removedSymbol
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    6     1           name  Ljava/lang/String;
            2    6     2  removedSymbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            4    5     3      contained  Z
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      name  

  final boolean hasLanguage();
    descriptor: ()Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 211
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  final java.lang.Class<? extends com.oracle.truffle.api.TruffleLanguage<?>> getLanguage();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 216
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    Signature: ()Ljava/lang/Class<+Lcom/oracle/truffle/api/TruffleLanguage<*>;>;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  final boolean isScope();
    descriptor: ()Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 221
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  public java.lang.Object toDisplayString(boolean);
    descriptor: (Z)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // boolean allowSideEffects
         0: .line 226
            ldc "llvm-global"
            areturn
        end local 1 // boolean allowSideEffects
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    1     1  allowSideEffects  Z
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
                  Name  Flags
      allowSideEffects  

  boolean hasMembers();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
         0: .line 231
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.Object getMembers(boolean);
    descriptor: (Z)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // boolean includeInternal
         0: .line 236
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.getKeys:()Ljava/lang/Object;
            areturn
        end local 1 // boolean includeInternal
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    1     1  includeInternal  Z
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
                 Name  Flags
      includeInternal  

  boolean isMemberReadable(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String name
         0: .line 241
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.contains:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0    1     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
      Name  Flags
      name  

  java.lang.Object readMember(java.lang.String, com.oracle.truffle.api.profiles.BranchProfile, com.oracle.truffle.llvm.runtime.LLVMContext);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/api/profiles/BranchProfile;Lcom/oracle/truffle/llvm/runtime/LLVMContext;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
        start local 1 // java.lang.String globalName
        start local 2 // com.oracle.truffle.api.profiles.BranchProfile exception
        start local 3 // com.oracle.truffle.llvm.runtime.LLVMContext context
         0: .line 249
            aload 0 /* this */
            aload 1 /* globalName */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.contains:(Ljava/lang/String;)Z
            ifeq 11
         1: .line 250
            aload 0 /* this */
            aload 1 /* globalName */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMScope.get:(Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            astore 4 /* symbol */
        start local 4 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
         2: .line 251
            aload 4 /* symbol */
            ifnull 10
            aload 4 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMSymbol.isFunction:()Z
            ifeq 10
         3: .line 253
            aload 3 /* context */
            aload 4 /* symbol */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getSymbol:(Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;)Lcom/oracle/truffle/llvm/runtime/pointer/LLVMPointer;
            astore 5 /* value */
        start local 5 // com.oracle.truffle.llvm.runtime.pointer.LLVMPointer value
         4: .line 254
            aload 5 /* value */
            ifnull 8
         5: .line 255
            aload 5 /* value */
            invokestatic com.oracle.truffle.llvm.runtime.pointer.LLVMManagedPointer.cast:(Ljava/lang/Object;)Lcom/oracle/truffle/llvm/runtime/pointer/LLVMManagedPointer;
            invokeinterface com.oracle.truffle.llvm.runtime.pointer.LLVMManagedPointer.getObject:()Ljava/lang/Object;
         6: areturn
        end local 5 // com.oracle.truffle.llvm.runtime.pointer.LLVMPointer value
         7: .line 257
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMScope java.lang.String com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.llvm.runtime.LLVMContext com.oracle.truffle.llvm.runtime.LLVMSymbol
      StackMap stack: com.oracle.truffle.llvm.runtime.except.LLVMException
            pop
         8: .line 260
      StackMap locals:
      StackMap stack:
            aload 2 /* exception */
            invokevirtual com.oracle.truffle.api.profiles.BranchProfile.enter:()V
         9: .line 261
            aload 1 /* globalName */
            invokestatic com.oracle.truffle.api.interop.UnknownIdentifierException.create:(Ljava/lang/String;)Lcom/oracle/truffle/api/interop/UnknownIdentifierException;
            athrow
        10: .line 263
      StackMap locals:
      StackMap stack:
            aload 4 /* symbol */
            areturn
        end local 4 // com.oracle.truffle.llvm.runtime.LLVMSymbol symbol
        11: .line 265
      StackMap locals:
      StackMap stack:
            aload 2 /* exception */
            invokevirtual com.oracle.truffle.api.profiles.BranchProfile.enter:()V
        12: .line 266
            aload 1 /* globalName */
            invokestatic com.oracle.truffle.api.interop.UnknownIdentifierException.create:(Ljava/lang/String;)Lcom/oracle/truffle/api/interop/UnknownIdentifierException;
            athrow
        end local 3 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 2 // com.oracle.truffle.api.profiles.BranchProfile exception
        end local 1 // java.lang.String globalName
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            0   13     1  globalName  Ljava/lang/String;
            0   13     2   exception  Lcom/oracle/truffle/api/profiles/BranchProfile;
            0   13     3     context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            2   11     4      symbol  Lcom/oracle/truffle/llvm/runtime/LLVMSymbol;
            4    7     5       value  Lcom/oracle/truffle/llvm/runtime/pointer/LLVMPointer;
      Exception table:
        from    to  target  type
           3     6       7  Class com.oracle.truffle.llvm.runtime.except.LLVMLinkerException
           3     6       7  Class com.oracle.truffle.llvm.runtime.except.LLVMIllegalSymbolIndexException
    Exceptions:
      throws com.oracle.truffle.api.interop.UnknownIdentifierException
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
        com.oracle.truffle.api.dsl.Cached()
      2:
        com.oracle.truffle.api.dsl.CachedContext(value = Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;)
    MethodParameters:
            Name  Flags
      globalName  
      exception   
      context     
}
SourceFile: "LLVMScope.java"
NestMembers:
  com.oracle.truffle.llvm.runtime.LLVMScope$Keys
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives
  final Keys = com.oracle.truffle.llvm.runtime.LLVMScope$Keys of com.oracle.truffle.llvm.runtime.LLVMScope
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)