source: doc/papers/llheap/Paper.tex @ a882b68

ADTast-experimental
Last change on this file since a882b68 was 7bef8cf, checked in by Peter A. Buhr <pabuhr@…>, 17 months ago

start paper on llheap

  • Property mode set to 100644
File size: 190.3 KB
Line 
1\documentclass[AMA,STIX1COL]{WileyNJD-v2}
2
3% Latex packages used in the document.
4
5\usepackage{comment}
6\usepackage{epic,eepic}
7\usepackage{upquote}                                                                    % switch curled `'" to straight
8\usepackage{relsize}
9\usepackage{xspace}
10\usepackage{calc}
11\usepackage[scaled=0.88]{helvet}                                                % descent Helvetica font and scale to times size
12\usepackage[T1]{fontenc}
13\usepackage{listings}                                                                   % format program code
14\usepackage[labelformat=simple,aboveskip=0pt,farskip=0pt]{subfig}
15\renewcommand{\thesubfigure}{(\alph{subfigure})}
16\usepackage{enumitem}
17
18\hypersetup{breaklinks=true}
19
20\usepackage[pagewise]{lineno}
21\renewcommand{\linenumberfont}{\scriptsize\sffamily}
22
23\usepackage{varioref}                                   % extended references
24% adjust varioref package with default "section" and "page" titles, and optional title with faraway page numbers
25% \VRef{label} => Section 2.7, \VPageref{label} => page 17
26% \VRef[Figure]{label} => Figure 3.4, \VPageref{label} => page 17
27% \renewcommand{\reftextfaceafter}{\unskip}
28% \renewcommand{\reftextfacebefore}{\unskip}
29% \renewcommand{\reftextafter}{\unskip}
30% \renewcommand{\reftextbefore}{\unskip}
31% \renewcommand{\reftextfaraway}[1]{\unskip, p.~\pageref{#1}}
32% \renewcommand{\reftextpagerange}[2]{\unskip, pp.~\pageref{#1}--\pageref{#2}}
33% \newcommand{\VRef}[2][Section]{\ifx#1\@empty\else{#1}\nobreakspace\fi\vref{#2}}
34% \newcommand{\VRefrange}[3][Sections]{\ifx#1\@empty\else{#1}\nobreakspace\fi\vrefrange{#2}{#3}}
35% \newcommand{\VPageref}[2][page]{\ifx#1\@empty\else{#1}\nobreakspace\fi\pageref{#2}}
36% \newcommand{\VPagerefrange}[3][pages]{\ifx#1\@empty\else{#1}\nobreakspace\fi\pageref{#2}{#3}}
37
38\makeatletter
39\newcommand{\abbrevFont}{\textit}                       % set empty for no italics
40\newcommand{\CheckCommaColon}{\@ifnextchar{,}{}{\@ifnextchar{:}{}{,\xspace}}}
41\newcommand{\CheckPeriod}{\@ifnextchar{.}{}{.\xspace}}
42\newcommand{\EG}{\abbrevFont{e}.\abbrevFont{g}.}
43\newcommand{\eg}{\EG\CheckCommaColon}
44\newcommand{\IE}{\abbrevFont{i}.\abbrevFont{e}.}
45\newcommand{\ie}{\IE\CheckCommaColon}
46\newcommand{\ETC}{\abbrevFont{etc}}
47\newcommand{\etc}{\ETC\CheckPeriod}
48\newcommand{\VS}{\abbrevFont{vs}}
49\newcommand{\vs}{\VS\CheckPeriod}
50
51\newcommand{\newtermFont}{\emph}
52\newcommand{\newterm}[1]{\newtermFont{#1}}
53
54\newcommand{\CFAIcon}{\textsf{C}\raisebox{\depth}{\rotatebox{180}{\textsf{A}}}\xspace} % Cforall symbolic name
55\newcommand{\CFA}{\protect\CFAIcon}             % safe for section/caption
56\newcommand{\CFL}{\textrm{Cforall}\xspace}      % Cforall symbolic name
57\newcommand{\CCIcon}{\textrm{C}\kern-.1em\hbox{+\kern-.25em+}} % C++ icon
58\newcommand{\CC}[1][]{\protect\CCIcon{#1}\xspace}               % C++ symbolic name
59\newcommand{\uC}{$\mu$\CC}
60\newcommand{\Csharp}{C\raisebox{-0.7ex}{\relsize{2}$^\sharp$}\xspace} % C# symbolic name
61
62\newcommand{\LstBasicStyle}[1]{{\lst@basicstyle{#1}}}
63\newcommand{\LstKeywordStyle}[1]{{\lst@basicstyle{\lst@keywordstyle{#1}}}}
64\newcommand{\LstCommentStyle}[1]{{\lst@basicstyle{\lst@commentstyle{#1}}}}
65\newcommand{\LstStringStyle}[1]{{\lst@basicstyle{\lst@stringstyle{#1}}}}
66
67\newlength{\parindentlnth}
68\setlength{\parindentlnth}{\parindent}
69\newlength{\gcolumnposn}                                % temporary hack because lstlisting does not handle tabs correctly
70\newlength{\columnposn}
71\setlength{\gcolumnposn}{3.25in}
72\setlength{\columnposn}{\gcolumnposn}
73\newcommand{\C}[2][\@empty]{\ifx#1\@empty\else\global\setlength{\columnposn}{#1}\global\columnposn=\columnposn\fi\hfill\makebox[\textwidth-\columnposn][l]{\lst@basicstyle{\LstCommentStyle{#2}}}}
74\newcommand{\CRT}{\global\columnposn=\gcolumnposn}
75\makeatother
76
77\lstset{
78columns=fullflexible,
79basicstyle=\linespread{0.9}\sf,                                                 % reduce line spacing and use sanserif font
80stringstyle=\tt,                                                                                % use typewriter font
81tabsize=5,                                                                                              % N space tabbing
82xleftmargin=\parindentlnth,                                                             % indent code to paragraph indentation
83%mathescape=true,                                                                               % LaTeX math escape in CFA code $...$
84escapechar=\$,                                                                                  % LaTeX escape in CFA code
85keepspaces=true,                                                                                %
86showstringspaces=false,                                                                 % do not show spaces with cup
87showlines=true,                                                                                 % show blank lines at end of code
88aboveskip=4pt,                                                                                  % spacing above/below code block
89belowskip=3pt,
90moredelim=**[is][\color{red}]{`}{`},
91}% lstset
92
93% CFA programming language, based on ANSI C (with some gcc additions)
94\lstdefinelanguage{CFA}[ANSI]{C}{
95        morekeywords={
96                _Alignas, _Alignof, __alignof, __alignof__, asm, __asm, __asm__, __attribute, __attribute__,
97                auto, _Bool, catch, catchResume, choose, _Complex, __complex, __complex__, __const, __const__,
98                coroutine, disable, dtype, enable, exception, __extension__, fallthrough, fallthru, finally,
99                __float80, float80, __float128, float128, forall, ftype, generator, _Generic, _Imaginary, __imag, __imag__,
100                inline, __inline, __inline__, __int128, int128, __label__, monitor, mutex, _Noreturn, one_t, or,
101                otype, restrict, resume, __restrict, __restrict__, __signed, __signed__, _Static_assert, suspend, thread,
102                _Thread_local, throw, throwResume, timeout, trait, try, ttype, typeof, __typeof, __typeof__,
103                virtual, __volatile, __volatile__, waitfor, when, with, zero_t},
104        moredirectives={defined,include_next},
105        % replace/adjust listing characters that look bad in sanserif
106        literate={-}{\makebox[1ex][c]{\raisebox{0.5ex}{\rule{0.8ex}{0.1ex}}}}1 {^}{\raisebox{0.6ex}{$\scriptstyle\land\,$}}1
107                {~}{\raisebox{0.3ex}{$\scriptstyle\sim\,$}}1 % {`}{\ttfamily\upshape\hspace*{-0.1ex}`}1
108                {<}{\textrm{\textless}}1 {>}{\textrm{\textgreater}}1
109                {<-}{$\leftarrow$}2 {=>}{$\Rightarrow$}2 {->}{\makebox[1ex][c]{\raisebox{0.5ex}{\rule{0.8ex}{0.075ex}}}\kern-0.2ex{\textrm{\textgreater}}}2,
110}
111
112% uC++ programming language, based on ANSI C++
113\lstdefinelanguage{uC++}[ANSI]{C++}{
114        morekeywords={
115                _Accept, _AcceptReturn, _AcceptWait, _Actor, _At, _CatchResume, _Cormonitor, _Coroutine, _Disable,
116                _Else, _Enable, _Event, _Finally, _Monitor, _Mutex, _Nomutex, _PeriodicTask, _RealTimeTask,
117                _Resume, _Select, _SporadicTask, _Task, _Timeout, _When, _With, _Throw},
118}
119
120% Go programming language: https://github.com/julienc91/listings-golang/blob/master/listings-golang.sty
121\lstdefinelanguage{Golang}{
122        morekeywords=[1]{package,import,func,type,struct,return,defer,panic,recover,select,var,const,iota,},
123        morekeywords=[2]{string,uint,uint8,uint16,uint32,uint64,int,int8,int16,int32,int64,
124                bool,float32,float64,complex64,complex128,byte,rune,uintptr, error,interface},
125        morekeywords=[3]{map,slice,make,new,nil,len,cap,copy,close,true,false,delete,append,real,imag,complex,chan,},
126        morekeywords=[4]{for,break,continue,range,goto,switch,case,fallthrough,if,else,default,},
127        morekeywords=[5]{Println,Printf,Error,},
128        sensitive=true,
129        morecomment=[l]{//},
130        morecomment=[s]{/*}{*/},
131        morestring=[b]',
132        morestring=[b]",
133        morestring=[s]{`}{`},
134        % replace/adjust listing characters that look bad in sanserif
135        literate={-}{\makebox[1ex][c]{\raisebox{0.4ex}{\rule{0.8ex}{0.1ex}}}}1 {^}{\raisebox{0.6ex}{$\scriptstyle\land\,$}}1
136                {~}{\raisebox{0.3ex}{$\scriptstyle\sim\,$}}1 % {`}{\ttfamily\upshape\hspace*{-0.1ex}`}1
137                {<}{\textrm{\textless}}1 {>}{\textrm{\textgreater}}1
138                {<-}{\makebox[2ex][c]{\textrm{\textless}\raisebox{0.5ex}{\rule{0.8ex}{0.075ex}}}}2,
139}
140
141\lstnewenvironment{cfa}[1][]
142{\lstset{language=CFA,moredelim=**[is][\protect\color{red}]{@}{@}}\lstset{#1}}
143{}
144\lstnewenvironment{C++}[1][]                            % use C++ style
145{\lstset{language=C++,moredelim=**[is][\protect\color{red}]{@}{@}}\lstset{#1}}
146{}
147\lstnewenvironment{uC++}[1][]
148{\lstset{language=uC++,moredelim=**[is][\protect\color{red}]{@}{@}}\lstset{#1}}
149{}
150\lstnewenvironment{Go}[1][]
151{\lstset{language=Golang,moredelim=**[is][\protect\color{red}]{@}{@}}\lstset{#1}}
152{}
153\lstnewenvironment{python}[1][]
154{\lstset{language=python,moredelim=**[is][\protect\color{red}]{@}{@}}\lstset{#1}}
155{}
156\lstnewenvironment{java}[1][]
157{\lstset{language=java,moredelim=**[is][\protect\color{red}]{@}{@}}\lstset{#1}}
158{}
159
160% inline code @...@
161\lstMakeShortInline@%
162
163% \let\OLDthebibliography\thebibliography
164% \renewcommand\thebibliography[1]{
165%   \OLDthebibliography{#1}
166%   \setlength{\parskip}{0pt}
167%   \setlength{\itemsep}{4pt plus 0.3ex}
168% }
169
170\newsavebox{\myboxA}
171\newsavebox{\myboxB}
172\newsavebox{\myboxC}
173\newsavebox{\myboxD}
174
175%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
176
177\articletype{RESEARCH ARTICLE}%
178
179% Referees
180% Doug Lea, dl@cs.oswego.edu, SUNY Oswego
181% Herb Sutter, hsutter@microsoft.com, Microsoft Corp
182% Gor Nishanov, gorn@microsoft.com, Microsoft Corp
183% James Noble, kjx@ecs.vuw.ac.nz, Victoria University of Wellington, School of Engineering and Computer Science
184
185\received{XXXXX}
186\revised{XXXXX}
187\accepted{XXXXX}
188
189\raggedbottom
190
191\title{High-Performance Concurrent Memory Allocation}
192
193\author[1]{Mubeen Zulfiqar}
194\author[1]{Peter A. Buhr*}
195\author[1]{Thierry Delisle}
196\author[1]{Ayelet Wasik}
197\authormark{ZULFIQAR \textsc{et al.}}
198
199\address[1]{\orgdiv{Cheriton School of Computer Science}, \orgname{University of Waterloo}, \orgaddress{\state{Waterloo, ON}, \country{Canada}}}
200
201\corres{*Peter A. Buhr, Cheriton School of Computer Science, University of Waterloo, 200 University Avenue West, Waterloo, ON N2L 3G1, Canada. \email{pabuhr{\char`\@}uwaterloo.ca}}
202
203% \fundingInfo{Natural Sciences and Engineering Research Council of Canada}
204
205\abstract[Summary]{
206A new C-based concurrent memory-allocator is presented, called llheap.
207It can be used standalone in C/\CC applications with multiple kernel threads, or embedded into high-performance user-threading programming languages.
208llheap extends the feature set of existing C allocation by remembering zero-filled (\lstinline{calloc}) and aligned properties (\lstinline{memalign}) in an allocation.
209These properties can be queried, allowing programmers to write safer programs by preserving these properties in future allocations.
210As well, \lstinline{realloc} preserves these properties when enlarging storage requests, again increasing future allocation safety.
211llheap also extends the C allocation API with \lstinline{resize}, extended \lstinline{realloc}, \lstinline{aalloc}, \lstinline{amemalign}, and \lstinline{cmemalign} providing orthongoal ac, so programmers do not make mistakes writing theses useful allocation operations.
212It is competitive with the best current memory allocators,
213The ability to use \CFA's advanced type-system (and possibly \CC's too) to combine advanced memory operations into one allocation routine using named arguments shows how far the allocation API can be pushed, which increases safety and greatly simplifies programmer's use of dynamic allocation.
214 low-latency
215 without a performance loss
216The llheap allocator also provides comprehensive statistics for all allocation operations, which are invaluable in understanding and debugging a program's dynamic behaviour.
217As well, llheap provides a debugging mode where allocations are checked with internal pre/post conditions and invariants. It is extremely useful, especially for students.
218% No other memory allocator examined in the work provides such comprehensive statistics gathering.
219% While not as powerful as the \lstinline{valgrind} interpreter, a large number of allocations mistakes are detected.
220% Finally, contention-free statistics gathering and debugging have a low enough cost to be used in production code.
221%
222% A micro-benchmark test-suite is started for comparing allocators, rather than relying on a suite of arbitrary programs. It has been an interesting challenge.
223% These micro-benchmarks have adjustment knobs to simulate allocation patterns hard-coded into arbitrary test programs.
224% Existing memory allocators, glibc, dlmalloc, hoard, jemalloc, ptmalloc3, rpmalloc, tbmalloc, and the new allocator llheap are all compared using the new micro-benchmark test-suite.
225}% aabstract
226
227\keywords{C \CFA (Cforall) coroutine concurrency generator monitor parallelism runtime thread}
228
229
230\begin{document}
231%\linenumbers                           % comment out to turn off line numbering
232
233\maketitle
234
235
236\section{Introduction}
237
238Memory management takes a sequence of program generated allocation/deallocation requests and attempts to satisfy them within a fixed-sized block of memory while minimizing the total amount of memory used.
239A general-purpose dynamic-allocation algorithm cannot anticipate future allocation requests so its output is rarely optimal.
240However, memory allocators do take advantage of regularities in allocation patterns for typical programs to produce excellent results, both in time and space (similar to LRU paging).
241In general, allocators use a number of similar techniques, each optimizing specific allocation patterns.
242Nevertheless, memory allocators are a series of compromises, occasionally with some static or dynamic tuning parameters to optimize specific program-request patterns.
243
244
245\subsection{Memory Structure}
246\label{s:MemoryStructure}
247
248Figure~\ref{f:ProgramAddressSpace} shows the typical layout of a program's address space divided into the following zones (right to left): static code/data, dynamic allocation, dynamic code/data, and stack, with free memory surrounding the dynamic code/data~\cite{memlayout}.
249Static code and data are placed into memory at load time from the executable and are fixed-sized at runtime.
250Dynamic-allocation memory starts empty and grows/shrinks as the program dynamically creates/deletes variables with independent lifetime.
251The programming-language's runtime manages this area, where management complexity is a function of the mechanism for deleting variables.
252Dynamic code/data memory is managed by the dynamic loader for libraries loaded at runtime, which is complex especially in a multi-threaded program~\cite{Huang06}.
253However, changes to the dynamic code/data space are typically infrequent, many occurring at program startup, and are largely outside of a program's control.
254Stack memory is managed by the program call/return-mechanism using a simple LIFO technique, which works well for sequential programs.
255For stackful coroutines and user threads, a new stack is commonly created in dynamic-allocation memory.
256This work focuses solely on management of the dynamic-allocation memory.
257
258\begin{figure}
259\centering
260\input{AddressSpace}
261\vspace{-5pt}
262\caption{Program Address Space Divided into Zones}
263\label{f:ProgramAddressSpace}
264\end{figure}
265
266
267\subsection{Dynamic Memory-Management}
268\label{s:DynamicMemoryManagement}
269
270Modern programming languages manage dynamic-allocation memory in different ways.
271Some languages, such as Lisp~\cite{CommonLisp}, Java~\cite{Java}, Haskell~\cite{Haskell}, Go~\cite{Go}, provide explicit allocation but \emph{implicit} deallocation of data through garbage collection~\cite{Wilson92}.
272In general, garbage collection supports memory compaction, where dynamic (live) data is moved during runtime to better utilize space.
273However, moving data requires finding pointers to it and updating them to reflect new data locations.
274Programming languages such as C~\cite{C}, \CC~\cite{C++}, and Rust~\cite{Rust} provide the programmer with explicit allocation \emph{and} deallocation of data.
275These languages cannot find and subsequently move live data because pointers can be created to any storage zone, including internal components of allocated objects, and may contain temporary invalid values generated by pointer arithmetic.
276Attempts have been made to perform quasi garbage collection in C/\CC~\cite{Boehm88}, but it is a compromise.
277This work only examines dynamic memory-management with \emph{explicit} deallocation.
278While garbage collection and compaction are not part this work, many of the results are applicable to the allocation phase in any memory-management approach.
279
280Most programs use a general-purpose allocator, often the one provided implicitly by the programming-language's runtime.
281When this allocator proves inadequate, programmers often write specialize allocators for specific needs.
282C and \CC allow easy replacement of the default memory allocator with an alternative specialized or general-purpose memory-allocator.
283Jikes RVM MMTk~\cite{MMTk} provides a similar generalization for the Java virtual machine.
284However, high-performance memory-allocators for kernel and user multi-threaded programs are still being designed and improved.
285For this reason, several alternative general-purpose allocators have been written for C/\CC with the goal of scaling in a multi-threaded program~\cite{Berger00,mtmalloc,streamflow,tcmalloc}.
286This work examines the design of high-performance allocators for use by kernel and user multi-threaded applications written in C/\CC.
287
288
289\subsection{Contributions}
290\label{s:Contributions}
291
292This work provides the following contributions in the area of explicit concurrent dynamic-allocation:
293\begin{enumerate}[leftmargin=*,itemsep=0pt]
294\item
295Implementation of a new stand-alone concurrent low-latency memory-allocator ($\approx$1,200 lines of code) for C/\CC programs using kernel threads (1:1 threading), and specialized versions of the allocator for the programming languages \uC and \CFA using user-level threads running on multiple kernel threads (M:N threading).
296
297\item
298Extend the standard C heap functionality by preserving with each allocation: its request size plus the amount allocated, whether an allocation is zero fill, and allocation alignment.
299
300\item
301Use the preserved zero fill and alignment as \emph{sticky} properties for @realloc@ to zero-fill and align when storage is extended or copied.
302Without this extension, it is unsafe to @realloc@ storage initially allocated with zero-fill/alignment as these properties are not preserved when copying.
303This silent generation of a problem is unintuitive to programmers and difficult to locate because it is transient.
304
305\item
306Provide additional heap operations to complete programmer expectation with respect to accessing different allocation properties.
307\begin{itemize}[itemsep=0pt,parsep=0pt]
308\item
309@resize( oaddr, size )@ re-purpose an old allocation for a new type \emph{without} preserving fill or alignment.
310\item
311@resize( oaddr, alignment, size )@ re-purpose an old allocation with new alignment but \emph{without} preserving fill.
312\item
313@realloc( oaddr, alignment, size )@ same as @realloc@ but adding or changing alignment.
314\item
315@aalloc( dim, elemSize )@ same as @calloc@ except memory is \emph{not} zero filled.
316\item
317@amemalign( alignment, dim, elemSize )@ same as @aalloc@ with memory alignment.
318\item
319@cmemalign( alignment, dim, elemSize )@ same as @calloc@ with memory alignment.
320\end{itemize}
321
322\item
323Provide additional heap wrapper functions in \CFA creating a more usable set of allocation operations and properties.
324
325\item
326Provide additional query operations to access information about an allocation:
327\begin{itemize}[itemsep=0pt]
328\item
329@malloc_alignment( addr )@ returns the alignment of the allocation pointed-to by @addr@.
330If the allocation is not aligned or @addr@ is @NULL@, the minimal alignment is returned.
331\item
332@malloc_zero_fill( addr )@ returns a boolean result indicating if the memory pointed-to by @addr@ is allocated with zero fill, e.g., by @calloc@/@cmemalign@.
333\item
334@malloc_size( addr )@ returns the size of the memory allocation pointed-to by @addr@.
335\item
336@malloc_usable_size( addr )@ returns the usable (total) size of the memory pointed-to by @addr@, i.e., the bin size containing the allocation, where @malloc_size( addr )@ $\le$ @malloc_usable_size( addr )@.
337\end{itemize}
338
339\item
340Provide complete, fast, and contention-free allocation statistics to help understand allocation behaviour:
341\begin{itemize}[itemsep=0pt]
342\item
343@malloc_stats()@ print memory-allocation statistics on the file-descriptor set by @malloc_stats_fd@.
344\item
345@malloc_info( options, stream )@ print memory-allocation statistics as an XML string on the specified file-descriptor set by @malloc_stats_fd@.
346\item
347@malloc_stats_fd( fd )@ set file-descriptor number for printing memory-allocation statistics (default @STDERR_FILENO@).
348This file descriptor is used implicitly by @malloc_stats@ and @malloc_info@.
349\end{itemize}
350
351\item
352Provide extensive runtime checks to validate allocation operations and identify the amount of unfreed storage at program termination.
353
354\item
355Build 8 different versions of the allocator: static or dynamic linking, with or without statistics or debugging.
356A program may link to any of these 8 versions of the allocator often without recompilation.
357
358\item
359A micro-benchmark test-suite for comparing allocators rather than relying on a suite of arbitrary programs.
360These micro-benchmarks have adjustment knobs to simulate allocation patterns hard-coded into arbitrary test programs
361\end{enumerate}
362
363
364\section{Background}
365
366The following discussion is a quick overview of the moving-pieces that affect the design of a memory allocator and its performance.
367It is assumed that dynamic allocates and deallocates acquire storage for a program variable, referred to as an \newterm{object}, through calls such as @malloc@ and @free@ in C, and @new@ and @delete@ in \CC.
368Space for each allocated object comes from the dynamic-allocation zone.
369
370A \newterm{memory allocator} contains a complex data-structure and code that manages the layout of objects in the dynamic-allocation zone.
371The management goals are to make allocation/deallocation operations as fast as possible while densely packing objects to make efficient use of memory.
372Objects in C/\CC cannot be moved to aid the packing process, only adjacent free storage can be \newterm{coalesced} into larger free areas.
373The allocator grows or shrinks the dynamic-allocation zone to obtain storage for objects and reduce memory usage via operating-system calls, such as @mmap@ or @sbrk@ in UNIX.
374
375
376\subsection{Allocator Components}
377\label{s:AllocatorComponents}
378
379Figure~\ref{f:AllocatorComponents} shows the two important data components for a memory allocator, management and storage, collectively called the \newterm{heap}.
380The \newterm{management data} is a data structure located at a known memory address and contains all information necessary to manage the storage data.
381The management data starts with fixed-sized information in the static-data memory that references components in the dynamic-allocation memory.
382For multi-threaded programs, additional management data may exist in \newterm{thread-local storage} (TLS) for each kernel thread executing the program.
383The \newterm{storage data} is composed of allocated and freed objects, and \newterm{reserved memory}.
384Allocated objects (light grey) are variable sized, and are allocated and maintained by the program;
385\ie only the program knows the location of allocated storage not the memory allocator.
386Freed objects (white) represent memory deallocated by the program, which are linked into one or more lists facilitating easy location of new allocations.
387Reserved memory (dark grey) is one or more blocks of memory obtained from the operating system but not yet allocated to the program;
388if there are multiple reserved blocks, they are also chained together, usually internally.
389
390\begin{figure}
391\centering
392\input{AllocatorComponents}
393\caption{Allocator Components (Heap)}
394\label{f:AllocatorComponents}
395\end{figure}
396
397In most allocator designs, allocated objects have management data embedded within them.
398Figure~\ref{f:AllocatedObject} shows an allocated object with a header, trailer, and optional spacing around the object.
399The header contains information about the object, \eg size, type, etc.
400The trailer may be used to simplify coalescing and/or for security purposes to mark the end of an object.
401An object may be preceded by padding to ensure proper alignment.
402Some algorithms quantize allocation requests, resulting in additional space after an object less than the quantized value.
403% The buckets are often organized as an array of ascending bucket sizes for fast searching, \eg binary search, and the array is stored in the heap management-area, where each bucket is a top point to the freed objects of that size.
404When padding and spacing are necessary, neither can be used to satisfy a future allocation request while the current allocation exists.
405
406A free object also contains management data, \eg size, pointers, etc.
407Often the free list is chained internally so it does not consume additional storage, \ie the link fields are placed at known locations in the unused memory blocks.
408For internal chaining, the amount of management data for a free node defines the minimum allocation size, \eg if 16 bytes are needed for a free-list node, allocation requests less than 16 bytes are rounded up.
409The information in an allocated or freed object is overwritten when it transitions from allocated to freed and vice-versa by new management information and/or program data.
410
411\begin{figure}
412\centering
413\input{AllocatedObject}
414\caption{Allocated Object}
415\label{f:AllocatedObject}
416\end{figure}
417
418
419\subsection{Single-Threaded Memory-Allocator}
420\label{s:SingleThreadedMemoryAllocator}
421
422A single-threaded memory-allocator does not run any threads itself, but is used by a single-threaded program.
423Because the memory allocator is only executed by a single thread, concurrency issues do not exist.
424The primary issues in designing a single-threaded memory-allocator are fragmentation and locality.
425
426
427\subsubsection{Fragmentation}
428\label{s:Fragmentation}
429
430Fragmentation is memory requested from the operating system but not used by the program;
431hence, allocated objects are not fragmentation.
432Figure~\ref{f:InternalExternalFragmentation} shows fragmentation is divided into two forms: internal or external.
433
434\begin{figure}
435\centering
436\input{IntExtFragmentation}
437\caption{Internal and External Fragmentation}
438\label{f:InternalExternalFragmentation}
439\end{figure}
440
441\newterm{Internal fragmentation} is memory space that is allocated to the program, but is not intended to be accessed by the program, such as headers, trailers, padding, and spacing around an allocated object.
442Internal fragmentation is problematic when management space is a significant proportion of an allocated object, \eg for small objects ($<$16 bytes), memory usage is doubled.
443An allocator should strive to keep internal management information to a minimum.
444
445\newterm{External fragmentation} is all memory space reserved from the operating system but not allocated to the program~\cite{Wilson95,Lim98,Siebert00}, which includes all external management data, freed objects, and reserved memory.
446This memory is problematic in two ways: heap blowup and highly fragmented memory.
447\newterm{Heap blowup} occurs when freed memory cannot be reused for future allocations leading to potentially unbounded external fragmentation growth~\cite{Berger00}.
448Memory can become \newterm{highly fragmented} after multiple allocations and deallocations of objects, resulting in a checkerboard of adjacent allocated and free areas, where the free blocks have become very small.
449% Figure~\ref{f:MemoryFragmentation} shows an example of how a small block of memory fragments as objects are allocated and deallocated over time.
450Heap blowup can occur due to allocator policies that are too restrictive in reusing freed memory (the allocated size cannot use a larger free block) and/or no coalescing of free storage.
451% Blocks of free memory become smaller and non-contiguous making them less useful in serving allocation requests.
452% Memory is highly fragmented when most free blocks are unusable because of their sizes.
453% For example, Figure~\ref{f:Contiguous} and Figure~\ref{f:HighlyFragmented} have the same quantity of external fragmentation, but Figure~\ref{f:HighlyFragmented} is highly fragmented.
454% If there is a request to allocate a large object, Figure~\ref{f:Contiguous} is more likely to be able to satisfy it with existing free memory, while Figure~\ref{f:HighlyFragmented} likely has to request more memory from the operating system.
455
456% \begin{figure}
457% \centering
458% \input{MemoryFragmentation}
459% \caption{Memory Fragmentation}
460% \label{f:MemoryFragmentation}
461% \vspace{10pt}
462% \subfloat[Contiguous]{
463%       \input{ContigFragmentation}
464%       \label{f:Contiguous}
465% } % subfloat
466%       \subfloat[Highly Fragmented]{
467%       \input{NonContigFragmentation}
468% \label{f:HighlyFragmented}
469% } % subfloat
470% \caption{Fragmentation Quality}
471% \label{f:FragmentationQuality}
472% \end{figure}
473
474For a single-threaded memory allocator, three basic approaches for controlling fragmentation are identified~\cite{Johnstone99}.
475The first approach is a \newterm{sequential-fit algorithm} with one list of free objects that is searched for a block large enough to fit a requested object size.
476Different search policies determine the free object selected, \eg the first free object large enough or closest to the requested size.
477Any storage larger than the request can become spacing after the object or be split into a smaller free object.
478% The cost of the search depends on the shape and quality of the free list, \eg a linear versus a binary-tree free-list, a sorted versus unsorted free-list.
479
480The second approach is a \newterm{segregated} or \newterm{binning algorithm} with a set of lists for different sized freed objects.
481When an object is allocated, the requested size is rounded up to the nearest bin-size, often leading to spacing after the object.
482A binning algorithm is fast at finding free memory of the appropriate size and allocating it, since the first free object on the free list is used.
483The fewer bin sizes, the fewer lists need to be searched and maintained;
484however, unusable space after object increases, leading to more internal fragmentation.
485The more bin sizes, the longer the search and the less likely a matching free objects is found, leading to more external fragmentation and potentially heap blowup.
486A variation of the binning algorithm allows objects to be allocated from larger bin sizes when the matching bins is empty, and the freed object can be returned to the matching or larger bin (some advantages to either scheme).
487% For example, with bin sizes of 8 and 16 bytes, a request for 12 bytes allocates only 12 bytes, but when the object is freed, it is placed on the 8-byte bin-list.
488% For subsequent requests, the bin free-lists contain objects of different sizes, ranging from one bin-size to the next (8-16 in this example), and a sequential-fit algorithm may be used to find an object large enough for the requested size on the associated bin list.
489
490The third approach is \newterm{splitting} and \newterm{coalescing algorithms}.
491When an object is allocated, if there are no free objects of the requested size, a larger free object may be split into two smaller objects to satisfy the allocation request without obtaining more memory from the operating system.
492For example, in the \newterm{buddy system}, a block of free memory is split into two equal chunks, one of those chunks is again split into two equal chunks, and so on until a block just large enough to fit the requested object is created.
493When an object is deallocated it is coalesced with the objects immediately before and after it in memory, if they are free, turning them into one larger object.
494Coalescing can be done eagerly at each deallocation or lazily when an allocation cannot be fulfilled.
495In all cases, coalescing increases allocation latency, hence some allocations can cause unbounded delays during coalescing.
496While coalescing does not reduce external fragmentation, the coalesced blocks improve fragmentation quality so future allocations are less likely to cause heap blowup.
497% Splitting and coalescing can be used with other algorithms to avoid highly fragmented memory.
498
499
500\subsubsection{Locality}
501\label{s:Locality}
502
503The principle of locality recognizes that programs tend to reference a small set of data, called a working set, for a certain period of time, where a working set is composed of temporal and spatial accesses~\cite{Denning05}.
504Temporal clustering implies a group of objects are accessed repeatedly within a short time period, while spatial clustering implies a group of objects physically close together (nearby addresses) are accessed repeatedly within a short time period.
505Temporal locality commonly occurs during an iterative computation with a fixed set of disjoint variables, while spatial locality commonly occurs when traversing an array.
506
507Hardware takes advantage of temporal and spatial locality through multiple levels of caching, \ie memory hierarchy.
508When an object is accessed, the memory physically located around the object is also cached with the expectation that the current and nearby objects will be referenced within a short period of time.
509For example, entire cache lines are transferred between memory and cache and entire virtual-memory pages are transferred between disk and memory.
510A program exhibiting good locality has better performance due to fewer cache misses and page faults\footnote{With the advent of large RAM memory, paging is becoming less of an issue in modern programming.}.
511
512Temporal locality is largely controlled by how a program accesses its variables~\cite{Feng05}.
513Nevertheless, a memory allocator can have some indirect influence on temporal locality and largely dictates spatial locality.
514For temporal locality, an allocator can return storage for new allocations that was just freed as these memory locations are still \emph{warm} in the memory hierarchy.
515For spatial locality, an allocator can place objects used together close together in memory, so the working set of the program fits into the fewest possible cache lines and pages.
516However, usage patterns are different for every program as is the underlying hardware memory architecture;
517hence, no general-purpose memory-allocator can provide ideal locality for every program on every computer.
518
519There are a number of ways a memory allocator can degrade locality by increasing the working set.
520For example, a memory allocator may access multiple free objects before finding one to satisfy an allocation request, \eg sequential-fit algorithm.
521If there are a (large) number of objects accessed in very different areas of memory, the allocator may perturb the program's memory hierarchy causing multiple cache or page misses~\cite{Grunwald93}.
522Another way locality can be degraded is by spatially separating related data.
523For example, in a binning allocator, objects of different sizes are allocated from different bins that may be located in different pages of memory.
524
525
526\subsection{Multi-Threaded Memory-Allocator}
527\label{s:MultiThreadedMemoryAllocator}
528
529A multi-threaded memory-allocator does not run any threads itself, but is used by a multi-threaded program.
530In addition to single-threaded design issues of fragmentation and locality, a multi-threaded allocator is simultaneously accessed by multiple threads, and hence, must deal with concurrency issues such as mutual exclusion, false sharing, and additional forms of heap blowup.
531
532
533\subsubsection{Mutual Exclusion}
534\label{s:MutualExclusion}
535
536\newterm{Mutual exclusion} provides sequential access to the shared management data of the heap.
537There are two performance issues for mutual exclusion.
538First is the overhead necessary to perform (at least) a hardware atomic operation every time a shared resource is accessed.
539Second is when multiple threads contend for a shared resource simultaneously, and hence, some threads must wait until the resource is released.
540Contention can be reduced in a number of ways:
541\begin{itemize}[itemsep=0pt]
542\item
543using multiple fine-grained locks versus a single lock, spreading the contention across a number of locks;
544\item
545using trylock and generating new storage if the lock is busy, yielding a classic space versus time tradeoff;
546\item
547using one of the many lock-free approaches for reducing contention on basic data-structure operations~\cite{Oyama99}.
548\end{itemize}
549However, all of these approaches have degenerate cases where program contention is high, which occurs outside of the allocator.
550
551
552\subsubsection{False Sharing}
553\label{s:FalseSharing}
554
555False sharing is a dynamic phenomenon leading to cache thrashing.
556When two or more threads on separate CPUs simultaneously change different objects sharing a cache line, the change invalidates the other thread's associated cache, even though these threads may be uninterested in the other modified object.
557False sharing can occur in three different ways: program induced, allocator-induced active, and allocator-induced passive;
558a memory allocator can only affect the latter two.
559
560\paragraph{Program-induced false-sharing}
561occurs when one thread passes an object sharing a cache line to another thread, and both threads modify the respective objects.
562Figure~\ref{f:ProgramInducedFalseSharing} shows when Thread$_1$ passes Object$_2$ to Thread$_2$, a false-sharing situation forms when Thread$_1$ modifies Object$_1$ and Thread$_2$ modifies Object$_2$.
563Changes to Object$_1$ invalidate CPU$_2$'s cache line, and changes to Object$_2$ invalidate CPU$_1$'s cache line.
564
565\begin{figure}
566\centering
567\subfloat[Program-Induced False-Sharing]{
568        \input{ProgramFalseSharing}
569        \label{f:ProgramInducedFalseSharing}
570} \\
571\vspace{5pt}
572\subfloat[Allocator-Induced Active False-Sharing]{
573        \input{AllocInducedActiveFalseSharing}
574        \label{f:AllocatorInducedActiveFalseSharing}
575} \\
576\vspace{5pt}
577\subfloat[Allocator-Induced Passive False-Sharing]{
578        \input{AllocInducedPassiveFalseSharing}
579        \label{f:AllocatorInducedPassiveFalseSharing}
580} % subfloat
581\caption{False Sharing}
582\label{f:FalseSharing}
583\end{figure}
584
585\paragraph{Allocator-induced active false-sharing}
586\label{s:AllocatorInducedActiveFalseSharing}
587occurs when objects are allocated within the same cache line but to different threads.
588For example, in Figure~\ref{f:AllocatorInducedActiveFalseSharing}, each thread allocates an object and loads a cache-line of memory into its associated cache.
589Again, changes to Object$_1$ invalidate CPU$_2$'s cache line, and changes to Object$_2$ invalidate CPU$_1$'s cache line.
590
591\paragraph{Allocator-induced passive false-sharing}
592\label{s:AllocatorInducedPassiveFalseSharing}
593is another form of allocator-induced false-sharing caused by program-induced false-sharing.
594When an object in a program-induced false-sharing situation is deallocated, a future allocation of that object may cause passive false-sharing.
595For example, in Figure~\ref{f:AllocatorInducedPassiveFalseSharing}, Thread$_1$ passes Object$_2$ to Thread$_2$, and Thread$_2$ subsequently deallocates Object$_2$.
596Allocator-induced passive false-sharing occurs when Object$_2$ is reallocated to Thread$_2$ while Thread$_1$ is still using Object$_1$.
597
598
599\subsubsection{Heap Blowup}
600\label{s:HeapBlowup}
601
602In a multi-threaded program, heap blowup can occur when memory freed by one thread is inaccessible to other threads due to the allocation strategy.
603Specific examples are presented in later subsections.
604
605
606\subsection{Multi-Threaded Memory-Allocator Features}
607\label{s:MultiThreadedMemoryAllocatorFeatures}
608
609The following features are used in the construction of multi-threaded memory-allocators:
610\begin{list}{\arabic{enumi}.}{\usecounter{enumi}\topsep=0.5ex\parsep=0pt\itemsep=0pt}
611\item multiple heaps
612\begin{list}{\alph{enumii})}{\usecounter{enumii}\topsep=0.5ex\parsep=0pt\itemsep=0pt}
613\item with or without a global heap
614\item with or without ownership
615\end{list}
616\item object containers
617\begin{list}{\alph{enumii})}{\usecounter{enumii}\topsep=0.5ex\parsep=0pt\itemsep=0pt}
618\item with or without ownership
619\item fixed or variable sized
620\item global or local free-lists
621\end{list}
622\item hybrid private/public heap
623\item allocation buffer
624\item lock-free operations
625\end{list}
626The first feature, multiple heaps, pertains to different kinds of heaps.
627The second feature, object containers, pertains to the organization of objects within the storage area.
628The remaining features apply to different parts of the allocator design or implementation.
629
630
631\subsection{Multiple Heaps}
632\label{s:MultipleHeaps}
633
634A multi-threaded allocator has potentially multiple threads and heaps.
635The multiple threads cause complexity, and multiple heaps are a mechanism for dealing with the complexity.
636The spectrum ranges from multiple threads using a single heap, denoted as T:1 (see Figure~\ref{f:SingleHeap}), to multiple threads sharing multiple heaps, denoted as T:H (see Figure~\ref{f:SharedHeaps}), to one thread per heap, denoted as 1:1 (see Figure~\ref{f:PerThreadHeap}), which is almost back to a single-threaded allocator.
637
638
639\paragraph{T:1 model} where all threads allocate and deallocate objects from one heap.
640Memory is obtained from the freed objects, or reserved memory in the heap, or from the operating system (OS);
641the heap may also return freed memory to the operating system.
642The arrows indicate the direction memory conceptually moves for each kind of operation: allocation moves memory along the path from the heap/operating-system to the user application, while deallocation moves memory along the path from the application back to the heap/operating-system.
643To safely handle concurrency, a single heap uses locking to provide mutual exclusion.
644Whether using a single lock for all heap operations or fine-grained locking for different operations, a single heap may be a significant source of contention for programs with a large amount of memory allocation.
645
646\begin{figure}
647\centering
648\subfloat[T:1]{
649%       \input{SingleHeap.pstex_t}
650        \input{SingleHeap}
651        \label{f:SingleHeap}
652} % subfloat
653\vrule
654\subfloat[T:H]{
655%       \input{MultipleHeaps.pstex_t}
656        \input{SharedHeaps}
657        \label{f:SharedHeaps}
658} % subfloat
659\vrule
660\subfloat[1:1]{
661%       \input{MultipleHeapsGlobal.pstex_t}
662        \input{PerThreadHeap}
663        \label{f:PerThreadHeap}
664} % subfloat
665\caption{Multiple Heaps, Thread:Heap Relationship}
666\end{figure}
667
668
669\paragraph{T:H model} where each thread allocates storage from several heaps depending on certain criteria, with the goal of reducing contention by spreading allocations/deallocations across the heaps.
670The decision on when to create a new heap and which heap a thread allocates from depends on the allocator design.
671The performance goal is to reduce the ratio of heaps to threads.
672In general, locking is required, since more than one thread may concurrently access a heap during its lifetime, but contention is reduced because fewer threads access a specific heap.
673
674For example, multiple heaps are managed in a pool, starting with a single or a fixed number of heaps that increase\-/decrease depending on contention\-/space issues.
675At creation, a thread is associated with a heap from the pool.
676In some implementations of this model, when the thread attempts an allocation and its associated heap is locked (contention), it scans for an unlocked heap in the pool.
677If an unlocked heap is found, the thread changes its association and uses that heap.
678If all heaps are locked, the thread may create a new heap, use it, and then place the new heap into the pool;
679or the thread can block waiting for a heap to become available.
680While the heap-pool approach often minimizes the number of extant heaps, the worse case can result in more heaps than threads;
681\eg if the number of threads is large at startup with many allocations creating a large number of heaps and then the number of threads reduces.
682
683Threads using multiple heaps need to determine the specific heap to access for an allocation/deallocation, \ie association of thread to heap.
684A number of techniques are used to establish this association.
685The simplest approach is for each thread to have a pointer to its associated heap (or to administrative information that points to the heap), and this pointer changes if the association changes.
686For threading systems with thread-local storage, the heap pointer is created using this mechanism;
687otherwise, the heap routines must simulate thread-local storage using approaches like hashing the thread's stack-pointer or thread-id to find its associated heap.
688
689The storage management for multiple heaps is more complex than for a single heap (see Figure~\ref{f:AllocatorComponents}).
690Figure~\ref{f:MultipleHeapStorage} illustrates the general storage layout for multiple heaps.
691Allocated and free objects are labelled by the thread or heap they are associated with.
692(Links between free objects are removed for simplicity.)
693The management information in the static zone must be able to locate all heaps in the dynamic zone.
694The management information for the heaps must reside in the dynamic-allocation zone if there are a variable number.
695Each heap in the dynamic zone is composed of a list of free objects and a pointer to its reserved memory.
696An alternative implementation is for all heaps to share one reserved memory, which requires a separate lock for the reserved storage to ensure mutual exclusion when acquiring new memory.
697Because multiple threads can allocate/free/reallocate adjacent storage, all forms of false sharing may occur.
698Other storage-management options are to use @mmap@ to set aside (large) areas of virtual memory for each heap and suballocate each heap's storage within that area, pushing part of the storage management complexity back to the operating system.
699
700\begin{figure}
701\centering
702\input{MultipleHeapsStorage}
703\caption{Multiple-Heap Storage}
704\label{f:MultipleHeapStorage}
705\end{figure}
706
707Multiple heaps increase external fragmentation as the ratio of heaps to threads increases, which can lead to heap blowup.
708The external fragmentation experienced by a program with a single heap is now multiplied by the number of heaps, since each heap manages its own free storage and allocates its own reserved memory.
709Additionally, objects freed by one heap cannot be reused by other threads without increasing the cost of the memory operations, except indirectly by returning free memory to the operating system, which can be expensive.
710Depending on how the operating system provides dynamic storage to an application, returning storage may be difficult or impossible, \eg the contiguous @sbrk@ area in Unix.
711In the worst case, a program in which objects are allocated from one heap but deallocated to another heap means these freed objects are never reused.
712
713Adding a \newterm{global heap} (G) attempts to reduce the cost of obtaining/returning memory among heaps (sharing) by buffering storage within the application address-space.
714Now, each heap obtains and returns storage to/from the global heap rather than the operating system.
715Storage is obtained from the global heap only when a heap allocation cannot be fulfilled, and returned to the global heap when a heap's free memory exceeds some threshold.
716Similarly, the global heap buffers this memory, obtaining and returning storage to/from the operating system as necessary.
717The global heap does not have its own thread and makes no internal allocation requests;
718instead, it uses the application thread, which called one of the multiple heaps and then the global heap, to perform operations.
719Hence, the worst-case cost of a memory operation includes all these steps.
720With respect to heap blowup, the global heap provides an indirect mechanism to move free memory among heaps, which usually has a much lower cost than interacting with the operating system to achieve the same goal and is independent of the mechanism used by the operating system to present dynamic memory to an address space.
721
722However, since any thread may indirectly perform a memory operation on the global heap, it is a shared resource that requires locking.
723A single lock can be used to protect the global heap or fine-grained locking can be used to reduce contention.
724In general, the cost is minimal since the majority of memory operations are completed without the use of the global heap.
725
726
727\paragraph{1:1 model (thread heaps)} where each thread has its own heap eliminating most contention and locking because threads seldom access another thread's heap (see ownership in Section~\ref{s:Ownership}).
728An additional benefit of thread heaps is improved locality due to better memory layout.
729As each thread only allocates from its heap, all objects for a thread are consolidated in the storage area for that heap, better utilizing each CPUs cache and accessing fewer pages.
730In contrast, the T:H model spreads each thread's objects over a larger area in different heaps.
731Thread heaps can also eliminate allocator-induced active false-sharing, if memory is acquired so it does not overlap at crucial boundaries with memory for another thread's heap.
732For example, assume page boundaries coincide with cache line boundaries, if a thread heap always acquires pages of memory then no two threads share a page or cache line unless pointers are passed among them.
733Hence, allocator-induced active false-sharing in Figure~\ref{f:AllocatorInducedActiveFalseSharing} cannot occur because the memory for thread heaps never overlaps.
734
735When a thread terminates, there are two options for handling its thread heap.
736First is to free all objects in the thread heap to the global heap and destroy the thread heap.
737Second is to place the thread heap on a list of available heaps and reuse it for a new thread in the future.
738Destroying the thread heap immediately may reduce external fragmentation sooner, since all free objects are freed to the global heap and may be reused by other threads.
739Alternatively, reusing thread heaps may improve performance if the inheriting thread makes similar allocation requests as the thread that previously held the thread heap because any unfreed storage is immediately accessible.
740
741
742\subsubsection{User-Level Threading}
743
744It is possible to use any of the heap models with user-level (M:N) threading.
745However, an important goal of user-level threading is for fast operations (creation/termination/context-switching) by not interacting with the operating system, which allows the ability to create large numbers of high-performance interacting threads ($>$ 10,000).
746It is difficult to retain this goal, if the user-threading model is directly involved with the heap model.
747Figure~\ref{f:UserLevelKernelHeaps} shows that virtually all user-level threading systems use whatever kernel-level heap-model is provided by the language runtime.
748Hence, a user thread allocates/deallocates from/to the heap of the kernel thread on which it is currently executing.
749
750\begin{figure}
751\centering
752\input{UserKernelHeaps}
753\caption{User-Level Kernel Heaps}
754\label{f:UserLevelKernelHeaps}
755\end{figure}
756
757Adopting this model results in a subtle problem with shared heaps.
758With kernel threading, an operation that is started by a kernel thread is always completed by that thread.
759For example, if a kernel thread starts an allocation/deallocation on a shared heap, it always completes that operation with that heap even if preempted, \ie any locking correctness associated with the shared heap is preserved across preemption.
760
761However, this correctness property is not preserved for user-level threading.
762A user thread can start an allocation/deallocation on one kernel thread, be preempted (time slice), and continue running on a different kernel thread to complete the operation~\cite{Dice02}.
763When the user thread continues on the new kernel thread, it may have pointers into the previous kernel-thread's heap and hold locks associated with it.
764To get the same kernel-thread safety, time slicing must be disabled/\-enabled around these operations, so the user thread cannot jump to another kernel thread.
765However, eagerly disabling/enabling time-slicing on the allocation/deallocation fast path is expensive, because preemption does not happen that frequently.
766Instead, techniques exist to lazily detect this case in the interrupt handler, abort the preemption, and return to the operation so it can complete atomically.
767Occasionally ignoring a preemption should be benign, but a persistent lack of preemption can result in both short and long term starvation.
768
769
770\subsubsection{Ownership}
771\label{s:Ownership}
772
773\newterm{Ownership} defines which heap an object is returned-to on deallocation.
774If a thread returns an object to the heap it was originally allocated from, a heap has ownership of its objects.
775Alternatively, a thread can return an object to the heap it is currently associated with, which can be any heap accessible during a thread's lifetime.
776Figure~\ref{f:HeapsOwnership} shows an example of multiple heaps (minus the global heap) with and without ownership.
777Again, the arrows indicate the direction memory conceptually moves for each kind of operation.
778For the 1:1 thread:heap relationship, a thread only allocates from its own heap, and without ownership, a thread only frees objects to its own heap, which means the heap is private to its owner thread and does not require any locking, called a \newterm{private heap}.
779For the T:1/T:H models with or without ownership or the 1:1 model with ownership, a thread may free objects to different heaps, which makes each heap publicly accessible to all threads, called a \newterm{public heap}.
780
781\begin{figure}
782\centering
783\subfloat[Ownership]{
784        \input{MultipleHeapsOwnership}
785} % subfloat
786\hspace{0.25in}
787\subfloat[No Ownership]{
788        \input{MultipleHeapsNoOwnership}
789} % subfloat
790\caption{Heap Ownership}
791\label{f:HeapsOwnership}
792\end{figure}
793
794Figure~\ref{f:MultipleHeapStorageOwnership} shows the effect of ownership on storage layout.
795(For simplicity, assume the heaps all use the same size of reserves storage.)
796In contrast to Figure~\ref{f:MultipleHeapStorage}, each reserved area used by a heap only contains free storage for that particular heap because threads must return free objects back to the owner heap.
797Again, because multiple threads can allocate/free/reallocate adjacent storage in the same heap, all forms of false sharing may occur.
798The exception is for the 1:1 model if reserved memory does not overlap a cache-line because all allocated storage within a used area is associated with a single thread.
799In this case, there is no allocator-induced active false-sharing (see Figure~\ref{f:AllocatorInducedActiveFalseSharing}) because two adjacent allocated objects used by different threads cannot share a cache-line.
800As well, there is no allocator-induced passive false-sharing (see Figure~\ref{f:AllocatorInducedActiveFalseSharing}) because two adjacent allocated objects used by different threads cannot occur because free objects are returned to the owner heap.
801% Passive false-sharing may still occur, if delayed ownership is used (see below).
802
803\begin{figure}
804\centering
805\input{MultipleHeapsOwnershipStorage.pstex_t}
806\caption{Multiple-Heap Storage with Ownership}
807\label{f:MultipleHeapStorageOwnership}
808\end{figure}
809
810The main advantage of ownership is preventing heap blowup by returning storage for reuse by the owner heap.
811Ownership prevents the classical problem where one thread performs allocations from one heap, passes the object to another thread, and the receiving thread deallocates the object to another heap, hence draining the initial heap of storage.
812As well, allocator-induced passive false-sharing is eliminated because returning an object to its owner heap means it can never be allocated to another thread.
813For example, in Figure~\ref{f:AllocatorInducedPassiveFalseSharing}, the deallocation by Thread$_2$ returns Object$_2$ back to Thread$_1$'s heap;
814hence a subsequent allocation by Thread$_2$ cannot return this storage.
815The disadvantage of ownership is deallocating to another thread's heap so heaps are no longer private and require locks to provide safe concurrent access.
816
817Object ownership can be immediate or delayed, meaning free objects may be batched on a separate free list either by the returning or receiving thread.
818While the returning thread can batch objects, batching across multiple heaps is complex and there is no obvious time when to push back to the owner heap.
819It is better for returning threads to immediately return to the receiving thread's batch list as the receiving thread has better knowledge when to incorporate the batch list into its free pool.
820Batching leverages the fact that most allocation patterns use the contention-free fast-path, so locking on the batch list is rare for both the returning and receiving threads.
821
822It is possible for heaps to steal objects rather than return them and then reallocate these objects again when storage runs out on a heap.
823However, stealing can result in passive false-sharing.
824For example, in Figure~\ref{f:AllocatorInducedPassiveFalseSharing}, Object$_2$ may be deallocated to Thread$_2$'s heap initially.
825If Thread$_2$ reallocates Object$_2$ before it is returned to its owner heap, then passive false-sharing may occur.
826
827
828\subsection{Object Containers}
829\label{s:ObjectContainers}
830
831Bracketing every allocation with headers/trailers can result in significant internal fragmentation, as shown in Figure~\ref{f:ObjectHeaders}.
832Especially if the headers contain redundant management information, then storing that information is a waste of storage, \eg object size may be the same for many objects because programs only allocate a small set of object sizes.
833As well, it can result in poor cache usage, since only a portion of the cache line is holding useful information from the program's perspective.
834Spatial locality can also be negatively affected leading to poor cache locality~\cite{Feng05}:
835while the header and object are together in memory, they are generally not accessed together;
836\eg the object is accessed by the program when it is allocated, while the header is accessed by the allocator when the object is free.
837
838\begin{figure}
839\centering
840\subfloat[Object Headers]{
841        \input{ObjectHeaders}
842        \label{f:ObjectHeaders}
843} % subfloat
844\subfloat[Object Container]{
845        \input{Container}
846        \label{f:ObjectContainer}
847} % subfloat
848\caption{Header Placement}
849\label{f:HeaderPlacement}
850\end{figure}
851
852An alternative approach factors common header/trailer information to a separate location in memory and organizes associated free storage into blocks called \newterm{object containers} (\newterm{superblocks} in~\cite{Berger00}), as in Figure~\ref{f:ObjectContainer}.
853The header for the container holds information necessary for all objects in the container;
854a trailer may also be used at the end of the container.
855Similar to the approach described for thread heaps in Section~\ref{s:MultipleHeaps}, if container boundaries do not overlap with memory of another container at crucial boundaries and all objects in a container are allocated to the same thread, allocator-induced active false-sharing is avoided.
856
857The difficulty with object containers lies in finding the object header/trailer given only the object address, since that is normally the only information passed to the deallocation operation.
858One way to do this is to start containers on aligned addresses in memory, then truncate the lower bits of the object address to obtain the header address (or round up and subtract the trailer size to obtain the trailer address).
859For example, if an object at address 0xFC28\,EF08 is freed and containers are aligned on 64\,KB (0x0001\,0000) addresses, then the container header is at 0xFC28\,0000.
860
861Normally, a container has homogeneous objects of fixed size, with fixed information in the header that applies to all container objects (\eg object size and ownership).
862This approach greatly reduces internal fragmentation since far fewer headers are required, and potentially increases spatial locality as a cache line or page holds more objects since the objects are closer together due to the lack of headers.
863However, although similar objects are close spatially within the same container, different sized objects are further apart in separate containers.
864Depending on the program, this may or may not improve locality.
865If the program uses several objects from a small number of containers in its working set, then locality is improved since fewer cache lines and pages are required.
866If the program uses many containers, there is poor locality, as both caching and paging increase.
867Another drawback is that external fragmentation may be increased since containers reserve space for objects that may never be allocated by the program, \ie there are often multiple containers for each size only partially full.
868However, external fragmentation can be reduced by using small containers.
869
870Containers with heterogeneous objects implies different headers describing them, which complicates the problem of locating a specific header solely by an address.
871A couple of solutions can be used to implement containers with heterogeneous objects.
872However, the problem with allowing objects of different sizes is that the number of objects, and therefore headers, in a single container is unpredictable.
873One solution allocates headers at one end of the container, while allocating objects from the other end of the container;
874when the headers meet the objects, the container is full.
875Freed objects cannot be split or coalesced since this causes the number of headers to change.
876The difficulty in this strategy remains in finding the header for a specific object;
877in general, a search is necessary to find the object's header among the container headers.
878A second solution combines the use of container headers and individual object headers.
879Each object header stores the object's heterogeneous information, such as its size, while the container header stores the homogeneous information, such as the owner when using ownership.
880This approach allows containers to hold different types of objects, but does not completely separate headers from objects.
881The benefit of the container in this case is to reduce some redundant information that is factored into the container header.
882
883In summary, object containers trade off internal fragmentation for external fragmentation by isolating common administration information to remove/reduce internal fragmentation, but at the cost of external fragmentation as some portion of a container may not be used and this portion is unusable for other kinds of allocations.
884A consequence of this tradeoff is its effect on spatial locality, which can produce positive or negative results depending on program access-patterns.
885
886
887\subsubsection{Container Ownership}
888\label{s:ContainerOwnership}
889
890Without ownership, objects in a container are deallocated to the heap currently associated with the thread that frees the object.
891Thus, different objects in a container may be on different heap free-lists (see Figure~\ref{f:ContainerNoOwnershipFreelist}).
892With ownership, all objects in a container belong to the same heap (see Figure~\ref{f:ContainerOwnershipFreelist}), so ownership of an object is determined by the container owner.
893If multiple threads can allocate/free/reallocate adjacent storage in the same heap, all forms of false sharing may occur.
894Only with the 1:1 model and ownership is active and passive false-sharing avoided (see Section~\ref{s:Ownership}).
895Passive false-sharing may still occur, if delayed ownership is used.
896Finally, a completely free container can become reserved storage and be reset to allocate objects of a new size or freed to the global heap.
897
898\begin{figure}
899\centering
900\subfloat[No Ownership]{
901        \input{ContainerNoOwnershipFreelist}
902        \label{f:ContainerNoOwnershipFreelist}
903} % subfloat
904\vrule
905\subfloat[Ownership]{
906        \input{ContainerOwnershipFreelist}
907        \label{f:ContainerOwnershipFreelist}
908} % subfloat
909\caption{Free-list Structure with Container Ownership}
910\end{figure}
911
912When a container changes ownership, the ownership of all objects within it change as well.
913Moving a container involves moving all objects on the heap's free-list in that container to the new owner.
914This approach can reduce contention for the global heap, since each request for objects from the global heap returns a container rather than individual objects.
915
916Additional restrictions may be applied to the movement of containers to prevent active false-sharing.
917For example, in Figure~\ref{f:ContainerFalseSharing1}, a container being used by Thread$_1$ changes ownership, through the global heap.
918In Figure~\ref{f:ContainerFalseSharing2}, when Thread$_2$ allocates an object from the newly acquired container it is actively false-sharing even though no objects are passed among threads.
919Note, once the object is freed by Thread$_1$, no more false sharing can occur until the container changes ownership again.
920To prevent this form of false sharing, container movement may be restricted to when all objects in the container are free.
921One implementation approach that increases the freedom to return a free container to the operating system involves allocating containers using a call like @mmap@, which allows memory at an arbitrary address to be returned versus only storage at the end of the contiguous @sbrk@ area, again pushing storage management complexity back to the operating system.
922
923\begin{figure}
924\centering
925\subfloat[]{
926        \input{ContainerFalseSharing1}
927        \label{f:ContainerFalseSharing1}
928} % subfloat
929\subfloat[]{
930        \input{ContainerFalseSharing2}
931        \label{f:ContainerFalseSharing2}
932} % subfloat
933\caption{Active False-Sharing using Containers}
934\label{f:ActiveFalseSharingContainers}
935\end{figure}
936
937Using containers with ownership increases external fragmentation since a new container for a requested object size must be allocated separately for each thread requesting it.
938In Figure~\ref{f:ExternalFragmentationContainerOwnership}, using object ownership allocates 80\% more space than without ownership.
939
940\begin{figure}
941\centering
942\subfloat[No Ownership]{
943        \input{ContainerNoOwnership}
944} % subfloat
945\\
946\subfloat[Ownership]{
947        \input{ContainerOwnership}
948} % subfloat
949\caption{External Fragmentation with Container Ownership}
950\label{f:ExternalFragmentationContainerOwnership}
951\end{figure}
952
953
954\subsubsection{Container Size}
955\label{s:ContainerSize}
956
957One way to control the external fragmentation caused by allocating a large container for a small number of requested objects is to vary the size of the container.
958As described earlier, container boundaries need to be aligned on addresses that are a power of two to allow easy location of the header (by truncating lower bits).
959Aligning containers in this manner also determines the size of the container.
960However, the size of the container has different implications for the allocator.
961
962The larger the container, the fewer containers are needed, and hence, the fewer headers need to be maintained in memory, improving both internal fragmentation and potentially performance.
963However, with more objects in a container, there may be more objects that are unallocated, increasing external fragmentation.
964With smaller containers, not only are there more containers, but a second new problem arises where objects are larger than the container.
965In general, large objects, \eg greater than 64\,KB, are allocated directly from the operating system and are returned immediately to the operating system to reduce long-term external fragmentation.
966If the container size is small, \eg 1\,KB, then a 1.5\,KB object is treated as a large object, which is likely to be inappropriate.
967Ideally, it is best to use smaller containers for smaller objects, and larger containers for medium objects, which leads to the issue of locating the container header.
968
969In order to find the container header when using different sized containers, a super container is used (see~Figure~\ref{f:SuperContainers}).
970The super container spans several containers, contains a header with information for finding each container header, and starts on an aligned address.
971Super-container headers are found using the same method used to find container headers by dropping the lower bits of an object address.
972The containers within a super container may be different sizes or all the same size.
973If the containers in the super container are different sizes, then the super-container header must be searched to determine the specific container for an object given its address.
974If all containers in the super container are the same size, \eg 16KB, then a specific container header can be found by a simple calculation.
975The free space at the end of a super container is used to allocate new containers.
976
977\begin{figure}
978\centering
979\input{SuperContainers}
980% \includegraphics{diagrams/supercontainer.eps}
981\caption{Super Containers}
982\label{f:SuperContainers}
983\end{figure}
984
985Minimal internal and external fragmentation is achieved by having as few containers as possible, each being as full as possible.
986It is also possible to achieve additional benefit by using larger containers for popular small sizes, as it reduces the number of containers with associated headers.
987However, this approach assumes it is possible for an allocator to determine in advance which sizes are popular.
988Keeping statistics on requested sizes allows the allocator to make a dynamic decision about which sizes are popular.
989For example, after receiving a number of allocation requests for a particular size, that size is considered a popular request size and larger containers are allocated for that size.
990If the decision is incorrect, larger containers than necessary are allocated that remain mostly unused.
991A programmer may be able to inform the allocator about popular object sizes, using a mechanism like @mallopt@, in order to select an appropriate container size for each object size.
992
993
994\subsubsection{Container Free-Lists}
995\label{s:containersfreelists}
996
997The container header allows an alternate approach for managing the heap's free-list.
998Rather than maintain a global free-list throughout the heap (see~Figure~\ref{f:GlobalFreeListAmongContainers}), the containers are linked through their headers and only the local free objects within a container are linked together (see~Figure~\ref{f:LocalFreeListWithinContainers}).
999Note, maintaining free lists within a container assumes all free objects in the container are associated with the same heap;
1000thus, this approach only applies to containers with ownership.
1001
1002This alternate free-list approach can greatly reduce the complexity of moving all freed objects belonging to a container to another heap.
1003To move a container using a global free-list, as in Figure~\ref{f:GlobalFreeListAmongContainers}, the free list is first searched to find all objects within the container.
1004Each object is then removed from the free list and linked together to form a local free-list for the move to the new heap.
1005With local free-lists in containers, as in Figure~\ref{f:LocalFreeListWithinContainers}, the container is simply removed from one heap's free list and placed on the new heap's free list.
1006Thus, when using local free-lists, the operation of moving containers is reduced from $O(N)$ to $O(1)$.
1007However, there is the additional storage cost in the header, which increases the header size, and therefore internal fragmentation.
1008
1009\begin{figure}
1010\centering
1011\subfloat[Global Free-List Among Containers]{
1012        \input{FreeListAmongContainers}
1013        \label{f:GlobalFreeListAmongContainers}
1014} % subfloat
1015\hspace{0.25in}
1016\subfloat[Local Free-List Within Containers]{
1017        \input{FreeListWithinContainers}
1018        \label{f:LocalFreeListWithinContainers}
1019} % subfloat
1020\caption{Container Free-List Structure}
1021\label{f:ContainerFreeListStructure}
1022\end{figure}
1023
1024When all objects in the container are the same size, a single free-list is sufficient.
1025However, when objects in the container are different size, the header needs a free list for each size class when using a binning allocation algorithm, which can be a significant increase in the container-header size.
1026The alternative is to use a different allocation algorithm with a single free-list, such as a sequential-fit allocation-algorithm.
1027
1028
1029\subsubsection{Hybrid Private/Public Heap}
1030\label{s:HybridPrivatePublicHeap}
1031
1032Section~\ref{s:Ownership} discusses advantages and disadvantages of public heaps (T:H model and with ownership) and private heaps (thread heaps with ownership).
1033For thread heaps with ownership, it is possible to combine these approaches into a hybrid approach with both private and public heaps (see~Figure~\ref{f:HybridPrivatePublicHeap}).
1034The main goal of the hybrid approach is to eliminate locking on thread-local allocation/deallocation, while providing ownership to prevent heap blowup.
1035In the hybrid approach, a thread first allocates from its private heap and second from its public heap if no free memory exists in the private heap.
1036Similarly, a thread first deallocates an object to its private heap, and second to the public heap.
1037Both private and public heaps can allocate/deallocate to/from the global heap if there is no free memory or excess free memory, although an implementation may choose to funnel all interaction with the global heap through one of the heaps.
1038Note, deallocation from the private to the public (dashed line) is unlikely because there is no obvious advantages unless the public heap provides the only interface to the global heap.
1039Finally, when a thread frees an object it does not own, the object is either freed immediately to its owner's public heap or put in the freeing thread's private heap for delayed ownership, which allows the freeing thread to temporarily reuse an object before returning it to its owner or batch objects for an owner heap into a single return.
1040
1041\begin{figure}
1042\centering
1043\input{PrivatePublicHeaps.pstex_t}
1044\caption{Hybrid Private/Public Heap for Per-thread Heaps}
1045\label{f:HybridPrivatePublicHeap}
1046% \vspace{10pt}
1047% \input{RemoteFreeList.pstex_t}
1048% \caption{Remote Free-List}
1049% \label{f:RemoteFreeList}
1050\end{figure}
1051
1052As mentioned, an implementation may have only one heap interact with the global heap, so the other heap can be simplified.
1053For example, if only the private heap interacts with the global heap, the public heap can be reduced to a lock-protected free-list of objects deallocated by other threads due to ownership, called a \newterm{remote free-list}.
1054To avoid heap blowup, the private heap allocates from the remote free-list when it reaches some threshold or it has no free storage.
1055Since the remote free-list is occasionally cleared during an allocation, this adds to that cost.
1056Clearing the remote free-list is $O(1)$ if the list can simply be added to the end of the private-heap's free-list, or $O(N)$ if some action must be performed for each freed object.
1057
1058If only the public heap interacts with other threads and the global heap, the private heap can handle thread-local allocations and deallocations without locking.
1059In this scenario, the private heap must deallocate storage after reaching a certain threshold to the public heap (and then eventually to the global heap from the public heap) or heap blowup can occur.
1060If the public heap does the major management, the private heap can be simplified to provide high-performance thread-local allocations and deallocations.
1061
1062The main disadvantage of each thread having both a private and public heap is the complexity of managing two heaps and their interactions in an allocator.
1063Interestingly, heap implementations often focus on either a private or public heap, giving the impression a single versus a hybrid approach is being used.
1064In many case, the hybrid approach is actually being used, but the simpler heap is just folded into the complex heap, even though the operations logically belong in separate heaps.
1065For example, a remote free-list is actually a simple public-heap, but may be implemented as an integral component of the complex private-heap in an allocator, masking the presence of a hybrid approach.
1066
1067
1068\subsection{Allocation Buffer}
1069\label{s:AllocationBuffer}
1070
1071An allocation buffer is reserved memory (see Section~\ref{s:AllocatorComponents}) not yet allocated to the program, and is used for allocating objects when the free list is empty.
1072That is, rather than requesting new storage for a single object, an entire buffer is requested from which multiple objects are allocated later.
1073Any heap may use an allocation buffer, resulting in allocation from the buffer before requesting objects (containers) from the global heap or operating system, respectively.
1074The allocation buffer reduces contention and the number of global/operating-system calls.
1075For coalescing, a buffer is split into smaller objects by allocations, and recomposed into larger buffer areas during deallocations.
1076
1077Allocation buffers are useful initially when there are no freed objects in a heap because many allocations usually occur when a thread starts (simple bump allocation).
1078Furthermore, to prevent heap blowup, objects should be reused before allocating a new allocation buffer.
1079Thus, allocation buffers are often allocated more frequently at program/thread start, and then allocations often diminish.
1080
1081Using an allocation buffer with a thread heap avoids active false-sharing, since all objects in the allocation buffer are allocated to the same thread.
1082For example, if all objects sharing a cache line come from the same allocation buffer, then these objects are allocated to the same thread, avoiding active false-sharing.
1083Active false-sharing may still occur if objects are freed to the global heap and reused by another heap.
1084
1085Allocation buffers may increase external fragmentation, since some memory in the allocation buffer may never be allocated.
1086A smaller allocation buffer reduces the amount of external fragmentation, but increases the number of calls to the global heap or operating system.
1087The allocation buffer also slightly increases internal fragmentation, since a pointer is necessary to locate the next free object in the buffer.
1088
1089The unused part of a container, neither allocated or freed, is an allocation buffer.
1090For example, when a container is created, rather than placing all objects within the container on the free list, the objects form an allocation buffer and are allocated from the buffer as allocation requests are made.
1091This lazy method of constructing objects is beneficial in terms of paging and caching.
1092For example, although an entire container, possibly spanning several pages, is allocated from the operating system, only a small part of the container is used in the working set of the allocator, reducing the number of pages and cache lines that are brought into higher levels of cache.
1093
1094
1095\subsection{Lock-Free Operations}
1096\label{s:LockFreeOperations}
1097
1098A \newterm{lock-free algorithm} guarantees safe concurrent-access to a data structure, so that at least one thread makes progress, but an individual thread has no execution bound and may starve~\cite[pp.~745--746]{Herlihy93}.
1099(A \newterm{wait-free algorithm} puts a bound on the number of steps any thread takes to complete an operation to prevent starvation.)
1100Lock-free operations can be used in an allocator to reduce or eliminate the use of locks.
1101While locks and lock-free data-structures often have equal performance, lock-free has the advantage of not holding a lock across preemption so other threads can continue to make progress.
1102With respect to the heap, these situations are unlikely unless all threads make extremely high use of dynamic-memory allocation, which can be an indication of poor design.
1103Nevertheless, lock-free algorithms can reduce the number of context switches, since a thread does not yield/block while waiting for a lock;
1104on the other hand, a thread may busy-wait for an unbounded period holding a processor.
1105Finally, lock-free implementations have greater complexity and hardware dependency.
1106Lock-free algorithms can be applied most easily to simple free-lists, \eg remote free-list, to allow lock-free insertion and removal from the head of a stack.
1107Implementing lock-free operations for more complex data-structures (queue~\cite{Valois94}/deque~\cite{Sundell08}) is correspondingly more complex.
1108Michael~\cite{Michael04} and Gidenstam \etal \cite{Gidenstam05} have created lock-free variations of the Hoard allocator.
1109
1110
1111\section{Allocator}
1112\label{c:Allocator}
1113
1114This section presents a new stand-alone concurrent low-latency memory-allocator ($\approx$1,200 lines of code), called llheap (low-latency heap), for C/\CC programs using kernel threads (1:1 threading), and specialized versions of the allocator for the programming languages \uC and \CFA using user-level threads running over multiple kernel threads (M:N threading).
1115The new allocator fulfills the GNU C Library allocator API~\cite{GNUallocAPI}.
1116
1117
1118\subsection{llheap}
1119
1120The primary design objective for llheap is low-latency across all allocator calls independent of application access-patterns and/or number of threads, \ie very seldom does the allocator have a delay during an allocator call.
1121(Large allocations requiring initialization, \eg zero fill, and/or copying are not covered by the low-latency objective.)
1122A direct consequence of this objective is very simple or no storage coalescing;
1123hence, llheap's design is willing to use more storage to lower latency.
1124This objective is apropos because systems research and industrial applications are striving for low latency and computers have huge amounts of RAM memory.
1125Finally, llheap's performance should be comparable with the current best allocators (see performance comparison in Section~\ref{c:Performance}).
1126
1127% The objective of llheap's new design was to fulfill following requirements:
1128% \begin{itemize}
1129% \item It should be concurrent and thread-safe for multi-threaded programs.
1130% \item It should avoid global locks, on resources shared across all threads, as much as possible.
1131% \item It's performance (FIX ME: cite performance benchmarks) should be comparable to the commonly used allocators (FIX ME: cite common allocators).
1132% \item It should be a lightweight memory allocator.
1133% \end{itemize}
1134
1135%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1136
1137\subsection{Design Choices}
1138
1139llheap's design was reviewed and changed multiple times throughout the work.
1140Some of the rejected designs are discussed because they show the path to the final design (see discussion in Section~\ref{s:MultipleHeaps}).
1141Note, a few simple tests for a design choice were compared with the current best allocators to determine the viability of a design.
1142
1143
1144\subsubsection{Allocation Fastpath}
1145\label{s:AllocationFastpath}
1146
1147These designs look at the allocation/free \newterm{fastpath}, \ie when an allocation can immediately return free storage or returned storage is not coalesced.
1148\paragraph{T:1 model}
1149Figure~\ref{f:T1SharedBuckets} shows one heap accessed by multiple kernel threads (KTs) using a bucket array, where smaller bucket sizes are shared among N KTs.
1150This design leverages the fact that usually the allocation requests are less than 1024 bytes and there are only a few different request sizes.
1151When KTs $\le$ N, the common bucket sizes are uncontented;
1152when KTs $>$ N, the free buckets are contented and latency increases significantly.
1153In all cases, a KT must acquire/release a lock, contented or uncontented, along the fast allocation path because a bucket is shared.
1154Therefore, while threads are contending for a small number of buckets sizes, the buckets are distributed among them to reduce contention, which lowers latency;
1155however, picking N is workload specific.
1156
1157\begin{figure}
1158\centering
1159\input{AllocDS1}
1160\caption{T:1 with Shared Buckets}
1161\label{f:T1SharedBuckets}
1162\end{figure}
1163
1164Problems:
1165\begin{itemize}
1166\item
1167Need to know when a KT is created/destroyed to assign/unassign a shared bucket-number from the memory allocator.
1168\item
1169When no thread is assigned a bucket number, its free storage is unavailable.
1170\item
1171All KTs contend for the global-pool lock for initial allocations, before free-lists get populated.
1172\end{itemize}
1173Tests showed having locks along the allocation fast-path produced a significant increase in allocation costs and any contention among KTs produces a significant spike in latency.
1174
1175\paragraph{T:H model}
1176Figure~\ref{f:THSharedHeaps} shows a fixed number of heaps (N), each a local free pool, where the heaps are sharded (distributed) across the KTs.
1177A KT can point directly to its assigned heap or indirectly through the corresponding heap bucket.
1178When KT $\le$ N, the heaps might be uncontented;
1179when KTs $>$ N, the heaps are contented.
1180In all cases, a KT must acquire/release a lock, contented or uncontented along the fast allocation path because a heap is shared.
1181By increasing N, this approach reduces contention but increases storage (time versus space);
1182however, picking N is workload specific.
1183
1184\begin{figure}
1185\centering
1186\input{AllocDS2}
1187\caption{T:H with Shared Heaps}
1188\label{f:THSharedHeaps}
1189\end{figure}
1190
1191Problems:
1192\begin{itemize}
1193\item
1194Need to know when a KT is created/destroyed to assign/unassign a heap from the memory allocator.
1195\item
1196When no thread is assigned to a heap, its free storage is unavailable.
1197\item
1198Ownership issues arise (see Section~\ref{s:Ownership}).
1199\item
1200All KTs contend for the local/global-pool lock for initial allocations, before free-lists get populated.
1201\end{itemize}
1202Tests showed having locks along the allocation fast-path produced a significant increase in allocation costs and any contention among KTs produces a significant spike in latency.
1203
1204\paragraph{T:H model, H = number of CPUs}
1205This design is the T:H model but H is set to the number of CPUs on the computer or the number restricted to an application, \eg via @taskset@.
1206(See Figure~\ref{f:THSharedHeaps} but with a heap bucket per CPU.)
1207Hence, each CPU logically has its own private heap and local pool.
1208A memory operation is serviced from the heap associated with the CPU executing the operation.
1209This approach removes fastpath locking and contention, regardless of the number of KTs mapped across the CPUs, because only one KT is running on each CPU at a time (modulo operations on the global pool and ownership).
1210This approach is essentially an M:N approach where M is the number if KTs and N is the number of CPUs.
1211
1212Problems:
1213\begin{itemize}
1214\item
1215Need to know when a CPU is added/removed from the @taskset@.
1216\item
1217Need a fast way to determine the CPU a KT is executing on to access the appropriate heap.
1218\item
1219Need to prevent preemption during a dynamic memory operation because of the \newterm{serially-reusable problem}.
1220\begin{quote}
1221A sequence of code that is guaranteed to run to completion before being invoked to accept another input is called serially-reusable code.~\cite{SeriallyReusable}\label{p:SeriallyReusable}
1222\end{quote}
1223If a KT is preempted during an allocation operation, the operating system can schedule another KT on the same CPU, which can begin an allocation operation before the previous operation associated with this CPU has completed, invalidating heap correctness.
1224Note, the serially-reusable problem can occur in sequential programs with preemption, if the signal handler calls the preempted function, unless the function is serially reusable.
1225Essentially, the serially-reusable problem is a race condition on an unprotected critical subsection, where the operating system is providing the second thread via the signal handler.
1226
1227Library @librseq@~\cite{librseq} was used to perform a fast determination of the CPU and to ensure all memory operations complete on one CPU using @librseq@'s restartable sequences, which restart the critical subsection after undoing its writes, if the critical subsection is preempted.
1228\end{itemize}
1229Tests showed that @librseq@ can determine the particular CPU quickly but setting up the restartable critical-subsection along the allocation fast-path produced a significant increase in allocation costs.
1230Also, the number of undoable writes in @librseq@ is limited and restartable sequences cannot deal with user-level thread (UT) migration across KTs.
1231For example, UT$_1$ is executing a memory operation by KT$_1$ on CPU$_1$ and a time-slice preemption occurs.
1232The signal handler context switches UT$_1$ onto the user-level ready-queue and starts running UT$_2$ on KT$_1$, which immediately calls a memory operation.
1233Since KT$_1$ is still executing on CPU$_1$, @librseq@ takes no action because it assumes KT$_1$ is still executing the same critical subsection.
1234Then UT$_1$ is scheduled onto KT$_2$ by the user-level scheduler, and its memory operation continues in parallel with UT$_2$ using references into the heap associated with CPU$_1$, which corrupts CPU$_1$'s heap.
1235If @librseq@ had an @rseq_abort@ which:
1236\begin{enumerate}
1237\item
1238Marked the current restartable critical-subsection as cancelled so it restarts when attempting to commit.
1239\item
1240Do nothing if there is no current restartable critical subsection in progress.
1241\end{enumerate}
1242Then @rseq_abort@ could be called on the backside of a  user-level context-switching.
1243A feature similar to this idea might exist for hardware transactional-memory.
1244A significant effort was made to make this approach work but its complexity, lack of robustness, and performance costs resulted in its rejection.
1245
1246\paragraph{1:1 model}
1247This design is the T:H model with T = H, where there is one thread-local heap for each KT.
1248(See Figure~\ref{f:THSharedHeaps} but with a heap bucket per KT and no bucket or local-pool lock.)
1249Hence, immediately after a KT starts, its heap is created and just before a KT terminates, its heap is (logically) deleted.
1250Heaps are uncontended for a KTs memory operations as every KT has its own thread-local heap, modulo operations on the global pool and ownership.
1251
1252Problems:
1253\begin{itemize}
1254\item
1255Need to know when a KT starts/terminates to create/delete its heap.
1256
1257\noindent
1258It is possible to leverage constructors/destructors for thread-local objects to get a general handle on when a KT starts/terminates.
1259\item
1260There is a classic \newterm{memory-reclamation} problem for ownership because storage passed to another thread can be returned to a terminated heap.
1261
1262\noindent
1263The classic solution only deletes a heap after all referents are returned, which is complex.
1264The cheap alternative is for heaps to persist for program duration to handle outstanding referent frees.
1265If old referents return storage to a terminated heap, it is handled in the same way as an active heap.
1266To prevent heap blowup, terminated heaps can be reused by new KTs, where a reused heap may be populated with free storage from a prior KT (external fragmentation).
1267In most cases, heap blowup is not a problem because programs have a small allocation set-size, so the free storage from a prior KT is apropos for a new KT.
1268\item
1269There can be significant external fragmentation as the number of KTs increases.
1270
1271\noindent
1272In many concurrent applications, good performance is achieved with the number of KTs proportional to the number of CPUs.
1273Since the number of CPUs is relatively small, and a heap is also relatively small, $\approx$10K bytes (not including any associated freed storage), the worst-case external fragmentation is still small compared to the RAM available on large servers with many CPUs.
1274\item
1275There is the same serially-reusable problem with UTs migrating across KTs.
1276\end{itemize}
1277Tests showed this design produced the closest performance match with the best current allocators, and code inspection showed most of these allocators use different variations of this approach.
1278
1279
1280\vspace{5pt}
1281\noindent
1282The conclusion from this design exercise is: any atomic fence, atomic instruction (lock free), or lock along the allocation fastpath produces significant slowdown.
1283For the T:1 and T:H models, locking must exist along the allocation fastpath because the buckets or heaps might be shared by multiple threads, even when KTs $\le$ N.
1284For the T:H=CPU and 1:1 models, locking is eliminated along the allocation fastpath.
1285However, T:H=CPU has poor operating-system support to determine the CPU id (heap id) and prevent the serially-reusable problem for KTs.
1286More operating system support is required to make this model viable, but there is still the serially-reusable problem with user-level threading.
1287So the 1:1 model had no atomic actions along the fastpath and no special operating-system support requirements.
1288The 1:1 model still has the serially-reusable problem with user-level threading, which is addressed in Section~\ref{s:UserlevelThreadingSupport}, and the greatest potential for heap blowup for certain allocation patterns.
1289
1290
1291% \begin{itemize}
1292% \item
1293% A decentralized design is better to centralized design because their concurrency is better across all bucket-sizes as design 1 shards a few buckets of selected sizes while other designs shards all the buckets. Decentralized designs shard the whole heap which has all the buckets with the addition of sharding @sbrk@ area. So Design 1 was eliminated.
1294% \item
1295% Design 2 was eliminated because it has a possibility of contention in-case of KT > N while Design 3 and 4 have no contention in any scenario.
1296% \item
1297% Design 3 was eliminated because it was slower than Design 4 and it provided no way to achieve user-threading safety using librseq. We had to use CFA interruption handling to achieve user-threading safety which has some cost to it.
1298% that  because of 4 was already slower than Design 3, adding cost of interruption handling on top of that would have made it even slower.
1299% \end{itemize}
1300% Of the four designs for a low-latency memory allocator, the 1:1 model was chosen for the following reasons:
1301
1302% \subsubsection{Advantages of distributed design}
1303%
1304% The distributed design of llheap is concurrent to work in multi-threaded applications.
1305% Some key benefits of the distributed design of llheap are as follows:
1306% \begin{itemize}
1307% \item
1308% The bump allocation is concurrent as memory taken from @sbrk@ is sharded across all heaps as bump allocation reserve. The call to @sbrk@ will be protected using locks but bump allocation (on memory taken from @sbrk@) will not be contended once the @sbrk@ call has returned.
1309% \item
1310% Low or almost no contention on heap resources.
1311% \item
1312% It is possible to use sharing and stealing techniques to share/find unused storage, when a free list is unused or empty.
1313% \item
1314% Distributed design avoids unnecessary locks on resources shared across all KTs.
1315% \end{itemize}
1316
1317\subsubsection{Allocation Latency}
1318
1319A primary goal of llheap is low latency.
1320Two forms of latency are internal and external.
1321Internal latency is the time to perform an allocation, while external latency is time to obtain/return storage from/to the operating system.
1322Ideally latency is $O(1)$ with a small constant.
1323
1324To obtain $O(1)$ internal latency means no searching on the allocation fastpath and largely prohibits coalescing, which leads to external fragmentation.
1325The mitigating factor is that most programs have well behaved allocation patterns, where the majority of allocation operations can be $O(1)$, and heap blowup does not occur without coalescing (although the allocation footprint may be slightly larger).
1326
1327To obtain $O(1)$ external latency means obtaining one large storage area from the operating system and subdividing it across all program allocations, which requires a good guess at the program storage high-watermark and potential large external fragmentation.
1328Excluding real-time operating-systems, operating-system operations are unbounded, and hence some external latency is unavoidable.
1329The mitigating factor is that operating-system calls can often be reduced if a programmer has a sense of the storage high-watermark and the allocator is capable of using this information (see @malloc_expansion@ \pageref{p:malloc_expansion}).
1330Furthermore, while operating-system calls are unbounded, many are now reasonably fast, so their latency is tolerable and infrequent.
1331
1332
1333%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1334
1335\subsection{llheap Structure}
1336
1337Figure~\ref{f:llheapStructure} shows the design of llheap, which uses the following features:
1338\begin{itemize}
1339\item
13401:1 multiple-heap model to minimize the fastpath,
1341\item
1342can be built with or without heap ownership,
1343\item
1344headers per allocation versus containers,
1345\item
1346no coalescing to minimize latency,
1347\item
1348global heap memory (pool) obtained from the operating system using @mmap@ to create and reuse heaps needed by threads,
1349\item
1350local reserved memory (pool) per heap obtained from global pool,
1351\item
1352global reserved memory (pool) obtained from the operating system using @sbrk@ call,
1353\item
1354optional fast-lookup table for converting allocation requests into bucket sizes,
1355\item
1356optional statistic-counters table for accumulating counts of allocation operations.
1357\end{itemize}
1358
1359\begin{figure}
1360\centering
1361% \includegraphics[width=0.65\textwidth]{figures/NewHeapStructure.eps}
1362\input{llheap}
1363\caption{llheap Structure}
1364\label{f:llheapStructure}
1365\end{figure}
1366
1367llheap starts by creating an array of $N$ global heaps from storage obtained using @mmap@, where $N$ is the number of computer cores, that persists for program duration.
1368There is a global bump-pointer to the next free heap in the array.
1369When this array is exhausted, another array of heaps is allocated.
1370There is a global top pointer for a intrusive linked-list to chain free heaps from terminated threads.
1371When statistics are turned on, there is a global top pointer for a intrusive linked-list to chain \emph{all} the heaps, which is traversed to accumulate statistics counters across heaps using @malloc_stats@.
1372
1373When a KT starts, a heap is allocated from the current array for exclusive use by the KT.
1374When a KT terminates, its heap is chained onto the heap free-list for reuse by a new KT, which prevents unbounded growth of number of heaps.
1375The free heaps are stored on stack so hot storage is reused first.
1376Preserving all heaps, created during the program lifetime, solves the storage lifetime problem when ownership is used.
1377This approach wastes storage if a large number of KTs are created/terminated at program start and then the program continues sequentially.
1378llheap can be configured with object ownership, where an object is freed to the heap from which it is allocated, or object no-ownership, where an object is freed to the KT's current heap.
1379
1380Each heap uses segregated free-buckets that have free objects distributed across 91 different sizes from 16 to 4M.
1381All objects in a bucket are of the same size.
1382The number of buckets used is determined dynamically depending on the crossover point from @sbrk@ to @mmap@ allocation using @mallopt( M_MMAP_THRESHOLD )@, \ie small objects managed by the program and large objects managed by the operating system.
1383Each free bucket of a specific size has the following two lists:
1384\begin{itemize}
1385\item
1386A free stack used solely by the KT heap-owner, so push/pop operations do not require locking.
1387The free objects are a stack so hot storage is reused first.
1388\item
1389For ownership, a shared away-stack for KTs to return storage allocated by other KTs, so push/pop operations require locking.
1390When the free stack is empty, the entire ownership stack is removed and becomes the head of the corresponding free stack.
1391\end{itemize}
1392
1393Algorithm~\ref{alg:heapObjectAlloc} shows the allocation outline for an object of size $S$.
1394First, the allocation is divided into small (@sbrk@) or large (@mmap@).
1395For large allocations, the storage is mapped directly from the operating system.
1396For small allocations, $S$ is quantized into a bucket size.
1397Quantizing is performed using a binary search over the ordered bucket array.
1398An optional optimization is fast lookup $O(1)$ for sizes < 64K from a 64K array of type @char@, where each element has an index to the corresponding bucket.
1399The @char@ type restricts the number of bucket sizes to 256.
1400For $S$ > 64K, a binary search is used.
1401Then, the allocation storage is obtained from the following locations (in order), with increasing latency.
1402\begin{enumerate}[topsep=0pt,itemsep=0pt,parsep=0pt]
1403\item
1404bucket's free stack,
1405\item
1406bucket's away stack,
1407\item
1408heap's local pool
1409\item
1410global pool
1411\item
1412operating system (@sbrk@)
1413\end{enumerate}
1414
1415\begin{algorithm}
1416\caption{Dynamic object allocation of size $S$}\label{alg:heapObjectAlloc}
1417\begin{algorithmic}[1]
1418\State $\textit{O} \gets \text{NULL}$
1419\If {$S >= \textit{mmap-threshhold}$}
1420        \State $\textit{O} \gets \text{allocate dynamic memory using system call mmap with size S}$
1421\Else
1422        \State $\textit{B} \gets \text{smallest free-bucket} \geq S$
1423        \If {$\textit{B's free-list is empty}$}
1424                \If {$\textit{B's away-list is empty}$}
1425                        \If {$\textit{heap's allocation buffer} < S$}
1426                                \State $\text{get allocation from global pool (which might call \lstinline{sbrk})}$
1427                        \EndIf
1428                        \State $\textit{O} \gets \text{bump allocate an object of size S from allocation buffer}$
1429                \Else
1430                        \State $\textit{merge B's away-list into free-list}$
1431                        \State $\textit{O} \gets \text{pop an object from B's free-list}$
1432                \EndIf
1433        \Else
1434                \State $\textit{O} \gets \text{pop an object from B's free-list}$
1435        \EndIf
1436        \State $\textit{O's owner} \gets \text{B}$
1437\EndIf
1438\State $\Return \textit{ O}$
1439\end{algorithmic}
1440\end{algorithm}
1441
1442\begin{algorithm}
1443\caption{Dynamic object free at address $A$ with object ownership}\label{alg:heapObjectFreeOwn}
1444\begin{algorithmic}[1]
1445\If {$\textit{A mapped allocation}$}
1446        \State $\text{return A's dynamic memory to system using system call \lstinline{munmap}}$
1447\Else
1448        \State $\text{B} \gets \textit{O's owner}$
1449        \If {$\textit{B is thread-local heap's bucket}$}
1450                \State $\text{push A to B's free-list}$
1451        \Else
1452                \State $\text{push A to B's away-list}$
1453        \EndIf
1454\EndIf
1455\end{algorithmic}
1456\end{algorithm}
1457
1458\begin{algorithm}
1459\caption{Dynamic object free at address $A$ without object ownership}\label{alg:heapObjectFreeNoOwn}
1460\begin{algorithmic}[1]
1461\If {$\textit{A mapped allocation}$}
1462        \State $\text{return A's dynamic memory to system using system call \lstinline{munmap}}$
1463\Else
1464        \State $\text{B} \gets \textit{O's owner}$
1465        \If {$\textit{B is thread-local heap's bucket}$}
1466                \State $\text{push A to B's free-list}$
1467        \Else
1468                \State $\text{C} \gets \textit{thread local heap's bucket with same size as B}$
1469                \State $\text{push A to C's free-list}$
1470        \EndIf
1471\EndIf
1472\end{algorithmic}
1473\end{algorithm}
1474
1475
1476Algorithm~\ref{alg:heapObjectFreeOwn} shows the de-allocation (free) outline for an object at address $A$ with ownership.
1477First, the address is divided into small (@sbrk@) or large (@mmap@).
1478For large allocations, the storage is unmapped back to the operating system.
1479For small allocations, the bucket associated with the request size is retrieved.
1480If the bucket is local to the thread, the allocation is pushed onto the thread's associated bucket.
1481If the bucket is not local to the thread, the allocation is pushed onto the owning thread's associated away stack.
1482
1483Algorithm~\ref{alg:heapObjectFreeNoOwn} shows the de-allocation (free) outline for an object at address $A$ without ownership.
1484The algorithm is the same as for ownership except if the bucket is not local to the thread.
1485Then the corresponding bucket of the owner thread is computed for the deallocating thread, and the allocation is pushed onto the deallocating thread's bucket.
1486
1487Finally, the llheap design funnels \label{p:FunnelRoutine} all allocation/deallocation operations through the @malloc@ and @free@ routines, which are the only routines to directly access and manage the internal data structures of the heap.
1488Other allocation operations, \eg @calloc@, @memalign@, and @realloc@, are composed of calls to @malloc@ and possibly @free@, and may manipulate header information after storage is allocated.
1489This design simplifies heap-management code during development and maintenance.
1490
1491
1492\subsubsection{Alignment}
1493
1494Most dynamic memory allocations have a minimum storage alignment for the contained object(s).
1495Often the minimum memory alignment, M, is the bus width (32 or 64-bit) or the largest register (double, long double) or largest atomic instruction (DCAS) or vector data (MMMX).
1496In general, the minimum storage alignment is 8/16-byte boundary on 32/64-bit computers.
1497For consistency, the object header is normally aligned at this same boundary.
1498Larger alignments must be a power of 2, such as page alignment (4/8K).
1499Any alignment request, N, $\le$ the minimum alignment is handled as a normal allocation with minimal alignment.
1500
1501For alignments greater than the minimum, the obvious approach for aligning to address @A@ is: compute the next address that is a multiple of @N@ after the current end of the heap, @E@, plus room for the header before @A@ and the size of the allocation after @A@, moving the end of the heap to @E'@.
1502\begin{center}
1503\input{Alignment1}
1504\end{center}
1505The storage between @E@ and @H@ is chained onto the appropriate free list for future allocations.
1506The same approach is used for sufficiently large free blocks, where @E@ is the start of the free block, and any unused storage before @H@ or after the allocated object becomes free storage.
1507In this approach, the aligned address @A@ is the same as the allocated storage address @P@, \ie @P@ $=$ @A@ for all allocation routines, which simplifies deallocation.
1508However, if there are a large number of aligned requests, this approach leads to memory fragmentation from the small free areas around the aligned object.
1509As well, it does not work for large allocations, where many memory allocators switch from program @sbrk@ to operating-system @mmap@.
1510The reason is that @mmap@ only starts on a page boundary, and it is difficult to reuse the storage before the alignment boundary for other requests.
1511Finally, this approach is incompatible with allocator designs that funnel allocation requests through @malloc@ as it directly manipulates management information within the allocator to optimize the space/time of a request.
1512
1513Instead, llheap alignment is accomplished by making a \emph{pessimistic} allocation request for sufficient storage to ensure that \emph{both} the alignment and size request are satisfied, \eg:
1514\begin{center}
1515\input{Alignment2}
1516\end{center}
1517The amount of storage necessary is @alignment - M + size@, which ensures there is an address, @A@, after the storage returned from @malloc@, @P@, that is a multiple of @alignment@ followed by sufficient storage for the data object.
1518The approach is pessimistic because if @P@ already has the correct alignment @N@, the initial allocation has already requested sufficient space to move to the next multiple of @N@.
1519For this special case, there is @alignment - M@ bytes of unused storage after the data object, which subsequently can be used by @realloc@.
1520
1521Note, the address returned is @A@, which is subsequently returned to @free@.
1522However, to correctly free the allocated object, the value @P@ must be computable, since that is the value generated by @malloc@ and returned within @memalign@.
1523Hence, there must be a mechanism to detect when @P@ $\neq$ @A@ and how to compute @P@ from @A@.
1524
1525The llheap approach uses two headers:
1526the \emph{original} header associated with a memory allocation from @malloc@, and a \emph{fake} header within this storage before the alignment boundary @A@, which is returned from @memalign@, e.g.:
1527\begin{center}
1528\input{Alignment2Impl}
1529\end{center}
1530Since @malloc@ has a minimum alignment of @M@, @P@ $\neq$ @A@ only holds for alignments greater than @M@.
1531When @P@ $\neq$ @A@, the minimum distance between @P@ and @A@ is @M@ bytes, due to the pessimistic storage-allocation.
1532Therefore, there is always room for an @M@-byte fake header before @A@.
1533
1534The fake header must supply an indicator to distinguish it from a normal header and the location of address @P@ generated by @malloc@.
1535This information is encoded as an offset from A to P and the initialize alignment (discussed in Section~\ref{s:ReallocStickyProperties}).
1536To distinguish a fake header from a normal header, the least-significant bit of the alignment is used because the offset participates in multiple calculations, while the alignment is just remembered data.
1537\begin{center}
1538\input{FakeHeader}
1539\end{center}
1540
1541
1542\subsubsection{\lstinline{realloc} and Sticky Properties}
1543\label{s:ReallocStickyProperties}
1544
1545The allocation routine @realloc@ provides a memory-management pattern for shrinking/enlarging an existing allocation, while maintaining some or all of the object data, rather than performing the following steps manually.
1546\begin{flushleft}
1547\begin{tabular}{ll}
1548\multicolumn{1}{c}{\textbf{realloc pattern}} & \multicolumn{1}{c}{\textbf{manually}} \\
1549\begin{lstlisting}
1550T * naddr = realloc( oaddr, newSize );
1551
1552
1553
1554\end{lstlisting}
1555&
1556\begin{lstlisting}
1557T * naddr = (T *)malloc( newSize ); $\C[2.4in]{// new storage}$
1558memcpy( naddr, addr, oldSize );  $\C{// copy old bytes}$
1559free( addr );                           $\C{// free old storage}$
1560addr = naddr;                           $\C{// change pointer}\CRT$
1561\end{lstlisting}
1562\end{tabular}
1563\end{flushleft}
1564The realloc pattern leverages available storage at the end of an allocation due to bucket sizes, possibly eliminating a new allocation and copying.
1565This pattern is not used enough to reduce storage management costs.
1566In fact, if @oaddr@ is @nullptr@, @realloc@ does a @malloc@, so even the initial @malloc@ can be a @realloc@ for consistency in the allocation pattern.
1567
1568The hidden problem for this pattern is the effect of zero fill and alignment with respect to reallocation.
1569Are these properties transient or persistent (``sticky'')?
1570For example, when memory is initially allocated by @calloc@ or @memalign@ with zero fill or alignment properties, respectively, what happens when those allocations are given to @realloc@ to change size?
1571That is, if @realloc@ logically extends storage into unused bucket space or allocates new storage to satisfy a size change, are initial allocation properties preserved?
1572Currently, allocation properties are not preserved, so subsequent use of @realloc@ storage may cause inefficient execution or errors due to lack of zero fill or alignment.
1573This silent problem is unintuitive to programmers and difficult to locate because it is transient.
1574To prevent these problems, llheap preserves initial allocation properties for the lifetime of an allocation and the semantics of @realloc@ are augmented to preserve these properties, with additional query routines.
1575This change makes the realloc pattern efficient and safe.
1576
1577
1578\subsubsection{Header}
1579
1580To preserve allocation properties requires storing additional information with an allocation,
1581The best available option is the header, where Figure~\ref{f:llheapNormalHeader} shows the llheap storage layout.
1582The header has two data field sized appropriately for 32/64-bit alignment requirements.
1583The first field is a union of three values:
1584\begin{description}
1585\item[bucket pointer]
1586is for allocated storage and points back to the bucket associated with this storage requests (see Figure~\ref{f:llheapStructure} for the fields accessible in a bucket).
1587\item[mapped size]
1588is for mapped storage and is the storage size for use in unmapping.
1589\item[next free block]
1590is for free storage and is an intrusive pointer chaining same-size free blocks onto a bucket's free stack.
1591\end{description}
1592The second field remembers the request size versus the allocation (bucket) size, \eg request 42 bytes which is rounded up to 64 bytes.
1593Since programmers think in request sizes rather than allocation sizes, the request size allows better generation of statistics or errors and also helps in memory management.
1594
1595\begin{figure}
1596\centering
1597\input{Header}
1598\caption{llheap Normal Header}
1599\label{f:llheapNormalHeader}
1600\end{figure}
1601
1602The low-order 3-bits of the first field are \emph{unused} for any stored values as these values are 16-byte aligned by default, whereas the second field may use all of its bits.
1603The 3 unused bits are used to represent mapped allocation, zero filled, and alignment, respectively.
1604Note, the alignment bit is not used in the normal header and the zero-filled/mapped bits are not used in the fake header.
1605This implementation allows a fast test if any of the lower 3-bits are on (@&@ and compare).
1606If no bits are on, it implies a basic allocation, which is handled quickly;
1607otherwise, the bits are analysed and appropriate actions are taken for the complex cases.
1608Since most allocations are basic, they will take significantly less time as the memory operations will be done along the allocation and free fastpath.
1609
1610
1611\subsection{Statistics and Debugging}
1612
1613llheap can be built to accumulate fast and largely contention-free allocation statistics to help understand allocation behaviour.
1614Incrementing statistic counters must appear on the allocation fastpath.
1615As noted, any atomic operation along the fastpath produces a significant increase in allocation costs.
1616To make statistics performant enough for use on running systems, each heap has its own set of statistic counters, so heap operations do not require atomic operations.
1617
1618To locate all statistic counters, heaps are linked together in statistics mode, and this list is locked and traversed to sum all counters across heaps.
1619Note, the list is locked to prevent errors traversing an active list;
1620the statistics counters are not locked and can flicker during accumulation.
1621Figure~\ref{f:StatiticsOutput} shows an example of statistics output, which covers all allocation operations and information about deallocating storage not owned by a thread.
1622No other memory allocator studied provides as comprehensive statistical information.
1623Finally, these statistics were invaluable during the development of this work for debugging and verifying correctness and should be equally valuable to application developers.
1624
1625\begin{figure}
1626\begin{lstlisting}
1627Heap statistics: (storage request / allocation)
1628  malloc >0 calls 2,766; 0 calls 2,064; storage 12,715 / 13,367 bytes
1629  aalloc >0 calls 0; 0 calls 0; storage 0 / 0 bytes
1630  calloc >0 calls 6; 0 calls 0; storage 1,008 / 1,104 bytes
1631  memalign >0 calls 0; 0 calls 0; storage 0 / 0 bytes
1632  amemalign >0 calls 0; 0 calls 0; storage 0 / 0 bytes
1633  cmemalign >0 calls 0; 0 calls 0; storage 0 / 0 bytes
1634  resize >0 calls 0; 0 calls 0; storage 0 / 0 bytes
1635  realloc >0 calls 0; 0 calls 0; storage 0 / 0 bytes
1636  free !null calls 2,766; null calls 4,064; storage 12,715 / 13,367 bytes
1637  away pulls 0; pushes 0; storage 0 / 0 bytes
1638  sbrk calls 1; storage 10,485,760 bytes
1639  mmap calls 10,000; storage 10,000 / 10,035 bytes
1640  munmap calls 10,000; storage 10,000 / 10,035 bytes
1641  threads started 4; exited 3
1642  heaps new 4; reused 0
1643\end{lstlisting}
1644\caption{Statistics Output}
1645\label{f:StatiticsOutput}
1646\end{figure}
1647
1648llheap can also be built with debug checking, which inserts many asserts along all allocation paths.
1649These assertions detect incorrect allocation usage, like double frees, unfreed storage, or memory corruptions because internal values (like header fields) are overwritten.
1650These checks are best effort as opposed to complete allocation checking as in @valgrind@.
1651Nevertheless, the checks detect many allocation problems.
1652There is an unfortunate problem in detecting unfreed storage because some library routines assume their allocations have life-time duration, and hence, do not free their storage.
1653For example, @printf@ allocates a 1024-byte buffer on the first call and never deletes this buffer.
1654To prevent a false positive for unfreed storage, it is possible to specify an amount of storage that is never freed (see @malloc_unfreed@ \pageref{p:malloc_unfreed}), and it is subtracted from the total allocate/free difference.
1655Determining the amount of never-freed storage is annoying, but once done, any warnings of unfreed storage are application related.
1656
1657Tests indicate only a 30\% performance decrease when statistics \emph{and} debugging are enabled, and the latency cost for accumulating statistic is mitigated by limited calls, often only one at the end of the program.
1658
1659
1660\subsection{User-level Threading Support}
1661\label{s:UserlevelThreadingSupport}
1662
1663The serially-reusable problem (see \pageref{p:SeriallyReusable}) occurs for kernel threads in the ``T:H model, H = number of CPUs'' model and for user threads in the ``1:1'' model, where llheap uses the ``1:1'' model.
1664The solution is to prevent interrupts that can result in a CPU or KT change during operations that are logically critical subsections such as starting a memory operation on one KT and completing it on another.
1665Locking these critical subsections negates any attempt for a quick fastpath and results in high contention.
1666For user-level threading, the serially-reusable problem appears with time slicing for preemptable scheduling, as the signal handler context switches to another user-level thread.
1667Without time slicing, a user thread performing a long computation can prevent the execution of (starve) other threads.
1668To prevent starvation for a memory-allocation-intensive thread, \ie the time slice always triggers in an allocation critical-subsection for one thread so the thread never gets time sliced, a thread-local \newterm{rollforward} flag is set in the signal handler when it aborts a time slice.
1669The rollforward flag is tested at the end of each allocation funnel routine (see \pageref{p:FunnelRoutine}), and if set, it is reset and a volunteer yield (context switch) is performed to allow other threads to execute.
1670
1671llheap uses two techniques to detect when execution is in an allocation operation or routine called from allocation operation, to abort any time slice during this period.
1672On the slowpath when executing expensive operations, like @sbrk@ or @mmap@, interrupts are disabled/enabled by setting kernel-thread-local flags so the signal handler aborts immediately.
1673On the fastpath, disabling/enabling interrupts is too expensive as accessing kernel-thread-local storage can be expensive and not user-thread-safe.
1674For example, the ARM processor stores the thread-local pointer in a coprocessor register that cannot perform atomic base-displacement addressing.
1675Hence, there is a window between loading the kernel-thread-local pointer from the coprocessor register into a normal register and adding the displacement when a time slice can move a thread.
1676
1677The fast technique (with lower run time cost) is to define a special code subsection and places all non-interruptible routines in this subsection.
1678The linker places all code in this subsection into a contiguous block of memory, but the order of routines within the block is unspecified.
1679Then, the signal handler compares the program counter at the point of interrupt with the the start and end address of the non-interruptible subsection, and aborts if executing within this subsection and sets the rollforward flag.
1680This technique is fragile because any calls in the non-interruptible code outside of the non-interruptible subsection (like @sbrk@) must be bracketed with disable/enable interrupts and these calls must be along the slowpath.
1681Hence, for correctness, this approach requires inspection of generated assembler code for routines placed in the non-interruptible subsection.
1682This issue is mitigated by the llheap funnel design so only funnel routines and a few statistics routines are placed in the non-interruptible subsection and their assembler code examined.
1683These techniques are used in both the \uC and \CFA versions of llheap as both of these systems have user-level threading.
1684
1685
1686\subsection{Bootstrapping}
1687
1688There are problems bootstrapping a memory allocator.
1689\begin{enumerate}
1690\item
1691Programs can be statically or dynamically linked.
1692\item
1693The order in which the linker schedules startup code is poorly supported so it cannot be controlled entirely.
1694\item
1695Knowing a KT's start and end independently from the KT code is difficult.
1696\end{enumerate}
1697
1698For static linking, the allocator is loaded with the program.
1699Hence, allocation calls immediately invoke the allocator operation defined by the loaded allocation library and there is only one memory allocator used in the program.
1700This approach allows allocator substitution by placing an allocation library before any other in the linked/load path.
1701
1702Allocator substitution is similar for dynamic linking, but the problem is that the dynamic loader starts first and needs to perform dynamic allocations \emph{before} the substitution allocator is loaded.
1703As a result, the dynamic loader uses a default allocator until the substitution allocator is loaded, after which all allocation operations are handled by the substitution allocator, including from the dynamic loader.
1704Hence, some part of the @sbrk@ area may be used by the default allocator and statistics about allocation operations cannot be correct.
1705Furthermore, dynamic linking goes through trampolines, so there is an additional cost along the allocator fastpath for all allocation operations.
1706Testing showed up to a 5\% performance decrease with dynamic linking as compared to static linking, even when using @tls_model("initial-exec")@ so the dynamic loader can obtain tighter binding.
1707
1708All allocator libraries need to perform startup code to initialize data structures, such as the heap array for llheap.
1709The problem is getting initialization done before the first allocator call.
1710However, there does not seem to be mechanism to tell either the static or dynamic loader to first perform initialization code before any calls to a loaded library.
1711Also, initialization code of other libraries and the run-time environment may call memory allocation routines such as \lstinline{malloc}.
1712This compounds the situation as there is no mechanism to tell either the static or dynamic loader to first perform the initialization code of the memory allocator before any other initialization that may involve a dynamic memory allocation call.
1713As a result, calls to allocation routines occur without initialization.
1714To deal with this problem, it is necessary to put a conditional initialization check along the allocation fastpath to trigger initialization (singleton pattern).
1715
1716Two other important execution points are program startup and termination, which include prologue or epilogue code to bootstrap a program, which programmers are unaware of.
1717For example, dynamic-memory allocations before/after the application starts should not be considered in statistics because the application does not make these calls.
1718llheap establishes these two points using routines:
1719\begin{lstlisting}
1720__attribute__(( constructor( 100 ) )) static void startup( void ) {
1721        // clear statistic counters
1722        // reset allocUnfreed counter
1723}
1724__attribute__(( destructor( 100 ) )) static void shutdown( void ) {
1725        // sum allocUnfreed for all heaps
1726        // subtract global unfreed storage
1727        // if allocUnfreed > 0 then print warning message
1728}
1729\end{lstlisting}
1730which use global constructor/destructor priority 100, where the linker calls these routines at program prologue/epilogue in increasing/decreasing order of priority.
1731Application programs may only use global constructor/destructor priorities greater than 100.
1732Hence, @startup@ is called after the program prologue but before the application starts, and @shutdown@ is called after the program terminates but before the program epilogue.
1733By resetting counters in @startup@, prologue allocations are ignored, and checking unfreed storage in @shutdown@ checks only application memory management, ignoring the program epilogue.
1734
1735While @startup@/@shutdown@ apply to the program KT, a concurrent program creates additional KTs that do not trigger these routines.
1736However, it is essential for the allocator to know when each KT is started/terminated.
1737One approach is to create a thread-local object with a construct/destructor, which is triggered after a new KT starts and before it terminates, respectively.
1738\begin{lstlisting}
1739struct ThreadManager {
1740        volatile bool pgm_thread;
1741        ThreadManager() {} // unusable
1742        ~ThreadManager() { if ( pgm_thread ) heapManagerDtor(); }
1743};
1744static thread_local ThreadManager threadManager;
1745\end{lstlisting}
1746Unfortunately, thread-local variables are created lazily, \ie on the first dereference of @threadManager@, which then triggers its constructor.
1747Therefore, the constructor is useless for knowing when a KT starts because the KT must reference it, and the allocator does not control the application KT.
1748Fortunately, the singleton pattern needed for initializing the program KT also triggers KT allocator initialization, which can then reference @pgm_thread@ to call @threadManager@'s constructor, otherwise its destructor is not called.
1749Now when a KT terminates, @~ThreadManager@ is called to chain it onto the global-heap free-stack, where @pgm_thread@ is set to true only for the program KT.
1750The conditional destructor call prevents closing down the program heap, which must remain available because epilogue code may free more storage.
1751
1752Finally, there is a recursive problem when the singleton pattern dereferences @pgm_thread@ to initialize the thread-local object, because its initialization calls @atExit@, which immediately calls @malloc@ to obtain storage.
1753This recursion is handled with another thread-local flag to prevent double initialization.
1754A similar problem exists when the KT terminates and calls member @~ThreadManager@, because immediately afterwards, the terminating KT calls @free@ to deallocate the storage obtained from the @atExit@.
1755In the meantime, the terminated heap has been put on the global-heap free-stack, and may be active by a new KT, so the @atExit@ free is handled as a free to another heap and put onto the away list using locking.
1756
1757For user threading systems, the KTs are controlled by the runtime, and hence, start/end pointers are known and interact directly with the llheap allocator for \uC and \CFA, which eliminates or simplifies several of these problems.
1758The following API was created to provide interaction between the language runtime and the allocator.
1759\begin{lstlisting}
1760void startThread();                     $\C{// KT starts}$
1761void finishThread();                    $\C{// KT ends}$
1762void startup();                         $\C{// when application code starts}$
1763void shutdown();                        $\C{// when application code ends}$
1764bool traceHeap();                       $\C{// enable allocation/free printing for debugging}$
1765bool traceHeapOn();                     $\C{// start printing allocation/free calls}$
1766bool traceHeapOff();                    $\C{// stop printing allocation/free calls}$
1767\end{lstlisting}
1768This kind of API is necessary to allow concurrent runtime systems to interact with different memory allocators in a consistent way.
1769
1770%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1771
1772\subsection{Added Features and Methods}
1773
1774The C dynamic-allocation API (see Figure~\ref{f:CDynamicAllocationAPI}) is neither orthogonal nor complete.
1775For example,
1776\begin{itemize}
1777\item
1778It is possible to zero fill or align an allocation but not both.
1779\item
1780It is \emph{only} possible to zero fill an array allocation.
1781\item
1782It is not possible to resize a memory allocation without data copying.
1783\item
1784@realloc@ does not preserve initial allocation properties.
1785\end{itemize}
1786As a result, programmers must provide these options, which is error prone, resulting in blaming the entire programming language for a poor dynamic-allocation API.
1787Furthermore, newer programming languages have better type systems that can provide safer and more powerful APIs for memory allocation.
1788
1789\begin{figure}
1790\begin{lstlisting}
1791void * malloc( size_t size );
1792void * calloc( size_t nmemb, size_t size );
1793void * realloc( void * ptr, size_t size );
1794void * reallocarray( void * ptr, size_t nmemb, size_t size );
1795void free( void * ptr );
1796void * memalign( size_t alignment, size_t size );
1797void * aligned_alloc( size_t alignment, size_t size );
1798int posix_memalign( void ** memptr, size_t alignment, size_t size );
1799void * valloc( size_t size );
1800void * pvalloc( size_t size );
1801
1802struct mallinfo mallinfo( void );
1803int mallopt( int param, int val );
1804int malloc_trim( size_t pad );
1805size_t malloc_usable_size( void * ptr );
1806void malloc_stats( void );
1807int malloc_info( int options, FILE * fp );
1808\end{lstlisting}
1809\caption{C Dynamic-Allocation API}
1810\label{f:CDynamicAllocationAPI}
1811\end{figure}
1812
1813The following presents design and API changes for C, \CC (\uC), and \CFA, all of which are implemented in llheap.
1814
1815
1816\subsubsection{Out of Memory}
1817
1818Most allocators use @nullptr@ to indicate an allocation failure, specifically out of memory;
1819hence the need to return an alternate value for a zero-sized allocation.
1820A different approach allowed by @C API@ is to abort a program when out of memory and return @nullptr@ for a zero-sized allocation.
1821In theory, notifying the programmer of memory failure allows recovery;
1822in practice, it is almost impossible to gracefully recover when out of memory.
1823Hence, the cheaper approach of returning @nullptr@ for a zero-sized allocation is chosen because no pseudo allocation is necessary.
1824
1825
1826\subsubsection{C Interface}
1827
1828For C, it is possible to increase functionality and orthogonality of the dynamic-memory API to make allocation better for programmers.
1829
1830For existing C allocation routines:
1831\begin{itemize}
1832\item
1833@calloc@ sets the sticky zero-fill property.
1834\item
1835@memalign@, @aligned_alloc@, @posix_memalign@, @valloc@ and @pvalloc@ set the sticky alignment property.
1836\item
1837@realloc@ and @reallocarray@ preserve sticky properties.
1838\end{itemize}
1839
1840The C dynamic-memory API is extended with the following routines:
1841
1842\paragraph{\lstinline{void * aalloc( size_t dim, size_t elemSize )}}
1843extends @calloc@ for allocating a dynamic array of objects without calculating the total size of array explicitly but \emph{without} zero-filling the memory.
1844@aalloc@ is significantly faster than @calloc@, which is the only alternative given by the standard memory-allocation routines.
1845
1846\noindent\textbf{Usage}
1847@aalloc@ takes two parameters.
1848\begin{itemize}
1849\item
1850@dim@: number of array objects
1851\item
1852@elemSize@: size of array object
1853\end{itemize}
1854It returns the address of the dynamic array or @NULL@ if either @dim@ or @elemSize@ are zero.
1855
1856\paragraph{\lstinline{void * resize( void * oaddr, size_t size )}}
1857extends @realloc@ for resizing an existing allocation \emph{without} copying previous data into the new allocation or preserving sticky properties.
1858@resize@ is significantly faster than @realloc@, which is the only alternative.
1859
1860\noindent\textbf{Usage}
1861@resize@ takes two parameters.
1862\begin{itemize}
1863\item
1864@oaddr@: address to be resized
1865\item
1866@size@: new allocation size (smaller or larger than previous)
1867\end{itemize}
1868It returns the address of the old or new storage with the specified new size or @NULL@ if @size@ is zero.
1869
1870\paragraph{\lstinline{void * amemalign( size_t alignment, size_t dim, size_t elemSize )}}
1871extends @aalloc@ and @memalign@ for allocating an aligned dynamic array of objects.
1872Sets sticky alignment property.
1873
1874\noindent\textbf{Usage}
1875@amemalign@ takes three parameters.
1876\begin{itemize}
1877\item
1878@alignment@: alignment requirement
1879\item
1880@dim@: number of array objects
1881\item
1882@elemSize@: size of array object
1883\end{itemize}
1884It returns the address of the aligned dynamic-array or @NULL@ if either @dim@ or @elemSize@ are zero.
1885
1886\paragraph{\lstinline{void * cmemalign( size_t alignment, size_t dim, size_t elemSize )}}
1887extends @amemalign@ with zero fill and has the same usage as @amemalign@.
1888Sets sticky zero-fill and alignment property.
1889It returns the address of the aligned, zero-filled dynamic-array or @NULL@ if either @dim@ or @elemSize@ are zero.
1890
1891\paragraph{\lstinline{size_t malloc_alignment( void * addr )}}
1892returns the alignment of the dynamic object for use in aligning similar allocations.
1893
1894\noindent\textbf{Usage}
1895@malloc_alignment@ takes one parameter.
1896\begin{itemize}
1897\item
1898@addr@: address of an allocated object.
1899\end{itemize}
1900It returns the alignment of the given object, where objects not allocated with alignment return the minimal allocation alignment.
1901
1902\paragraph{\lstinline{bool malloc_zero_fill( void * addr )}}
1903returns true if the object has the zero-fill sticky property for use in zero filling similar allocations.
1904
1905\noindent\textbf{Usage}
1906@malloc_zero_fill@ takes one parameters.
1907
1908\begin{itemize}
1909\item
1910@addr@: address of an allocated object.
1911\end{itemize}
1912It returns true if the zero-fill sticky property is set and false otherwise.
1913
1914\paragraph{\lstinline{size_t malloc_size( void * addr )}}
1915returns the request size of the dynamic object (updated when an object is resized) for use in similar allocations.
1916See also @malloc_usable_size@.
1917
1918\noindent\textbf{Usage}
1919@malloc_size@ takes one parameters.
1920\begin{itemize}
1921\item
1922@addr@: address of an allocated object.
1923\end{itemize}
1924It returns the request size or zero if @addr@ is @NULL@.
1925
1926\paragraph{\lstinline{int malloc_stats_fd( int fd )}}
1927changes the file descriptor where @malloc_stats@ writes statistics (default @stdout@).
1928
1929\noindent\textbf{Usage}
1930@malloc_stats_fd@ takes one parameters.
1931\begin{itemize}
1932\item
1933@fd@: file descriptor.
1934\end{itemize}
1935It returns the previous file descriptor.
1936
1937\paragraph{\lstinline{size_t malloc_expansion()}}
1938\label{p:malloc_expansion}
1939set the amount (bytes) to extend the heap when there is insufficient free storage to service an allocation request.
1940It returns the heap extension size used throughout a program when requesting more memory from the system using @sbrk@ system-call, \ie called once at heap initialization.
1941
1942\paragraph{\lstinline{size_t malloc_mmap_start()}}
1943set the crossover between allocations occurring in the @sbrk@ area or separately mapped.
1944It returns the crossover point used throughout a program, \ie called once at heap initialization.
1945
1946\paragraph{\lstinline{size_t malloc_unfreed()}}
1947\label{p:malloc_unfreed}
1948amount subtracted to adjust for unfreed program storage (debug only).
1949It returns the new subtraction amount and called by @malloc_stats@.
1950
1951
1952\subsubsection{\CC Interface}
1953
1954The following extensions take advantage of overload polymorphism in the \CC type-system.
1955
1956\paragraph{\lstinline{void * resize( void * oaddr, size_t nalign, size_t size )}}
1957extends @resize@ with an alignment re\-quirement.
1958
1959\noindent\textbf{Usage}
1960takes three parameters.
1961\begin{itemize}
1962\item
1963@oaddr@: address to be resized
1964\item
1965@nalign@: alignment requirement
1966\item
1967@size@: new allocation size (smaller or larger than previous)
1968\end{itemize}
1969It returns the address of the old or new storage with the specified new size and alignment, or @NULL@ if @size@ is zero.
1970
1971\paragraph{\lstinline{void * realloc( void * oaddr, size_t nalign, size_t size )}}
1972extends @realloc@ with an alignment re\-quirement and has the same usage as aligned @resize@.
1973
1974
1975\subsubsection{\CFA Interface}
1976
1977The following extensions take advantage of overload polymorphism in the \CFA type-system.
1978The key safety advantage of the \CFA type system is using the return type to select overloads;
1979hence, a polymorphic routine knows the returned type and its size.
1980This capability is used to remove the object size parameter and correctly cast the return storage to match the result type.
1981For example, the following is the \CFA wrapper for C @malloc@:
1982\begin{cfa}
1983forall( T & | sized(T) ) {
1984        T * malloc( void ) {
1985                if ( _Alignof(T) <= libAlign() ) return @(T *)@malloc( @sizeof(T)@ ); // C allocation
1986                else return @(T *)@memalign( @_Alignof(T)@, @sizeof(T)@ ); // C allocation
1987        } // malloc
1988\end{cfa}
1989and is used as follows:
1990\begin{lstlisting}
1991int * i = malloc();
1992double * d = malloc();
1993struct Spinlock { ... } __attribute__(( aligned(128) ));
1994Spinlock * sl = malloc();
1995\end{lstlisting}
1996where each @malloc@ call provides the return type as @T@, which is used with @sizeof@, @_Alignof@, and casting the storage to the correct type.
1997This interface removes many of the common allocation errors in C programs.
1998Figure~\ref{f:CFADynamicAllocationAPI} show the \CFA wrappers for the equivalent C/\CC allocation routines with same semantic behaviour.
1999
2000\begin{figure}
2001\begin{lstlisting}
2002T * malloc( void );
2003T * aalloc( size_t dim );
2004T * calloc( size_t dim );
2005T * resize( T * ptr, size_t size );
2006T * realloc( T * ptr, size_t size );
2007T * memalign( size_t align );
2008T * amemalign( size_t align, size_t dim );
2009T * cmemalign( size_t align, size_t dim  );
2010T * aligned_alloc( size_t align );
2011int posix_memalign( T ** ptr, size_t align );
2012T * valloc( void );
2013T * pvalloc( void );
2014\end{lstlisting}
2015\caption{\CFA C-Style Dynamic-Allocation API}
2016\label{f:CFADynamicAllocationAPI}
2017\end{figure}
2018
2019In addition to the \CFA C-style allocator interface, a new allocator interface is provided to further increase orthogonality and usability of dynamic-memory allocation.
2020This interface helps programmers in three ways.
2021\begin{itemize}
2022\item
2023naming: \CFA regular and @ttype@ polymorphism (@ttype@ polymorphism in \CFA is similar to \CC variadic templates) is used to encapsulate a wide range of allocation functionality into a single routine name, so programmers do not have to remember multiple routine names for different kinds of dynamic allocations.
2024\item
2025named arguments: individual allocation properties are specified using postfix function call, so the programmers do not have to remember parameter positions in allocation calls.
2026\item
2027object size: like the \CFA's C-interface, programmers do not have to specify object size or cast allocation results.
2028\end{itemize}
2029Note, postfix function call is an alternative call syntax, using backtick @`@, where the argument appears before the function name, \eg
2030\begin{cfa}
2031duration ?@`@h( int h );                // ? denote the position of the function operand
2032duration ?@`@m( int m );
2033duration ?@`@s( int s );
2034duration dur = 3@`@h + 42@`@m + 17@`@s;
2035\end{cfa}
2036
2037\paragraph{\lstinline{T * alloc( ... )} or \lstinline{T * alloc( size_t dim, ... )}}
2038is overloaded with a variable number of specific allocation operations, or an integer dimension parameter followed by a variable number of specific allocation operations.
2039These allocation operations can be passed as named arguments when calling the \lstinline{alloc} routine.
2040A call without parameters returns a dynamically allocated object of type @T@ (@malloc@).
2041A call with only the dimension (dim) parameter returns a dynamically allocated array of objects of type @T@ (@aalloc@).
2042The variable number of arguments consist of allocation properties, which can be combined to produce different kinds of allocations.
2043The only restriction is for properties @realloc@ and @resize@, which cannot be combined.
2044
2045The allocation property functions are:
2046\subparagraph{\lstinline{T_align ?`align( size_t alignment )}}
2047to align the allocation.
2048The alignment parameter must be $\ge$ the default alignment (@libAlign()@ in \CFA) and a power of two, \eg:
2049\begin{cfa}
2050int * i0 = alloc( @4096`align@ );  sout | i0 | nl;
2051int * i1 = alloc( 3, @4096`align@ );  sout | i1; for (i; 3 ) sout | &i1[i]; sout | nl;
2052
20530x555555572000
20540x555555574000 0x555555574000 0x555555574004 0x555555574008
2055\end{cfa}
2056returns a dynamic object and object array aligned on a 4096-byte boundary.
2057
2058\subparagraph{\lstinline{S_fill(T) ?`fill ( /* various types */ )}}
2059to initialize storage.
2060There are three ways to fill storage:
2061\begin{enumerate}
2062\item
2063A char fills each byte of each object.
2064\item
2065An object of the returned type fills each object.
2066\item
2067An object array pointer fills some or all of the corresponding object array.
2068\end{enumerate}
2069For example:
2070\begin{cfa}[numbers=left]
2071int * i0 = alloc( @0n`fill@ );  sout | *i0 | nl;  // disambiguate 0
2072int * i1 = alloc( @5`fill@ );  sout | *i1 | nl;
2073int * i2 = alloc( @'\xfe'`fill@ ); sout | hex( *i2 ) | nl;
2074int * i3 = alloc( 5, @5`fill@ );  for ( i; 5 ) sout | i3[i]; sout | nl;
2075int * i4 = alloc( 5, @0xdeadbeefN`fill@ );  for ( i; 5 ) sout | hex( i4[i] ); sout | nl;
2076int * i5 = alloc( 5, @i3`fill@ );  for ( i; 5 ) sout | i5[i]; sout | nl;
2077int * i6 = alloc( 5, @[i3, 3]`fill@ );  for ( i; 5 ) sout | i6[i]; sout | nl;
2078\end{cfa}
2079\begin{lstlisting}[numbers=left]
20800
20815
20820xfefefefe
20835 5 5 5 5
20840xdeadbeef 0xdeadbeef 0xdeadbeef 0xdeadbeef 0xdeadbeef
20855 5 5 5 5
20865 5 5 -555819298 -555819298  // two undefined values
2087\end{lstlisting}
2088Examples 1 to 3 fill an object with a value or characters.
2089Examples 4 to 7 fill an array of objects with values, another array, or part of an array.
2090
2091\subparagraph{\lstinline{S_resize(T) ?`resize( void * oaddr )}}
2092used to resize, realign, and fill, where the old object data is not copied to the new object.
2093The old object type may be different from the new object type, since the values are not used.
2094For example:
2095\begin{cfa}[numbers=left]
2096int * i = alloc( @5`fill@ );  sout | i | *i;
2097i = alloc( @i`resize@, @256`align@, @7`fill@ );  sout | i | *i;
2098double * d = alloc( @i`resize@, @4096`align@, @13.5`fill@ );  sout | d | *d;
2099\end{cfa}
2100\begin{lstlisting}[numbers=left]
21010x55555556d5c0 5
21020x555555570000 7
21030x555555571000 13.5
2104\end{lstlisting}
2105Examples 2 to 3 change the alignment, fill, and size for the initial storage of @i@.
2106
2107\begin{cfa}[numbers=left]
2108int * ia = alloc( 5, @5`fill@ );  for ( i; 5 ) sout | ia[i]; sout | nl;
2109ia = alloc( 10, @ia`resize@, @7`fill@ ); for ( i; 10 ) sout | ia[i]; sout | nl;
2110sout | ia; ia = alloc( 5, @ia`resize@, @512`align@, @13`fill@ ); sout | ia; for ( i; 5 ) sout | ia[i]; sout | nl;;
2111ia = alloc( 3, @ia`resize@, @4096`align@, @2`fill@ );  sout | ia; for ( i; 3 ) sout | &ia[i] | ia[i]; sout | nl;
2112\end{cfa}
2113\begin{lstlisting}[numbers=left]
21145 5 5 5 5
21157 7 7 7 7 7 7 7 7 7
21160x55555556d560 0x555555571a00 13 13 13 13 13
21170x555555572000 0x555555572000 2 0x555555572004 2 0x555555572008 2
2118\end{lstlisting}
2119Examples 2 to 4 change the array size, alignment and fill for the initial storage of @ia@.
2120
2121\subparagraph{\lstinline{S_realloc(T) ?`realloc( T * a ))}}
2122used to resize, realign, and fill, where the old object data is copied to the new object.
2123The old object type must be the same as the new object type, since the value is used.
2124Note, for @fill@, only the extra space after copying the data from the old object is filled with the given parameter.
2125For example:
2126\begin{cfa}[numbers=left]
2127int * i = alloc( @5`fill@ );  sout | i | *i;
2128i = alloc( @i`realloc@, @256`align@ );  sout | i | *i;
2129i = alloc( @i`realloc@, @4096`align@, @13`fill@ );  sout | i | *i;
2130\end{cfa}
2131\begin{lstlisting}[numbers=left]
21320x55555556d5c0 5
21330x555555570000 5
21340x555555571000 5
2135\end{lstlisting}
2136Examples 2 to 3 change the alignment for the initial storage of @i@.
2137The @13`fill@ in example 3 does nothing because no extra space is added.
2138
2139\begin{cfa}[numbers=left]
2140int * ia = alloc( 5, @5`fill@ );  for ( i; 5 ) sout | ia[i]; sout | nl;
2141ia = alloc( 10, @ia`realloc@, @7`fill@ ); for ( i; 10 ) sout | ia[i]; sout | nl;
2142sout | ia; ia = alloc( 1, @ia`realloc@, @512`align@, @13`fill@ ); sout | ia; for ( i; 1 ) sout | ia[i]; sout | nl;;
2143ia = alloc( 3, @ia`realloc@, @4096`align@, @2`fill@ );  sout | ia; for ( i; 3 ) sout | &ia[i] | ia[i]; sout | nl;
2144\end{cfa}
2145\begin{lstlisting}[numbers=left]
21465 5 5 5 5
21475 5 5 5 5 7 7 7 7 7
21480x55555556c560 0x555555570a00 5
21490x555555571000 0x555555571000 5 0x555555571004 2 0x555555571008 2
2150\end{lstlisting}
2151Examples 2 to 4 change the array size, alignment and fill for the initial storage of @ia@.
2152The @13`fill@ in example 3 does nothing because no extra space is added.
2153
2154These \CFA allocation features are used extensively in the development of the \CFA runtime.
2155
2156
2157\section{Benchmarks}
2158\label{s:Benchmarks}
2159
2160%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2161%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2162%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Micro Benchmark Suite
2163%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2164%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2165
2166There are two basic approaches for evaluating computer software: benchmarks and micro-benchmarks.
2167\begin{description}
2168\item[Benchmarks]
2169are a suite of application programs (SPEC CPU/WEB) that are exercised in a common way (inputs) to find differences among underlying software implementations associated with an application (compiler, memory allocator, web server, \etc).
2170The applications are supposed to represent common execution patterns that need to perform well with respect to an underlying software implementation.
2171Benchmarks are often criticized for having overlapping patterns, insufficient patterns, or extraneous code that masks patterns.
2172\item[Micro-Benchmarks]
2173attempt to extract the common execution patterns associated with an application and run the pattern independently.
2174This approach removes any masking from extraneous application code, allows execution pattern to be very precise, and provides an opportunity for the execution pattern to have multiple independent tuning adjustments (knobs).
2175Micro-benchmarks are often criticized for inadequately representing real-world applications.
2176\end{description}
2177
2178While some crucial software components have standard benchmarks, no standard benchmark exists for testing and comparing memory allocators.
2179In the past, an assortment of applications have been used for benchmarking allocators~\cite{Detlefs93,Berger00,Berger01,berger02reconsidering}: P2C, GS, Espresso/Espresso-2, CFRAC/CFRAC-2, GMake, GCC, Perl/Perl-2, Gawk/Gawk-2, XPDF/XPDF-2, ROBOOP, Lindsay.
2180As well, an assortment of micro-benchmark have been used for benchmarking allocators~\cite{larson99memory,Berger00,streamflow}: threadtest, shbench, Larson, consume, false sharing.
2181Many of these benchmark applications and micro-benchmarks are old and may not reflect current application allocation patterns.
2182
2183This work designs and examines a new set of micro-benchmarks for memory allocators that test a variety of allocation patterns, each with multiple tuning parameters.
2184The aim of the micro-benchmark suite is to create a set of programs that can evaluate a memory allocator based on the key performance metrics such as speed, memory overhead, and cache performance.
2185% These programs can be taken as a standard to benchmark an allocator's basic goals.
2186These programs give details of an allocator's memory overhead and speed under certain allocation patterns.
2187The allocation patterns are configurable (adjustment knobs) to observe an allocator's performance across a spectrum allocation patterns, which is seldom possible with benchmark programs.
2188Each micro-benchmark program has multiple control knobs specified by command-line arguments.
2189
2190The new micro-benchmark suite measures performance by allocating dynamic objects and measuring specific metrics.
2191An allocator's speed is benchmarked in different ways, as are issues like false sharing.
2192
2193
2194\subsection{Prior Multi-Threaded Micro-Benchmarks}
2195
2196Modern memory allocators, such as llheap, must handle multi-threaded programs at the KT and UT level.
2197The following multi-threaded micro-benchmarks are presented to give a sense of prior work~\cite{Berger00} at the KT level.
2198None of the prior work addresses multi-threading at the UT level.
2199
2200
2201\subsubsection{threadtest}
2202
2203This benchmark stresses the ability of the allocator to handle different threads allocating and deallocating independently.
2204There is no interaction among threads, \ie no object sharing.
2205Each thread repeatedly allocates 100,000 \emph{8-byte} objects then deallocates them in the order they were allocated.
2206The execution time of the benchmark evaluates its efficiency.
2207
2208
2209\subsubsection{shbench}
2210
2211This benchmark is similar to threadtest but each thread randomly allocate and free a number of \emph{random-sized} objects.
2212It is a stress test that also uses runtime to determine efficiency of the allocator.
2213
2214
2215\subsubsection{Larson}
2216
2217This benchmark simulates a server environment.
2218Multiple threads are created where each thread allocates and frees a number of random-sized objects within a size range.
2219Before the thread terminates, it passes its array of 10,000 objects to a new child thread to continue the process.
2220The number of thread generations varies depending on the thread speed.
2221It calculates memory operations per second as an indicator of the memory allocator's performance.
2222
2223
2224\subsection{New Multi-Threaded Micro-Benchmarks}
2225
2226The following new benchmarks were created to assess multi-threaded programs at the KT and UT level.
2227For generating random values, two generators are supported: uniform~\cite{uniformPRNG} and fisher~\cite{fisherPRNG}.
2228
2229
2230\subsubsection{Churn Benchmark}
2231\label{s:ChurnBenchmark}
2232
2233The churn benchmark measures the runtime speed of an allocator in a multi-threaded scenario, where each thread extensively allocates and frees dynamic memory.
2234Only @malloc@ and @free@ are used to eliminate any extra cost, such as @memcpy@ in @calloc@ or @realloc@.
2235Churn simulates a memory intensive program and can be tuned to create different scenarios.
2236
2237Figure~\ref{fig:ChurnBenchFig} shows the pseudo code for the churn micro-benchmark.
2238This benchmark creates a buffer with M spots and an allocation in each spot, and then starts K threads.
2239Each thread picks a random spot in M, frees the object currently at that spot, and allocates a new object for that spot.
2240Each thread repeats this cycle N times.
2241The main thread measures the total time taken for the whole benchmark and that time is used to evaluate the memory allocator's performance.
2242
2243\begin{figure}
2244\centering
2245\begin{lstlisting}
2246Main Thread
2247        create worker threads
2248        note time T1
2249        ...
2250        note time T2
2251        churn_speed = (T2 - T1)
2252Worker Thread
2253        initialize variables
2254        ...
2255        for ( N )
2256                R = random spot in array
2257                free R
2258                allocate new object at R
2259\end{lstlisting}
2260%\includegraphics[width=1\textwidth]{figures/bench-churn.eps}
2261\caption{Churn Benchmark}
2262\label{fig:ChurnBenchFig}
2263\end{figure}
2264
2265The adjustment knobs for churn are:
2266\begin{description}[itemsep=0pt,parsep=0pt]
2267\item[thread:]
2268number of threads (K).
2269\item[spots:]
2270number of spots for churn (M).
2271\item[obj:]
2272number of objects per thread (N).
2273\item[max:]
2274maximum object size.
2275\item[min:]
2276minimum object size.
2277\item[step:]
2278object size increment.
2279\item[distro:]
2280object size distribution
2281\end{description}
2282
2283
2284\subsubsection{Cache Thrash}
2285\label{sec:benchThrashSec}
2286
2287The cache-thrash micro-benchmark measures allocator-induced active false-sharing as illustrated in Section~\ref{s:AllocatorInducedActiveFalseSharing}.
2288If memory is allocated for multiple threads on the same cache line, this can significantly slow down program performance.
2289When threads share a cache line, frequent reads/writes to their cache-line object causes cache misses, which cause escalating delays as cache distance increases.
2290
2291Cache thrash tries to create a scenario that leads to false sharing, if the underlying memory allocator is allocating dynamic memory to multiple threads on the same cache lines.
2292Ideally, a memory allocator should distance the dynamic memory region of one thread from another.
2293Having multiple threads allocating small objects simultaneously can cause a memory allocator to allocate objects on the same cache line, if its not distancing the memory among different threads.
2294
2295Figure~\ref{fig:benchThrashFig} shows the pseudo code for the cache-thrash micro-benchmark.
2296First, it creates K worker threads.
2297Each worker thread allocates an object and intensively reads/writes it for M times to possible invalidate cache lines that may interfere with other threads sharing the same cache line.
2298Each thread repeats this for N times.
2299The main thread measures the total time taken for all worker threads to complete.
2300Worker threads sharing cache lines with each other are expected to take longer.
2301
2302\begin{figure}
2303\centering
2304\input{AllocInducedActiveFalseSharing}
2305\medskip
2306\begin{lstlisting}
2307Main Thread
2308        create worker threads
2309        ...
2310        signal workers to allocate
2311        ...
2312        signal workers to free
2313        ...
2314Worker Thread$\(_1\)$
2315        warm up memory in chunks of 16 bytes
2316        ...
2317        For N
2318                malloc an object
2319                read/write the object M times
2320                free the object
2321        ...
2322Worker Thread$\(_2\)$
2323        // same as Worker Thread$\(_1\)$
2324\end{lstlisting}
2325%\input{MemoryOverhead}
2326%\includegraphics[width=1\textwidth]{figures/bench-cache-thrash.eps}
2327\caption{Allocator-Induced Active False-Sharing Benchmark}
2328\label{fig:benchThrashFig}
2329\end{figure}
2330
2331The adjustment knobs for cache access scenarios are:
2332\begin{description}[itemsep=0pt,parsep=0pt]
2333\item[thread:]
2334number of threads (K).
2335\item[iterations:]
2336iterations of cache benchmark (N).
2337\item[cacheRW:]
2338repetitions of reads/writes to object (M).
2339\item[size:]
2340object size.
2341\end{description}
2342
2343
2344\subsubsection{Cache Scratch}
2345\label{s:CacheScratch}
2346
2347The cache-scratch micro-benchmark measures allocator-induced passive false-sharing as illustrated in Section~\ref{s:AllocatorInducedPassiveFalseSharing}.
2348As with cache thrash, if memory is allocated for multiple threads on the same cache line, this can significantly slow down program performance.
2349In this scenario, the false sharing is being caused by the memory allocator although it is started by the program sharing an object.
2350
2351% An allocator can unintentionally induce false sharing depending upon its management of the freed objects.
2352% If thread Thread$_1$ allocates multiple objects together, they may be allocated on the same cache line by the memory allocator.
2353% If Thread$_1$ passes these object to thread Thread$_2$, then both threads may share the same cache line but this scenario is not induced by the allocator;
2354% instead, the program induced this situation.
2355% Now if Thread$_2$ frees this object and then allocate an object of the same size, the allocator may return the same object, which is on a cache line shared with thread Thread$_1$.
2356
2357Cache scratch tries to create a scenario that leads to false sharing and should make the memory allocator preserve the program-induced false sharing, if it does not return a freed object to its owner thread and, instead, re-uses it instantly.
2358An allocator using object ownership, as described in subsection Section~\ref{s:Ownership}, is less susceptible to allocator-induced passive false-sharing.
2359If the object is returned to the thread that owns it, then the new object that the thread gets is less likely to be on the same cache line.
2360
2361Figure~\ref{fig:benchScratchFig} shows the pseudo code for the cache-scratch micro-benchmark.
2362First, it allocates K dynamic objects together, one for each of the K worker threads, possibly causing memory allocator to allocate these objects on the same cache line.
2363Then it create K worker threads and passes an object from the K allocated objects to each of the K threads.
2364Each worker thread frees the object passed by the main thread.
2365Then, it allocates an object and reads/writes it repetitively for M times possibly causing frequent cache invalidations.
2366Each worker repeats this N times.
2367
2368\begin{figure}
2369\centering
2370\input{AllocInducedPassiveFalseSharing}
2371\medskip
2372\begin{lstlisting}
2373Main Thread
2374        malloc N objects $for$ each worker $thread$
2375        create worker threads and pass N objects to each worker
2376        ...
2377        signal workers to allocate
2378        ...
2379        signal workers to free
2380        ...
2381Worker Thread$\(_1\)$
2382        warmup memory in chunks of 16 bytes
2383        ...
2384        free the object passed by the Main Thread
2385        For N
2386                malloc new object
2387                read/write the object M times
2388                free the object
2389        ...
2390Worker Thread$\(_2\)$
2391        // same as Worker Thread$\(_1\)$
2392\end{lstlisting}
2393%\includegraphics[width=1\textwidth]{figures/bench-cache-scratch.eps}
2394\caption{Program-Induced Passive False-Sharing Benchmark}
2395\label{fig:benchScratchFig}
2396\end{figure}
2397
2398Each thread allocating an object after freeing the original object passed by the main thread should cause the memory allocator to return the same object that was initially allocated by the main thread if the allocator did not return the initial object back to its owner (main thread).
2399Then, intensive read/write on the shared cache line by multiple threads should slow down worker threads due to to high cache invalidations and misses.
2400Main thread measures the total time taken for all the workers to complete.
2401
2402Similar to benchmark cache thrash in subsection Section~\ref{sec:benchThrashSec}, different cache access scenarios can be created using the following command-line arguments.
2403\begin{description}[topsep=0pt,itemsep=0pt,parsep=0pt]
2404\item[threads:]
2405number of threads (K).
2406\item[iterations:]
2407iterations of cache benchmark (N).
2408\item[cacheRW:]
2409repetitions of reads/writes to object (M).
2410\item[size:]
2411object size.
2412\end{description}
2413
2414
2415\subsubsection{Speed Micro-Benchmark}
2416\label{s:SpeedMicroBenchmark}
2417\vspace*{-4pt}
2418
2419The speed benchmark measures the runtime speed of individual and sequences of memory allocation routines:
2420\begin{enumerate}[topsep=-5pt,itemsep=0pt,parsep=0pt]
2421\item malloc
2422\item realloc
2423\item free
2424\item calloc
2425\item malloc-free
2426\item realloc-free
2427\item calloc-free
2428\item malloc-realloc
2429\item calloc-realloc
2430\item malloc-realloc-free
2431\item calloc-realloc-free
2432\item malloc-realloc-free-calloc
2433\end{enumerate}
2434
2435Figure~\ref{fig:SpeedBenchFig} shows the pseudo code for the speed micro-benchmark.
2436Each routine in the chain is called for N objects and then those allocated objects are used when calling the next routine in the allocation chain.
2437This tests the latency of the memory allocator when multiple routines are chained together, \eg the call sequence malloc-realloc-free-calloc gives a complete picture of the major allocation routines when combined together.
2438For each chain, the time is recorded to visualize performance of a memory allocator against each chain.
2439
2440\begin{figure}
2441\centering
2442\begin{lstlisting}[morekeywords={foreach}]
2443Main Thread
2444        create worker threads
2445        foreach ( allocation chain )
2446                note time T1
2447                ...
2448                note time T2
2449                chain_speed = (T2 - T1) / number-of-worker-threads * N )
2450Worker Thread
2451        initialize variables
2452        ...
2453        foreach ( routine in allocation chain )
2454                call routine N times
2455\end{lstlisting}
2456%\includegraphics[width=1\textwidth]{figures/bench-speed.eps}
2457\caption{Speed Benchmark}
2458\label{fig:SpeedBenchFig}
2459\end{figure}
2460
2461The adjustment knobs for memory usage are:
2462\begin{description}[itemsep=0pt,parsep=0pt]
2463\item[max:]
2464maximum object size.
2465\item[min:]
2466minimum object size.
2467\item[step:]
2468object size increment.
2469\item[distro:]
2470object size distribution.
2471\item[objects:]
2472number of objects per thread.
2473\item[workers:]
2474number of worker threads.
2475\end{description}
2476
2477
2478\subsubsection{Memory Micro-Benchmark}
2479\label{s:MemoryMicroBenchmark}
2480
2481The memory micro-benchmark measures the memory overhead of an allocator.
2482It allocates a number of dynamic objects and reads @/proc/self/proc/maps@ to get the total memory requested by the allocator from the OS.
2483It calculates the memory overhead by computing the difference between the memory the allocator requests from the OS and the memory that the program allocates.
2484This micro-benchmark is like Larson and stresses the ability of an allocator to deal with object sharing.
2485
2486Figure~\ref{fig:MemoryBenchFig} shows the pseudo code for the memory micro-benchmark.
2487It creates a producer-consumer scenario with K producer threads and each producer has M consumer threads.
2488A producer has a separate buffer for each consumer and allocates N objects of random sizes following a configurable distribution for each consumer.
2489A consumer frees these objects.
2490After every memory operation, program memory usage is recorded throughout the runtime.
2491This data is used to visualize the memory usage and consumption for the program.
2492
2493\begin{figure}
2494\centering
2495\begin{lstlisting}
2496Main Thread
2497        print memory snapshot
2498        create producer threads
2499Producer Thread (K)
2500        set free start
2501        create consumer threads
2502        for ( N )
2503                allocate memory
2504                print memory snapshot
2505Consumer Thread (M)
2506        wait while ( allocations < free start )
2507        for ( N )
2508                free memory
2509                print memory snapshot
2510\end{lstlisting}
2511%\includegraphics[width=1\textwidth]{figures/bench-memory.eps}
2512\caption{Memory Footprint Micro-Benchmark}
2513\label{fig:MemoryBenchFig}
2514\end{figure}
2515
2516The global adjustment knobs for this micro-benchmark are:
2517\begin{description}[itemsep=0pt,parsep=0pt]
2518\item[producer (K):]
2519sets the number of producer threads.
2520\item[consumer (M):]
2521sets number of consumers threads for each producer.
2522\item[round:]
2523sets production and consumption round size.
2524\end{description}
2525
2526The adjustment knobs for object allocation are:
2527\begin{description}[itemsep=0pt,parsep=0pt]
2528\item[max:]
2529maximum object size.
2530\item[min:]
2531minimum object size.
2532\item[step:]
2533object size increment.
2534\item[distro:]
2535object size distribution.
2536\item[objects (N):]
2537number of objects per thread.
2538\end{description}
2539
2540
2541\section{Performance}
2542\label{c:Performance}
2543
2544This section uses the micro-benchmarks from Section~\ref{s:Benchmarks} to test a number of current memory allocators, including llheap.
2545The goal is to see if llheap is competitive with the currently popular memory allocators.
2546
2547
2548\subsection{Machine Specification}
2549
2550The performance experiments were run on two different multi-core architectures (x64 and ARM) to determine if there is consistency across platforms:
2551\begin{itemize}
2552\item
2553\textbf{Algol} Huawei ARM TaiShan 2280 V2 Kunpeng 920, 24-core socket $\times$ 4, 2.6 GHz, GCC version 9.4.0
2554\item
2555\textbf{Nasus} AMD EPYC 7662, 64-core socket $\times$ 2, 2.0 GHz, GCC version 9.3.0
2556\end{itemize}
2557
2558
2559\subsection{Existing Memory Allocators}
2560\label{sec:curAllocatorSec}
2561
2562With dynamic allocation being an important feature of C, there are many stand-alone memory allocators that have been designed for different purposes.
2563For this work, 7 of the most popular and widely used memory allocators were selected for comparison, along with llheap.
2564
2565\paragraph{llheap (\textsf{llh})}
2566is the thread-safe allocator from Chapter~\ref{c:Allocator}
2567\\
2568\textbf{Version:} 1.0
2569\textbf{Configuration:} Compiled with dynamic linking, but without statistics or debugging.\\
2570\textbf{Compilation command:} @make@
2571
2572\paragraph{glibc (\textsf{glc})}
2573\cite{glibc} is the default glibc thread-safe allocator.
2574\\
2575\textbf{Version:} Ubuntu GLIBC 2.31-0ubuntu9.7 2.31\\
2576\textbf{Configuration:} Compiled by Ubuntu 20.04.\\
2577\textbf{Compilation command:} N/A
2578
2579\paragraph{dlmalloc (\textsf{dl})}
2580\cite{dlmalloc} is a thread-safe allocator that is single threaded and single heap.
2581It maintains free-lists of different sizes to store freed dynamic memory.
2582\\
2583\textbf{Version:} 2.8.6\\
2584\textbf{Configuration:} Compiled with preprocessor @USE_LOCKS@.\\
2585\textbf{Compilation command:} @gcc -g3 -O3 -Wall -Wextra -fno-builtin-malloc -fno-builtin-calloc@ @-fno-builtin-realloc -fno-builtin-free -fPIC -shared -DUSE_LOCKS -o libdlmalloc.so malloc-2.8.6.c@
2586
2587\paragraph{hoard (\textsf{hrd})}
2588\cite{hoard} is a thread-safe allocator that is multi-threaded and uses a heap layer framework. It has per-thread heaps that have thread-local free-lists, and a global shared heap.
2589\\
2590\textbf{Version:} 3.13\\
2591\textbf{Configuration:} Compiled with hoard's default configurations and @Makefile@.\\
2592\textbf{Compilation command:} @make all@
2593
2594\paragraph{jemalloc (\textsf{je})}
2595\cite{jemalloc} is a thread-safe allocator that uses multiple arenas. Each thread is assigned an arena.
2596Each arena has chunks that contain contagious memory regions of same size. An arena has multiple chunks that contain regions of multiple sizes.
2597\\
2598\textbf{Version:} 5.2.1\\
2599\textbf{Configuration:} Compiled with jemalloc's default configurations and @Makefile@.\\
2600\textbf{Compilation command:} @autogen.sh; configure; make; make install@
2601
2602\paragraph{ptmalloc3 (\textsf{pt3})}
2603\cite{ptmalloc3} is a modification of dlmalloc.
2604It is a thread-safe multi-threaded memory allocator that uses multiple heaps.
2605ptmalloc3 heap has similar design to dlmalloc's heap.
2606\\
2607\textbf{Version:} 1.8\\
2608\textbf{Configuration:} Compiled with ptmalloc3's @Makefile@ using option ``linux-shared''.\\
2609\textbf{Compilation command:} @make linux-shared@
2610
2611\paragraph{rpmalloc (\textsf{rp})}
2612\cite{rpmalloc} is a thread-safe allocator that is multi-threaded and uses per-thread heap.
2613Each heap has multiple size-classes and each size-class contains memory regions of the relevant size.
2614\\
2615\textbf{Version:} 1.4.1\\
2616\textbf{Configuration:} Compiled with rpmalloc's default configurations and ninja build system.\\
2617\textbf{Compilation command:} @python3 configure.py; ninja@
2618
2619\paragraph{tbb malloc (\textsf{tbb})}
2620\cite{tbbmalloc} is a thread-safe allocator that is multi-threaded and uses a private heap for each thread.
2621Each private-heap has multiple bins of different sizes. Each bin contains free regions of the same size.
2622\\
2623\textbf{Version:} intel tbb 2020 update 2, tbb\_interface\_version == 11102\\
2624\textbf{Configuration:} Compiled with tbbmalloc's default configurations and @Makefile@.\\
2625\textbf{Compilation command:} @make@
2626
2627% \subsection{Experiment Environment}
2628% We used our micro benchmark suite (FIX ME: cite mbench) to evaluate these memory allocators Section~\ref{sec:curAllocatorSec} and our own memory allocator uHeap Section~\ref{sec:allocatorSec}.
2629
2630\subsection{Experiments}
2631
2632Each micro-benchmark is configured and run with each of the allocators,
2633The less time an allocator takes to complete a benchmark the better so lower in the graphs is better, except for the Memory micro-benchmark graphs.
2634All graphs use log scale on the Y-axis, except for the Memory micro-benchmark (see Section~\ref{s:MemoryMicroBenchmark}).
2635
2636%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2637%% CHURN
2638%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2639
2640\subsubsection{Churn Micro-Benchmark}
2641
2642Churn tests allocators for speed under intensive dynamic memory usage (see Section~\ref{s:ChurnBenchmark}).
2643This experiment was run with following configurations:
2644\begin{description}[itemsep=0pt,parsep=0pt]
2645\item[thread:]
26461, 2, 4, 8, 16, 32, 48
2647\item[spots:]
264816
2649\item[obj:]
2650100,000
2651\item[max:]
2652500
2653\item[min:]
265450
2655\item[step:]
265650
2657\item[distro:]
2658fisher
2659\end{description}
2660
2661% -maxS          : 500
2662% -minS          : 50
2663% -stepS                 : 50
2664% -distroS       : fisher
2665% -objN          : 100000
2666% -cSpots                : 16
2667% -threadN       : 1, 2, 4, 8, 16
2668
2669Figure~\ref{fig:churn} shows the results for algol and nasus.
2670The X-axis shows the number of threads;
2671the Y-axis shows the total experiment time.
2672Each allocator's performance for each thread is shown in different colors.
2673
2674\begin{figure}
2675\centering
2676    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/churn} } \\
2677    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/churn} }
2678\caption{Churn}
2679\label{fig:churn}
2680\end{figure}
2681
2682\paragraph{Assessment}
2683All allocators did well in this micro-benchmark, except for \textsf{dl} on the ARM.
2684\textsf{dl}'s is the slowest, indicating some small bottleneck with respect to the other allocators.
2685\textsf{je} is the fastest, with only a small benefit over the other allocators.
2686% llheap is slightly slower because it uses ownership, where many of the allocations have remote frees, which requires locking.
2687% When llheap is compiled without ownership, its performance is the same as the other allocators (not shown).
2688
2689%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2690%% THRASH
2691%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2692
2693\subsubsection{Cache Thrash}
2694\label{sec:cache-thrash-perf}
2695
2696Thrash tests memory allocators for active false sharing (see Section~\ref{sec:benchThrashSec}).
2697This experiment was run with following configurations:
2698\begin{description}[itemsep=0pt,parsep=0pt]
2699\item[threads:]
27001, 2, 4, 8, 16, 32, 48
2701\item[iterations:]
27021,000
2703\item[cacheRW:]
27041,000,000
2705\item[size:]
27061
2707\end{description}
2708
2709% * Each allocator was tested for its performance across different number of threads.
2710% Experiment was repeated for each allocator for 1, 2, 4, 8, and 16 threads by setting the configuration -threadN.
2711
2712Figure~\ref{fig:cacheThrash} shows the results for algol and nasus.
2713The X-axis shows the number of threads;
2714the Y-axis shows the total experiment time.
2715Each allocator's performance for each thread is shown in different colors.
2716
2717\begin{figure}
2718\centering
2719    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/cache_thrash_0-thrash} } \\
2720    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/cache_thrash_0-thrash} }
2721\caption{Cache Thrash}
2722\label{fig:cacheThrash}
2723\end{figure}
2724
2725\paragraph{Assessment}
2726All allocators did well in this micro-benchmark, except for \textsf{dl} and \textsf{pt3}.
2727\textsf{dl} uses a single heap for all threads so it is understandable that it generates so much active false-sharing.
2728Requests from different threads are dealt with sequentially by the single heap (using a single lock), which can allocate objects to different threads on the same cache line.
2729\textsf{pt3} uses the T:H model, so multiple threads can use one heap, but the active false-sharing is less than \textsf{dl}.
2730The rest of the memory allocators generate little or no active false-sharing.
2731
2732%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2733%% SCRATCH
2734%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2735
2736\subsubsection{Cache Scratch}
2737
2738Scratch tests memory allocators for program-induced allocator-preserved passive false-sharing (see Section~\ref{s:CacheScratch}).
2739This experiment was run with following configurations:
2740\begin{description}[itemsep=0pt,parsep=0pt]
2741\item[threads:]
27421, 2, 4, 8, 16, 32, 48
2743\item[iterations:]
27441,000
2745\item[cacheRW:]
27461,000,000
2747\item[size:]
27481
2749\end{description}
2750
2751% * Each allocator was tested for its performance across different number of threads.
2752% Experiment was repeated for each allocator for 1, 2, 4, 8, and 16 threads by setting the configuration -threadN.
2753
2754Figure~\ref{fig:cacheScratch} shows the results for algol and nasus.
2755The X-axis shows the number of threads;
2756the Y-axis shows the total experiment time.
2757Each allocator's performance for each thread is shown in different colors.
2758
2759\begin{figure}
2760\centering
2761    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/cache_scratch_0-scratch} } \\
2762    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/cache_scratch_0-scratch} }
2763\caption{Cache Scratch}
2764\label{fig:cacheScratch}
2765\end{figure}
2766
2767\paragraph{Assessment}
2768This micro-benchmark divides the allocators into two groups.
2769First is the high-performer group: \textsf{llh}, \textsf{je}, and \textsf{rp}.
2770These memory allocators generate little or no passive false-sharing and their performance difference is negligible.
2771Second is the low-performer group, which includes the rest of the memory allocators.
2772These memory allocators have significant program-induced passive false-sharing, where \textsf{hrd}'s is the worst performing allocator.
2773All of the allocators in this group are sharing heaps among threads at some level.
2774
2775Interestingly, allocators such as \textsf{hrd} and \textsf{glc} performed well in micro-benchmark cache thrash (see Section~\ref{sec:cache-thrash-perf}), but, these allocators are among the low performers in the cache scratch.
2776It suggests these allocators do not actively produce false-sharing, but preserve program-induced passive false sharing.
2777
2778%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2779%% SPEED
2780%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2781
2782\subsubsection{Speed Micro-Benchmark}
2783
2784Speed tests memory allocators for runtime latency (see Section~\ref{s:SpeedMicroBenchmark}).
2785This experiment was run with following configurations:
2786\begin{description}
2787\item[max:]
2788500
2789\item[min:]
279050
2791\item[step:]
279250
2793\item[distro:]
2794fisher
2795\item[objects:]
2796100,000
2797\item[workers:]
27981, 2, 4, 8, 16, 32, 48
2799\end{description}
2800
2801% -maxS    :  500
2802% -minS    :  50
2803% -stepS   :  50
2804% -distroS :  fisher
2805% -objN    :  1000000
2806% -threadN    : \{ 1, 2, 4, 8, 16 \} *
2807
2808%* Each allocator was tested for its performance across different number of threads.
2809%Experiment was repeated for each allocator for 1, 2, 4, 8, and 16 threads by setting the configuration -threadN.
2810
2811Figures~\ref{fig:speed-3-malloc} to~\ref{fig:speed-14-malloc-calloc-realloc-free} show 12 figures, one figure for each chain of the speed benchmark.
2812The X-axis shows the number of threads;
2813the Y-axis shows the total experiment time.
2814Each allocator's performance for each thread is shown in different colors.
2815
2816\begin{itemize}
2817\item Figure~\ref{fig:speed-3-malloc} shows results for chain: malloc
2818\item Figure~\ref{fig:speed-4-realloc} shows results for chain: realloc
2819\item Figure~\ref{fig:speed-5-free} shows results for chain: free
2820\item Figure~\ref{fig:speed-6-calloc} shows results for chain: calloc
2821\item Figure~\ref{fig:speed-7-malloc-free} shows results for chain: malloc-free
2822\item Figure~\ref{fig:speed-8-realloc-free} shows results for chain: realloc-free
2823\item Figure~\ref{fig:speed-9-calloc-free} shows results for chain: calloc-free
2824\item Figure~\ref{fig:speed-10-malloc-realloc} shows results for chain: malloc-realloc
2825\item Figure~\ref{fig:speed-11-calloc-realloc} shows results for chain: calloc-realloc
2826\item Figure~\ref{fig:speed-12-malloc-realloc-free} shows results for chain: malloc-realloc-free
2827\item Figure~\ref{fig:speed-13-calloc-realloc-free} shows results for chain: calloc-realloc-free
2828\item Figure~\ref{fig:speed-14-malloc-calloc-realloc-free} shows results for chain: malloc-realloc-free-calloc
2829\end{itemize}
2830
2831\paragraph{Assessment}
2832This micro-benchmark divides the allocators into two groups: with and without @calloc@.
2833@calloc@ uses @memset@ to set the allocated memory to zero, which dominates the cost of the allocation chain (large performance increase) and levels performance across the allocators.
2834But the difference among the allocators in a @calloc@ chain still gives an idea of their relative performance.
2835
2836All allocators did well in this micro-benchmark across all allocation chains, except for \textsf{dl}, \textsf{pt3}, and \textsf{hrd}.
2837Again, the low-performing allocators are sharing heaps among threads, so the contention causes performance increases with increasing numbers of threads.
2838Furthermore, chains with @free@ can trigger coalescing, which slows the fast path.
2839The high-performing allocators all illustrate low latency across the allocation chains, \ie there are no performance spikes as the chain lengths, that might be caused by contention and/or coalescing.
2840Low latency is important for applications that are sensitive to unknown execution delays.
2841
2842%speed-3-malloc.eps
2843\begin{figure}
2844\centering
2845    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-3-malloc} } \\
2846    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-3-malloc} }
2847\caption{Speed benchmark chain: malloc}
2848\label{fig:speed-3-malloc}
2849\end{figure}
2850
2851%speed-4-realloc.eps
2852\begin{figure}
2853\centering
2854    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-4-realloc} } \\
2855    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-4-realloc} }
2856\caption{Speed benchmark chain: realloc}
2857\label{fig:speed-4-realloc}
2858\end{figure}
2859
2860%speed-5-free.eps
2861\begin{figure}
2862\centering
2863    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-5-free} } \\
2864    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-5-free} }
2865\caption{Speed benchmark chain: free}
2866\label{fig:speed-5-free}
2867\end{figure}
2868
2869%speed-6-calloc.eps
2870\begin{figure}
2871\centering
2872    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-6-calloc} } \\
2873    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-6-calloc} }
2874\caption{Speed benchmark chain: calloc}
2875\label{fig:speed-6-calloc}
2876\end{figure}
2877
2878%speed-7-malloc-free.eps
2879\begin{figure}
2880\centering
2881    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-7-malloc-free} } \\
2882    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-7-malloc-free} }
2883\caption{Speed benchmark chain: malloc-free}
2884\label{fig:speed-7-malloc-free}
2885\end{figure}
2886
2887%speed-8-realloc-free.eps
2888\begin{figure}
2889\centering
2890    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-8-realloc-free} } \\
2891    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-8-realloc-free} }
2892\caption{Speed benchmark chain: realloc-free}
2893\label{fig:speed-8-realloc-free}
2894\end{figure}
2895
2896%speed-9-calloc-free.eps
2897\begin{figure}
2898\centering
2899    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-9-calloc-free} } \\
2900    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-9-calloc-free} }
2901\caption{Speed benchmark chain: calloc-free}
2902\label{fig:speed-9-calloc-free}
2903\end{figure}
2904
2905%speed-10-malloc-realloc.eps
2906\begin{figure}
2907\centering
2908    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-10-malloc-realloc} } \\
2909    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-10-malloc-realloc} }
2910\caption{Speed benchmark chain: malloc-realloc}
2911\label{fig:speed-10-malloc-realloc}
2912\end{figure}
2913
2914%speed-11-calloc-realloc.eps
2915\begin{figure}
2916\centering
2917    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-11-calloc-realloc} } \\
2918    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-11-calloc-realloc} }
2919\caption{Speed benchmark chain: calloc-realloc}
2920\label{fig:speed-11-calloc-realloc}
2921\end{figure}
2922
2923%speed-12-malloc-realloc-free.eps
2924\begin{figure}
2925\centering
2926    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-12-malloc-realloc-free} } \\
2927    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-12-malloc-realloc-free} }
2928\caption{Speed benchmark chain: malloc-realloc-free}
2929\label{fig:speed-12-malloc-realloc-free}
2930\end{figure}
2931
2932%speed-13-calloc-realloc-free.eps
2933\begin{figure}
2934\centering
2935    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-13-calloc-realloc-free} } \\
2936    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-13-calloc-realloc-free} }
2937\caption{Speed benchmark chain: calloc-realloc-free}
2938\label{fig:speed-13-calloc-realloc-free}
2939\end{figure}
2940
2941%speed-14-{m,c,re}alloc-free.eps
2942\begin{figure}
2943\centering
2944    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/speed-14-m-c-re-alloc-free} } \\
2945    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/speed-14-m-c-re-alloc-free} }
2946\caption{Speed benchmark chain: malloc-calloc-realloc-free}
2947\label{fig:speed-14-malloc-calloc-realloc-free}
2948\end{figure}
2949
2950%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2951%% MEMORY
2952%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2953
2954\newpage
2955\subsubsection{Memory Micro-Benchmark}
2956\label{s:MemoryMicroBenchmark}
2957
2958This experiment is run with the following two configurations for each allocator.
2959The difference between the two configurations is the number of producers and consumers.
2960Configuration 1 has one producer and one consumer, and configuration 2 has 4 producers, where each producer has 4 consumers.
2961
2962\noindent
2963Configuration 1:
2964\begin{description}[itemsep=0pt,parsep=0pt]
2965\item[producer (K):]
29661
2967\item[consumer (M):]
29681
2969\item[round:]
2970100,000
2971\item[max:]
2972500
2973\item[min:]
297450
2975\item[step:]
297650
2977\item[distro:]
2978fisher
2979\item[objects (N):]
2980100,000
2981\end{description}
2982
2983% -threadA :  1
2984% -threadF :  1
2985% -maxS    :  500
2986% -minS    :  50
2987% -stepS   :  50
2988% -distroS :  fisher
2989% -objN    :  100000
2990% -consumeS:  100000
2991
2992\noindent
2993Configuration 2:
2994\begin{description}[itemsep=0pt,parsep=0pt]
2995\item[producer (K):]
29964
2997\item[consumer (M):]
29984
2999\item[round:]
3000100,000
3001\item[max:]
3002500
3003\item[min:]
300450
3005\item[step:]
300650
3007\item[distro:]
3008fisher
3009\item[objects (N):]
3010100,000
3011\end{description}
3012
3013% -threadA :  4
3014% -threadF :  4
3015% -maxS    :  500
3016% -minS    :  50
3017% -stepS   :  50
3018% -distroS :  fisher
3019% -objN    :  100000
3020% -consumeS:  100000
3021
3022% \begin{table}[b]
3023% \centering
3024%     \begin{tabular}{ |c|c|c| }
3025%      \hline
3026%     Memory Allocator & Configuration 1 Result & Configuration 2 Result\\
3027%      \hline
3028%     llh & Figure~\ref{fig:mem-1-prod-1-cons-100-llh} & Figure~\ref{fig:mem-4-prod-4-cons-100-llh}\\
3029%      \hline
3030%     dl & Figure~\ref{fig:mem-1-prod-1-cons-100-dl} & Figure~\ref{fig:mem-4-prod-4-cons-100-dl}\\
3031%      \hline
3032%     glibc & Figure~\ref{fig:mem-1-prod-1-cons-100-glc} & Figure~\ref{fig:mem-4-prod-4-cons-100-glc}\\
3033%      \hline
3034%     hoard & Figure~\ref{fig:mem-1-prod-1-cons-100-hrd} & Figure~\ref{fig:mem-4-prod-4-cons-100-hrd}\\
3035%      \hline
3036%     je & Figure~\ref{fig:mem-1-prod-1-cons-100-je} & Figure~\ref{fig:mem-4-prod-4-cons-100-je}\\
3037%      \hline
3038%     pt3 & Figure~\ref{fig:mem-1-prod-1-cons-100-pt3} & Figure~\ref{fig:mem-4-prod-4-cons-100-pt3}\\
3039%      \hline
3040%     rp & Figure~\ref{fig:mem-1-prod-1-cons-100-rp} & Figure~\ref{fig:mem-4-prod-4-cons-100-rp}\\
3041%      \hline
3042%     tbb & Figure~\ref{fig:mem-1-prod-1-cons-100-tbb} & Figure~\ref{fig:mem-4-prod-4-cons-100-tbb}\\
3043%      \hline
3044%     \end{tabular}
3045% \caption{Memory benchmark results}
3046% \label{table:mem-benchmark-figs}
3047% \end{table}
3048% Table Section~\ref{table:mem-benchmark-figs} shows the list of figures that contain memory benchmark results.
3049
3050Figures~\ref{fig:mem-1-prod-1-cons-100-llh}{fig:mem-4-prod-4-cons-100-tbb} show 16 figures, two figures for each of the 8 allocators, one for each configuration.
3051Each figure has 2 graphs, one for each experiment environment.
3052Each graph has following 5 subgraphs that show memory usage and statistics throughout the micro-benchmark's lifetime.
3053\begin{itemize}
3054\item \textit{\textbf{current\_req\_mem(B)}} shows the amount of dynamic memory requested and currently in-use of the benchmark.
3055\item \textit{\textbf{heap}}* shows the memory requested by the program (allocator) from the system that lies in the heap (@sbrk@) area.
3056\item \textit{\textbf{mmap\_so}}* shows the memory requested by the program (allocator) from the system that lies in the @mmap@ area.
3057\item \textit{\textbf{mmap}}* shows the memory requested by the program (allocator or shared libraries) from the system that lies in the @mmap@ area.
3058\item \textit{\textbf{total\_dynamic}} shows the total usage of dynamic memory by the benchmark program, which is a sum of \textit{heap}, \textit{mmap}, and \textit{mmap\_so}.
3059\end{itemize}
3060* These statistics are gathered by monitoring a process's @/proc/self/maps@ file.
3061
3062The X-axis shows the time when the memory information is polled.
3063The Y-axis shows the memory usage in bytes.
3064
3065For this experiment, the difference between the memory requested by the benchmark (\textit{current\_req\_mem(B)}) and the memory that the process has received from system (\textit{heap}, \textit{mmap}) should be minimum.
3066This difference is the memory overhead caused by the allocator and shows the level of fragmentation in the allocator.
3067
3068\paragraph{Assessment}
3069First, the differences in the shape of the curves between architectures (top ARM, bottom x64) is small, where the differences are in the amount of memory used.
3070Hence, it is possible to focus on either the top or bottom graph.
3071
3072Second, the heap curve is 0 for four memory allocators: \textsf{hrd}, \textsf{je}, \textsf{pt3}, and \textsf{rp}, indicating these memory allocators only use @mmap@ to get memory from the system and ignore the @sbrk@ area.
3073
3074The total dynamic memory is higher for \textsf{hrd} and \textsf{tbb} than the other allocators.
3075The main reason is the use of superblocks (see Section~\ref{s:ObjectContainers}) containing objects of the same size.
3076These superblocks are maintained throughout the life of the program.
3077
3078\textsf{pt3} is the only memory allocator where the total dynamic memory goes down in the second half of the program lifetime when the memory is freed by the benchmark program.
3079It makes pt3 the only memory allocator that gives memory back to the operating system as it is freed by the program.
3080
3081% FOR 1 THREAD
3082
3083%mem-1-prod-1-cons-100-llh.eps
3084\begin{figure}
3085\centering
3086    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-llh} } \\
3087    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-llh} }
3088\caption{Memory benchmark results with Configuration-1 for llh memory allocator}
3089\label{fig:mem-1-prod-1-cons-100-llh}
3090\end{figure}
3091
3092%mem-1-prod-1-cons-100-dl.eps
3093\begin{figure}
3094\centering
3095    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-dl} } \\
3096    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-dl} }
3097\caption{Memory benchmark results with Configuration-1 for dl memory allocator}
3098\label{fig:mem-1-prod-1-cons-100-dl}
3099\end{figure}
3100
3101%mem-1-prod-1-cons-100-glc.eps
3102\begin{figure}
3103\centering
3104    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-glc} } \\
3105    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-glc} }
3106\caption{Memory benchmark results with Configuration-1 for glibc memory allocator}
3107\label{fig:mem-1-prod-1-cons-100-glc}
3108\end{figure}
3109
3110%mem-1-prod-1-cons-100-hrd.eps
3111\begin{figure}
3112\centering
3113    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-hrd} } \\
3114    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-hrd} }
3115\caption{Memory benchmark results with Configuration-1 for hoard memory allocator}
3116\label{fig:mem-1-prod-1-cons-100-hrd}
3117\end{figure}
3118
3119%mem-1-prod-1-cons-100-je.eps
3120\begin{figure}
3121\centering
3122    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-je} } \\
3123    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-je} }
3124\caption{Memory benchmark results with Configuration-1 for je memory allocator}
3125\label{fig:mem-1-prod-1-cons-100-je}
3126\end{figure}
3127
3128%mem-1-prod-1-cons-100-pt3.eps
3129\begin{figure}
3130\centering
3131    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-pt3} } \\
3132    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-pt3} }
3133\caption{Memory benchmark results with Configuration-1 for pt3 memory allocator}
3134\label{fig:mem-1-prod-1-cons-100-pt3}
3135\end{figure}
3136
3137%mem-1-prod-1-cons-100-rp.eps
3138\begin{figure}
3139\centering
3140    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-rp} } \\
3141    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-rp} }
3142\caption{Memory benchmark results with Configuration-1 for rp memory allocator}
3143\label{fig:mem-1-prod-1-cons-100-rp}
3144\end{figure}
3145
3146%mem-1-prod-1-cons-100-tbb.eps
3147\begin{figure}
3148\centering
3149    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-1-prod-1-cons-100-tbb} } \\
3150    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-1-prod-1-cons-100-tbb} }
3151\caption{Memory benchmark results with Configuration-1 for tbb memory allocator}
3152\label{fig:mem-1-prod-1-cons-100-tbb}
3153\end{figure}
3154
3155% FOR 4 THREADS
3156
3157%mem-4-prod-4-cons-100-llh.eps
3158\begin{figure}
3159\centering
3160    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-llh} } \\
3161    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-llh} }
3162\caption{Memory benchmark results with Configuration-2 for llh memory allocator}
3163\label{fig:mem-4-prod-4-cons-100-llh}
3164\end{figure}
3165
3166%mem-4-prod-4-cons-100-dl.eps
3167\begin{figure}
3168\centering
3169    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-dl} } \\
3170    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-dl} }
3171\caption{Memory benchmark results with Configuration-2 for dl memory allocator}
3172\label{fig:mem-4-prod-4-cons-100-dl}
3173\end{figure}
3174
3175%mem-4-prod-4-cons-100-glc.eps
3176\begin{figure}
3177\centering
3178    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-glc} } \\
3179    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-glc} }
3180\caption{Memory benchmark results with Configuration-2 for glibc memory allocator}
3181\label{fig:mem-4-prod-4-cons-100-glc}
3182\end{figure}
3183
3184%mem-4-prod-4-cons-100-hrd.eps
3185\begin{figure}
3186\centering
3187    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-hrd} } \\
3188    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-hrd} }
3189\caption{Memory benchmark results with Configuration-2 for hoard memory allocator}
3190\label{fig:mem-4-prod-4-cons-100-hrd}
3191\end{figure}
3192
3193%mem-4-prod-4-cons-100-je.eps
3194\begin{figure}
3195\centering
3196    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-je} } \\
3197    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-je} }
3198\caption{Memory benchmark results with Configuration-2 for je memory allocator}
3199\label{fig:mem-4-prod-4-cons-100-je}
3200\end{figure}
3201
3202%mem-4-prod-4-cons-100-pt3.eps
3203\begin{figure}
3204\centering
3205    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-pt3} } \\
3206    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-pt3} }
3207\caption{Memory benchmark results with Configuration-2 for pt3 memory allocator}
3208\label{fig:mem-4-prod-4-cons-100-pt3}
3209\end{figure}
3210
3211%mem-4-prod-4-cons-100-rp.eps
3212\begin{figure}
3213\centering
3214    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-rp} } \\
3215        %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-rp} }
3216\caption{Memory benchmark results with Configuration-2 for rp memory allocator}
3217\label{fig:mem-4-prod-4-cons-100-rp}
3218\end{figure}
3219
3220%mem-4-prod-4-cons-100-tbb.eps
3221\begin{figure}
3222\centering
3223    %\subfloat[Algol]{ \includegraphics[width=0.9\textwidth]{evaluations/algol-perf-eps/mem-4-prod-4-cons-100-tbb} } \\
3224    %\subfloat[Nasus]{ \includegraphics[width=0.9\textwidth]{evaluations/nasus-perf-eps/mem-4-prod-4-cons-100-tbb} }
3225\caption{Memory benchmark results with Configuration-2 for tbb memory allocator}
3226\label{fig:mem-4-prod-4-cons-100-tbb}
3227\end{figure}
3228
3229
3230\section{Conclusion}
3231
3232% \noindent
3233% ====================
3234%
3235% Writing Points:
3236% \begin{itemize}
3237% \item
3238% Summarize u-benchmark suite.
3239% \item
3240% Summarize @uHeapLmmm@.
3241% \item
3242% Make recommendations on memory allocator design.
3243% \end{itemize}
3244%
3245% \noindent
3246% ====================
3247
3248The goal of this work was to build a low-latency (or high bandwidth) memory allocator for both KT and UT multi-threading systems that is competitive with the best current memory allocators while extending the feature set of existing and new allocator routines.
3249The new llheap memory-allocator achieves all of these goals, while maintaining and managing sticky allocation information without a performance loss.
3250Hence, it becomes possible to use @realloc@ frequently as a safe operation, rather than just occasionally.
3251Furthermore, the ability to query sticky properties and information allows programmers to write safer programs, as it is possible to dynamically match allocation styles from unknown library routines that return allocations.
3252
3253Extending the C allocation API with @resize@, advanced @realloc@, @aalloc@, @amemalign@, and @cmemalign@ means programmers do not have to do these useful allocation operations themselves.
3254The ability to use \CFA's advanced type-system (and possibly \CC's too) to have one allocation routine with completely orthogonal sticky properties shows how far the allocation API can be pushed, which increases safety and greatly simplifies programmer's use of dynamic allocation.
3255
3256Providing comprehensive statistics for all allocation operations is invaluable in understanding and debugging a program's dynamic behaviour.
3257No other memory allocator provides such comprehensive statistics gathering.
3258This capability was used extensively during the development of llheap to verify its behaviour.
3259As well, providing a debugging mode where allocations are checked, along with internal pre/post conditions and invariants, is extremely useful, especially for students.
3260While not as powerful as the @valgrind@ interpreter, a large number of allocation mistakes are detected.
3261Finally, contention-free statistics gathering and debugging have a low enough cost to be used in production code.
3262
3263The ability to compile llheap with static/dynamic linking and optional statistics/debugging provides programers with multiple mechanisms to balance performance and safety.
3264These allocator versions are easy to use because they can be linked to an application without recompilation.
3265
3266Starting a micro-benchmark test-suite for comparing allocators, rather than relying on a suite of arbitrary programs, has been an interesting challenge.
3267The current micro-benchmarks allow some understanding of allocator implementation properties without actually looking at the implementation.
3268For example, the memory micro-benchmark quickly identified how several of the allocators work at the global level.
3269It was not possible to show how the micro-benchmarks adjustment knobs were used to tune to an interesting test point.
3270Many graphs were created and discarded until a few were selected for the work.
3271
3272
3273\subsection{Future Work}
3274
3275A careful walk-though of the allocator fastpath should yield additional optimizations for a slight performance gain.
3276In particular, analysing the implementation of rpmalloc, which is often the fastest allocator,
3277
3278The micro-benchmark project requires more testing and analysis.
3279Additional allocation patterns are needed to extract meaningful information about allocators, and within allocation patterns, what are the most useful tuning knobs.
3280Also, identifying ways to visualize the results of the micro-benchmarks is a work in progress.
3281
3282After llheap is made available on GitHub, interacting with its users to locate problems and improvements will make llbench a more robust memory allocator.
3283As well, feedback from the \uC and \CFA projects, which have adopted llheap for their memory allocator, will provide additional information.
3284
3285
3286
3287\section{Acknowledgements}
3288
3289This research is funded by the NSERC/Waterloo-Huawei (\url{http://www.huawei.com}) Joint Innovation Lab. %, and Peter Buhr is partially funded by the Natural Sciences and Engineering Research Council of Canada.
3290
3291{%
3292\fontsize{9bp}{11.5bp}\selectfont%
3293\bibliography{pl,local}
3294}%
3295
3296\end{document}
3297
3298% Local Variables: %
3299% tab-width: 4 %
3300% fill-column: 120 %
3301% compile-command: "make" %
3302% End: %
Note: See TracBrowser for help on using the repository browser.