summaryrefslogtreecommitdiff
path: root/documentation/images/xlat_table.dot
blob: 316cd6d9654cfd3e3599d5ba9478f210df664f03 (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 g {
	graph [
		rankdir = "LR"
	];
	node [
		fontsize = "16"
		shape = "ellipse"
	];
	edge [
	];
	"node_ttb" [
		label = "<f0> TTBR0 | <f1> TTBR1"
		shape = "record"
	];
	"node_large_l1" [
		label = "<f0> Large L1\nSpans 4 GiB"
		shape = "record"
	];
	"node_small_l1" [
		label = "Small L1\nSpans 32 MiB\nper entry | <f0> 0 | <f1> 1 | ... | <fn> n"
		shape = "record"
	];

	"node_ttb":f0 -> "node_small_l1":f0 [ label = "Thread 0 ctx active" ];
	"node_ttb":f0 -> "node_small_l1":f1 [ label = "Thread 1 ctx active" ];
	"node_ttb":f0 -> "node_small_l1":fn [ label = "Thread n ctx active" ];
	"node_ttb":f0 -> "node_large_l1" [ label="No active ctx" ];
	"node_ttb":f1 -> "node_large_l1";
}