-
Notifications
You must be signed in to change notification settings - Fork 60
/
ROADMAP
284 lines (250 loc) · 8.15 KB
/
ROADMAP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
TESTS AND HARNESS ROADMAPS
-----------------------------------------------------------------------
We can separate the tests in the several chapters. Often, it does not make
sense to move to the next major chapters if there are bugs in the lower chapters.
Legend:
"----" -- status is not applicable (the test group)
" " -- missing the status
"####" -- needs expansion
"...." -- not started
"DONE" -- all planned tests are done
"PARTIAL" -- some of the tests are complete
==== CHAPTER 0.a: LANGUAGE FOUNDATION: Basic properties
Tests the very basic properties of Java Language:
a) access atomicity;
b) default values;
c) initialization safety;
d) word tearing
This is done only on the basic language constructs: fields and arrays.
Add:
- per-byte reads and writes, known to trip optimizers into doing multiple ops
- initialization with fences?
==== CHAPTER 0.b: LANGUAGE FOUNDATION: Basic memory effects
Tests the memory effects:
a) sequential consistency of synchronized actions;
b) happens-before effects;
Both are tested only on the basic language constructs: volatiles.
==== CHAPTER 1.a: CORE LIBRARY FOUNDATIONS: ATOMICS
--------- scalars:
--------- atomic/AtomicBoolean
DONE initial value
DONE pairwise operation tests
.... lambda pairwise operation tests
.... memory effects across the ops
--------- atomic/AtomicInteger
DONE initial value
DONE pairwise operation tests
.... lambda pairwise operation tests
.... memory effects across the ops
--------- atomic/AtomicLong
DONE initial value
DONE pairwise operation tests
.... high/low word tests
.... lambda pairwise operation tests
.... memory effects across the ops
--------- atomic/AtomicDouble
.... initial value
.... pairwise operation tests
.... high/low word tests
.... lambda pairwise operation tests
.... memory effects across the ops
--------- atomic/AtomicReference
.... initial value
.... pairwise operation tests
.... lambda pairwise operation tests
.... memory effects across the ops
---------
--------- updaters:
--------- atomic/AtomicIntegerFieldUpdater:
.... initial value
DONE pairwise operation tests
.... lambda pairwise operation tests?
.... memory effects across the ops
.... interaction with the naked ops
--------- atomic/AtomicLongFieldUpdater:
.... initial value
DONE pairwise operation tests
.... high/low word tests
.... lambda pairwise operation tests?
.... memory effects across the ops
.... interaction with the naked ops
--------- atomic/AtomicReferenceFieldUpdater:
.... initial value
DONE pairwise operation tests
.... lambda pairwise operation tests?
.... memory effects across the ops
.... interaction with the naked ops
---------
--------- arrays:
--------- atomic/AtomicIntegerArray:
DONE initial value
DONE pairwise operation tests
.... lambda pairwise operation tests?
.... memory effects across the ops
DONE word tearing
--------- atomic/AtomicLongArray:
DONE initial value
DONE pairwise operation tests
.... high/low word tests
.... lambda pairwise operation tests?
.... memory effects across the ops
DONE word tearing
--------- atomic/AtomicDoubleArray:
.... initial value
.... pairwise operation tests
.... high/low word tests
.... lambda pairwise operation tests?
.... memory effects across the ops
.... word tearing
--------- atomic/AtomicReferenceArray:
.... initial value
.... pairwise operation tests
.... lambda pairwise operation tests?
.... memory effects across the ops
.... word tearing
---------
--------- other:
--------- atomic/AtomicMarkableReference:
.... initial value
.... pairwise operation tests
.... lambda pairwise operation tests?
.... memory effects across the ops
--------- atomic/AtomicStampedReference
.... initial value
.... pairwise operation tests
.... lambda pairwise operation tests?
.... memory effects across the ops
==== CHAPTER 1.b: CORE LIBRARY FOUNDATIONS: VARHANDLES
==== CHAPTER 1.c: CORE LIBRARY FOUNDATIONS: SYNCHRONIZERS
Q: tons of methods, we should probably cover the "protected" only?
Q: we can skip it and rely on testing the implementations on higher tiers?
--------- locks/AbstractQueuedSynchronizer
##### TBD
--------- locks/AbstractQueuedLongSynchronizer
##### TBD
==== CHAPTER 2.c: CORE LIBRARY: LOCKS
--------- synchronized
DONE mutual exclusion
.... memory effects across the ops
.... starvation avoidance
.... fairness
--------- locks/ReentrantLock/non-fair
DONE mutual exclusion
.... memory effects across the ops
.... starvation avoidance
--------- locks/ReentrantLock/fair
DONE mutual exclusion
.... memory effects across the ops
.... starvation avoidance
.... fairness
--------- locks/ReentrantReadWriteLock/non-fair
DONE mutual exclusion
.... memory effects across the ops
.... starvation avoidance
.... memory effects
--------- locks/ReentrantReadWriteLock/fair
DONE mutual exclusion
.... memory effects across the ops
.... starvation avoidance
.... fairness
--------- locks/StampedLock
DONE mutual exclusion
DONE mutual exclusion in the face of state transitions
.... memory effects across the ops
.... starvation avoidance
.... fairness
==== CHAPTER 2.d: CORE LIBRARY: AUXILIARY ATOMICS
--------- atomic/DoubleAccumulator
.... racy updates
.... racy resets
--------- atomic/DoubleAdder
.... racy updates
.... racy resets
--------- atomic/LongAccumulator
.... racy updates
.... racy resets
--------- atomic/LongAdder
.... racy updates
.... racy resets
==== CHAPTER 2.e: CORE LIBRARY: USER SYNCHRONIZERS
--------- CountDownLatch
.... initial state
.... all threads are unblocked
.... await after zero
.... memory effects across the ops
--------- Semaphore/non-fair
.... mutual exclusion
.... multiple passers
.... memory effects across the ops
.... starvation avoidance
.... fairness
--------- CyclicBarrier
#### TBD
--------- CompletableFuture
#### TBD
--------- Phaser
#### TBD
--------- Exchanger
#### TBD
--------- FutureTask
#### TBD
==== CHAPTER 3.x: CORE LIBRARY: REFLECTION
==== CHAPTER 3.x: CORE LIBRARY: BUFFERS
==== CHAPTER 3.x: CORE LIBRARY: EXECUTORS
--------- ScheduledThreadPoolExecutor
#### TBD
--------- ThreadPoolExecutor
#### TBD
--------- ExecutorCompletionService
#### TBD
--------- ForkJoinPool
#### TBD
--------- ForkJoinTask
#### TBD
--------- CountedCompleter
#### TBD
--------- RecursiveAction
#### TBD
--------- RecursiveTask
#### TBD
==== CHAPTER 3.x: CORE LIBRARY: CONCURRENT COLLECTIONS
--------- ConcurrentHashMap
#### TBD
--------- ConcurrentNavigableMap
#### TBD
--------- ConcurrentSkipListMap
#### TBD
--------- ConcurrentSkipListSet
#### TBD
--------- CopyOnWriteArrayList
#### TBD
--------- CopyOnWriteArraySet
#### TBD
--------- ReadMostlyVector
#### TBD
==== CHAPTER 3.x: CORE LIBRARY: QUEUES
--------- ArrayBlockingQueue
#### TBD
--------- ConcurrentLinkedDeque
#### TBD
--------- ConcurrentLinkedQueue
#### TBD
--------- LinkedBlockingDeque
#### TBD
--------- LinkedBlockingQueue
#### TBD
--------- PriorityBlockingQueue
#### TBD
--------- SynchronousQueue
#### TBD
--------- TransferQueue
#### TBD
--------- DelayQueue
#### TBD
==== CHAPTER 4.x: OTHER
--------- ThreadLocalRandom
#### TBD
==== CHAPTER 5.x: OTHER LIBRARY
--------- java.nio.buffers
#### read/write atomicity tests
#### crosscache atomicity tests