-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompilers.typ
More file actions
38 lines (25 loc) · 774 Bytes
/
compilers.typ
File metadata and controls
38 lines (25 loc) · 774 Bytes
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
#import "template.typ": project
#project("Compilers")[
#align(center)[#block(fill: luma(245), inset: 10pt, width: 80%, text(size: 9pt)[
#align(center)[#text(size: 24pt, weight: "bold")[Compilers]]
])]
#outline(title: "Table of Contents", depth: 2)
#emph[Enjoy.]
#pagebreak()
#include "compilers/dataflow-analysis.typ"
#pagebreak()
#include "compilers/frontends.typ"
#pagebreak()
#include "compilers/ir-design.typ"
#pagebreak()
#include "compilers/register-allocation.typ"
#pagebreak()
#include "compilers/backend-and-codegen.typ"
#pagebreak()
#include "compilers/optimisation-passes.typ"
#pagebreak()
#include "compilers/jit-and-runtimes.typ"
#pagebreak()
#include "compilers/garbage-collection.typ"
#pagebreak()
]