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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
pub unsafe trait Trace {
unsafe fn mark(&self);
unsafe fn manage(&self);
unsafe fn finalize(&mut self);
}
pub unsafe trait NullTrace: Trace {}
unsafe impl<T: Trace> Trace for Option<T> {
unsafe fn mark(&self) {
if let Some(inner) = self {
inner.mark()
}
}
unsafe fn manage(&self) {
if let Some(inner) = self {
inner.manage()
}
}
unsafe fn finalize(&mut self) {
if let Some(inner) = self {
inner.finalize()
}
}
}
unsafe impl<T: NullTrace> NullTrace for Option<T> {}
unsafe impl<T: Trace, E: Trace> Trace for Result<T, E> {
unsafe fn mark(&self) {
match self {
Ok(inner) => inner.mark(),
Err(error) => error.mark(),
}
}
unsafe fn manage(&self) {
match self {
Ok(inner) => inner.manage(),
Err(error) => error.manage(),
}
}
unsafe fn finalize(&mut self) {
match self {
Ok(inner) => inner.finalize(),
Err(error) => error.finalize(),
}
}
}
unsafe impl<T: NullTrace, E: NullTrace> NullTrace for Result<T, E> {}
unsafe impl<T: Trace> Trace for [T] {
unsafe fn mark(&self) {
for elem in self {
elem.mark()
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage()
}
}
unsafe fn finalize(&mut self) {
for elem in self {
elem.finalize()
}
}
}
unsafe impl<T: NullTrace> NullTrace for [T] {}
macro_rules!
trace_simple { ($($t:ty)*) => {$(
unsafe impl Trace for $t {
unsafe fn mark(&self) { }
unsafe fn manage(&self) { }
unsafe fn finalize(&mut self) {
ptr::drop_in_place(self as *mut Self)
}
}
unsafe impl NullTrace for $t { }
)*}
}
trace_simple!(
i8 i16 i32 i64 isize
u8 u16 u32 u64 usize
f32 f64
char bool
str String
std::fs::File
std::fs::FileType
std::fs::Metadata
std::fs::OpenOptions
dyn std::io::BufRead
dyn std::io::Read
dyn std::io::Write
std::io::Stdin
std::io::Stdout
std::io::Stderr
std::io::Error
std::net::TcpStream
std::net::TcpListener
std::net::UdpSocket
std::net::Ipv4Addr
std::net::Ipv6Addr
std::net::SocketAddrV4
std::net::SocketAddrV6
std::path::Path
std::path::PathBuf
std::process::Command
std::process::Child
std::process::ChildStdout
std::process::ChildStdin
std::process::ChildStderr
std::process::Output
std::process::ExitStatus
std::process::Stdio
std::sync::Barrier
std::sync::Condvar
std::sync::Once
);
macro_rules! trace_arrays {
($($N:expr),*) => {$(
unsafe impl<T: Trace> Trace for [T; $N] {
unsafe fn mark(&self) {
<_ as AsRef<[T]>>::as_ref(self).mark()
}
unsafe fn manage(&self) {
<_ as AsRef<[T]>>::as_ref(self).manage()
}
unsafe fn finalize(&mut self) {
<_ as AsMut<[T]>>::as_mut(self).finalize()
}
}
unsafe impl<T: NullTrace> NullTrace for [T; $N] { }
)*};
}
trace_arrays! {
0o00, 0o01, 0o02, 0o03, 0o04, 0o05, 0o06, 0o07,
0o10, 0o11, 0o12, 0o13, 0o14, 0o15, 0o16, 0o17,
0o20, 0o21, 0o22, 0o23, 0o24, 0o25, 0o26, 0o27,
0o30, 0o31, 0o32, 0o33, 0o34, 0o35, 0o36, 0o37
}
macro_rules! trace_tuples {
($(($($T:ident : $N:tt),*))*) => {$(
unsafe impl<$($T: Trace,)*> Trace for ($($T,)*) {
unsafe fn mark(&self) {
$(self.$N.mark();)*
}
unsafe fn manage(&self) {
$(self.$N.manage();)*
}
unsafe fn finalize(&mut self) {
$(self.$N.finalize();)*
}
}
unsafe impl<$($T: NullTrace,)*> NullTrace for ($($T,)*) { }
)*};
}
trace_tuples! {
()
(A: 0)
(A: 0, B: 1)
(A: 0, B: 1, C: 2)
(A: 0, B: 1, C: 2, D: 3)
(A: 0, B: 1, C: 2, D: 3, E: 4)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6, H: 7)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6, H: 7, I: 8)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6, H: 7, I: 8, J: 9)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6, H: 7, I: 8, J: 9, K: 10)
(A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6, H: 7, I: 8, J: 9, K: 10, L: 11)
}
use std::collections::*;
use std::mem::{self, ManuallyDrop};
use std::ptr;
unsafe impl<T: Trace> Trace for Vec<T> {
unsafe fn mark(&self) {
for elem in self {
elem.mark();
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage();
}
}
unsafe fn finalize(&mut self) {
for elem in &mut *self {
elem.finalize();
}
let this = mem::transmute::<&mut Vec<T>, &mut Vec<ManuallyDrop<T>>>(self);
ptr::drop_in_place(this as *mut Vec<ManuallyDrop<T>>);
}
}
unsafe impl<T: NullTrace> NullTrace for Vec<T> {}
unsafe impl<T: Trace> Trace for VecDeque<T> {
unsafe fn mark(&self) {
for elem in self {
elem.mark();
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage();
}
}
unsafe fn finalize(&mut self) {
for elem in &mut *self {
elem.finalize();
}
let this = mem::transmute::<&mut VecDeque<T>, &mut VecDeque<ManuallyDrop<T>>>(self);
ptr::drop_in_place(this as *mut VecDeque<ManuallyDrop<T>>);
}
}
unsafe impl<T: NullTrace> NullTrace for VecDeque<T> {}
unsafe impl<T: Trace> Trace for LinkedList<T> {
unsafe fn mark(&self) {
for elem in self {
elem.mark();
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage();
}
}
unsafe fn finalize(&mut self) {
for elem in &mut *self {
elem.finalize();
}
let this = mem::transmute::<&mut LinkedList<T>, &mut LinkedList<ManuallyDrop<T>>>(self);
ptr::drop_in_place(this as *mut LinkedList<ManuallyDrop<T>>);
}
}
unsafe impl<T: NullTrace> NullTrace for LinkedList<T> {}
unsafe impl<T: Trace + Ord> Trace for BinaryHeap<T> {
unsafe fn mark(&self) {
for elem in self {
elem.mark();
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage();
}
}
unsafe fn finalize(&mut self) {
let iter = IntoIterator::into_iter(ptr::read(self));
let iter = mem::transmute::<binary_heap::IntoIter<T>, binary_heap::IntoIter<ManuallyDrop<T>>>(
iter,
);
iter.for_each(|mut elem| elem.finalize());
}
}
unsafe impl<T: NullTrace + Ord> NullTrace for BinaryHeap<T> {}
unsafe impl<T, S> Trace for HashSet<T, S>
where
T: Eq + std::hash::Hash + Trace,
S: std::hash::BuildHasher,
{
unsafe fn mark(&self) {
for elem in self {
elem.mark();
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage();
}
}
unsafe fn finalize(&mut self) {
let iter = IntoIterator::into_iter(ptr::read(self));
let iter =
mem::transmute::<hash_set::IntoIter<T>, hash_set::IntoIter<ManuallyDrop<T>>>(iter);
iter.for_each(|mut elem| elem.finalize());
}
}
unsafe impl<T, S> NullTrace for HashSet<T, S>
where
T: Eq + std::hash::Hash + NullTrace,
S: std::hash::BuildHasher,
{
}
unsafe impl<K, V, S> Trace for HashMap<K, V, S>
where
K: Eq + std::hash::Hash + Trace,
V: Trace,
S: std::hash::BuildHasher,
{
unsafe fn mark(&self) {
for (key, value) in self {
key.mark();
value.mark();
}
}
unsafe fn manage(&self) {
for (key, value) in self {
key.manage();
value.manage();
}
}
unsafe fn finalize(&mut self) {
let iter = IntoIterator::into_iter(ptr::read(self));
let iter = mem::transmute::<
hash_map::IntoIter<K, V>,
hash_map::IntoIter<ManuallyDrop<K>, ManuallyDrop<V>>,
>(iter);
iter.for_each(|(mut key, mut value)| {
key.finalize();
value.finalize();
});
}
}
unsafe impl<K, V, S> NullTrace for HashMap<K, V, S>
where
K: Eq + std::hash::Hash + NullTrace,
V: NullTrace,
S: std::hash::BuildHasher,
{
}
unsafe impl<T> Trace for BTreeSet<T>
where
T: Eq + Ord + Trace,
{
unsafe fn mark(&self) {
for elem in self {
elem.mark();
}
}
unsafe fn manage(&self) {
for elem in self {
elem.manage();
}
}
unsafe fn finalize(&mut self) {
let iter = IntoIterator::into_iter(ptr::read(self));
let iter =
mem::transmute::<btree_set::IntoIter<T>, btree_set::IntoIter<ManuallyDrop<T>>>(iter);
iter.for_each(|mut elem| elem.finalize());
}
}
unsafe impl<T> NullTrace for BTreeSet<T> where T: Eq + Ord + NullTrace {}
unsafe impl<K, V> Trace for BTreeMap<K, V>
where
K: Eq + Ord + Trace,
V: Trace,
{
unsafe fn mark(&self) {
for (key, value) in self {
key.mark();
value.mark();
}
}
unsafe fn manage(&self) {
for (key, value) in self {
key.manage();
value.manage();
}
}
unsafe fn finalize(&mut self) {
let iter = IntoIterator::into_iter(ptr::read(self));
let iter = mem::transmute::<
btree_map::IntoIter<K, V>,
btree_map::IntoIter<ManuallyDrop<K>, ManuallyDrop<V>>,
>(iter);
iter.for_each(|(mut key, mut value)| {
key.finalize();
value.finalize();
});
}
}
unsafe impl<K, V> NullTrace for BTreeMap<K, V>
where
K: Eq + Ord + NullTrace,
V: NullTrace,
{
}
use pin_cell::PinCell;
use std::cell::{Cell, RefCell};
unsafe impl<T: NullTrace> Trace for Cell<T> {
unsafe fn mark(&self) {}
unsafe fn manage(&self) {}
unsafe fn finalize(&mut self) {
ptr::drop_in_place(self as *mut Self)
}
}
unsafe impl<T: NullTrace> NullTrace for Cell<T> {}
unsafe impl<T: NullTrace> Trace for RefCell<T> {
unsafe fn mark(&self) {}
unsafe fn manage(&self) {}
unsafe fn finalize(&mut self) {
ptr::drop_in_place(self as *mut Self)
}
}
unsafe impl<T: NullTrace> NullTrace for RefCell<T> {}
unsafe impl<T: Trace> Trace for PinCell<T> {
unsafe fn mark(&self) {
self.borrow().mark()
}
unsafe fn manage(&self) {
self.borrow().manage()
}
unsafe fn finalize(&mut self) {
self.get_mut().finalize()
}
}
unsafe impl<T: NullTrace> NullTrace for PinCell<T> {}