public class sun.jvm.hotspot.debugger.LongHashMap
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: sun.jvm.hotspot.debugger.LongHashMap
super_class: java.lang.Object
{
transient sun.jvm.hotspot.debugger.LongHashMap$Entry[] table;
descriptor: [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
flags: (0x0080) ACC_TRANSIENT
transient int size;
descriptor: I
flags: (0x0080) ACC_TRANSIENT
int threshold;
descriptor: I
flags: (0x0000)
final float loadFactor;
descriptor: F
flags: (0x0010) ACC_FINAL
transient int modCount;
descriptor: I
flags: (0x0080) ACC_TRANSIENT
public void <init>(int, float);
descriptor: (IF)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
iconst_0
putfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
2: iload 1
ifge 6
3: new java.lang.IllegalArgumentException
dup
new java.lang.StringBuilder
dup
ldc "Illegal Initial Capacity: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
4: iload 1
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
5: invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
6: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap int float
StackMap stack:
fload 2
fconst_0
fcmpg
ifle 7
fload 2
invokestatic java.lang.Float.isNaN:(F)Z
ifeq 10
7: StackMap locals:
StackMap stack:
new java.lang.IllegalArgumentException
dup
new java.lang.StringBuilder
dup
ldc "Illegal Load factor: "
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
8: fload 2
invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
9: invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
10: StackMap locals:
StackMap stack:
iload 1
ifne 12
11: iconst_1
istore 1
12: StackMap locals:
StackMap stack:
aload 0
fload 2
putfield sun.jvm.hotspot.debugger.LongHashMap.loadFactor:F
13: aload 0
iload 1
anewarray sun.jvm.hotspot.debugger.LongHashMap$Entry
putfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
14: aload 0
iload 1
i2f
fload 2
fmul
f2i
putfield sun.jvm.hotspot.debugger.LongHashMap.threshold:I
15: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 16 1 initialCapacity I
0 16 2 loadFactor F
MethodParameters:
Name Flags
initialCapacity
loadFactor
public void <init>(int);
descriptor: (I)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
ldc 0.75
invokespecial sun.jvm.hotspot.debugger.LongHashMap.<init>:(IF)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 2 1 initialCapacity I
MethodParameters:
Name Flags
initialCapacity
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
bipush 11
ldc 0.75
invokespecial sun.jvm.hotspot.debugger.LongHashMap.<init>:(IF)V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.size:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
public boolean isEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.size:I
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
public java.lang.Object get(long);
descriptor: (J)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 0
lload 1
invokevirtual sun.jvm.hotspot.debugger.LongHashMap.getEntry:(J)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 3
start local 3 1: aload 3
ifnonnull 2
aconst_null
goto 3
StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
2: aload 3
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.value:Ljava/lang/Object;
StackMap locals:
StackMap stack: java.lang.Object
3: areturn
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 4 1 key J
1 4 3 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
key
public boolean containsKey(long);
descriptor: (J)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
lload 1
invokevirtual sun.jvm.hotspot.debugger.LongHashMap.getEntry:(J)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
ifnull 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 2 1 key J
MethodParameters:
Name Flags
key
sun.jvm.hotspot.debugger.LongHashMap$Entry getEntry(long);
descriptor: (J)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
flags: (0x0000)
Code:
stack=4, locals=7, args_size=2
start local 0 start local 1 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 3
start local 3 1: lload 1
l2i
istore 4
start local 4 2: iload 4
ldc 2147483647
iand
aload 3
arraylength
irem
istore 5
start local 5 3: aload 3
iload 5
aaload
astore 6
start local 6 4: goto 8
5: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap long sun.jvm.hotspot.debugger.LongHashMap$Entry[] int int sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.hash:I
iload 4
if_icmpne 7
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.key:J
lload 1
lcmp
ifne 7
6: aload 6
areturn
7: StackMap locals:
StackMap stack:
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 6
StackMap locals:
StackMap stack:
8: aload 6
ifnonnull 5
end local 6 9: aconst_null
areturn
end local 5 end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 10 1 key J
1 10 3 tab [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
2 10 4 hash I
3 10 5 index I
4 9 6 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
key
public boolean containsValue(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=5, args_size=2
start local 0 start local 1 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 2
start local 2 1: aload 1
ifnonnull 12
2: aload 2
arraylength
istore 3
start local 3 3: goto 10
4: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry[] int
StackMap stack:
aload 2
iload 3
aaload
astore 4
start local 4 5: goto 9
6: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.value:Ljava/lang/Object;
ifnonnull 8
7: iconst_1
ireturn
8: StackMap locals:
StackMap stack:
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 4
StackMap locals:
StackMap stack:
9: aload 4
ifnonnull 6
end local 4 10: StackMap locals:
StackMap stack:
iload 3
iinc 3 -1
ifgt 4
end local 3 11: goto 21
12: StackMap locals:
StackMap stack:
aload 2
arraylength
istore 3
start local 3 13: goto 20
14: StackMap locals: int
StackMap stack:
aload 2
iload 3
aaload
astore 4
start local 4 15: goto 19
16: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 1
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.value:Ljava/lang/Object;
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 18
17: iconst_1
ireturn
18: StackMap locals:
StackMap stack:
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 4
StackMap locals:
StackMap stack:
19: aload 4
ifnonnull 16
end local 4 20: StackMap locals:
StackMap stack:
iload 3
iinc 3 -1
ifgt 14
end local 3 21: StackMap locals:
StackMap stack:
iconst_0
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 22 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 22 1 value Ljava/lang/Object;
1 22 2 tab [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
3 11 3 i I
5 10 4 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
13 21 3 i I
15 20 4 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
value
public java.lang.Object put(long, java.lang.Object);
descriptor: (JLjava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=9, locals=9, args_size=3
start local 0 start local 1 start local 3 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 4
start local 4 1: lload 1
l2i
istore 5
start local 5 2: iload 5
ldc 2147483647
iand
aload 4
arraylength
irem
istore 6
start local 6 3: aload 4
iload 6
aaload
astore 7
start local 7 4: goto 10
5: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap long java.lang.Object sun.jvm.hotspot.debugger.LongHashMap$Entry[] int int sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 7
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.hash:I
iload 5
if_icmpne 9
aload 7
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.key:J
lload 1
lcmp
ifne 9
6: aload 7
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.value:Ljava/lang/Object;
astore 8
start local 8 7: aload 7
aload 3
putfield sun.jvm.hotspot.debugger.LongHashMap$Entry.value:Ljava/lang/Object;
8: aload 8
areturn
end local 8 9: StackMap locals:
StackMap stack:
aload 7
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 7
StackMap locals:
StackMap stack:
10: aload 7
ifnonnull 5
end local 7 11: aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
iconst_1
iadd
putfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
12: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.size:I
aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.threshold:I
if_icmplt 16
13: aload 0
invokevirtual sun.jvm.hotspot.debugger.LongHashMap.rehash:()V
14: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 4
15: iload 5
ldc 2147483647
iand
aload 4
arraylength
irem
istore 6
16: StackMap locals:
StackMap stack:
aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.size:I
iconst_1
iadd
putfield sun.jvm.hotspot.debugger.LongHashMap.size:I
17: aload 4
iload 6
aload 0
iload 5
lload 1
aload 3
aload 4
iload 6
aaload
invokevirtual sun.jvm.hotspot.debugger.LongHashMap.newEntry:(IJLjava/lang/Object;Lsun/jvm/hotspot/debugger/LongHashMap$Entry;)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
aastore
18: aconst_null
areturn
end local 6 end local 5 end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 19 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 19 1 key J
0 19 3 value Ljava/lang/Object;
1 19 4 tab [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
2 19 5 hash I
3 19 6 index I
4 11 7 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
7 9 8 oldValue Ljava/lang/Object;
MethodParameters:
Name Flags
key
value
public java.lang.Object remove(long);
descriptor: (J)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 0
lload 1
invokevirtual sun.jvm.hotspot.debugger.LongHashMap.removeEntryForKey:(J)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 3
start local 3 1: aload 3
ifnonnull 2
aconst_null
goto 3
StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
2: aload 3
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.value:Ljava/lang/Object;
StackMap locals:
StackMap stack: java.lang.Object
3: areturn
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 4 1 key J
1 4 3 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
key
sun.jvm.hotspot.debugger.LongHashMap$Entry removeEntryForKey(long);
descriptor: (J)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
flags: (0x0000)
Code:
stack=4, locals=8, args_size=2
start local 0 start local 1 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 3
start local 3 1: lload 1
l2i
istore 4
start local 4 2: iload 4
ldc 2147483647
iand
aload 3
arraylength
irem
istore 5
start local 5 3: aload 3
iload 5
aaload
astore 6
start local 6 4: aconst_null
astore 7
start local 7 5: goto 14
6: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap long sun.jvm.hotspot.debugger.LongHashMap$Entry[] int int sun.jvm.hotspot.debugger.LongHashMap$Entry sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.hash:I
iload 4
if_icmpne 13
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.key:J
lload 1
lcmp
ifne 13
7: aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
iconst_1
iadd
putfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
8: aload 7
ifnull 10
9: aload 7
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
putfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
goto 11
10: StackMap locals:
StackMap stack:
aload 3
iload 5
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
aastore
11: StackMap locals:
StackMap stack:
aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.size:I
iconst_1
isub
putfield sun.jvm.hotspot.debugger.LongHashMap.size:I
12: aload 6
areturn
13: StackMap locals:
StackMap stack:
aload 6
astore 7
aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 6
14: StackMap locals:
StackMap stack:
aload 6
ifnonnull 6
end local 7 end local 6 15: aconst_null
areturn
end local 5 end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 16 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 16 1 key J
1 16 3 tab [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
2 16 4 hash I
3 16 5 index I
4 15 6 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
5 15 7 prev Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
key
void removeEntry(sun.jvm.hotspot.debugger.LongHashMap$Entry);
descriptor: (Lsun/jvm/hotspot/debugger/LongHashMap$Entry;)V
flags: (0x0000)
Code:
stack=3, locals=6, args_size=2
start local 0 start local 1 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 2
start local 2 1: aload 1
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.hash:I
ldc 2147483647
iand
aload 2
arraylength
irem
istore 3
start local 3 2: aload 2
iload 3
aaload
astore 4
start local 4 3: aconst_null
astore 5
start local 5 4: goto 13
5: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap sun.jvm.hotspot.debugger.LongHashMap$Entry sun.jvm.hotspot.debugger.LongHashMap$Entry[] int sun.jvm.hotspot.debugger.LongHashMap$Entry sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 4
aload 1
if_acmpne 12
6: aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
iconst_1
iadd
putfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
7: aload 5
ifnonnull 9
8: aload 2
iload 3
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
aastore
goto 10
9: StackMap locals:
StackMap stack:
aload 5
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
putfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
10: StackMap locals:
StackMap stack:
aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.size:I
iconst_1
isub
putfield sun.jvm.hotspot.debugger.LongHashMap.size:I
11: return
12: StackMap locals:
StackMap stack:
aload 4
astore 5
aload 4
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 4
13: StackMap locals:
StackMap stack:
aload 4
ifnonnull 5
end local 5 end local 4 14: new java.util.ConcurrentModificationException
dup
invokespecial java.util.ConcurrentModificationException.<init>:()V
athrow
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 15 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 15 1 doomed Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
1 15 2 tab [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
2 15 3 index I
3 14 4 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
4 14 5 prev Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
doomed
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=1
start local 0 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 1
start local 1 1: aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
iconst_1
iadd
putfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
2: aload 1
arraylength
istore 2
start local 2 3: goto 5
4: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry[] int
StackMap stack:
aload 1
iload 2
aconst_null
aastore
5: StackMap locals:
StackMap stack:
iinc 2 -1
iload 2
ifge 4
end local 2 6: aload 0
iconst_0
putfield sun.jvm.hotspot.debugger.LongHashMap.size:I
7: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
1 8 1 tab [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
3 6 2 index I
void rehash();
descriptor: ()V
flags: (0x0000)
Code:
stack=3, locals=9, args_size=1
start local 0 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 1
start local 1 1: aload 1
arraylength
istore 2
start local 2 2: iload 2
iconst_2
imul
iconst_1
iadd
istore 3
start local 3 3: iload 3
anewarray sun.jvm.hotspot.debugger.LongHashMap$Entry
astore 4
start local 4 4: aload 0
dup
getfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
iconst_1
iadd
putfield sun.jvm.hotspot.debugger.LongHashMap.modCount:I
5: aload 0
iload 3
i2f
aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.loadFactor:F
fmul
f2i
putfield sun.jvm.hotspot.debugger.LongHashMap.threshold:I
6: aload 0
aload 4
putfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
7: iload 2
istore 5
start local 5 8: goto 17
9: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap sun.jvm.hotspot.debugger.LongHashMap$Entry[] int int sun.jvm.hotspot.debugger.LongHashMap$Entry[] int
StackMap stack:
aload 1
iload 5
aaload
astore 6
start local 6 10: goto 16
11: StackMap locals: sun.jvm.hotspot.debugger.LongHashMap$Entry
StackMap stack:
aload 6
astore 7
start local 7 12: aload 6
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
astore 6
13: aload 7
getfield sun.jvm.hotspot.debugger.LongHashMap$Entry.hash:I
ldc 2147483647
iand
iload 3
irem
istore 8
start local 8 14: aload 7
aload 4
iload 8
aaload
putfield sun.jvm.hotspot.debugger.LongHashMap$Entry.next:Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
15: aload 4
iload 8
aload 7
aastore
end local 8 end local 7 16: StackMap locals:
StackMap stack:
aload 6
ifnonnull 11
end local 6 17: StackMap locals:
StackMap stack:
iload 5
iinc 5 -1
ifgt 9
end local 5 18: return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 19 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
1 19 1 oldTable [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
2 19 2 oldCapacity I
3 19 3 newCapacity I
4 19 4 newTable [Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
8 18 5 i I
10 17 6 old Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
12 16 7 e Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
14 16 8 index I
static boolean eq(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
flags: (0x0008) ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
ifnonnull 2
aload 1
ifnonnull 1
iconst_1
goto 3
StackMap locals:
StackMap stack:
1: iconst_0
goto 3
StackMap locals:
StackMap stack:
2: aload 0
aload 1
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
StackMap locals:
StackMap stack: int
3: ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 o1 Ljava/lang/Object;
0 4 1 o2 Ljava/lang/Object;
MethodParameters:
Name Flags
o1
o2
sun.jvm.hotspot.debugger.LongHashMap$Entry newEntry(int, long, java.lang.Object, sun.jvm.hotspot.debugger.LongHashMap$Entry);
descriptor: (IJLjava/lang/Object;Lsun/jvm/hotspot/debugger/LongHashMap$Entry;)Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
flags: (0x0000)
Code:
stack=7, locals=6, args_size=5
start local 0 start local 1 start local 2 start local 4 start local 5 0: new sun.jvm.hotspot.debugger.LongHashMap$Entry
dup
iload 1
lload 2
aload 4
aload 5
invokespecial sun.jvm.hotspot.debugger.LongHashMap$Entry.<init>:(IJLjava/lang/Object;Lsun/jvm/hotspot/debugger/LongHashMap$Entry;)V
areturn
end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
0 1 1 hash I
0 1 2 key J
0 1 4 value Ljava/lang/Object;
0 1 5 next Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
MethodParameters:
Name Flags
hash
key
value
next
int capacity();
descriptor: ()I
flags: (0x0000)
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.table:[Lsun/jvm/hotspot/debugger/LongHashMap$Entry;
arraylength
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
float loadFactor();
descriptor: ()F
flags: (0x0000)
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield sun.jvm.hotspot.debugger.LongHashMap.loadFactor:F
freturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lsun/jvm/hotspot/debugger/LongHashMap;
}
SourceFile: "LongHashMap.java"
NestMembers:
sun.jvm.hotspot.debugger.LongHashMap$Entry
InnerClasses:
Entry = sun.jvm.hotspot.debugger.LongHashMap$Entry of sun.jvm.hotspot.debugger.LongHashMap