class sun.nio.fs.UnixFileKey
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.fs.UnixFileKey
  super_class: java.lang.Object
{
  private final long st_dev;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long st_ino;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(long, long);
    descriptor: (JJ)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // sun.nio.fs.UnixFileKey this
        start local 1 // long st_dev
        start local 3 // long st_ino
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            lload 1 /* st_dev */
            putfield sun.nio.fs.UnixFileKey.st_dev:J
         2: .line 38
            aload 0 /* this */
            lload 3 /* st_ino */
            putfield sun.nio.fs.UnixFileKey.st_ino:J
         3: .line 39
            return
        end local 3 // long st_ino
        end local 1 // long st_dev
        end local 0 // sun.nio.fs.UnixFileKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lsun/nio/fs/UnixFileKey;
            0    4     1  st_dev  J
            0    4     3  st_ino  J
    MethodParameters:
        Name  Flags
      st_dev  
      st_ino  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // sun.nio.fs.UnixFileKey this
         0: .line 43
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_dev:J
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_dev:J
            bipush 32
            lushr
            lxor
            l2i
         1: .line 44
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_ino:J
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_ino:J
            bipush 32
            lushr
            lxor
            l2i
         2: .line 43
            iadd
            ireturn
        end local 0 // sun.nio.fs.UnixFileKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/nio/fs/UnixFileKey;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.nio.fs.UnixFileKey this
        start local 1 // java.lang.Object obj
         0: .line 49
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 50
            iconst_1
            ireturn
         2: .line 51
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof sun.nio.fs.UnixFileKey
            ifne 4
         3: .line 52
            iconst_0
            ireturn
         4: .line 53
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast sun.nio.fs.UnixFileKey
            astore 2 /* other */
        start local 2 // sun.nio.fs.UnixFileKey other
         5: .line 54
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_dev:J
            aload 2 /* other */
            getfield sun.nio.fs.UnixFileKey.st_dev:J
            lcmp
            ifne 6
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_ino:J
            aload 2 /* other */
            getfield sun.nio.fs.UnixFileKey.st_ino:J
            lcmp
            ifne 6
            iconst_1
            ireturn
      StackMap locals: sun.nio.fs.UnixFileKey
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // sun.nio.fs.UnixFileKey other
        end local 1 // java.lang.Object obj
        end local 0 // sun.nio.fs.UnixFileKey this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lsun/nio/fs/UnixFileKey;
            0    7     1    obj  Ljava/lang/Object;
            5    7     2  other  Lsun/nio/fs/UnixFileKey;
    MethodParameters:
      Name  Flags
      obj   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.nio.fs.UnixFileKey this
         0: .line 59
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 60
            aload 1 /* sb */
            ldc "(dev="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 61
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_dev:J
            invokestatic java.lang.Long.toHexString:(J)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 62
            ldc ",ino="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 63
            aload 0 /* this */
            getfield sun.nio.fs.UnixFileKey.st_ino:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
         5: .line 64
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         6: .line 65
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // sun.nio.fs.UnixFileKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/nio/fs/UnixFileKey;
            1    7     1    sb  Ljava/lang/StringBuilder;
}
SourceFile: "UnixFileKey.java"