final class com.oracle.svm.core.locks.SingleThreadedVMLockFeature implements org.graalvm.nativeimage.hosted.Feature
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.svm.core.locks.SingleThreadedVMLockFeature
  super_class: java.lang.Object
{
  private final com.oracle.svm.core.locks.ClassInstanceReplacer<com.oracle.svm.core.locks.VMMutex, com.oracle.svm.core.locks.VMMutex> mutexReplacer;
    descriptor: Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/oracle/svm/core/locks/ClassInstanceReplacer<Lcom/oracle/svm/core/locks/VMMutex;Lcom/oracle/svm/core/locks/VMMutex;>;

  private final com.oracle.svm.core.locks.ClassInstanceReplacer<com.oracle.svm.core.locks.VMCondition, com.oracle.svm.core.locks.VMCondition> conditionReplacer;
    descriptor: Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/oracle/svm/core/locks/ClassInstanceReplacer<Lcom/oracle/svm/core/locks/VMCondition;Lcom/oracle/svm/core/locks/VMCondition;>;

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            new com.oracle.svm.core.locks.SingleThreadedVMLockFeature$1
            dup
            aload 0 /* this */
            ldc Lcom/oracle/svm/core/locks/VMMutex;
            invokespecial com.oracle.svm.core.locks.SingleThreadedVMLockFeature$1.<init>:(Lcom/oracle/svm/core/locks/SingleThreadedVMLockFeature;Ljava/lang/Class;)V
            putfield com.oracle.svm.core.locks.SingleThreadedVMLockFeature.mutexReplacer:Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
         2: .line 54
            aload 0 /* this */
            new com.oracle.svm.core.locks.SingleThreadedVMLockFeature$2
            dup
            aload 0 /* this */
            ldc Lcom/oracle/svm/core/locks/VMCondition;
            invokespecial com.oracle.svm.core.locks.SingleThreadedVMLockFeature$2.<init>:(Lcom/oracle/svm/core/locks/SingleThreadedVMLockFeature;Ljava/lang/Class;)V
            putfield com.oracle.svm.core.locks.SingleThreadedVMLockFeature.conditionReplacer:Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
         3: .line 45
            return
        end local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/svm/core/locks/SingleThreadedVMLockFeature;

  public boolean isInConfiguration(org.graalvm.nativeimage.hosted.Feature$IsInConfigurationAccess);
    descriptor: (Lorg/graalvm/nativeimage/hosted/Feature$IsInConfigurationAccess;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
        start local 1 // org.graalvm.nativeimage.hosted.Feature$IsInConfigurationAccess access
         0: .line 63
            getstatic com.oracle.svm.core.SubstrateOptions.MultiThreaded:Lcom/oracle/svm/core/option/HostedOptionKey;
            invokevirtual com.oracle.svm.core.option.HostedOptionKey.getValue:()Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.graalvm.nativeimage.hosted.Feature$IsInConfigurationAccess access
        end local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/svm/core/locks/SingleThreadedVMLockFeature;
            0    3     1  access  Lorg/graalvm/nativeimage/hosted/Feature$IsInConfigurationAccess;
    MethodParameters:
        Name  Flags
      access  

  public void duringSetup(org.graalvm.nativeimage.hosted.Feature$DuringSetupAccess);
    descriptor: (Lorg/graalvm/nativeimage/hosted/Feature$DuringSetupAccess;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
        start local 1 // org.graalvm.nativeimage.hosted.Feature$DuringSetupAccess access
         0: .line 68
            aload 1 /* access */
            aload 0 /* this */
            getfield com.oracle.svm.core.locks.SingleThreadedVMLockFeature.mutexReplacer:Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
            invokeinterface org.graalvm.nativeimage.hosted.Feature$DuringSetupAccess.registerObjectReplacer:(Ljava/util/function/Function;)V
         1: .line 69
            aload 1 /* access */
            aload 0 /* this */
            getfield com.oracle.svm.core.locks.SingleThreadedVMLockFeature.conditionReplacer:Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
            invokeinterface org.graalvm.nativeimage.hosted.Feature$DuringSetupAccess.registerObjectReplacer:(Ljava/util/function/Function;)V
         2: .line 70
            return
        end local 1 // org.graalvm.nativeimage.hosted.Feature$DuringSetupAccess access
        end local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/svm/core/locks/SingleThreadedVMLockFeature;
            0    3     1  access  Lorg/graalvm/nativeimage/hosted/Feature$DuringSetupAccess;
    MethodParameters:
        Name  Flags
      access  

  public void beforeCompilation(org.graalvm.nativeimage.hosted.Feature$BeforeCompilationAccess);
    descriptor: (Lorg/graalvm/nativeimage/hosted/Feature$BeforeCompilationAccess;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
        start local 1 // org.graalvm.nativeimage.hosted.Feature$BeforeCompilationAccess access
         0: .line 75
            aload 0 /* this */
            getfield com.oracle.svm.core.locks.SingleThreadedVMLockFeature.mutexReplacer:Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
            invokevirtual com.oracle.svm.core.locks.ClassInstanceReplacer.getReplacements:()Ljava/util/Collection;
            pop
         1: .line 76
            aload 0 /* this */
            getfield com.oracle.svm.core.locks.SingleThreadedVMLockFeature.conditionReplacer:Lcom/oracle/svm/core/locks/ClassInstanceReplacer;
            invokevirtual com.oracle.svm.core.locks.ClassInstanceReplacer.getReplacements:()Ljava/util/Collection;
            pop
         2: .line 77
            return
        end local 1 // org.graalvm.nativeimage.hosted.Feature$BeforeCompilationAccess access
        end local 0 // com.oracle.svm.core.locks.SingleThreadedVMLockFeature this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/svm/core/locks/SingleThreadedVMLockFeature;
            0    3     1  access  Lorg/graalvm/nativeimage/hosted/Feature$BeforeCompilationAccess;
    MethodParameters:
        Name  Flags
      access  
}
SourceFile: "SingleThreadedVMLockSupport.java"
NestMembers:
  com.oracle.svm.core.locks.SingleThreadedVMLockFeature$1  com.oracle.svm.core.locks.SingleThreadedVMLockFeature$2
InnerClasses:
  com.oracle.svm.core.locks.SingleThreadedVMLockFeature$1
  com.oracle.svm.core.locks.SingleThreadedVMLockFeature$2
  public abstract BeforeCompilationAccess = org.graalvm.nativeimage.hosted.Feature$BeforeCompilationAccess of org.graalvm.nativeimage.hosted.Feature
  public abstract DuringSetupAccess = org.graalvm.nativeimage.hosted.Feature$DuringSetupAccess of org.graalvm.nativeimage.hosted.Feature
  public abstract IsInConfigurationAccess = org.graalvm.nativeimage.hosted.Feature$IsInConfigurationAccess of org.graalvm.nativeimage.hosted.Feature
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.AutomaticFeature()