public class org.hibernate.internal.util.collections.BoundedConcurrentHashMap<K, V> extends java.util.AbstractMap<K, V> implements java.util.concurrent.ConcurrentMap<K, V>, java.io.Serializable
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.hibernate.internal.util.collections.BoundedConcurrentHashMap
super_class: java.util.AbstractMap
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 7249069246763182397
static final int DEFAULT_MAXIMUM_CAPACITY;
descriptor: I
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: 512
static final float DEFAULT_LOAD_FACTOR;
descriptor: F
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: 0.75
static final int DEFAULT_CONCURRENCY_LEVEL;
descriptor: I
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: 16
static final int MAXIMUM_CAPACITY;
descriptor: I
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: 1073741824
static final int MAX_SEGMENTS;
descriptor: I
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: 65536
static final int RETRIES_BEFORE_LOCK;
descriptor: I
flags: (0x0018) ACC_STATIC, ACC_FINAL
ConstantValue: 2
final int segmentMask;
descriptor: I
flags: (0x0010) ACC_FINAL
final int segmentShift;
descriptor: I
flags: (0x0010) ACC_FINAL
final org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment<K, V>[] segments;
descriptor: [Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
flags: (0x0010) ACC_FINAL
Signature: [Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment<TK;TV;>;
transient java.util.Set<K> keySet;
descriptor: Ljava/util/Set;
flags: (0x0080) ACC_TRANSIENT
Signature: Ljava/util/Set<TK;>;
transient java.util.Set<java.util.Map$Entry<K, V>> entrySet;
descriptor: Ljava/util/Set;
flags: (0x0080) ACC_TRANSIENT
Signature: Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
transient java.util.Collection<V> values;
descriptor: Ljava/util/Collection;
flags: (0x0080) ACC_TRANSIENT
Signature: Ljava/util/Collection<TV;>;
private static int hash(int);
descriptor: (I)I
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=4, locals=1, args_size=1
start local 0 0: iload 0
iload 0
bipush 15
ishl
sipush -12931
ixor
iadd
istore 0
1: iload 0
iload 0
bipush 10
iushr
ixor
istore 0
2: iload 0
iload 0
iconst_3
ishl
iadd
istore 0
3: iload 0
iload 0
bipush 6
iushr
ixor
istore 0
4: iload 0
iload 0
iconst_2
ishl
iload 0
bipush 14
ishl
iadd
iadd
istore 0
5: iload 0
iload 0
bipush 16
iushr
ixor
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 h I
MethodParameters:
Name Flags
h
final org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment<K, V> segmentFor(int);
descriptor: (I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
flags: (0x0010) ACC_FINAL
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
iload 1
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentShift:I
iushr
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentMask:I
iand
aaload
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 1 1 hash I
Signature: (I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment<TK;TV;>;
MethodParameters:
Name Flags
hash
public void <init>(int, int, org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction, org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EvictionListener<K, V>);
descriptor: (IILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=9, locals=10, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
invokespecial java.util.AbstractMap.<init>:()V
1: iload 1
iflt 2
iload 2
ifgt 3
2: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap int int org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EvictionListener
StackMap stack:
new java.lang.IllegalArgumentException
dup
invokespecial java.lang.IllegalArgumentException.<init>:()V
athrow
3: StackMap locals:
StackMap stack:
iload 1
iconst_2
idiv
iload 2
invokestatic java.lang.Math.min:(II)I
istore 2
4: iload 2
iconst_1
invokestatic java.lang.Math.max:(II)I
istore 2
5: iload 1
iload 2
iconst_2
imul
if_icmpge 7
iload 1
iconst_1
if_icmpeq 7
6: new java.lang.IllegalArgumentException
dup
ldc "Maximum capacity has to be at least twice the concurrencyLevel"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
7: StackMap locals:
StackMap stack:
aload 3
ifnull 8
aload 4
ifnonnull 9
8: StackMap locals:
StackMap stack:
new java.lang.IllegalArgumentException
dup
invokespecial java.lang.IllegalArgumentException.<init>:()V
athrow
9: StackMap locals:
StackMap stack:
iload 2
ldc 65536
if_icmple 11
10: ldc 65536
istore 2
11: StackMap locals:
StackMap stack:
iconst_0
istore 5
start local 5 12: iconst_1
istore 6
start local 6 13: goto 16
14: StackMap locals: int int
StackMap stack:
iinc 5 1
15: iload 6
iconst_1
ishl
istore 6
16: StackMap locals:
StackMap stack:
iload 6
iload 2
if_icmplt 14
17: aload 0
bipush 32
iload 5
isub
putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentShift:I
18: aload 0
iload 6
iconst_1
isub
putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentMask:I
19: aload 0
iload 6
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.newArray:(I)[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
20: iload 1
ldc 1073741824
if_icmple 22
21: ldc 1073741824
istore 1
22: StackMap locals:
StackMap stack:
iload 1
iload 6
idiv
istore 7
start local 7 23: iconst_1
istore 8
start local 8 24: goto 26
25: StackMap locals: int int
StackMap stack:
iload 8
iconst_1
ishl
istore 8
26: StackMap locals:
StackMap stack:
iload 8
iload 7
if_icmplt 25
27: iconst_0
istore 9
start local 9 28: goto 31
29: StackMap locals: int
StackMap stack:
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
iload 9
new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment
dup
iload 8
iload 7
ldc 0.75
aload 3
aload 4
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.<init>:(IIFLorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener;)V
aastore
30: iinc 9 1
StackMap locals:
StackMap stack:
31: iload 9
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
arraylength
if_icmplt 29
end local 9 32: return
end local 8 end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 33 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 33 1 capacity I
0 33 2 concurrencyLevel I
0 33 3 evictionStrategy Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;
0 33 4 evictionListener Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener<TK;TV;>;
12 33 5 sshift I
13 33 6 ssize I
23 33 7 c I
24 33 8 cap I
28 32 9 i I
Signature: (IILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener<TK;TV;>;)V
MethodParameters:
Name Flags
capacity
concurrencyLevel
evictionStrategy
evictionListener
public void <init>(int, int);
descriptor: (II)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
iload 2
getstatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction.LRU:Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap.<init>:(IILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;)V
1: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 2 1 capacity I
0 2 2 concurrencyLevel I
MethodParameters:
Name Flags
capacity
concurrencyLevel
public void <init>(int, int, org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction);
descriptor: (IILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
iload 1
iload 2
aload 3
new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$NullEvictionListener
dup
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$NullEvictionListener.<init>:()V
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap.<init>:(IILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener;)V
1: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 2 1 capacity I
0 2 2 concurrencyLevel I
0 2 3 evictionStrategy Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;
Signature: (IILorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction;)V
MethodParameters:
Name Flags
capacity
concurrencyLevel
evictionStrategy
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
bipush 16
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap.<init>:(II)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 2 1 capacity I
MethodParameters:
Name Flags
capacity
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
sipush 512
bipush 16
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap.<init>:(II)V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
public boolean isEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=5, args_size=1
start local 0 0: aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
astore 1
start local 1 1: aload 1
arraylength
newarray 10
astore 2
start local 2 2: iconst_0
istore 3
start local 3 3: iconst_0
istore 4
start local 4 4: goto 9
5: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int int
StackMap stack:
aload 1
iload 4
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
ifeq 7
6: iconst_0
ireturn
7: StackMap locals:
StackMap stack:
iload 3
aload 2
iload 4
aload 1
iload 4
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.modCount:I
dup_x2
iastore
iadd
istore 3
8: iinc 4 1
StackMap locals:
StackMap stack:
9: iload 4
aload 1
arraylength
if_icmplt 5
end local 4 10: iload 3
ifeq 17
11: iconst_0
istore 4
start local 4 12: goto 16
13: StackMap locals:
StackMap stack:
aload 1
iload 4
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
ifne 14
aload 2
iload 4
iaload
aload 1
iload 4
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.modCount:I
if_icmpeq 15
14: StackMap locals:
StackMap stack:
iconst_0
ireturn
15: StackMap locals:
StackMap stack:
iinc 4 1
StackMap locals:
StackMap stack:
16: iload 4
aload 1
arraylength
if_icmplt 13
end local 4 17: StackMap locals:
StackMap stack:
iconst_1
ireturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 18 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
1 18 1 segments [Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
2 18 2 mc [I
3 18 3 mcsum I
4 10 4 i I
12 17 4 i I
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=10, args_size=1
start local 0 0: aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
astore 1
start local 1 1: lconst_0
lstore 2
start local 2 2: lconst_0
lstore 4
start local 4 3: aload 1
arraylength
newarray 10
astore 6
start local 6 4: iconst_0
istore 7
start local 7 5: goto 27
6: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] long long int[] int
StackMap stack:
lconst_0
lstore 4
7: lconst_0
lstore 2
8: iconst_0
istore 8
start local 8 9: iconst_0
istore 9
start local 9 10: goto 14
11: StackMap locals: int int
StackMap stack:
lload 2
aload 1
iload 9
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
i2l
ladd
lstore 2
12: iload 8
aload 6
iload 9
aload 1
iload 9
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.modCount:I
dup_x2
iastore
iadd
istore 8
13: iinc 9 1
StackMap locals:
StackMap stack:
14: iload 9
aload 1
arraylength
if_icmplt 11
end local 9 15: iload 8
ifeq 24
16: iconst_0
istore 9
start local 9 17: goto 23
18: StackMap locals:
StackMap stack:
lload 4
aload 1
iload 9
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
i2l
ladd
lstore 4
19: aload 6
iload 9
iaload
aload 1
iload 9
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.modCount:I
if_icmpeq 22
20: ldc -1
lstore 4
21: goto 24
22: StackMap locals:
StackMap stack:
iinc 9 1
StackMap locals:
StackMap stack:
23: iload 9
aload 1
arraylength
if_icmplt 18
end local 9 24: StackMap locals:
StackMap stack:
lload 4
lload 2
lcmp
ifne 26
25: goto 28
end local 8 26: StackMap locals:
StackMap stack:
iinc 7 1
StackMap locals:
StackMap stack:
27: iload 7
iconst_2
if_icmplt 6
end local 7 28: StackMap locals:
StackMap stack:
lload 4
lload 2
lcmp
ifeq 53
29: lconst_0
lstore 2
30: iconst_0
istore 7
start local 7 31: goto 34
32: StackMap locals: int
StackMap stack:
aload 1
iload 7
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.lock:()V
33: iinc 7 1
StackMap locals:
StackMap stack:
34: iload 7
aload 1
arraylength
if_icmplt 32
end local 7 35: iconst_0
istore 7
start local 7 36: goto 39
37: StackMap locals:
StackMap stack:
lload 2
aload 1
iload 7
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
i2l
ladd
lstore 2
38: iinc 7 1
StackMap locals:
StackMap stack:
39: iload 7
aload 1
arraylength
if_icmplt 37
end local 7 40: goto 48
41: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] long long int[]
StackMap stack: java.lang.Throwable
astore 8
42: iconst_0
istore 9
start local 9 43: goto 46
44: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] long long int[] top java.lang.Throwable int
StackMap stack:
aload 1
iload 9
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.unlock:()V
45: iinc 9 1
StackMap locals:
StackMap stack:
46: iload 9
aload 1
arraylength
if_icmplt 44
end local 9 47: aload 8
athrow
48: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] long long int[]
StackMap stack:
iconst_0
istore 9
start local 9 49: goto 52
50: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] long long int[] top top int
StackMap stack:
aload 1
iload 9
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.unlock:()V
51: iinc 9 1
StackMap locals:
StackMap stack:
52: iload 9
aload 1
arraylength
if_icmplt 50
end local 9 53: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] long long int[]
StackMap stack:
lload 2
ldc 2147483647
lcmp
ifle 55
54: ldc 2147483647
ireturn
55: StackMap locals:
StackMap stack:
lload 2
l2i
ireturn
end local 6 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 56 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
1 56 1 segments [Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
2 56 2 sum J
3 56 4 check J
4 56 6 mc [I
5 28 7 k I
9 26 8 mcsum I
10 15 9 i I
17 24 9 i I
31 35 7 i I
36 40 7 i I
43 47 9 i I
49 53 9 i I
Exception table:
from to target type
35 41 41 any
public V get();
descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 2
start local 2 1: aload 0
iload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.get:(Ljava/lang/Object;I)Ljava/lang/Object;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 2 1 key Ljava/lang/Object;
1 2 2 hash I
Signature: (Ljava/lang/Object;)TV;
MethodParameters:
Name Flags
key
public boolean containsKey(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 2
start local 2 1: aload 0
iload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.containsKey:(Ljava/lang/Object;I)Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 2 1 key Ljava/lang/Object;
1 2 2 hash I
MethodParameters:
Name Flags
key
public boolean containsValue(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=8, args_size=2
start local 0 start local 1 0: aload 1
ifnonnull 2
1: new java.lang.NullPointerException
dup
invokespecial java.lang.NullPointerException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
astore 2
start local 2 3: aload 2
arraylength
newarray 10
astore 3
start local 3 4: iconst_0
istore 4
start local 4 5: goto 28
6: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int
StackMap stack:
iconst_0
istore 5
start local 5 7: iconst_0
istore 6
start local 6 8: goto 14
9: StackMap locals: int int
StackMap stack:
aload 2
iload 6
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
pop
10: iload 5
aload 3
iload 6
aload 2
iload 6
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.modCount:I
dup_x2
iastore
iadd
istore 5
11: aload 2
iload 6
aaload
aload 1
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.containsValue:(Ljava/lang/Object;)Z
ifeq 13
12: iconst_1
ireturn
13: StackMap locals:
StackMap stack:
iinc 6 1
StackMap locals:
StackMap stack:
14: iload 6
aload 2
arraylength
if_icmplt 9
end local 6 15: iconst_1
istore 6
start local 6 16: iload 5
ifeq 25
17: iconst_0
istore 7
start local 7 18: goto 24
19: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.lang.Object org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int int int int
StackMap stack:
aload 2
iload 7
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.count:I
pop
20: aload 3
iload 7
iaload
aload 2
iload 7
aaload
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.modCount:I
if_icmpeq 23
21: iconst_0
istore 6
22: goto 25
23: StackMap locals:
StackMap stack:
iinc 7 1
StackMap locals:
StackMap stack:
24: iload 7
aload 2
arraylength
if_icmplt 19
end local 7 25: StackMap locals:
StackMap stack:
iload 6
ifeq 27
26: iconst_0
ireturn
end local 6 end local 5 27: StackMap locals:
StackMap stack:
iinc 4 1
StackMap locals:
StackMap stack:
28: iload 4
iconst_2
if_icmplt 6
end local 4 29: iconst_0
istore 4
start local 4 30: goto 33
31: StackMap locals:
StackMap stack:
aload 2
iload 4
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.lock:()V
32: iinc 4 1
StackMap locals:
StackMap stack:
33: iload 4
aload 2
arraylength
if_icmplt 31
end local 4 34: iconst_0
istore 4
start local 4 35: iconst_0
istore 5
start local 5 36: goto 41
37: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.lang.Object org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int int
StackMap stack:
aload 2
iload 5
aaload
aload 1
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.containsValue:(Ljava/lang/Object;)Z
ifeq 40
38: iconst_1
istore 4
39: goto 50
40: StackMap locals:
StackMap stack:
iinc 5 1
StackMap locals:
StackMap stack:
41: iload 5
aload 2
arraylength
if_icmplt 37
end local 5 42: goto 50
43: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.lang.Object org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int
StackMap stack: java.lang.Throwable
astore 6
44: iconst_0
istore 7
start local 7 45: goto 48
46: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.lang.Object org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int top java.lang.Throwable int
StackMap stack:
aload 2
iload 7
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.unlock:()V
47: iinc 7 1
StackMap locals:
StackMap stack:
48: iload 7
aload 2
arraylength
if_icmplt 46
end local 7 49: aload 6
athrow
50: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.lang.Object org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int
StackMap stack:
iconst_0
istore 7
start local 7 51: goto 54
52: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.lang.Object org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment[] int[] int top top int
StackMap stack:
aload 2
iload 7
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.unlock:()V
53: iinc 7 1
StackMap locals:
StackMap stack:
54: iload 7
aload 2
arraylength
if_icmplt 52
end local 7 55: iload 4
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 56 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 56 1 value Ljava/lang/Object;
3 56 2 segments [Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
4 56 3 mc [I
5 29 4 k I
7 27 5 mcsum I
8 15 6 i I
16 27 6 cleanSweep Z
18 25 7 i I
30 34 4 i I
35 56 4 found Z
36 42 5 i I
45 49 7 i I
51 55 7 i I
Exception table:
from to target type
35 43 43 any
MethodParameters:
Name Flags
value
public boolean contains(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.containsValue:(Ljava/lang/Object;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 1 1 value Ljava/lang/Object;
MethodParameters:
Name Flags
value
public V put(K, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 2
ifnonnull 2
1: new java.lang.NullPointerException
dup
invokespecial java.lang.NullPointerException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 3
start local 3 3: aload 0
iload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 3
aload 2
iconst_0
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.put:(Ljava/lang/Object;ILjava/lang/Object;Z)Ljava/lang/Object;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 4 1 key TK;
0 4 2 value TV;
3 4 3 hash I
Signature: (TK;TV;)TV;
MethodParameters:
Name Flags
key
value
public V putIfAbsent(K, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 2
ifnonnull 2
1: new java.lang.NullPointerException
dup
invokespecial java.lang.NullPointerException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 3
start local 3 3: aload 0
iload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 3
aload 2
iconst_1
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.put:(Ljava/lang/Object;ILjava/lang/Object;Z)Ljava/lang/Object;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 4 1 key TK;
0 4 2 value TV;
3 4 3 hash I
Signature: (TK;TV;)TV;
MethodParameters:
Name Flags
key
value
public void putAll(java.util.Map<? extends K, ? extends V>);
descriptor: (Ljava/util/Map;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
astore 3
goto 3
StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.util.Map top java.util.Iterator
StackMap stack:
1: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.util.Map$Entry
astore 2
start local 2 2: aload 0
aload 2
invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
aload 2
invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 2 3: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
4: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 5 1 m Ljava/util/Map<+TK;+TV;>;
2 3 2 e Ljava/util/Map$Entry<+TK;+TV;>;
Signature: (Ljava/util/Map<+TK;+TV;>;)V
MethodParameters:
Name Flags
m
public V remove();
descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 2
start local 2 1: aload 0
iload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 2
aconst_null
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.remove:(Ljava/lang/Object;ILjava/lang/Object;)Ljava/lang/Object;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 2 1 key Ljava/lang/Object;
1 2 2 hash I
Signature: (Ljava/lang/Object;)TV;
MethodParameters:
Name Flags
key
public boolean remove(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 3
start local 3 1: aload 2
ifnonnull 3
2: iconst_0
ireturn
3: StackMap locals: int
StackMap stack:
aload 0
iload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 3
aload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.remove:(Ljava/lang/Object;ILjava/lang/Object;)Ljava/lang/Object;
ifnull 4
iconst_1
ireturn
StackMap locals:
StackMap stack:
4: iconst_0
ireturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 5 1 key Ljava/lang/Object;
0 5 2 value Ljava/lang/Object;
1 5 3 hash I
MethodParameters:
Name Flags
key
value
public boolean replace(K, V, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 2
ifnull 1
aload 3
ifnonnull 2
1: StackMap locals:
StackMap stack:
new java.lang.NullPointerException
dup
invokespecial java.lang.NullPointerException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 4
start local 4 3: aload 0
iload 4
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 4
aload 2
aload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.replace:(Ljava/lang/Object;ILjava/lang/Object;Ljava/lang/Object;)Z
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 4 1 key TK;
0 4 2 oldValue TV;
0 4 3 newValue TV;
3 4 4 hash I
Signature: (TK;TV;TV;)Z
MethodParameters:
Name Flags
key
oldValue
newValue
public V replace(K, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 2
ifnonnull 2
1: new java.lang.NullPointerException
dup
invokespecial java.lang.NullPointerException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 1
invokevirtual java.lang.Object.hashCode:()I
invokestatic org.hibernate.internal.util.collections.BoundedConcurrentHashMap.hash:(I)I
istore 3
start local 3 3: aload 0
iload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segmentFor:(I)Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
aload 1
iload 3
aload 2
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.replace:(Ljava/lang/Object;ILjava/lang/Object;)Ljava/lang/Object;
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 4 1 key TK;
0 4 2 value TV;
3 4 3 hash I
Signature: (TK;TV;)TV;
MethodParameters:
Name Flags
key
value
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: iconst_0
istore 1
start local 1 1: goto 4
2: StackMap locals: int
StackMap stack:
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
iload 1
aaload
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.clear:()V
3: iinc 1 1
StackMap locals:
StackMap stack:
4: iload 1
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
arraylength
if_icmplt 2
end local 1 5: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
1 5 1 i I
public java.util.Set<K> keySet();
descriptor: ()Ljava/util/Set;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=1
start local 0 0: aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.keySet:Ljava/util/Set;
astore 1
start local 1 1: aload 1
ifnull 2
aload 1
goto 3
StackMap locals: java.util.Set
StackMap stack:
2: aload 0
new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeySet
dup
aload 0
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeySet.<init>:(Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap;)V
dup_x1
putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.keySet:Ljava/util/Set;
StackMap locals:
StackMap stack: java.util.Set
3: areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
1 4 1 ks Ljava/util/Set<TK;>;
Signature: ()Ljava/util/Set<TK;>;
public java.util.Collection<V> values();
descriptor: ()Ljava/util/Collection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=1
start local 0 0: aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.values:Ljava/util/Collection;
astore 1
start local 1 1: aload 1
ifnull 2
aload 1
goto 3
StackMap locals: java.util.Collection
StackMap stack:
2: aload 0
new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Values
dup
aload 0
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Values.<init>:(Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap;)V
dup_x1
putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.values:Ljava/util/Collection;
StackMap locals:
StackMap stack: java.util.Collection
3: areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
1 4 1 vs Ljava/util/Collection<TV;>;
Signature: ()Ljava/util/Collection<TV;>;
public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
descriptor: ()Ljava/util/Set;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=1
start local 0 0: aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.entrySet:Ljava/util/Set;
astore 1
start local 1 1: aload 1
ifnull 2
aload 1
goto 3
StackMap locals: java.util.Set
StackMap stack:
2: aload 0
new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EntrySet
dup
aload 0
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EntrySet.<init>:(Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap;)V
dup_x1
putfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.entrySet:Ljava/util/Set;
StackMap locals:
StackMap stack: java.util.Set
3: areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
1 4 1 es Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
public java.util.Enumeration<K> keys();
descriptor: ()Ljava/util/Enumeration;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeyIterator
dup
aload 0
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeyIterator.<init>:(Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
Signature: ()Ljava/util/Enumeration<TK;>;
public java.util.Enumeration<V> elements();
descriptor: ()Ljava/util/Enumeration;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new org.hibernate.internal.util.collections.BoundedConcurrentHashMap$ValueIterator
dup
aload 0
invokespecial org.hibernate.internal.util.collections.BoundedConcurrentHashMap$ValueIterator.<init>:(Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
Signature: ()Ljava/util/Enumeration<TV;>;
private void writeObject(java.io.ObjectOutputStream);
descriptor: (Ljava/io/ObjectOutputStream;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=8, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
1: iconst_0
istore 2
start local 2 2: goto 22
3: StackMap locals: int
StackMap stack:
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
iload 2
aaload
astore 3
start local 3 4: aload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.lock:()V
5: aload 3
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.table:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;
astore 4
start local 4 6: iconst_0
istore 5
start local 5 7: goto 15
8: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry[] int
StackMap stack:
aload 4
iload 5
aaload
astore 6
start local 6 9: goto 13
10: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry
StackMap stack:
aload 1
aload 6
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.key:Ljava/lang/Object;
invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
11: aload 1
aload 6
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.value:Ljava/lang/Object;
invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
12: aload 6
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry.next:Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;
astore 6
StackMap locals:
StackMap stack:
13: aload 6
ifnonnull 10
end local 6 14: iinc 5 1
StackMap locals:
StackMap stack:
15: iload 5
aload 4
arraylength
if_icmplt 8
end local 5 end local 4 16: goto 20
17: StackMap locals: org.hibernate.internal.util.collections.BoundedConcurrentHashMap java.io.ObjectOutputStream int org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment
StackMap stack: java.lang.Throwable
astore 7
18: aload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.unlock:()V
19: aload 7
athrow
20: StackMap locals:
StackMap stack:
aload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.unlock:()V
end local 3 21: iinc 2 1
StackMap locals:
StackMap stack:
22: iload 2
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
arraylength
if_icmplt 3
end local 2 23: aload 1
aconst_null
invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
24: aload 1
aconst_null
invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
25: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 26 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 26 1 s Ljava/io/ObjectOutputStream;
2 23 2 k I
4 21 3 seg Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment<TK;TV;>;
6 16 4 tab [Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;
7 16 5 i I
9 14 6 e Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry<TK;TV;>;
Exception table:
from to target type
5 17 17 any
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
s
private void readObject(java.io.ObjectInputStream);
descriptor: (Ljava/io/ObjectInputStream;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
1: iconst_0
istore 2
start local 2 2: goto 5
3: StackMap locals: int
StackMap stack:
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
iload 2
aaload
iconst_1
anewarray org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment.setTable:([Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry;)V
4: iinc 2 1
StackMap locals:
StackMap stack:
5: iload 2
aload 0
getfield org.hibernate.internal.util.collections.BoundedConcurrentHashMap.segments:[Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment;
arraylength
if_icmplt 3
end local 2 6: StackMap locals:
StackMap stack:
aload 1
invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
astore 2
start local 2 7: aload 1
invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
astore 3
start local 3 8: aload 2
ifnonnull 10
9: goto 12
10: StackMap locals: java.lang.Object java.lang.Object
StackMap stack:
aload 0
aload 2
aload 3
invokevirtual org.hibernate.internal.util.collections.BoundedConcurrentHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 3 end local 2 11: goto 6
12: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 13 0 this Lorg/hibernate/internal/util/collections/BoundedConcurrentHashMap<TK;TV;>;
0 13 1 s Ljava/io/ObjectInputStream;
2 6 2 i I
7 11 2 key TK;
8 11 3 value TV;
Exceptions:
throws java.io.IOException, java.lang.ClassNotFoundException
MethodParameters:
Name Flags
s
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/AbstractMap<TK;TV;>;Ljava/util/concurrent/ConcurrentMap<TK;TV;>;Ljava/io/Serializable;
SourceFile: "BoundedConcurrentHashMap.java"
NestMembers:
org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EntryIterator org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EntrySet org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction$1 org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction$2 org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction$3 org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EvictionListener org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EvictionPolicy org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashIterator org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeyIterator org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeySet org.hibernate.internal.util.collections.BoundedConcurrentHashMap$LIRS org.hibernate.internal.util.collections.BoundedConcurrentHashMap$LIRSHashEntry org.hibernate.internal.util.collections.BoundedConcurrentHashMap$LRU org.hibernate.internal.util.collections.BoundedConcurrentHashMap$NullEvictionListener org.hibernate.internal.util.collections.BoundedConcurrentHashMap$NullEvictionPolicy org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Recency org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment org.hibernate.internal.util.collections.BoundedConcurrentHashMap$ValueIterator org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Values org.hibernate.internal.util.collections.BoundedConcurrentHashMap$WriteThroughEntry
InnerClasses:
public abstract Entry = java.util.Map$Entry of java.util.Map
final EntryIterator = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EntryIterator of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final EntrySet = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EntrySet of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
public abstract Eviction = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Eviction of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
public abstract EvictionListener = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EvictionListener of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
public abstract EvictionPolicy = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$EvictionPolicy of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
private HashEntry = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashEntry of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
abstract HashIterator = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$HashIterator of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final KeyIterator = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeyIterator of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final KeySet = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$KeySet of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final LIRS = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$LIRS of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
private final LIRSHashEntry = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$LIRSHashEntry of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final LRU = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$LRU of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final NullEvictionListener = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$NullEvictionListener of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
NullEvictionPolicy = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$NullEvictionPolicy of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
private final Recency = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Recency of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final Segment = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Segment of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final ValueIterator = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$ValueIterator of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final Values = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$Values of org.hibernate.internal.util.collections.BoundedConcurrentHashMap
final WriteThroughEntry = org.hibernate.internal.util.collections.BoundedConcurrentHashMap$WriteThroughEntry of org.hibernate.internal.util.collections.BoundedConcurrentHashMap