blob: 5e9aec87ef7d303fb5060f1f23d580f0671f4125 [file] [log] [blame]
Austin Schuh745610d2015-09-06 18:19:50 -07001digraph PageHeap {
2rankdir=LR
3node [shape=box, width=0.3, height=0.3]
4nodesep=.05
5
Brian Silverman20350ac2021-11-17 18:19:55 -08006heap [shape=record, height=3, label="<f0>1 page|<f1>2 pages|<f2>3 pages|...|<f128>128 pages"]
Austin Schuh745610d2015-09-06 18:19:50 -07007O0 [shape=record, label=""]
8O1 [shape=record, label=""]
9O2 [shape=record, label="{|}"]
10O3 [shape=record, label="{|}"]
11O4 [shape=record, label="{||}"]
12O5 [shape=record, label="{||}"]
13O6 [shape=record, label="{|...|}"]
14O7 [shape=record, label="{|...|}"]
Austin Schuh745610d2015-09-06 18:19:50 -070015sep1 [shape=plaintext, label="..."]
16sep2 [shape=plaintext, label="..."]
17sep3 [shape=plaintext, label="..."]
18sep4 [shape=plaintext, label="..."]
Austin Schuh745610d2015-09-06 18:19:50 -070019
20heap:f0 -> O0 -> O1 -> sep1
21heap:f1 -> O2 -> O3 -> sep2
22heap:f2 -> O4 -> O5 -> sep3
Brian Silverman20350ac2021-11-17 18:19:55 -080023heap:f128 -> O6 -> O7 -> sep4
Austin Schuh745610d2015-09-06 18:19:50 -070024
25}