public abstract class com.oracle.svm.core.posix.PosixSystemPropertiesSupport extends com.oracle.svm.core.jdk.SystemPropertiesSupport
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.svm.core.posix.PosixSystemPropertiesSupport
  super_class: com.oracle.svm.core.jdk.SystemPropertiesSupport
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
         0: .line 37
            aload 0 /* this */
            invokespecial com.oracle.svm.core.jdk.SystemPropertiesSupport.<init>:()V
            return
        end local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/core/posix/PosixSystemPropertiesSupport;

  protected java.lang.String userNameValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
         0: .line 46
            invokestatic com.oracle.svm.core.posix.headers.Unistd.getuid:()I
            invokestatic com.oracle.svm.core.posix.headers.Pwd.getpwuid:(I)Lcom/oracle/svm/core/posix/headers/Pwd$passwd;
            astore 1 /* pwent */
        start local 1 // com.oracle.svm.core.posix.headers.Pwd$passwd pwent
         1: .line 47
            aload 1 /* pwent */
            invokeinterface com.oracle.svm.core.posix.headers.Pwd$passwd.isNull:()Z
            ifeq 2
            ldc "?"
            goto 3
      StackMap locals: com.oracle.svm.core.posix.headers.Pwd$passwd
      StackMap stack:
         2: aload 1 /* pwent */
            invokeinterface com.oracle.svm.core.posix.headers.Pwd$passwd.pw_name:()Lorg/graalvm/nativeimage/c/type/CCharPointer;
            invokestatic org.graalvm.nativeimage.c.type.CTypeConversion.toJavaString:(Lorg/graalvm/nativeimage/c/type/CCharPointer;)Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
        end local 1 // com.oracle.svm.core.posix.headers.Pwd$passwd pwent
        end local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/oracle/svm/core/posix/PosixSystemPropertiesSupport;
            1    4     1  pwent  Lcom/oracle/svm/core/posix/headers/Pwd$passwd;

  protected java.lang.String userHomeValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
         0: .line 52
            invokestatic com.oracle.svm.core.posix.headers.Unistd.getuid:()I
            invokestatic com.oracle.svm.core.posix.headers.Pwd.getpwuid:(I)Lcom/oracle/svm/core/posix/headers/Pwd$passwd;
            astore 1 /* pwent */
        start local 1 // com.oracle.svm.core.posix.headers.Pwd$passwd pwent
         1: .line 53
            aload 1 /* pwent */
            invokeinterface com.oracle.svm.core.posix.headers.Pwd$passwd.isNull:()Z
            ifeq 2
            ldc "?"
            goto 3
      StackMap locals: com.oracle.svm.core.posix.headers.Pwd$passwd
      StackMap stack:
         2: aload 1 /* pwent */
            invokeinterface com.oracle.svm.core.posix.headers.Pwd$passwd.pw_dir:()Lorg/graalvm/nativeimage/c/type/CCharPointer;
            invokestatic org.graalvm.nativeimage.c.type.CTypeConversion.toJavaString:(Lorg/graalvm/nativeimage/c/type/CCharPointer;)Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         3: areturn
        end local 1 // com.oracle.svm.core.posix.headers.Pwd$passwd pwent
        end local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/oracle/svm/core/posix/PosixSystemPropertiesSupport;
            1    4     1  pwent  Lcom/oracle/svm/core/posix/headers/Pwd$passwd;

  protected java.lang.String userDirValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
         0: .line 58
            invokestatic com.oracle.svm.core.posix.headers.Limits.MAXPATHLEN:()I
            istore 1 /* bufSize */
        start local 1 // int bufSize
         1: .line 59
            iload 1 /* bufSize */
            invokestatic org.graalvm.nativeimage.StackValue.get:(I)Lorg/graalvm/word/PointerBase;
            checkcast org.graalvm.nativeimage.c.type.CCharPointer
            astore 2 /* buf */
        start local 2 // org.graalvm.nativeimage.c.type.CCharPointer buf
         2: .line 60
            aload 2 /* buf */
            iload 1 /* bufSize */
            invokestatic org.graalvm.word.WordFactory.unsigned:(I)Lorg/graalvm/word/UnsignedWord;
            invokestatic com.oracle.svm.core.posix.headers.Unistd.getcwd:(Lorg/graalvm/nativeimage/c/type/CCharPointer;Lorg/graalvm/word/UnsignedWord;)Lorg/graalvm/nativeimage/c/type/CCharPointer;
            invokeinterface org.graalvm.nativeimage.c.type.CCharPointer.isNonNull:()Z
            ifeq 4
         3: .line 61
            aload 2 /* buf */
            invokestatic org.graalvm.nativeimage.c.type.CTypeConversion.toJavaString:(Lorg/graalvm/nativeimage/c/type/CCharPointer;)Ljava/lang/String;
            areturn
         4: .line 63
      StackMap locals: int org.graalvm.nativeimage.c.type.CCharPointer
      StackMap stack:
            new java.lang.Error
            dup
            ldc "Properties init: Could not determine current working directory."
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // org.graalvm.nativeimage.c.type.CCharPointer buf
        end local 1 // int bufSize
        end local 0 // com.oracle.svm.core.posix.PosixSystemPropertiesSupport this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/oracle/svm/core/posix/PosixSystemPropertiesSupport;
            1    5     1  bufSize  I
            2    5     2      buf  Lorg/graalvm/nativeimage/c/type/CCharPointer;
}
SourceFile: "PosixSystemPropertiesSupport.java"
InnerClasses:
  public abstract passwd = com.oracle.svm.core.posix.headers.Pwd$passwd of com.oracle.svm.core.posix.headers.Pwd