public class com.oracle.truffle.llvm.runtime.LLVMLanguage extends com.oracle.truffle.api.TruffleLanguage<com.oracle.truffle.llvm.runtime.LLVMContext>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMLanguage
  super_class: com.oracle.truffle.api.TruffleLanguage
{
  static final java.lang.String LLVM_BITCODE_MIME_TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "application/x-llvm-ir-bitcode"

  static final java.lang.String LLVM_BITCODE_EXTENSION;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "bc"

  static final java.lang.String LLVM_ELF_SHARED_MIME_TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "application/x-sharedlib"

  static final java.lang.String LLVM_ELF_EXEC_MIME_TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "application/x-executable"

  static final java.lang.String LLVM_ELF_LINUX_EXTENSION;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "so"

  static final java.lang.String LLVM_MACHO_MIME_TYPE;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "application/x-mach-binary"

  static final java.lang.String MAIN_ARGS_KEY;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "Sulong Main Args"

  static final java.lang.String PARSE_ONLY_KEY;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "Parse only"

  public static final java.lang.String ID;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "llvm"

  static final java.lang.String NAME;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "LLVM"

  private final java.util.concurrent.atomic.AtomicInteger nextID;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public final com.oracle.truffle.api.Assumption singleContextAssumption;
    descriptor: Lcom/oracle/truffle/api/Assumption;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  private com.oracle.truffle.llvm.runtime.config.Configuration activeConfiguration;
    descriptor: Lcom/oracle/truffle/llvm/runtime/config/Configuration;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  private com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey<?>[] contextExtensions;
    descriptor: [Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
    flags: (0x0002) ACC_PRIVATE
    Signature: [Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey<*>;

  private com.oracle.truffle.llvm.runtime.memory.LLVMMemory cachedLLVMMemory;
    descriptor: Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  private final org.graalvm.collections.EconomicMap<java.lang.String, com.oracle.truffle.llvm.runtime.LLVMScope> internalFileScopes;
    descriptor: Lorg/graalvm/collections/EconomicMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/graalvm/collections/EconomicMap<Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMScope;>;

  private final org.graalvm.collections.EconomicMap<java.lang.String, com.oracle.truffle.api.CallTarget> libraryCache;
    descriptor: Lorg/graalvm/collections/EconomicMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/graalvm/collections/EconomicMap<Ljava/lang/String;Lcom/oracle/truffle/api/CallTarget;>;

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

  private final org.graalvm.collections.EconomicMap<java.lang.String, com.oracle.truffle.api.source.Source> librarySources;
    descriptor: Lorg/graalvm/collections/EconomicMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/graalvm/collections/EconomicMap<Ljava/lang/String;Lcom/oracle/truffle/api/source/Source;>;

  private final com.oracle.truffle.llvm.runtime.debug.LLDBSupport lldbSupport;
    descriptor: Lcom/oracle/truffle/llvm/runtime/debug/LLDBSupport;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.api.Assumption noCommonHandleAssumption;
    descriptor: Lcom/oracle/truffle/api/Assumption;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.api.Assumption noDerefHandleAssumption;
    descriptor: Lcom/oracle/truffle/api/Assumption;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType$InteropTypeRegistry interopTypeRegistry;
    descriptor: Lcom/oracle/truffle/llvm/runtime/interop/access/LLVMInteropType$InteropTypeRegistry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private com.oracle.truffle.llvm.runtime.LLVMFunctionCode sulongInitContextCode;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  private com.oracle.truffle.llvm.runtime.LLVMFunction sulongDisposeContext;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  private com.oracle.truffle.llvm.runtime.LLVMFunctionCode startFunctionCode;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  private com.oracle.truffle.api.CallTarget freeGlobalBlocks;
    descriptor: Lcom/oracle/truffle/api/CallTarget;
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 81
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            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.LLVMLanguage.$assertionsDisabled:Z
         3: .line 96
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 81
            aload 0 /* this */
            invokespecial com.oracle.truffle.api.TruffleLanguage.<init>:()V
         1: .line 97
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:(I)V
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.nextID:Ljava/util/concurrent/atomic/AtomicInteger;
         2: .line 99
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.Truffle.getRuntime:()Lcom/oracle/truffle/api/TruffleRuntime;
            ldc "Only a single context is active"
            invokeinterface com.oracle.truffle.api.TruffleRuntime.createAssumption:(Ljava/lang/String;)Lcom/oracle/truffle/api/Assumption;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.singleContextAssumption:Lcom/oracle/truffle/api/Assumption;
         3: .line 101
            aload 0 /* this */
            aconst_null
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
         4: .line 136
            aload 0 /* this */
            invokestatic org.graalvm.collections.EconomicMap.create:()Lorg/graalvm/collections/EconomicMap;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.internalFileScopes:Lorg/graalvm/collections/EconomicMap;
         5: .line 137
            aload 0 /* this */
            invokestatic org.graalvm.collections.EconomicMap.create:()Lorg/graalvm/collections/EconomicMap;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCache:Lorg/graalvm/collections/EconomicMap;
         6: .line 138
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCacheLock:Ljava/lang/Object;
         7: .line 139
            aload 0 /* this */
            invokestatic org.graalvm.collections.EconomicMap.create:()Lorg/graalvm/collections/EconomicMap;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.librarySources:Lorg/graalvm/collections/EconomicMap;
         8: .line 141
            aload 0 /* this */
            new com.oracle.truffle.llvm.runtime.debug.LLDBSupport
            dup
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.runtime.debug.LLDBSupport.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;)V
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.lldbSupport:Lcom/oracle/truffle/llvm/runtime/debug/LLDBSupport;
         9: .line 142
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.Truffle.getRuntime:()Lcom/oracle/truffle/api/TruffleRuntime;
            ldc "no common handle"
            invokeinterface com.oracle.truffle.api.TruffleRuntime.createAssumption:(Ljava/lang/String;)Lcom/oracle/truffle/api/Assumption;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.noCommonHandleAssumption:Lcom/oracle/truffle/api/Assumption;
        10: .line 143
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.Truffle.getRuntime:()Lcom/oracle/truffle/api/TruffleRuntime;
            ldc "no deref handle"
            invokeinterface com.oracle.truffle.api.TruffleRuntime.createAssumption:(Ljava/lang/String;)Lcom/oracle/truffle/api/Assumption;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.noDerefHandleAssumption:Lcom/oracle/truffle/api/Assumption;
        11: .line 145
            aload 0 /* this */
            new com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType$InteropTypeRegistry
            dup
            invokespecial com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType$InteropTypeRegistry.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.interopTypeRegistry:Lcom/oracle/truffle/llvm/runtime/interop/access/LLVMInteropType$InteropTypeRegistry;
        12: .line 156
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.noCommonHandleAssumption:Lcom/oracle/truffle/api/Assumption;
            invokeinterface com.oracle.truffle.api.Assumption.isValid:()Z
            pop
        13: .line 81
            return
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  protected void initializeContext(com.oracle.truffle.llvm.runtime.LLVMContext);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
         0: .line 166
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.contextExtensions:[Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
            arraylength
            anewarray com.oracle.truffle.llvm.runtime.ContextExtension
            astore 2 /* ctxExts */
        start local 2 // com.oracle.truffle.llvm.runtime.ContextExtension[] ctxExts
         1: .line 167
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 7
         3: .line 168
      StackMap locals: com.oracle.truffle.llvm.runtime.ContextExtension[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.contextExtensions:[Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
            iload 3 /* i */
            aaload
            astore 4 /* key */
        start local 4 // com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey key
         4: .line 169
            aload 4 /* key */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey.factory:Lcom/oracle/truffle/llvm/runtime/ContextExtension$Factory;
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getEnv:()Lcom/oracle/truffle/api/TruffleLanguage$Env;
            invokeinterface com.oracle.truffle.llvm.runtime.ContextExtension$Factory.create:(Lcom/oracle/truffle/api/TruffleLanguage$Env;)Lcom/oracle/truffle/llvm/runtime/ContextExtension;
            astore 5 /* ext */
        start local 5 // com.oracle.truffle.llvm.runtime.ContextExtension ext
         5: .line 170
            aload 2 /* ctxExts */
            iload 3 /* i */
            aload 4 /* key */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey.clazz:Ljava/lang/Class;
            aload 5 /* ext */
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.ContextExtension
            aastore
        end local 5 // com.oracle.truffle.llvm.runtime.ContextExtension ext
        end local 4 // com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey key
         6: .line 167
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.contextExtensions:[Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
            arraylength
            if_icmplt 3
        end local 3 // int i
         8: .line 172
            aload 1 /* context */
            aload 2 /* ctxExts */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.initialize:([Lcom/oracle/truffle/llvm/runtime/ContextExtension;)V
         9: .line 173
            return
        end local 2 // com.oracle.truffle.llvm.runtime.ContextExtension[] ctxExts
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0   10     1  context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            1   10     2  ctxExts  [Lcom/oracle/truffle/llvm/runtime/ContextExtension;
            2    8     3        i  I
            4    6     4      key  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey<*>;
            5    6     5      ext  Lcom/oracle/truffle/llvm/runtime/ContextExtension;
    MethodParameters:
         Name  Flags
      context  

  public static com.oracle.truffle.llvm.runtime.LLVMContext getContext();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMContext;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 179
            ldc "Use faster context lookup methods for the fast-path."
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:(Ljava/lang/String;)V
         1: .line 180
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getCurrentContext:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.oracle.truffle.llvm.runtime.LLVMLanguage getLanguage();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 188
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getCurrentLanguage:(Ljava/lang/Class;)Lcom/oracle/truffle/api/TruffleLanguage;
            checkcast com.oracle.truffle.llvm.runtime.LLVMLanguage
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.oracle.truffle.llvm.runtime.debug.LLDBSupport getLLDBSupport();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/debug/LLDBSupport;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 192
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getLanguage:()Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.lldbSupport:Lcom/oracle/truffle/llvm/runtime/debug/LLDBSupport;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public <C extends com.oracle.truffle.llvm.runtime.config.LLVMCapability> C getCapability(java.lang.Class<C>);
    descriptor: (Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.Class type
         0: .line 196
            aload 1 /* type */
            invokestatic com.oracle.truffle.api.CompilerAsserts.partialEvaluationConstant:(Ljava/lang/Object;)V
         1: .line 197
            aload 1 /* type */
            ldc Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            if_acmpne 3
         2: .line 198
            aload 1 /* type */
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getLLVMMemory:()Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            invokevirtual java.lang.Class.cast:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.config.LLVMCapability
            areturn
         3: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            aload 1 /* type */
            invokeinterface com.oracle.truffle.llvm.runtime.config.Configuration.getCapability:(Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;
            astore 2 /* ret */
        start local 2 // com.oracle.truffle.llvm.runtime.config.LLVMCapability ret
         4: .line 201
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.CompilerDirectives.isPartialEvaluationConstant:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 202
            aload 2 /* ret */
            invokestatic com.oracle.truffle.api.CompilerAsserts.partialEvaluationConstant:(Ljava/lang/Object;)V
         6: .line 204
      StackMap locals: com.oracle.truffle.llvm.runtime.config.LLVMCapability
      StackMap stack:
            aload 2 /* ret */
            areturn
        end local 2 // com.oracle.truffle.llvm.runtime.config.LLVMCapability ret
        end local 1 // java.lang.Class type
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    7     1  type  Ljava/lang/Class<TC;>;
            4    7     2   ret  TC;
    Signature: <C::Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;>(Ljava/lang/Class<TC;>;)TC;
    MethodParameters:
      Name  Flags
      type  

  public com.oracle.truffle.api.Assumption getNoCommonHandleAssumption();
    descriptor: ()Lcom/oracle/truffle/api/Assumption;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 213
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.noCommonHandleAssumption:Lcom/oracle/truffle/api/Assumption;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public com.oracle.truffle.api.Assumption getNoDerefHandleAssumption();
    descriptor: ()Lcom/oracle/truffle/api/Assumption;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 221
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.noDerefHandleAssumption:Lcom/oracle/truffle/api/Assumption;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public final java.lang.String getLLVMLanguageHome();
    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.LLVMLanguage this
         0: .line 225
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getLanguageHome:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public com.oracle.truffle.llvm.runtime.config.Configuration getActiveConfiguration();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/config/Configuration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 229
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            ifnull 2
         1: .line 230
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            areturn
         2: .line 232
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "No context, please create the context before accessing the configuration."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public com.oracle.truffle.llvm.runtime.memory.LLVMMemory getLLVMMemory();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 236
            getstatic com.oracle.truffle.llvm.runtime.LLVMLanguage.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.cachedLLVMMemory:Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.cachedLLVMMemory:Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public com.oracle.truffle.llvm.runtime.LLVMScope getInternalFileScopes(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.String libraryName
         0: .line 241
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.internalFileScopes:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* libraryName */
            invokeinterface org.graalvm.collections.EconomicMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMScope
            areturn
        end local 1 // java.lang.String libraryName
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1  libraryName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      libraryName  

  public void addInternalFileScope(java.lang.String, com.oracle.truffle.llvm.runtime.LLVMScope);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMScope;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.String libraryName
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMScope scope
         0: .line 245
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.internalFileScopes:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* libraryName */
            aload 2 /* scope */
            invokeinterface org.graalvm.collections.EconomicMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 246
            return
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMScope scope
        end local 1 // java.lang.String libraryName
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    2     1  libraryName  Ljava/lang/String;
            0    2     2        scope  Lcom/oracle/truffle/llvm/runtime/LLVMScope;
    MethodParameters:
             Name  Flags
      libraryName  
      scope        

  public com.oracle.truffle.api.source.Source getLibrarySource(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/api/source/Source;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.String path
         0: .line 249
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.librarySources:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* path */
            invokeinterface org.graalvm.collections.EconomicMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.api.source.Source
            areturn
        end local 1 // java.lang.String path
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public void addLibrarySource(java.lang.String, com.oracle.truffle.api.source.Source);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/api/source/Source;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.String path
        start local 2 // com.oracle.truffle.api.source.Source source
         0: .line 253
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.librarySources:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* path */
            aload 2 /* source */
            invokeinterface org.graalvm.collections.EconomicMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 254
            return
        end local 2 // com.oracle.truffle.api.source.Source source
        end local 1 // java.lang.String path
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    2     1    path  Ljava/lang/String;
            0    2     2  source  Lcom/oracle/truffle/api/source/Source;
    MethodParameters:
        Name  Flags
      path    
      source  

  public boolean containsLibrarySource(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.LLVMLanguage this
        start local 1 // java.lang.String path
         0: .line 257
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.librarySources:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* path */
            invokeinterface org.graalvm.collections.EconomicMap.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.String path
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  protected com.oracle.truffle.llvm.runtime.LLVMContext createContext(com.oracle.truffle.api.TruffleLanguage$Env);
    descriptor: (Lcom/oracle/truffle/api/TruffleLanguage$Env;)Lcom/oracle/truffle/llvm/runtime/LLVMContext;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.api.TruffleLanguage$Env env
         0: .line 262
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            ifnonnull 6
         1: .line 263
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* ctxExts */
        start local 2 // java.util.ArrayList ctxExts
         2: .line 264
            new com.oracle.truffle.llvm.runtime.LLVMLanguage$1
            dup
            aload 0 /* this */
            aload 2 /* ctxExts */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMLanguage$1.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;Ljava/util/ArrayList;)V
            astore 3 /* r */
        start local 3 // com.oracle.truffle.llvm.runtime.ContextExtension$Registry r
         3: .line 277
            aload 0 /* this */
            aload 0 /* this */
            aload 3 /* r */
            aload 1 /* env */
            invokevirtual com.oracle.truffle.api.TruffleLanguage$Env.getOptions:()Lorg/graalvm/options/OptionValues;
            invokestatic com.oracle.truffle.llvm.runtime.config.Configurations.createConfiguration:(Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;Lcom/oracle/truffle/llvm/runtime/ContextExtension$Registry;Lorg/graalvm/options/OptionValues;)Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
         4: .line 279
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            ldc Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            invokeinterface com.oracle.truffle.llvm.runtime.config.Configuration.getCapability:(Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;
            checkcast com.oracle.truffle.llvm.runtime.memory.LLVMMemory
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.cachedLLVMMemory:Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
         5: .line 280
            aload 0 /* this */
            aload 2 /* ctxExts */
            getstatic com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey.EMPTY:[Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey[]
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.contextExtensions:[Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
        end local 3 // com.oracle.truffle.llvm.runtime.ContextExtension$Registry r
        end local 2 // java.util.ArrayList ctxExts
         6: .line 283
      StackMap locals:
      StackMap stack:
            new com.oracle.truffle.llvm.runtime.ToolchainImpl
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.activeConfiguration:Lcom/oracle/truffle/llvm/runtime/config/Configuration;
            ldc Lcom/oracle/truffle/llvm/runtime/ToolchainConfig;
            invokeinterface com.oracle.truffle.llvm.runtime.config.Configuration.getCapability:(Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;
            checkcast com.oracle.truffle.llvm.runtime.ToolchainConfig
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.runtime.ToolchainImpl.<init>:(Lcom/oracle/truffle/llvm/runtime/ToolchainConfig;Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;)V
            astore 2 /* toolchain */
        start local 2 // com.oracle.truffle.llvm.api.Toolchain toolchain
         7: .line 284
            aload 1 /* env */
            aload 2 /* toolchain */
            invokevirtual com.oracle.truffle.api.TruffleLanguage$Env.registerService:(Ljava/lang/Object;)V
         8: .line 286
            new com.oracle.truffle.llvm.runtime.LLVMContext
            dup
            aload 0 /* this */
            aload 1 /* env */
            aload 2 /* toolchain */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMContext.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;Lcom/oracle/truffle/api/TruffleLanguage$Env;Lcom/oracle/truffle/llvm/api/Toolchain;)V
            astore 3 /* context */
        start local 3 // com.oracle.truffle.llvm.runtime.LLVMContext context
         9: .line 287
            aload 3 /* context */
            areturn
        end local 3 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 2 // com.oracle.truffle.llvm.api.Toolchain toolchain
        end local 1 // com.oracle.truffle.api.TruffleLanguage$Env env
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0   10     1        env  Lcom/oracle/truffle/api/TruffleLanguage$Env;
            2    6     2    ctxExts  Ljava/util/ArrayList<Lcom/oracle/truffle/llvm/runtime/ContextExtension$Key<*>;>;
            3    6     3          r  Lcom/oracle/truffle/llvm/runtime/ContextExtension$Registry;
            7   10     2  toolchain  Lcom/oracle/truffle/llvm/api/Toolchain;
            9   10     3    context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
    MethodParameters:
      Name  Flags
      env   

  public <C extends com.oracle.truffle.llvm.runtime.ContextExtension> com.oracle.truffle.llvm.runtime.ContextExtension$Key<C> lookupContextExtension(java.lang.Class<C>);
    descriptor: (Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/ContextExtension$Key;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.Class type
         0: .line 296
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:()V
         1: .line 297
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.contextExtensions:[Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 6
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMLanguage java.lang.Class top int int com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* key */
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey key
         3: .line 298
            aload 1 /* type */
            aload 2 /* key */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey.clazz:Ljava/lang/Class;
            if_acmpne 5
         4: .line 299
            aload 2 /* key */
            aload 1 /* type */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey.cast:(Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey;
            areturn
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey key
         5: .line 297
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         6: iload 3
            iload 4
            if_icmplt 2
         7: .line 302
            aconst_null
            areturn
        end local 1 // java.lang.Class type
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    8     1  type  Ljava/lang/Class<TC;>;
            3    5     2   key  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$ContextExtensionKey<*>;
    Signature: <C::Lcom/oracle/truffle/llvm/runtime/ContextExtension;>(Ljava/lang/Class<TC;>;)Lcom/oracle/truffle/llvm/runtime/ContextExtension$Key<TC;>;
    MethodParameters:
      Name  Flags
      type  

  protected com.oracle.truffle.api.nodes.ExecutableNode parse(com.oracle.truffle.api.TruffleLanguage$InlineParsingRequest);
    descriptor: (Lcom/oracle/truffle/api/TruffleLanguage$InlineParsingRequest;)Lcom/oracle/truffle/api/nodes/ExecutableNode;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.api.TruffleLanguage$InlineParsingRequest request
         0: .line 307
            aload 0 /* this */
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getCurrentContext:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getScope:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;)Ljava/lang/Object;
            astore 2 /* globalScope */
        start local 2 // java.lang.Object globalScope
         1: .line 308
            new com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.antlr.DebugExprParser
            dup
            aload 1 /* request */
            aload 2 /* globalScope */
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getCurrentContext:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            invokespecial com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.antlr.DebugExprParser.<init>:(Lcom/oracle/truffle/api/TruffleLanguage$InlineParsingRequest;Ljava/lang/Object;Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
            astore 3 /* d */
        start local 3 // com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.antlr.DebugExprParser d
         2: .line 310
            new com.oracle.truffle.llvm.runtime.debug.debugexpr.nodes.DebugExprExecutableNode
            dup
            aload 3 /* d */
            invokevirtual com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.antlr.DebugExprParser.parse:()Lcom/oracle/truffle/llvm/runtime/nodes/api/LLVMExpressionNode;
            invokespecial com.oracle.truffle.llvm.runtime.debug.debugexpr.nodes.DebugExprExecutableNode.<init>:(Lcom/oracle/truffle/llvm/runtime/nodes/api/LLVMExpressionNode;)V
         3: areturn
         4: .line 311
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMLanguage com.oracle.truffle.api.TruffleLanguage$InlineParsingRequest java.lang.Object com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.antlr.DebugExprParser
      StackMap stack: java.lang.RuntimeException
            astore 4 /* e */
        start local 4 // java.lang.RuntimeException e
         5: .line 313
            aload 4 /* e */
            invokevirtual java.lang.RuntimeException.getMessage:()Ljava/lang/String;
            astore 5 /* errorMessage */
        start local 5 // java.lang.String errorMessage
         6: .line 314
            new com.oracle.truffle.llvm.runtime.LLVMLanguage$2
            dup
            aload 0 /* this */
            aload 0 /* this */
            aload 5 /* errorMessage */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMLanguage$2.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;Lcom/oracle/truffle/api/TruffleLanguage;Ljava/lang/String;)V
            areturn
        end local 5 // java.lang.String errorMessage
        end local 4 // java.lang.RuntimeException e
        end local 3 // com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.antlr.DebugExprParser d
        end local 2 // java.lang.Object globalScope
        end local 1 // com.oracle.truffle.api.TruffleLanguage$InlineParsingRequest request
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    7     1       request  Lcom/oracle/truffle/api/TruffleLanguage$InlineParsingRequest;
            1    7     2   globalScope  Ljava/lang/Object;
            2    7     3             d  Lcom/oracle/truffle/llvm/runtime/debug/debugexpr/parser/antlr/DebugExprParser;
            5    7     4             e  Ljava/lang/RuntimeException;
            6    7     5  errorMessage  Ljava/lang/String;
      Exception table:
        from    to  target  type
           2     3       4  Class com.oracle.truffle.llvm.runtime.debug.debugexpr.parser.DebugExprException
           2     3       4  Class com.oracle.truffle.llvm.runtime.except.LLVMParserException
    MethodParameters:
         Name  Flags
      request  

  protected boolean patchContext(com.oracle.truffle.llvm.runtime.LLVMContext, com.oracle.truffle.api.TruffleLanguage$Env);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/TruffleLanguage$Env;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        start local 2 // com.oracle.truffle.api.TruffleLanguage$Env newEnv
         0: .line 325
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getEnv:()Lcom/oracle/truffle/api/TruffleLanguage$Env;
            invokevirtual com.oracle.truffle.api.TruffleLanguage$Env.getOptions:()Lorg/graalvm/options/OptionValues;
            aload 2 /* newEnv */
            invokevirtual com.oracle.truffle.api.TruffleLanguage$Env.getOptions:()Lorg/graalvm/options/OptionValues;
            invokestatic com.oracle.truffle.llvm.runtime.config.Configurations.areOptionsCompatible:(Lorg/graalvm/options/OptionValues;Lorg/graalvm/options/OptionValues;)Z
            istore 3 /* compatible */
        start local 3 // boolean compatible
         1: .line 326
            iload 3 /* compatible */
            ifne 3
         2: .line 327
            iconst_0
            ireturn
         3: .line 329
      StackMap locals: int
      StackMap stack:
            aload 1 /* context */
            aload 2 /* newEnv */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.patchContext:(Lcom/oracle/truffle/api/TruffleLanguage$Env;)Z
            ireturn
        end local 3 // boolean compatible
        end local 2 // com.oracle.truffle.api.TruffleLanguage$Env newEnv
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    4     1     context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            0    4     2      newEnv  Lcom/oracle/truffle/api/TruffleLanguage$Env;
            1    4     3  compatible  Z
    MethodParameters:
         Name  Flags
      context  
      newEnv   

  protected boolean areOptionsCompatible(org.graalvm.options.OptionValues, org.graalvm.options.OptionValues);
    descriptor: (Lorg/graalvm/options/OptionValues;Lorg/graalvm/options/OptionValues;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // org.graalvm.options.OptionValues firstOptions
        start local 2 // org.graalvm.options.OptionValues newOptions
         0: .line 334
            aload 1 /* firstOptions */
            aload 2 /* newOptions */
            invokestatic com.oracle.truffle.llvm.runtime.config.Configurations.areOptionsCompatible:(Lorg/graalvm/options/OptionValues;Lorg/graalvm/options/OptionValues;)Z
            ireturn
        end local 2 // org.graalvm.options.OptionValues newOptions
        end local 1 // org.graalvm.options.OptionValues firstOptions
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1  firstOptions  Lorg/graalvm/options/OptionValues;
            0    1     2    newOptions  Lorg/graalvm/options/OptionValues;
    MethodParameters:
              Name  Flags
      firstOptions  
      newOptions    

  protected void finalizeContext(com.oracle.truffle.llvm.runtime.LLVMContext);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
         0: .line 339
            aload 1 /* context */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.sulongDisposeContext:Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.finalizeContext:(Lcom/oracle/truffle/llvm/runtime/LLVMFunction;)V
         1: .line 340
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    2     1  context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
    MethodParameters:
         Name  Flags
      context  

  protected void disposeContext(com.oracle.truffle.llvm.runtime.LLVMContext);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
         0: .line 345
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getLLVMMemory:()Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            astore 2 /* memory */
        start local 2 // com.oracle.truffle.llvm.runtime.memory.LLVMMemory memory
         1: .line 346
            aload 1 /* context */
            aload 2 /* memory */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.dispose:(Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;)V
         2: .line 347
            return
        end local 2 // com.oracle.truffle.llvm.runtime.memory.LLVMMemory memory
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    3     1  context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            1    3     2   memory  Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
    MethodParameters:
         Name  Flags
      context  

  public void setSulongInitContext(com.oracle.truffle.llvm.runtime.LLVMFunction);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMFunction function
         0: .line 416
            aload 0 /* this */
            new com.oracle.truffle.llvm.runtime.LLVMFunctionCode
            dup
            aload 1 /* function */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMFunctionCode.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMFunction;)V
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.sulongInitContextCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
         1: .line 417
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMFunction function
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    2     1  function  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    MethodParameters:
          Name  Flags
      function  

  public void setSulongDisposeContext(com.oracle.truffle.llvm.runtime.LLVMFunction);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMFunction function
         0: .line 420
            aload 0 /* this */
            aload 1 /* function */
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.sulongDisposeContext:Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
         1: .line 421
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMFunction function
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    2     1  function  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    MethodParameters:
          Name  Flags
      function  

  public void setStartFunctionCode(com.oracle.truffle.llvm.runtime.LLVMFunctionCode);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode startFunctionCode
         0: .line 424
            aload 0 /* this */
            aload 1 /* startFunctionCode */
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.startFunctionCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
         1: .line 425
            return
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode startFunctionCode
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    2     1  startFunctionCode  Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
    MethodParameters:
                   Name  Flags
      startFunctionCode  

  public com.oracle.truffle.llvm.runtime.LLVMFunctionCode getStartFunctionCode();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 428
            getstatic com.oracle.truffle.llvm.runtime.LLVMLanguage.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.startFunctionCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.startFunctionCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  protected void initFreeGlobalBlocks(com.oracle.truffle.llvm.runtime.NodeFactory);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/NodeFactory;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.NodeFactory nodeFactory
         0: .line 436
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.freeGlobalBlocks:Lcom/oracle/truffle/api/CallTarget;
            ifnonnull 2
         1: .line 437
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.Truffle.getRuntime:()Lcom/oracle/truffle/api/TruffleRuntime;
            new com.oracle.truffle.llvm.runtime.LLVMLanguage$FreeGlobalsNode
            dup
            aload 0 /* this */
            aload 1 /* nodeFactory */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMLanguage$FreeGlobalsNode.<init>:(Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;Lcom/oracle/truffle/llvm/runtime/NodeFactory;)V
            invokeinterface com.oracle.truffle.api.TruffleRuntime.createCallTarget:(Lcom/oracle/truffle/api/nodes/RootNode;)Lcom/oracle/truffle/api/RootCallTarget;
            putfield com.oracle.truffle.llvm.runtime.LLVMLanguage.freeGlobalBlocks:Lcom/oracle/truffle/api/CallTarget;
         2: .line 439
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.oracle.truffle.llvm.runtime.NodeFactory nodeFactory
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    3     1  nodeFactory  Lcom/oracle/truffle/llvm/runtime/NodeFactory;
    MethodParameters:
             Name  Flags
      nodeFactory  

  public com.oracle.truffle.api.CallTarget getFreeGlobalBlocks();
    descriptor: ()Lcom/oracle/truffle/api/CallTarget;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 442
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.freeGlobalBlocks:Lcom/oracle/truffle/api/CallTarget;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public java.util.concurrent.atomic.AtomicInteger getRawRunnerID();
    descriptor: ()Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 446
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.nextID:Ljava/util/concurrent/atomic/AtomicInteger;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  public com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType getInteropType(com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/debug/type/LLVMSourceType;)Lcom/oracle/truffle/llvm/runtime/interop/access/LLVMInteropType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType sourceType
         0: .line 451
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.interopTypeRegistry:Lcom/oracle/truffle/llvm/runtime/interop/access/LLVMInteropType$InteropTypeRegistry;
            aload 1 /* sourceType */
            invokevirtual com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType$InteropTypeRegistry.get:(Lcom/oracle/truffle/llvm/runtime/debug/type/LLVMSourceType;)Lcom/oracle/truffle/llvm/runtime/interop/access/LLVMInteropType;
            areturn
        end local 1 // com.oracle.truffle.llvm.runtime.debug.type.LLVMSourceType sourceType
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1  sourceType  Lcom/oracle/truffle/llvm/runtime/debug/type/LLVMSourceType;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
            Name  Flags
      sourceType  

  public com.oracle.truffle.llvm.runtime.nodes.api.LLVMStatementNode createInitializeContextNode();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/nodes/api/LLVMStatementNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 461
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tInitializeContextNodeGen cannot be resolved\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  protected com.oracle.truffle.api.CallTarget parse(com.oracle.truffle.api.TruffleLanguage$ParsingRequest);
    descriptor: (Lcom/oracle/truffle/api/TruffleLanguage$ParsingRequest;)Lcom/oracle/truffle/api/CallTarget;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.api.TruffleLanguage$ParsingRequest request
         0: .line 473
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCacheLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 474
            aload 1 /* request */
            invokevirtual com.oracle.truffle.api.TruffleLanguage$ParsingRequest.getSource:()Lcom/oracle/truffle/api/source/Source;
            astore 3 /* source */
        start local 3 // com.oracle.truffle.api.source.Source source
         2: .line 475
            aload 3 /* source */
            invokevirtual com.oracle.truffle.api.source.Source.getPath:()Ljava/lang/String;
            astore 4 /* path */
        start local 4 // java.lang.String path
         3: .line 477
            aload 3 /* source */
            invokevirtual com.oracle.truffle.api.source.Source.isCached:()Z
            ifeq 12
         4: .line 478
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCache:Lorg/graalvm/collections/EconomicMap;
            aload 4 /* path */
            invokeinterface org.graalvm.collections.EconomicMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.api.CallTarget
            astore 5 /* callTarget */
        start local 5 // com.oracle.truffle.api.CallTarget callTarget
         5: .line 479
            aload 5 /* callTarget */
            ifnonnull 10
         6: .line 480
            aload 0 /* this */
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$Loader;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getCapability:(Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;
            checkcast com.oracle.truffle.llvm.runtime.LLVMLanguage$Loader
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getContext:()Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            aload 3 /* source */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.nextID:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage$Loader.load:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/source/Source;Ljava/util/concurrent/atomic/AtomicInteger;)Lcom/oracle/truffle/api/CallTarget;
            astore 5 /* callTarget */
         7: .line 481
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCache:Lorg/graalvm/collections/EconomicMap;
            aload 4 /* path */
            aload 5 /* callTarget */
            invokeinterface org.graalvm.collections.EconomicMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.api.CallTarget
            astore 6 /* prev */
        start local 6 // com.oracle.truffle.api.CallTarget prev
         8: .line 484
            aload 6 /* prev */
            ifnull 10
         9: .line 485
            aload 6 /* prev */
            astore 5 /* callTarget */
        end local 6 // com.oracle.truffle.api.CallTarget prev
        10: .line 488
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMLanguage com.oracle.truffle.api.TruffleLanguage$ParsingRequest java.lang.Object com.oracle.truffle.api.source.Source java.lang.String com.oracle.truffle.api.CallTarget
      StackMap stack:
            aload 5 /* callTarget */
            aload 2
            monitorexit
        11: areturn
        end local 5 // com.oracle.truffle.api.CallTarget callTarget
        12: .line 490
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMLanguage$Loader;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getCapability:(Ljava/lang/Class;)Lcom/oracle/truffle/llvm/runtime/config/LLVMCapability;
            checkcast com.oracle.truffle.llvm.runtime.LLVMLanguage$Loader
            invokestatic com.oracle.truffle.llvm.runtime.LLVMLanguage.getContext:()Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            aload 3 /* source */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.nextID:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage$Loader.load:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/source/Source;Ljava/util/concurrent/atomic/AtomicInteger;)Lcom/oracle/truffle/api/CallTarget;
            aload 2
            monitorexit
        13: areturn
        end local 4 // java.lang.String path
        end local 3 // com.oracle.truffle.api.source.Source source
        14: .line 473
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMLanguage com.oracle.truffle.api.TruffleLanguage$ParsingRequest java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        15: athrow
        end local 1 // com.oracle.truffle.api.TruffleLanguage$ParsingRequest request
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0   16     1     request  Lcom/oracle/truffle/api/TruffleLanguage$ParsingRequest;
            2   14     3      source  Lcom/oracle/truffle/api/source/Source;
            3   14     4        path  Ljava/lang/String;
            5   12     5  callTarget  Lcom/oracle/truffle/api/CallTarget;
            8   10     6        prev  Lcom/oracle/truffle/api/CallTarget;
      Exception table:
        from    to  target  type
           1    11      14  any
          12    13      14  any
          14    15      14  any
    MethodParameters:
         Name  Flags
      request  

  public boolean isLibraryCached(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.String path
         0: .line 495
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCacheLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 496
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCache:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* path */
            invokeinterface org.graalvm.collections.EconomicMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 2
            iconst_1
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: aload 2
            monitorexit
         4: ireturn
         5: .line 495
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.lang.String path
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    7     1  path  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
      Name  Flags
      path  

  public com.oracle.truffle.api.CallTarget getCachedLibrary(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/api/CallTarget;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.String path
         0: .line 501
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCacheLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 502
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.libraryCache:Lorg/graalvm/collections/EconomicMap;
            aload 1 /* path */
            invokeinterface org.graalvm.collections.EconomicMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.api.CallTarget
            aload 2
            monitorexit
         2: areturn
         3: .line 501
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMLanguage java.lang.String java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         4: athrow
        end local 1 // java.lang.String path
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    5     1  path  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any
    MethodParameters:
      Name  Flags
      path  

  protected java.lang.Object getScope(com.oracle.truffle.llvm.runtime.LLVMContext);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
         0: .line 508
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getGlobalScope:()Lcom/oracle/truffle/llvm/runtime/LLVMScope;
            areturn
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1  context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
    MethodParameters:
         Name  Flags
      context  

  protected org.graalvm.options.OptionDescriptors getOptionDescriptors();
    descriptor: ()Lorg/graalvm/options/OptionDescriptors;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 513
            invokestatic com.oracle.truffle.llvm.runtime.config.Configurations.getOptionDescriptors:()Lorg/graalvm/options/OptionDescriptors;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  protected boolean isThreadAccessAllowed(java.lang.Thread, boolean);
    descriptor: (Ljava/lang/Thread;Z)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // java.lang.Thread thread
        start local 2 // boolean singleThreaded
         0: .line 518
            iconst_1
            ireturn
        end local 2 // boolean singleThreaded
        end local 1 // java.lang.Thread thread
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    1     1          thread  Ljava/lang/Thread;
            0    1     2  singleThreaded  Z
    MethodParameters:
                Name  Flags
      thread          
      singleThreaded  

  protected void disposeThread(com.oracle.truffle.llvm.runtime.LLVMContext, java.lang.Thread);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;Ljava/lang/Thread;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        start local 2 // java.lang.Thread thread
         0: .line 523
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* thread */
            invokespecial com.oracle.truffle.api.TruffleLanguage.disposeThread:(Ljava/lang/Object;Ljava/lang/Thread;)V
         1: .line 524
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.isInitialized:()Z
            ifeq 3
         2: .line 525
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getThreadingStack:()Lcom/oracle/truffle/llvm/runtime/memory/LLVMThreadingStack;
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getLLVMMemory:()Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;
            aload 2 /* thread */
            invokevirtual com.oracle.truffle.llvm.runtime.memory.LLVMThreadingStack.freeStack:(Lcom/oracle/truffle/llvm/runtime/memory/LLVMMemory;Ljava/lang/Thread;)V
         3: .line 527
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Thread thread
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    4     1  context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            0    4     2   thread  Ljava/lang/Thread;
    MethodParameters:
         Name  Flags
      context  
      thread   

  protected java.lang.Iterable<com.oracle.truffle.api.Scope> findLocalScopes(com.oracle.truffle.llvm.runtime.LLVMContext, com.oracle.truffle.api.nodes.Node, com.oracle.truffle.api.frame.Frame);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/nodes/Node;Lcom/oracle/truffle/api/frame/Frame;)Ljava/lang/Iterable;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        start local 2 // com.oracle.truffle.api.nodes.Node node
        start local 3 // com.oracle.truffle.api.frame.Frame frame
         0: .line 532
            aload 1 /* context */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMContext.getEnv:()Lcom/oracle/truffle/api/TruffleLanguage$Env;
            invokevirtual com.oracle.truffle.api.TruffleLanguage$Env.getOptions:()Lorg/graalvm/options/OptionValues;
            getstatic com.oracle.truffle.llvm.runtime.options.SulongEngineOption.LL_DEBUG:Lorg/graalvm/options/OptionKey;
            invokeinterface org.graalvm.options.OptionValues.get:(Lorg/graalvm/options/OptionKey;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 2
         1: .line 533
            aload 2 /* node */
            aload 3 /* frame */
            aload 1 /* context */
            invokestatic com.oracle.truffle.llvm.runtime.debug.scope.LLVMDebuggerScopeFactory.createIRLevelScope:(Lcom/oracle/truffle/api/nodes/Node;Lcom/oracle/truffle/api/frame/Frame;Lcom/oracle/truffle/llvm/runtime/LLVMContext;)Ljava/lang/Iterable;
            areturn
         2: .line 535
      StackMap locals:
      StackMap stack:
            aload 2 /* node */
            aload 3 /* frame */
            aload 1 /* context */
            invokestatic com.oracle.truffle.llvm.runtime.debug.scope.LLVMDebuggerScopeFactory.createSourceLevelScope:(Lcom/oracle/truffle/api/nodes/Node;Lcom/oracle/truffle/api/frame/Frame;Lcom/oracle/truffle/llvm/runtime/LLVMContext;)Ljava/util/Collection;
            areturn
        end local 3 // com.oracle.truffle.api.frame.Frame frame
        end local 2 // com.oracle.truffle.api.nodes.Node node
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMContext context
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;
            0    3     1  context  Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            0    3     2     node  Lcom/oracle/truffle/api/nodes/Node;
            0    3     3    frame  Lcom/oracle/truffle/api/frame/Frame;
    Signature: (Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/nodes/Node;Lcom/oracle/truffle/api/frame/Frame;)Ljava/lang/Iterable<Lcom/oracle/truffle/api/Scope;>;
    MethodParameters:
         Name  Flags
      context  
      node     
      frame    

  protected void initializeMultipleContexts();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
         0: .line 541
            aload 0 /* this */
            invokespecial com.oracle.truffle.api.TruffleLanguage.initializeMultipleContexts:()V
         1: .line 542
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLanguage.singleContextAssumption:Lcom/oracle/truffle/api/Assumption;
            invokeinterface com.oracle.truffle.api.Assumption.invalidate:()V
         2: .line 543
            return
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLanguage this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLanguage;

  protected java.lang.Object createContext(com.oracle.truffle.api.TruffleLanguage$Env);
    descriptor: (Lcom/oracle/truffle/api/TruffleLanguage$Env;)Ljava/lang/Object;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.createContext:(Lcom/oracle/truffle/api/TruffleLanguage$Env;)Lcom/oracle/truffle/llvm/runtime/LLVMContext;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void disposeThread(java.lang.Object, java.lang.Thread);
    descriptor: (Ljava/lang/Object;Ljava/lang/Thread;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            aload 2
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.disposeThread:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;Ljava/lang/Thread;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected boolean patchContext(java.lang.Object, com.oracle.truffle.api.TruffleLanguage$Env);
    descriptor: (Ljava/lang/Object;Lcom/oracle/truffle/api/TruffleLanguage$Env;)Z
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            aload 2
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.patchContext:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/TruffleLanguage$Env;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void initializeContext(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.initializeContext:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception

  protected void disposeContext(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.disposeContext:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.lang.Object getScope(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.getScope:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;)Ljava/lang/Object;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void finalizeContext(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.finalizeContext:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.lang.Iterable findLocalScopes(java.lang.Object, com.oracle.truffle.api.nodes.Node, com.oracle.truffle.api.frame.Frame);
    descriptor: (Ljava/lang/Object;Lcom/oracle/truffle/api/nodes/Node;Lcom/oracle/truffle/api/frame/Frame;)Ljava/lang/Iterable;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.truffle.llvm.runtime.LLVMContext
            aload 2
            aload 3
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMLanguage.findLocalScopes:(Lcom/oracle/truffle/llvm/runtime/LLVMContext;Lcom/oracle/truffle/api/nodes/Node;Lcom/oracle/truffle/api/frame/Frame;)Ljava/lang/Iterable;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/oracle/truffle/api/TruffleLanguage<Lcom/oracle/truffle/llvm/runtime/LLVMContext;>;
SourceFile: "LLVMLanguage.java"
NestMembers:
  com.oracle.truffle.llvm.runtime.LLVMLanguage$1  com.oracle.truffle.llvm.runtime.LLVMLanguage$2  com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey  com.oracle.truffle.llvm.runtime.LLVMLanguage$FreeGlobalsNode  com.oracle.truffle.llvm.runtime.LLVMLanguage$InitializeContextNode  com.oracle.truffle.llvm.runtime.LLVMLanguage$Loader
InnerClasses:
  public abstract CompilationFinal = com.oracle.truffle.api.CompilerDirectives$CompilationFinal of com.oracle.truffle.api.CompilerDirectives
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives
  public final ContextPolicy = com.oracle.truffle.api.TruffleLanguage$ContextPolicy of com.oracle.truffle.api.TruffleLanguage
  public final Env = com.oracle.truffle.api.TruffleLanguage$Env of com.oracle.truffle.api.TruffleLanguage
  public final InlineParsingRequest = com.oracle.truffle.api.TruffleLanguage$InlineParsingRequest of com.oracle.truffle.api.TruffleLanguage
  public final ParsingRequest = com.oracle.truffle.api.TruffleLanguage$ParsingRequest of com.oracle.truffle.api.TruffleLanguage
  public abstract Registration = com.oracle.truffle.api.TruffleLanguage$Registration of com.oracle.truffle.api.TruffleLanguage
  public abstract Factory = com.oracle.truffle.llvm.runtime.ContextExtension$Factory of com.oracle.truffle.llvm.runtime.ContextExtension
  public abstract Key = com.oracle.truffle.llvm.runtime.ContextExtension$Key of com.oracle.truffle.llvm.runtime.ContextExtension
  public abstract Registry = com.oracle.truffle.llvm.runtime.ContextExtension$Registry of com.oracle.truffle.llvm.runtime.ContextExtension
  com.oracle.truffle.llvm.runtime.LLVMLanguage$1
  com.oracle.truffle.llvm.runtime.LLVMLanguage$2
  private final ContextExtensionKey = com.oracle.truffle.llvm.runtime.LLVMLanguage$ContextExtensionKey of com.oracle.truffle.llvm.runtime.LLVMLanguage
  FreeGlobalsNode = com.oracle.truffle.llvm.runtime.LLVMLanguage$FreeGlobalsNode of com.oracle.truffle.llvm.runtime.LLVMLanguage
  abstract InitializeContextNode = com.oracle.truffle.llvm.runtime.LLVMLanguage$InitializeContextNode of com.oracle.truffle.llvm.runtime.LLVMLanguage
  public abstract Loader = com.oracle.truffle.llvm.runtime.LLVMLanguage$Loader of com.oracle.truffle.llvm.runtime.LLVMLanguage
  public final InteropTypeRegistry = com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType$InteropTypeRegistry of com.oracle.truffle.llvm.runtime.interop.access.LLVMInteropType
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.TruffleLanguage$Registration(id = "llvm", name = "LLVM", internal = false, interactive = false, defaultMimeType = "application/x-llvm-ir-bitcode", byteMimeTypes = {"application/x-llvm-ir-bitcode", "application/x-sharedlib", "application/x-executable", "application/x-mach-binary"}, fileTypeDetectors = {Lcom/oracle/truffle/llvm/runtime/LLVMFileDetector;}, services = {Lcom/oracle/truffle/llvm/api/Toolchain;}, version = "10.0.0", contextPolicy = com.oracle.truffle.api.TruffleLanguage$ContextPolicy.SHARED:Lcom/oracle/truffle/api/TruffleLanguage$ContextPolicy;)
      com.oracle.truffle.api.instrumentation.ProvidedTags(value = {Lcom/oracle/truffle/api/instrumentation/StandardTags$StatementTag;, Lcom/oracle/truffle/api/instrumentation/StandardTags$CallTag;, Lcom/oracle/truffle/api/instrumentation/StandardTags$RootTag;, Lcom/oracle/truffle/api/instrumentation/StandardTags$RootBodyTag;, Lcom/oracle/truffle/api/debug/DebuggerTags$AlwaysHalt;})