-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmmtk.tex
128 lines (89 loc) · 2.27 KB
/
mmtk.tex
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
%%This is a very basic article template.
%%There is just one section and two subsections.
\documentclass[11pt]{book}
\usepackage{graphicx}
\usepackage{rotating}
\usepackage{fourier}
\usepackage[T1]{fontenc}
\usepackage{xspace}
\usepackage[hyperindex=true, bookmarks=true,
pdftitle={MMTk},
pdfauthor={Robin Garner},
colorlinks=false,
pdfborder=0,
pagebackref=true,
citecolor=blue,
plainpages=false,
pdfpagelabels,
hyperfootnotes=false]{hyperref}
\renewcommand*{\backref}[1]{}
\renewcommand*{\backrefalt}[4]{
\ifcase #1
(not cited)
\or
(cited on page #2)
\else
(cited on pages #2)
\fi}
\usepackage{subfloat}
\usepackage{subcaption}
\usepackage{caption}
\usepackage{multirow}
\usepackage{listings}
\lstloadlanguages{java}
\lstset{basicstyle=\footnotesize\ttfamily,language=Java,numbers=left,captionpos=b,frame=single,
aboveskip=12pt,
belowskip=12pt,
framesep=6pt,
rulesep=4pt}
% Includes the \citet and \citep macros
\usepackage[square]{natbib}
\usepackage[obeyDraft,color=todocolor, colorinlistoftodos]{todonotes}
\usepackage{tikz}
\usepackage{tikzuml/tikz-uml}
\input{macros}
\begin{document}
\part{Introduction}
% Intro
\input{intro}
% High level outline of an MMTk plan.
% - How allocation works
% - How collection works
% - Design criteria and constraints
% - Thread-local versus global
% - Inlining
\input{gc-in-mmtk}
%
% - Mark-sweep garbage collection
% - The MMTk algorithms
% - The components of the MS plan
%
\input{mark-sweep}
% Generational Collection
\input{generational}
% Concurrency
\input{concurrent}
% Complications, Language Features
\input{features}
\part{Mechanisms}
\input{plans}
% Plans. Stop-the-world. Generational. Reference Counting. Concurrent.
% Policies: Spaces
\chapter{Policies}
\section{Large Object Space}
\label{sec:policy:LargeObject}
% Virtual memory management
% Queues
% VM Interface(s)
\part{Implementations}
\chapter{Allocators}
\section{Segregated Free List}
\label{sec:alloc:free-list}
\section{Bump Pointer}
\label{sec:alloc:bump-pointer}
% The MMTk Harness
% Jikes RVM
\chapter*{References}
\bibliographystyle{plainnat}
\bibliography{mmtk-guide}
\end{document}