Austin Schuh | 745610d | 2015-09-06 18:19:50 -0700 | [diff] [blame] | 1 | digraph PageHeap { |
| 2 | rankdir=LR |
| 3 | node [shape=box, width=0.3, height=0.3] |
| 4 | nodesep=.05 |
| 5 | |
Brian Silverman | 20350ac | 2021-11-17 18:19:55 -0800 | [diff] [blame] | 6 | heap [shape=record, height=3, label="<f0>1 page|<f1>2 pages|<f2>3 pages|...|<f128>128 pages"] |
Austin Schuh | 745610d | 2015-09-06 18:19:50 -0700 | [diff] [blame] | 7 | O0 [shape=record, label=""] |
| 8 | O1 [shape=record, label=""] |
| 9 | O2 [shape=record, label="{|}"] |
| 10 | O3 [shape=record, label="{|}"] |
| 11 | O4 [shape=record, label="{||}"] |
| 12 | O5 [shape=record, label="{||}"] |
| 13 | O6 [shape=record, label="{|...|}"] |
| 14 | O7 [shape=record, label="{|...|}"] |
Austin Schuh | 745610d | 2015-09-06 18:19:50 -0700 | [diff] [blame] | 15 | sep1 [shape=plaintext, label="..."] |
| 16 | sep2 [shape=plaintext, label="..."] |
| 17 | sep3 [shape=plaintext, label="..."] |
| 18 | sep4 [shape=plaintext, label="..."] |
Austin Schuh | 745610d | 2015-09-06 18:19:50 -0700 | [diff] [blame] | 19 | |
| 20 | heap:f0 -> O0 -> O1 -> sep1 |
| 21 | heap:f1 -> O2 -> O3 -> sep2 |
| 22 | heap:f2 -> O4 -> O5 -> sep3 |
Brian Silverman | 20350ac | 2021-11-17 18:19:55 -0800 | [diff] [blame] | 23 | heap:f128 -> O6 -> O7 -> sep4 |
Austin Schuh | 745610d | 2015-09-06 18:19:50 -0700 | [diff] [blame] | 24 | |
| 25 | } |