blob: 82e5fd5f5476bd98e284c19135d26a8f5e3538f0 (
plain)
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
|
digraph PageHeap {
rankdirLR
node [shapebox width0.3 height0.3
nodesep.05
heap [shaperecord height3 label"<f01 page<f12 pages<f23 pages...|<f255255 pages<frestrest"]
O0 [shaperecord label""]
O1 [shaperecord label""]
O2 [shaperecord label"{|}"]
O3 [shaperecord label"{|}"]
O4 [shaperecord label"{||}"]
O5 [shaperecord label"{||}"]
O6 [shaperecord label"{|...|}"]
O7 [shaperecord label"{|...|}"]
O8 [shaperecord label"{|.....|}"]
O9 [shaperecord label"{|.....|}"]
sep1 [shapeplaintext label"..."]
sep2 [shapeplaintext label"..."]
sep3 [shapeplaintext label"..."]
sep4 [shapeplaintext label"..."]
sep5 [shapeplaintext label"..."]
heapf0 -> O0 -> O1 -> sep1
heapf1 -> O2 -> O3 -> sep2
heapf2 -> O4 -> O5 -> sep3
heapf255 -> O6 -> O7 -> sep4
heapfrest -> O8 -> O9 -> sep5
}
|