public class com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl implements com.oracle.svm.core.c.libc.TemporaryBuildDirectoryProvider
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl
  super_class: java.lang.Object
{
  private java.nio.file.Path tempDirectory;
    descriptor: Ljava/nio/file/Path;
    flags: (0x0002) ACC_PRIVATE

  private boolean deleteTempDirectory;
    descriptor: Z
    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 38
            ldc Lcom/oracle/svm/hosted/TemporaryBuildDirectoryProviderImpl;
            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.svm.hosted.TemporaryBuildDirectoryProviderImpl.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/hosted/TemporaryBuildDirectoryProviderImpl;

  public synchronized java.nio.file.Path getTemporaryBuildDirectory();
    descriptor: ()Ljava/nio/file/Path;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl this
         0: .line 45
            aload 0 /* this */
            getfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.tempDirectory:Ljava/nio/file/Path;
            ifnonnull 12
         1: .line 47
            getstatic com.oracle.svm.hosted.NativeImageOptions.TempDirectory:Lcom/oracle/svm/core/option/HostedOptionKey;
            invokevirtual com.oracle.svm.core.option.HostedOptionKey.getValue:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* tempName */
        start local 1 // java.lang.String tempName
         2: .line 48
            aload 1 /* tempName */
            ifnull 3
            aload 1 /* tempName */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 6
         3: .line 49
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            ldc "SVM-"
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createTempDirectory:(Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            putfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.tempDirectory:Ljava/nio/file/Path;
         4: .line 50
            aload 0 /* this */
            iconst_1
            putfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.deleteTempDirectory:Z
         5: .line 51
            goto 12
         6: .line 52
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic java.nio.file.FileSystems.getDefault:()Ljava/nio/file/FileSystem;
            aload 1 /* tempName */
            iconst_0
            anewarray java.lang.String
            invokevirtual java.nio.file.FileSystem.getPath:(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;
            new java.lang.StringBuilder
            dup
            ldc "SVM-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.lang.System.currentTimeMillis:()J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            putfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.tempDirectory:Ljava/nio/file/Path;
         7: .line 53
            getstatic com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.$assertionsDisabled:Z
            ifne 8
            aload 0 /* this */
            getfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.tempDirectory:Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifeq 8
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         8: .line 54
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.tempDirectory:Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createDirectories:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            pop
        end local 1 // java.lang.String tempName
         9: .line 56
            goto 12
      StackMap locals: com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl
      StackMap stack: java.io.IOException
        10: astore 1 /* ex */
        start local 1 // java.io.IOException ex
        11: .line 57
            aload 1 /* ex */
            invokestatic com.oracle.svm.core.util.VMError.shouldNotReachHere:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 1 // java.io.IOException ex
        12: .line 60
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.tempDirectory:Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toAbsolutePath:()Ljava/nio/file/Path;
            areturn
        end local 0 // com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lcom/oracle/svm/hosted/TemporaryBuildDirectoryProviderImpl;
            2    9     1  tempName  Ljava/lang/String;
           11   12     1        ex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     9      10  Class java.io.IOException

  private static void deleteAll(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.nio.file.Path path
         0: .line 65
            aload 0 /* path */
            new com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl$1
            dup
            invokespecial com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl$1.<init>:()V
            invokestatic java.nio.file.Files.walkFileTree:(Ljava/nio/file/Path;Ljava/nio/file/FileVisitor;)Ljava/nio/file/Path;
            pop
         1: .line 78
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* ex */
        start local 1 // java.io.IOException ex
         3: .line 79
            aload 1 /* ex */
            invokestatic com.oracle.svm.core.util.VMError.shouldNotReachHere:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 1 // java.io.IOException ex
         4: .line 81
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.nio.file.Path path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  path  Ljava/nio/file/Path;
            3    4     1    ex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      path  

  void clean();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl this
         0: .line 84
            aload 0 /* this */
            getfield com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.deleteTempDirectory:Z
            ifeq 2
         1: .line 85
            aload 0 /* this */
            invokevirtual com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.getTemporaryBuildDirectory:()Ljava/nio/file/Path;
            invokestatic com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl.deleteAll:(Ljava/nio/file/Path;)V
         2: .line 87
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/svm/hosted/TemporaryBuildDirectoryProviderImpl;
}
SourceFile: "TemporaryBuildDirectoryProviderImpl.java"
NestMembers:
  com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl$1
InnerClasses:
  com.oracle.svm.hosted.TemporaryBuildDirectoryProviderImpl$1