source: doc/proposals/concurrency/concurrency.tex @ 03bb816

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 03bb816 was 03bb816, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Some writing done on internal scheduling and various other notes

  • Property mode set to 100644
File size: 69.8 KB
RevLine 
[694ee7d]1% requires tex packages: texlive-base texlive-latex-base tex-common texlive-humanities texlive-latex-extra texlive-fonts-recommended
2
[d02aaa9]3% inline code ©...© (copyright symbol) emacs: C-q M-)
4% red highlighting ®...® (registered trademark symbol) emacs: C-q M-.
5% blue highlighting ß...ß (sharp s symbol) emacs: C-q M-_
6% green highlighting ¢...¢ (cent symbol) emacs: C-q M-"
7% LaTex escape §...§ (section symbol) emacs: C-q M-'
8% keyword escape ¶...¶ (pilcrow symbol) emacs: C-q M-^
[694ee7d]9% math escape $...$ (dollar symbol)
10
11\documentclass[twoside,11pt]{article}
12
13%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
15% Latex packages used in the document.
[955d9e43]16\usepackage[T1]{fontenc}                                        % allow Latin1 (extended ASCII) characters
[694ee7d]17\usepackage{textcomp}
18\usepackage[latin1]{inputenc}
19\usepackage{fullpage,times,comment}
20\usepackage{epic,eepic}
[955d9e43]21\usepackage{upquote}                                            % switch curled `'" to straight
[694ee7d]22\usepackage{calc}
23\usepackage{xspace}
24\usepackage{graphicx}
[7b69174]25\usepackage{tabularx}
[a9aab60]26\usepackage[acronym]{glossaries}
[955d9e43]27\usepackage{varioref}                                           % extended references
[7e10773]28\usepackage{inconsolata}
[955d9e43]29\usepackage{listings}                                           % format program code
30\usepackage[flushmargin]{footmisc}                              % support label/reference in footnote
31\usepackage{latexsym}                                           % \Box glyph
32\usepackage{mathptmx}                                           % better math font with "times"
[694ee7d]33\usepackage[usenames]{color}
34\usepackage[pagewise]{lineno}
[9b4343e]35\usepackage{fancyhdr}
[694ee7d]36\renewcommand{\linenumberfont}{\scriptsize\sffamily}
[fe84230]37\input{style}                                                   % bespoke macros used in the document
[694ee7d]38\usepackage[dvips,plainpages=false,pdfpagelabels,pdfpagemode=UseNone,colorlinks=true,pagebackref=true,linkcolor=blue,citecolor=blue,urlcolor=blue,pagebackref=true,breaklinks=true]{hyperref}
39\usepackage{breakurl}
[c69adb7]40
[a9aab60]41\usepackage{tikz}
42\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
43
[694ee7d]44\renewcommand{\UrlFont}{\small\sf}
45
[955d9e43]46\setlength{\topmargin}{-0.45in}                         % move running title into header
[694ee7d]47\setlength{\headsep}{0.25in}
48
49%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50
51% Names used in the document.
52
53\newcommand{\Version}{1.0.0}
54\newcommand{\CS}{C\raisebox{-0.9ex}{\large$^\sharp$}\xspace}
55
56\newcommand{\Textbf}[2][red]{{\color{#1}{\textbf{#2}}}}
57\newcommand{\Emph}[2][red]{{\color{#1}\textbf{\emph{#2}}}}
58\newcommand{\R}[1]{\Textbf{#1}}
59\newcommand{\B}[1]{{\Textbf[blue]{#1}}}
60\newcommand{\G}[1]{{\Textbf[OliveGreen]{#1}}}
61\newcommand{\uC}{$\mu$\CC}
62\newcommand{\cit}{\textsuperscript{[Citation Needed]}\xspace}
[03bb816]63\newcommand{\code}[1]{\lstinline[language=CFA]{#1}}
[b1bdc7d6]64\newcommand{\pseudo}[1]{\lstinline[language=Pseudo]{#1}}
[694ee7d]65
[c69adb7]66\input{glossary}
[694ee7d]67
68\newsavebox{\LstBox}
69
70%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71
72\setcounter{secnumdepth}{3}                             % number subsubsections
73\setcounter{tocdepth}{3}                                % subsubsections in table of contents
[a3eaa29]74% \linenumbers                                            % comment out to turn off line numbering
[694ee7d]75\makeindex
[9b4343e]76\pagestyle{fancy}
77\fancyhf{}
78\cfoot{\thepage}
79\rfoot{v\input{version}}
[694ee7d]80
81%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
82
83\begin{document}
84% \linenumbers
85
86\title{Concurrency in \CFA}
87\author{Thierry Delisle \\
[955d9e43]88School of Computer Science, University of Waterloo, \\ Waterloo, Ontario, Canada
[694ee7d]89}
90
91\maketitle
[efe4d730]92
93% ### #     # ####### ######  #######
94%  #  ##    #    #    #     # #     #
95%  #  # #   #    #    #     # #     #
96%  #  #  #  #    #    ######  #     #
97%  #  #   # #    #    #   #   #     #
98%  #  #    ##    #    #    #  #     #
99% ### #     #    #    #     # #######
100
[694ee7d]101\section{Introduction}
[d02aaa9]102This proposal provides a minimal core concurrency API that is both simple, efficient and can be reused to build higher-level features. The simplest possible concurrency core is a thread and a lock but this low-level approach is hard to master. An easier approach for users is to support higher-level constructs as the basis of the concurrency in \CFA. Indeed, for highly productive parallel programming, high-level approaches are much more popular~\cite{HPP:Study}. Examples are task based, message passing and implicit threading.
[694ee7d]103
[d02aaa9]104There are actually two problems that need to be solved in the design of the concurrency for a programming language: which concurrency tools are available to the users and which parallelism tools are available. While these two concepts are often seen together, they are in fact distinct concepts that require different sorts of tools~\cite{Buhr05a}. Concurrency tools need to handle mutual exclusion and synchronization, while parallelism tools are more about performance, cost and resource utilization.
[694ee7d]105
[efe4d730]106%  #####  ####### #     #  #####  #     # ######  ######  ####### #     #  #####  #     #
107% #     # #     # ##    # #     # #     # #     # #     # #       ##    # #     #  #   #
108% #       #     # # #   # #       #     # #     # #     # #       # #   # #         # #
109% #       #     # #  #  # #       #     # ######  ######  #####   #  #  # #          #
110% #       #     # #   # # #       #     # #   #   #   #   #       #   # # #          #
111% #     # #     # #    ## #     # #     # #    #  #    #  #       #    ## #     #    #
112%  #####  ####### #     #  #####   #####  #     # #     # ####### #     #  #####     #
113
[694ee7d]114\section{Concurrency}
[d02aaa9]115Several tool can be used to solve concurrency challenges. Since these challenges always appear with the use of mutable shared-state, some languages and libraries simply disallow mutable shared-state (Erlang~\cite{Erlang}, Haskell~\cite{Haskell}, Akka (Scala)~\cite{Akka}). In these paradigms, interaction among concurrent objects relies on message passing~\cite{Thoth,Harmony,V-Kernel} or other paradigms that closely relate to networking concepts (channels\cit for example). However, in languages that use routine calls as their core abstraction mechanism, these approaches force a clear distinction between concurrent and non-concurrent paradigms (i.e., message passing versus routine call). Which in turn means that, in order to be effective, programmers need to learn two sets of designs patterns. This distinction can be hidden away in library code, but effective use of the librairy still has to take both paradigms into account. Approaches based on shared memory are more closely related to non-concurrent paradigms since they often rely on basic constructs like routine calls and objects. At a lower level these can be implemented as locks and atomic operations. Many such mechanisms have been proposed, including semaphores~\cite{Dijkstra68b} and path expressions~\cite{Campbell74}. However, for productivity reasons it is desireable to have a higher-level construct be the core concurrency paradigm~\cite{HPP:Study}. An approach that is worth mentionning because it is gaining in popularity is transactionnal memory~\cite{Dice10}[Check citation]. While this approach is even pursued by system languages like \CC\cit, the performance and feature set is currently too restrictive to add such a paradigm to a language like C or \CC\cit, which is why it was rejected as the core paradigm for concurrency in \CFA. One of the most natural, elegant, and efficient mechanisms for synchronization and communication, especially for shared memory systems, is the \emph{monitor}. Monitors were first proposed by Brinch Hansen~\cite{Hansen73} and later described and extended by C.A.R.~Hoare~\cite{Hoare74}. Many programming languages---e.g., Concurrent Pascal~\cite{ConcurrentPascal}, Mesa~\cite{Mesa}, Modula~\cite{Modula-2}, Turing~\cite{Turing:old}, Modula-3~\cite{Modula-3}, NeWS~\cite{NeWS}, Emerald~\cite{Emerald}, \uC~\cite{Buhr92a} and Java~\cite{Java}---provide monitors as explicit language constructs. In addition, operating-system kernels and device drivers have a monitor-like structure, although they often use lower-level primitives such as semaphores or locks to simulate monitors. For these reasons, this project proposes monitors as the core concurrency construct.
[694ee7d]116
[efe4d730]117% #     # ####### #     # ### ####### ####### ######   #####
118% ##   ## #     # ##    #  #     #    #     # #     # #     #
119% # # # # #     # # #   #  #     #    #     # #     # #
120% #  #  # #     # #  #  #  #     #    #     # ######   #####
121% #     # #     # #   # #  #     #    #     # #   #         #
122% #     # #     # #    ##  #     #    #     # #    #  #     #
123% #     # ####### #     # ###    #    ####### #     #  #####
124
[b512454]125\subsection{Monitors}
[955d9e43]126A monitor is a set of routines that ensure mutual exclusion when accessing shared state. This concept is generally associated with Object-Oriented Languages like Java~\cite{Java} or \uC~\cite{uC++book} but does not strictly require OOP semantics. The only requirements is the ability to declare a handle to a shared object and a set of routines that act on it :
[694ee7d]127\begin{lstlisting}
[7e10773]128        typedef /*some monitor type*/ monitor;
129        int f(monitor & m);
[694ee7d]130
131        int main() {
132                monitor m;
133                f(m);
134        }
135\end{lstlisting}
136
[efe4d730]137%  #####     #    #       #
138% #     #   # #   #       #
139% #        #   #  #       #
140% #       #     # #       #
141% #       ####### #       #
142% #     # #     # #       #
143%  #####  #     # ####### #######
144
[b512454]145\subsubsection{Call semantics} \label{call}
[d02aaa9]146The above monitor example displays some of the intrinsic characteristics. Indeed, it is necessary to use pass-by-reference over pass-by-value for monitor routines. This semantics is important because at their core, monitors are implicit mutual-exclusion objects (locks), and these objects cannot be copied. Therefore, monitors are implicitly non-copyable.
[694ee7d]147
[d02aaa9]148Another aspect to consider is when a monitor acquires its mutual exclusion. For example, a monitor may need to be passed through multiple helper routines that do not acquire the monitor mutual-exclusion on entry. Pass through can be both generic helper routines (\code{swap}, \code{sort}, etc.) or specific helper routines like the following to implement an atomic counter :
[694ee7d]149
150\begin{lstlisting}
[f7ff3fb]151        mutex struct counter_t { /*...see section §\ref{data}§...*/ };
[694ee7d]152
[d02aaa9]153        void ?{}(counter_t & nomutex this); //constructor
154        size_t ++?(counter_t & mutex this); //increment
[fe84230]155
156        //need for mutex is platform dependent here
[d02aaa9]157        void ?{}(size_t * this, counter_t & mutex cnt); //conversion
[694ee7d]158\end{lstlisting}
[7e10773]159
[d02aaa9]160Here, the constructor(\code{?\{\}}) uses the \code{nomutex} keyword to signify that it does not acquire the monitor mutual exclusion when constructing. This semantics is because an object not yet constructed should never be shared and therefore does not require mutual exclusion. The prefix increment operator uses \code{mutex} to protect the incrementing process from race conditions. Finally, there is a conversion operator from \code{counter_t} to \code{size_t}. This conversion may or may not require the \code{mutex} key word depending on whether or not reading an \code{size_t} is an atomic operation or not.
[694ee7d]161
[03bb816]162Having both \code{mutex} and \code{nomutex} keywords could be argued to be redundant based on the meaning of a routine having neither of these keywords. For example, given a routine without quualifiers \code{void foo(counter_t & this)} then one could argue that it should default to the safest option \code{mutex}. On the other hand, the option of having routine \code{void foo(counter_t & this)} mean \code{nomutex} is unsafe by default and may easily cause subtle errors. It can be argued that \code{nomutex} is the more "normal" behaviour, the \code{nomutex} keyword effectively stating explicitly that "this routine has nothing special". Another alternative is to make having exactly one of these keywords mandatory, which would provide the same semantics but without the ambiguity of supporting routine \code{void foo(counter_t & this)}. Mandatory keywords would also have the added benefice of being self-documented but at the cost of extra typing. In the end, which solution should be picked is still up for debate. For the reminder of this proposal, the explicit approach is used for clarity.
[694ee7d]163
[d02aaa9]164The next semantic decision is to establish when mutex/nomutex may be used as a type qualifier. Consider the following declarations:
[694ee7d]165\begin{lstlisting}
[9b4343e]166        int f1(monitor & mutex m);
167        int f2(const monitor & mutex m);
168        int f3(monitor ** mutex m);
169        int f4(monitor *[] mutex m);
170        int f5(graph(monitor*) & mutex m);
[694ee7d]171\end{lstlisting}
[d02aaa9]172The problem is to indentify which object(s) should be acquired. Furthermore, each object needs to be acquired only once. In the case of simple routines like \code{f1} and \code{f2} it is easy to identify an exhaustive list of objects to acquire on entry. Adding indirections (\code{f3}) still allows the compiler and programmer to indentify which object is acquired. However, adding in arrays (\code{f4}) makes it much harder. Array lengths are not necessarily known in C and even then making sure we only acquire objects once becomes also none trivial. This can be extended to absurd limits like \code{f5}, which uses a graph of monitors. To keep everyone as sane as possible~\cite{Chicken}, this projects imposes the requirement that a routine may only acquire one monitor per parameter and it must be the type of the parameter (ignoring potential qualifiers and indirections). Also note that while routine \code{f3} can be supported, meaning that monitor \code{**m} is be acquired, passing an array to this routine would be type safe and yet result in undefined behavior because only the first element of the array is acquired. However, this ambiguity is part of the C type system with respects to arrays. For this reason, it would also be reasonnable to disallow mutex in the context where arrays may be passed.
[694ee7d]173
[efe4d730]174% ######     #    #######    #
175% #     #   # #      #      # #
176% #     #  #   #     #     #   #
177% #     # #     #    #    #     #
178% #     # #######    #    #######
179% #     # #     #    #    #     #
180% ######  #     #    #    #     #
181
[b512454]182\subsubsection{Data semantics} \label{data}
[d02aaa9]183Once the call semantics are established, the next step is to establish data semantics. Indeed, until now a monitor is used simply as a generic handle but in most cases monitors contian shared data. This data should be intrinsic to the monitor declaration to prevent any accidental use of data without its appropriate protection. For example, here is a complete version of the counter showed in section \ref{call}:
[694ee7d]184\begin{lstlisting}
185        mutex struct counter_t {
186                int value;
187        };
188
[9b4343e]189        void ?{}(counter_t & nomutex this) {
[694ee7d]190                this.cnt = 0;
191        }
192
[7e10773]193        int ++?(counter_t & mutex this) {
[9a8dfcc]194                return ++this.value;
[694ee7d]195        }
196
[fe84230]197        //need for mutex is platform dependent here
198        void ?{}(int * this, counter_t & mutex cnt) {
[694ee7d]199                *this = (int)cnt;
200        }
201\end{lstlisting}
[9a8dfcc]202
[d02aaa9]203This simple counter is used as follows:
[9a8dfcc]204\begin{center}
205\begin{tabular}{c @{\hskip 0.35in} c @{\hskip 0.35in} c}
[694ee7d]206\begin{lstlisting}
[d02aaa9]207        //shared counter
[9a8dfcc]208        counter_t cnt;
[694ee7d]209
[d02aaa9]210        //multiple threads access counter
[9a8dfcc]211        thread 1 : cnt++;
212        thread 2 : cnt++;
213        thread 3 : cnt++;
214          ...
215        thread N : cnt++;
[694ee7d]216\end{lstlisting}
217\end{tabular}
[9a8dfcc]218\end{center}
[694ee7d]219
[d02aaa9]220Notice how the counter is used without any explicit synchronisation and yet supports thread-safe semantics for both reading and writting. Unlike object-oriented monitors, where calling a mutex member \emph{implicitly} acquires mutual-exclusion, \CFA uses an explicit mechanism to acquire mutual-exclusion. A consequence of this approach is that it extends to multi-monitor calls.
[694ee7d]221\begin{lstlisting}
[7e10773]222        int f(MonitorA & mutex a, MonitorB & mutex b);
[694ee7d]223
224        MonitorA a;
225        MonitorB b;
226        f(a,b);
227\end{lstlisting}
[d02aaa9]228This code acquires both locks before entering the critical section, called \emph{\gls{group-acquire}}. In practice, writing multi-locking routines that do not lead to deadlocks is tricky. Having language support for such a feature is therefore a significant asset for \CFA. In the case presented above, \CFA guarantees that the order of aquisition is consistent across calls to routines using the same monitors as arguments. However, since \CFA monitors use multi-acquisition locks, users can effectively force the acquiring order. For example, notice which routines use \code{mutex}/\code{nomutex} and how this affects aquiring order :
[694ee7d]229\begin{lstlisting}
[d02aaa9]230        void foo(A & mutex a, B & mutex b) { //acquire a & b
[694ee7d]231                //...
232        }
233
[d02aaa9]234        void bar(A & mutex a, B & nomutex b) { //acquire a
[694ee7d]235                //...
[d02aaa9]236                foo(a, b); //acquire b
[694ee7d]237                //...
238        }
239
[d02aaa9]240        void baz(A & nomutex a, B & mutex b) { //acquire b
[7e10773]241                //...
[d02aaa9]242                foo(a, b); //acquire a
[7e10773]243                //...
244        }
245\end{lstlisting}
[694ee7d]246
[d02aaa9]247The multi-acquisition monitor lock allows a monitor lock to be acquired by both \code{bar} or \code{baz} and acquired again in \code{foo}. In the calls to \code{bar} and \code{baz} the monitors are acquired in opposite order. such use leads to nested monitor call problems~\cite{Lister77}, which is a specific implementation of the lock acquiring order problem. In the example above, the user uses implicit ordering in the case of function \code{foo} but explicit ordering in the case of \code{bar} and \code{baz}. This subtle mistake means that calling these routines concurrently may lead to deadlock and is therefore undefined behavior. As shown on several occasion\cit, solving this problem requires :
[9a8dfcc]248\begin{enumerate}
[d02aaa9]249        \item Dynamically tracking of the monitor-call order.
[9a8dfcc]250        \item Implement rollback semantics.
251\end{enumerate}
252
[d02aaa9]253While the first requirement is already a significant constraint on the system, implementing a general rollback semantics in a C-like language is prohibitively complex \cit. In \CFA, users simply need to be carefull when acquiring multiple monitors at the same time.
[694ee7d]254
[efe4d730]255% ######  ####### #######    #    ### #        #####
256% #     # #          #      # #    #  #       #     #
257% #     # #          #     #   #   #  #       #
258% #     # #####      #    #     #  #  #        #####
259% #     # #          #    #######  #  #             #
260% #     # #          #    #     #  #  #       #     #
261% ######  #######    #    #     # ### #######  #####
262%
263%             ######  ####### #       #     # #     # ####### ######  #     #
264%             #     # #     # #        #   #  ##   ## #     # #     # #     #
265%             #     # #     # #         # #   # # # # #     # #     # #     #
266%  #####    ######  #     # #          #    #  #  # #     # ######  #######
267%             #       #     # #          #    #     # #     # #   #   #     #
268%             #       #     # #          #    #     # #     # #    #  #     #
269%             #       ####### #######    #    #     # ####### #     # #     #
270
[b512454]271\subsubsection{Implementation Details: Interaction with polymorphism}
[d02aaa9]272At first glance, interaction between monitors and \CFA's concept of polymorphism seems complex to support. However, it is shown that entry-point locking can solve most of the issues.
273
274Before looking into complex control flow, it is important to present the difference between the two acquiring options : \gls{callsite-locking} and \gls{entry-point-locking}, i.e. acquiring the monitors before making a mutex call or as the first instruction of the mutex call. For example:
275
276\begin{center}
277\begin{tabular}{|c|c|c|}
278Code & \gls{callsite-locking} & \gls{entry-point-locking} \\
279\CFA & pseudo-code & pseudo-code \\
280\hline
281\begin{lstlisting}
282void foo(monitor & mutex a) {
283
284
285
286        //Do Work
287        //...
288
289}
290
291void main() {
292        monitor a;
293
294
295
296        foo(a);
297
298}
299\end{lstlisting} &\begin{lstlisting}
300foo(& a) {
301
302
303
304        //Do Work
305        //...
306
307}
308
309main() {
310        monitor a;
311        //calling routine
312        //handles concurrency
313        acquire(a);
314        foo(a);
315        release(a);
316}
317\end{lstlisting} &\begin{lstlisting}
318foo(& a) {
319        //called routine
320        //handles concurrency
321        acquire(a);
322        //Do Work
323        //...
324        release(a);
325}
326
327main() {
328        monitor a;
329
330
331
332        foo(a);
333
334}
335\end{lstlisting}
336\end{tabular}
337\end{center}
338
339First of all, interaction between \code{otype} polymorphism and monitors is impossible since monitors do not support copying. Therefore, the main question is how to support \code{dtype} polymorphism. Since a monitor's main purpose is to ensure mutual exclusion when accessing shared data, this implies that mutual exclusion is only required for routines that do in fact access shared data. However, since \code{dtype} polymorphism always handles incomplete types (by definition), no \code{dtype} polymorphic routine can access shared data since the data requires knowledge about the type. Therefore, the only concern when combining \code{dtype} polymorphism and monitors is to protect access to routines. \Gls{callsite-locking} would require a significant amount of work, since any \code{dtype} routine may have to obtain some lock before calling a routine, depending on whether or not the type passed is a monitor. However, with \gls{entry-point-locking} calling a monitor routine becomes exactly the same as calling it from anywhere else.
340
[b512454]341
342
[efe4d730]343% ### #     # #######         #####   #####  #     # ####### ######
344%  #  ##    #    #           #     # #     # #     # #       #     #
345%  #  # #   #    #           #       #       #     # #       #     #
346%  #  #  #  #    #            #####  #       ####### #####   #     #
347%  #  #   # #    #    ###          # #       #     # #       #     #
348%  #  #    ##    #    ###    #     # #     # #     # #       #     #
349% ### #     #    #    ###     #####   #####  #     # ####### ######
350
[a3eaa29]351\subsection{Internal scheduling} \label{insched}
[d02aaa9]352Monitors also need to schedule waiting threads internally as a mean of synchronization. Internal scheduling is one of the simple examples of such a feature. It allows users to declare condition variables and have threads wait and signaled from them. Here is a simple example of such a technique :
[694ee7d]353
354\begin{lstlisting}
355        mutex struct A {
356                condition e;
357        }
358
[7e10773]359        void foo(A & mutex a) {
[694ee7d]360                //...
361                wait(a.e);
362                //...
363        }
364
[7e10773]365        void bar(A & mutex a) {
[694ee7d]366                signal(a.e);
367        }
368\end{lstlisting}
369
[03bb816]370Note that in \CFA, \code{condition} have no particular need to be stored inside a monitor, beyond any software engineering reasons. Here routine \code{foo} waits for the \code{signal} from \code{bar} before making further progress, effectively ensuring a basic ordering.
371
372As for simple mutual exclusion, these semantics must also be extended to include \gls{group-acquire} :
[7e10773]373\begin{center}
374\begin{tabular}{ c @{\hskip 0.65in} c }
[694ee7d]375Thread 1 & Thread 2 \\
376\begin{lstlisting}
[03bb816]377void foo(A & mutex a,
378           A & mutex b) {
[7b69174]379        //...
380        wait(a.e);
381        //...
382}
[694ee7d]383
[7b69174]384foo(a, b);
[7e10773]385\end{lstlisting} &\begin{lstlisting}
[03bb816]386void bar(A & mutex a,
387           A & mutex b) {
[7b69174]388        signal(a.e);
389}
[694ee7d]390
391
392
[7b69174]393bar(a, b);
[694ee7d]394\end{lstlisting}
395\end{tabular}
[7e10773]396\end{center}
[694ee7d]397
[03bb816]398To define the semantics of internal scheduling, it is important to look at nesting and \gls{group-acquire}. Indeed, beyond concerns about lock ordering, without scheduling the two following pseudo codes are mostly equivalent. In fact, if we assume monitors are ordered alphabetically, these two pseudo codes would probably lead to exactly the same implementation :
[9b4343e]399
[03bb816]400\begin{table}[h!]
401\centering
402\begin{tabular}{c c}
403\begin{lstlisting}[language=pseudo]
404monitor A, B, C
[fe84230]405
[03bb816]406acquire A
407        acquire B & C
[694ee7d]408
[03bb816]409                        //Do stuff
[7b69174]410
[03bb816]411        release B & C
412release A
413\end{lstlisting} &\begin{lstlisting}[language=pseudo]
414monitor A, B, C
[7b69174]415
[03bb816]416acquire A
417        acquire B
418                acquire C
419                        //Do stuff
420                release C
421        release B
422release A
423\end{lstlisting}
424\end{tabular}
425\end{table}
426
427Once internal scheduling is introduce however, semantics of \gls{group-acquire} become relevant. For example, let us look into the semantics of the following pseudo-code :
428
429\begin{lstlisting}[language=Pseudo]
4301: monitor A, B, C
4312: condition c1
4323:
4334: acquire A
4345:              acquire A & B & C
4356:                              signal c1
4367:              release A & B & C
4378: release A
438\end{lstlisting}
[7b69174]439
[03bb816]440Without \gls{group-acquire} signal simply baton passes the monitor lock on the next release. In the case above, we therefore need to indentify the next release. If line 8 is picked at the release point, then the signal will attempt to pass A \& B \& C, without having ownership of B \& C. Since this violates mutual exclusion, we conclude that line 7 is the only valid location where signalling can occur. The traditionnal meaning of signalling is to transfer ownership of the monitor(s) and immediately schedule the longest waiting task. However, in the discussed case, the signalling thread expects to maintain ownership of monitor A. This can be expressed in two differents ways : 1) the thread transfers ownership of all locks and reacquires A when it gets schedulled again or 2) it transfers ownership of all three monitors and then expects the ownership of A to be transferred back.
[7b69174]441
[03bb816]442However, the question is does these behavior motivate supporting acquireing non-disjoint set of monitors. Indeed, if the previous example was modified to only acquire B \& C at line 5 (an release the accordingly) then in respects to scheduling, we could add the simplifying constraint that all monitors in a bulk will behave the same way, simplifying the problem back to a single monitor problem which has already been solved. For this constraint to be acceptble however, we need to demonstrate that in does not prevent any meaningful possibilities. And, indeed, we can look at the two previous interpretation of the above pseudo-code and conclude that supporting the acquiring of non-disjoint set of monitors does not add any expressiveness to the language.
[7b69174]443
[03bb816]444Option 1 reacquires the lock after the signal statement, this can be rewritten as follows without the need for non-disjoint sets :
445\begin{lstlisting}[language=Pseudo]
446monitor A, B, C
447condition c1
[9b4343e]448
[03bb816]449acquire A & B & C
450        signal c1
451release A & B & C
452acquire A
[7b69174]453
[03bb816]454release A
455\end{lstlisting}
[694ee7d]456
[03bb816]457This pseudo code has almost exaclty the same semantics as the code acquiring intersecting sets of monitors.
[9b4343e]458
[03bb816]459Option 2 uses two-way lock ownership transferring instead of reacquiring monitor A. Two-way monitor ownership transfer is normally done using signalBlock semantics, which immedietely transfers ownership of a monitor before getting the ownership back when the other thread no longer needs the monitor. While the example pseudo-code for Option 2 seems toe transfer ownership of A, B and C and only getting A back, this is not a requirement. Getting back all 3 monitors and releasing B and C differs only in performance. For this reason, the second option could arguably be rewritten as :
[694ee7d]460
[03bb816]461\begin{lstlisting}[language=Pseudo]
462monitor A, B, C
463condition c1
[694ee7d]464
[03bb816]465acquire A
466        acquire B & C
467                signalBlock c1
468        release B & C
469release A
470\end{lstlisting}
471
472Obviously, the difference between these two snippets of pseudo code is that the first one transfers ownership of A, B and C while the second one only transfers ownership of B and C. However, this limitation can be removed by allowing user to release extra monitors when using internal scheduling, referred to as extended internal scheduling (pattent pending) from this point on. Extended internal scheduling means the two following pseudo-codes are functionnaly equivalent :
473\begin{table}[h!]
474\centering
475\begin{tabular}{c @{\hskip 0.65in} c}
476\begin{lstlisting}[language=pseudo]
477monitor A, B, C
478condition c1
479
480acquire A
481        acquire B & C
482                signalBlock c1 with A
483        release B & C
484release A
485\end{lstlisting} &\begin{lstlisting}[language=pseudo]
486monitor A, B, C
487condition c1
488
489acquire A
490        acquire A & B & C
491                signal c1
492        release A & B & C
493release A
[694ee7d]494\end{lstlisting}
495\end{tabular}
[03bb816]496\end{table}
[694ee7d]497
[03bb816]498It must be stated that the extended internal scheduling only makes sense when using wait and signalBlock, since they need to prevent barging, which cannot be done in the context of signal since the ownership transfer is strictly one-directionnal.
[694ee7d]499
[03bb816]500One critic that could arise is that extended internal schedulling is not composable since signalBlock must be explicitly aware of which context it is in. However, this argument is not relevant since acquire A, B and C in a context where a subset of them is already acquired cannot be achieved without spurriously releasing some locks or having an oracle aware of all monitors. Therefore, composability of internal scheduling is no more an issue than composability of monitors in general.
[694ee7d]501
[03bb816]502The main benefit of using extended internal scheduling is that it offers the same expressiveness as intersecting monitor set acquiring but greatly simplifies the selection of a leader (or representative) for a group of monitor. Indeed, when using intersecting sets, it is not obvious which set intersects with other sets which means finding a leader representing only the smallest scope is a hard problem. Where as when using disjoint sets, any monitor that would be intersecting must be specified in the extended set, the leader can be chosen as any monitor in the primary set.
[fe84230]503
[03bb816]504% We need to make sure the semantics for internally scheduling N monitors are a natural extension of the single monitor semantics. For this reason, we introduce the concept of \gls{mon-ctx}. In terms of context internal scheduling means "releasing a \gls{mon-ctx} and waiting for an other thread to acquire the same \gls{mon-ctx} and baton-pass it back to the initial thread". This definitions requires looking into what a \gls{mon-ctx} is and what the semantics of waiting and baton-passing are.
[694ee7d]505
[03bb816]506% \subsubsection{Internal scheduling: Context} \label{insched-context}
507% Monitor scheduling operations are defined in terms of the context they are in. In languages that only supports operations on a single monitor at once, the context is completly defined by which most recently acquired monitors. Indeed, acquiring several monitors will form a stack of monitors which will be released in FILO order. In \CFA, a \gls{mon-ctx} cannot be simply defined by the last monitor that was acquired since \gls{group-acquire} means multiple monitors can be "the last monitor acquired". The \gls{mon-ctx} is therefore defined as the last set of monitors to have been acquired. This means taht when any new monitor is acquired, the group it belongs to is the new \gls{mon-ctx}. Correspondingly, if any monitor is released, the \gls{mon-ctx} reverts back to the context that was used prior to the monitor being acquired. In the most common case, \gls{group-acquire} means every monitor of a group will be acquired in released at the same time. However, since every monitor has its own recursion level, \gls{group-acquire} does not prevent users from reacquiring certain monitors while acquireing new monitors in the same operation. For example :
[694ee7d]508
[03bb816]509% \begin{lstlisting}
510% //Forward declarations
511% monitor a, b, c
512% void foo( monitor & mutex a,
513%             monitor & mutex b);
514% void bar( monitor & mutex a,
515%             monitor & mutex b);
516% void baz( monitor & mutex a,
517%             monitor & mutex b,
518%             monitor & mutex c);
[7b69174]519
[03bb816]520% //Routines defined inline to illustrate context changed compared to the stack
[fe84230]521
[03bb816]522% //main thread
523% foo(a, b) {
524%       //thread calls foo
525%       //acquiring context a & b
[694ee7d]526
[03bb816]527%       baz(a, b) {
528%               //thread calls baz
529%               //no context change
[7b69174]530
[03bb816]531%               bar(a, b, c) {
532%                       //thread calls bar
533%                       //acquiring context a & b & c
[7b69174]534
[03bb816]535%                       //Do stuff
[fe84230]536
[03bb816]537%                       return;             
538%                       //call to bar returns
539%               }
540%               //context back to a & b
[694ee7d]541
[03bb816]542%               return;
543%               //call to baz returns
544%       }
545%       //no context change
[694ee7d]546
[03bb816]547%       return;
548%       //call to foo returns
549% }
550% //context back to initial state
[694ee7d]551
[03bb816]552% \end{lstlisting}
[694ee7d]553
[03bb816]554% As illustrated by the previous example, context changes can be caused by only one of the monitors comming into context or going out of context.
[d02aaa9]555
[03bb816]556% \subsubsection{Internal scheduling: Waiting} \label{insched-wait}
[d02aaa9]557
[03bb816]558% \subsubsection{Internal scheduling: Baton Passing} \label{insched-signal}
559% Baton passing in internal scheduling is done in terms of \code{signal} and \code{signalBlock}\footnote{Arguably, \code{signal_now} is a more evocative name and \code{signal} could be changed appropriately. }. While \code{signalBlock} is the more straight forward way of baton passing, transferring ownership immediately, it must rely on \code{signal} which is why t is discussed first.
560% \code{signal} has for effect to transfer the current context to another thread when the context would otherwise be released. This means that instead of releasing the concerned monitors, the first thread on the condition ready-queue is scheduled to run. The monitors are not released and when the signalled thread runs, it assumes it regained ownership of all the monitors it had in its context.
[d02aaa9]561
[03bb816]562% \subsubsection{Internal scheduling: Implementation} \label{insched-impl}
563% Too implement internal scheduling, three things are need : a data structure for waiting tasks, a data structure for signalled task and a leaving procedure to run the signalled task. In the case of both data structures, it is desireable to have to use intrusive data structures in order to prevent the need for any dynamic allocation. However, in both cases being able to queue several items in the same position in a queue is non trivial, even more so in the presence of concurrency. However, within a given \gls{mon-ctx}, all monitors have exactly the same behavior in regards to scheduling. Therefore, the problem of queuing multiple monitors at once can be ignored by choosing one monitor to represent every monitor in a context. While this could prove difficult in other situations, \gls{group-acquire} requires that the monitors be sorted according to some stable predicate. Since monitors are sorted in all contexts, the representative can simply be the first in the list. Choosing a representative means a simple intrusive queue inside the condition is sufficient to implement the data structure for both waiting and signalled monitors.
[d02aaa9]564
[03bb816]565% Since \CFA monitors don't have a complete image of the \gls{mon-ctx}, choosing the representative and maintaning the current context information cannot easily be done by any single monitors. However, as discussed in section [Missing section here], monitor mutual exclusion is implemented using an raii object which is already in charge of sorting monitors. This object has a complete picture of the \gls{mon-ctx} which means it is well suited to choose the reprensentative and detect context changes.
[d02aaa9]566
[03bb816]567% \newpage
568% \begin{lstlisting}
569% void ctor( monitor ** _monitors, int _count ) {
570%       bool ctx_changed = false;
571%       for( mon in _monitors ) {
572%               ctx_changed = acquire( mon ) || ctx_changed;
573%       }
[d02aaa9]574
[03bb816]575%       if( ctx_changed ) {
576%               set_representative();
577%               set_context();
578%       }
579% }
580
581% void dtor( monitor ** _monitors, int _count ) {
582%       if( context_will_exit( _monitors, count ) ) {
583%               baton_pass();
584%               return;
585%       }
586
587%       for( mon in _monitors ) {
588%               release( mon );
589%       }
590% }
591
592% \end{lstlisting}
593
594
595
596% A direct extension of the single monitor semantics is to release all locks when waiting and transferring ownership of all locks when signalling. However, for the purpose of synchronization it may be usefull to only release some of the locks but keep others. It is possible to support internal scheduling and \gls{group-acquire} without any extra syntax by relying on order of acquisition. Here is an example of the different contexts in which internal scheduling can be used. (Note that here the use of helper routines is irrelevant, only routines acquire mutual exclusion have an impact on internal scheduling):
597
598% \begin{table}[h!]
599% \centering
600% \begin{tabular}{|c|c|c|}
601% Context 1 & Context 2 & Context 3 \\
602% \hline
603% \begin{lstlisting}
604% condition e;
605
606% //acquire a & b
607% void foo(monitor & mutex a,
608%            monitor & mutex b) {
609
610%       wait(e); //release a & b
611% }
612
613
614
615
616
617
618% foo(a,b);
619% \end{lstlisting} &\begin{lstlisting}
620% condition e;
621
622% //acquire a
623% void bar(monitor & mutex a,
624%            monitor & nomutex b) {
625%       foo(a,b);
626% }
627
628% //acquire a & b
629% void foo(monitor & mutex a,
630%            monitor & mutex b) {
631%       wait(e);  //release a & b
632% }
633
634% bar(a, b);
635% \end{lstlisting} &\begin{lstlisting}
636% condition e;
637
638% //acquire a
639% void bar(monitor & mutex a,
640%            monitor & nomutex b) {
641%       baz(a,b);
642% }
643
644% //acquire b
645% void baz(monitor & nomutex a,
646%            monitor & mutex b) {
647%       wait(e);  //release b
648% }
649
650% bar(a, b);
651% \end{lstlisting}
652% \end{tabular}
653% \end{table}
654
655% Context 1 is the simplest way of acquiring more than one monitor (\gls{group-acquire}), using a routine with multiple parameters having the \code{mutex} keyword. Context 2 also uses \gls{group-acquire} as well in routine \code{foo}. However, the routine is called by routine \code{bar}, which only acquires monitor \code{a}. Since monitors can be acquired multiple times this does not cause a deadlock by itself but it does force the acquiring order to \code{a} then \code{b}. Context 3 also forces the acquiring order to be \code{a} then \code{b} but does not use \gls{group-acquire}. The previous example tries to illustrate the semantics that must be established to support releasing monitors in a \code{wait} statement. In all cases, the behavior of the wait statment is to release all the locks that were acquired my the inner-most monitor call. That is \code{a & b} in context 1 and 2 and \code{b} only in context 3. Here are a few other examples of this behavior.
656
657
658% \begin{center}
659% \begin{tabular}{|c|c|c|}
660% \begin{lstlisting}
661% condition e;
662
663% //acquire b
664% void foo(monitor & nomutex a,
665%            monitor & mutex b) {
666%       bar(a,b);
667% }
668
669% //acquire a
670% void bar(monitor & mutex a,
671%            monitor & nomutex b) {
672
673%       wait(e); //release a
674%                 //keep b
675% }
676
677% foo(a, b);
678% \end{lstlisting} &\begin{lstlisting}
679% condition e;
680
681% //acquire a & b
682% void foo(monitor & mutex a,
683%            monitor & mutex b) {
684%       bar(a,b);
685% }
686
687% //acquire b
688% void bar(monitor & mutex a,
689%            monitor & nomutex b) {
[9b4343e]690
[03bb816]691%       wait(e); //release b
692%                 //keep a
693% }
[7e10773]694
[03bb816]695% foo(a, b);
696% \end{lstlisting} &\begin{lstlisting}
697% condition e;
698
699% //acquire a & b
700% void foo(monitor & mutex a,
701%            monitor & mutex b) {
702%       bar(a,b);
703% }
704
705% //acquire none
706% void bar(monitor & nomutex a,
707%            monitor & nomutex b) {
708
709%       wait(e); //release a & b
710%                 //keep none
711% }
712
713% foo(a, b);
714% \end{lstlisting}
715% \end{tabular}
716% \end{center}
717% Note the right-most example is actually a trick pulled on the reader. Monitor state information is stored in thread local storage rather then in the routine context, which means that helper routines and other \code{nomutex} routines are invisible to the runtime system in regards to concurrency. This means that in the right-most example, the routine parameters are completly unnecessary. However, calling this routine from outside a valid monitor context is undefined.
718
719% These semantics imply that in order to release of subset of the monitors currently held, users must write (and name) a routine that only acquires the desired subset and simply calls wait. While users can use this method, \CFA offers the \code{wait_release}\footnote{Not sure if an overload of \code{wait} would work...} which will release only the specified monitors. In the center previous examples, the code in the center uses the \code{bar} routine to only release monitor \code{b}. Using the \code{wait_release} helper, this can be rewritten without having the name two routines :
720% \begin{center}
721% \begin{tabular}{ c c c }
722% \begin{lstlisting}
723%       condition e;
724
725%       //acquire a & b
726%       void foo(monitor & mutex a,
727%                  monitor & mutex b) {
728%               bar(a,b);
729%       }
730
731%       //acquire b
732%       void bar(monitor & mutex a,
733%                  monitor & nomutex b) {
734
735%               wait(e); //release b
736%                         //keep a
737%       }
738
739%       foo(a, b);
740% \end{lstlisting} &\begin{lstlisting}
741%       =>
742% \end{lstlisting} &\begin{lstlisting}
743%       condition e;
744
745%       //acquire a & b
746%       void foo(monitor & mutex a,
747%                  monitor & mutex b) {
748%               wait_release(e,b); //release b
749%                                        //keep a
750%       }
751
752%       foo(a, b);
753% \end{lstlisting}
754% \end{tabular}
755% \end{center}
756
757% Regardless of the context in which the \code{wait} statement is used, \code{signal} must be called holding the same set of monitors. In all cases, signal only needs a single parameter, the condition variable that needs to be signalled. But \code{signal} needs to be called from the same monitor(s) that call to \code{wait}. Otherwise, mutual exclusion cannot be properly transferred back to the waiting monitor.
758
759% Finally, an additional semantic which can be very usefull is the \code{signal_block} routine. This routine behaves like signal for all of the semantics discussed above, but with the subtelty that mutual exclusion is transferred to the waiting task immediately rather than wating for the end of the critical section.
760% \\
[c69adb7]761
[efe4d730]762% ####### #     # #######         #####   #####  #     # ####### ######
763% #        #   #     #           #     # #     # #     # #       #     #
764% #         # #      #           #       #       #     # #       #     #
765% #####      #       #            #####  #       ####### #####   #     #
766% #         # #      #    ###          # #       #     # #       #     #
767% #        #   #     #    ###    #     # #     # #     # #       #     #
768% ####### #     #    #    ###     #####   #####  #     # ####### ######
[fe84230]769\newpage
[7e10773]770\subsection{External scheduling} \label{extsched}
[687165a]771An alternative to internal scheduling is to use external scheduling instead. This method is more constrained and explicit which may help users tone down the undeterministic nature of concurrency. Indeed, as the following examples demonstrates, external scheduling allows users to wait for events from other threads without the concern of unrelated events occuring. External scheduling can generally be done either in terms of control flow (ex: \uC) or in terms of data (ex: Go). Of course, both of these paradigms have their own strenghts and weaknesses but for this project control flow semantics where chosen to stay consistent with the rest of the languages semantics. Two challenges specific to \CFA arise when trying to add external scheduling with loose object definitions and multi-monitor routines. The following example shows a simple use \code{accept} versus \code{wait}/\code{signal} and its advantages.
[694ee7d]772
[c69adb7]773\begin{center}
774\begin{tabular}{|c|c|}
775Internal Scheduling & External Scheduling \\
776\hline
[694ee7d]777\begin{lstlisting}
778        _Monitor blarg {
[c69adb7]779                condition c;
780        public:
[b512454]781                void f() { signal(c)}
782                void g() { wait(c); }
[c69adb7]783        private:
784        }
785\end{lstlisting}&\begin{lstlisting}
786        _Monitor blarg {
787
[694ee7d]788        public:
[687165a]789                void f() { /*...*/ }
[b512454]790                void g() { _Accept(f); }
[694ee7d]791        private:
792        }
793\end{lstlisting}
[c69adb7]794\end{tabular}
795\end{center}
796
[687165a]797In the case of internal scheduling, the call to \code{wait} only guarantees that \code{g} is the last routine to access the monitor. This intails that the routine \code{f} may have acquired mutual exclusion several times while routine \code{h} was waiting. On the other hand, external scheduling guarantees that while routine \code{h} was waiting, no routine other than \code{g} could acquire the monitor.
[a3eaa29]798\\
[694ee7d]799
[efe4d730]800% #       ####### #######  #####  #######    ####### ######        #  #####
801% #       #     # #     # #     # #          #     # #     #       # #     #
802% #       #     # #     # #       #          #     # #     #       # #
803% #       #     # #     #  #####  #####      #     # ######        #  #####
804% #       #     # #     #       # #          #     # #     # #     #       #
805% #       #     # #     # #     # #          #     # #     # #     # #     #
806% ####### ####### #######  #####  #######    ####### ######   #####   #####
807
[c69adb7]808\subsubsection{Loose object definitions}
[a3eaa29]809In \uC, monitor declarations include an exhaustive list of monitor operations. Since \CFA is not object oriented it becomes both more difficult to implement but also less clear for the user :
[694ee7d]810
811\begin{lstlisting}
812        mutex struct A {};
813
[c69adb7]814        void f(A & mutex a);
[b512454]815        void g(A & mutex a) { accept(f); }
[694ee7d]816\end{lstlisting}
817
[b512454]818However, external scheduling is an example where implementation constraints become visible from the interface. Indeed, ince there is no hard limit to the number of threads trying to acquire a monitor concurrently, performance is a significant concern. Here is the pseudo code for the entering phase of a monitor :
819
820\begin{center}
821\begin{tabular}{l}
[b1bdc7d6]822\begin{lstlisting}[language=Pseudo]
823        if monitor is free :
[b512454]824                enter
[b1bdc7d6]825        elif monitor accepts me :
[b512454]826                enter
[b1bdc7d6]827        else :
[b512454]828                block
829\end{lstlisting}
830\end{tabular}
831\end{center}
832
[b1bdc7d6]833For the \pseudo{monitor is free} condition it is easy to implement a check that can evaluate the condition in a few instruction. However, a fast check for \pseudo{monitor accepts me} is much harder to implement depending on the constraints put on the monitors. Indeed, monitors are often expressed as an entry queue and some acceptor queue as in the following figure :
[b512454]834
835\begin{center}
[b1bdc7d6]836{\resizebox{0.4\textwidth}{!}{\input{monitor}}}
[b512454]837\end{center}
838
[b1bdc7d6]839There are other alternatives to these pictures but in the case of this picture implementing a fast accept check is relatively easy. Indeed simply updating a bitmask when the acceptor queue changes is enough to have a check that executes in a single instruction, even with a fairly large number of acceptor. However, this relies on the fact that all the acceptable routines are declared with the monitor type. For OO languages this doesn't compromise much since monitors already have an exhaustive list of member routines. However, for \CFA this isn't the case, routines can be added to a type anywhere after its declaration. Its important to note that the bitmask approach does not actually require an exhaustive list of routines, but it requires a dense unique ordering of routines with an upper-bound and that ordering must be consistent across translation units.
840The alternative would be to have a picture more like this one:
[b512454]841
[b1bdc7d6]842\begin{center}
843{\resizebox{0.4\textwidth}{!}{\input{ext_monitor}}}
844\end{center}
[b512454]845
[b1bdc7d6]846Not storing the queues inside the monitor means that the storage can vary between routines, allowing for more flexibility and extensions. Storing an array of function-pointers would solve the issue of uniquely identifying acceptable routines. However, the single instruction bitmask compare has been replaced by dereferencing a pointer followed by a linear search. Furthermore, supporting nested external scheduling may now require additionnal searches on calls to accept to check if a routine is already queued in.
[694ee7d]847
[b1bdc7d6]848At this point we must make a decision between flexibility and performance. Many design decisions in \CFA achieve both flexibility and performance, for example polymorphic routines add significant flexibility but inlining them means the optimizer can easily remove any runtime cost. Here however, the cost of flexibility cannot be trivially removed.
[694ee7d]849
[b1bdc7d6]850In either cases here are a few alternatives for the different syntaxes this syntax : \\
851\begin{center}
852{\renewcommand{\arraystretch}{1.5}
853\begin{tabular}[t]{l @{\hskip 0.35in} l}
854\hline
855\multicolumn{2}{ c }{\code{accept} on type}\\
856\hline
[694ee7d]857Alternative 1 & Alternative 2 \\
858\begin{lstlisting}
859mutex struct A
[b1bdc7d6]860accept( void f(A & mutex a) )
[694ee7d]861{};
[7e10773]862\end{lstlisting} &\begin{lstlisting}
[694ee7d]863mutex struct A {}
[b1bdc7d6]864accept( void f(A & mutex a) );
[694ee7d]865
866\end{lstlisting} \\
867Alternative 3 & Alternative 4 \\
868\begin{lstlisting}
869mutex struct A {
[b1bdc7d6]870        accept( void f(A & mutex a) )
[694ee7d]871};
872
[7e10773]873\end{lstlisting} &\begin{lstlisting}
[694ee7d]874mutex struct A {
875        accept :
[b1bdc7d6]876                void f(A & mutex a) );
[694ee7d]877};
[b1bdc7d6]878\end{lstlisting}\\
879\hline
880\multicolumn{2}{ c }{\code{accept} on routine}\\
881\hline
882\begin{lstlisting}
883mutex struct A {};
[694ee7d]884
[b1bdc7d6]885void f(A & mutex a)
886
887accept( void f(A & mutex a) )
888void g(A & mutex a) {
889        /*...*/
890}
891\end{lstlisting}&\\
892\end{tabular}
893}
894\end{center}
[694ee7d]895
896An other aspect to consider is what happens if multiple overloads of the same routine are used. For the time being it is assumed that multiple overloads of the same routine should be scheduled regardless of the overload used. However, this could easily be extended in the future.
897
[efe4d730]898% #     # #     # #       ####### ###    #     # ####### #     #
899% ##   ## #     # #          #     #     ##   ## #     # ##    #
900% # # # # #     # #          #     #     # # # # #     # # #   #
901% #  #  # #     # #          #     #     #  #  # #     # #  #  #
902% #     # #     # #          #     #     #     # #     # #   # #
903% #     # #     # #          #     #     #     # #     # #    ##
904% #     #  #####  #######    #    ###    #     # ####### #     #
905
[694ee7d]906\subsubsection{Multi-monitor scheduling}
907
908External scheduling, like internal scheduling, becomes orders of magnitude more complex when we start introducing multi-monitor syntax. Even in the simplest possible case some new semantics need to be established :
909\begin{lstlisting}
[7e10773]910        accept( void f(mutex struct A & mutex this))
[694ee7d]911        mutex struct A {};
912
913        mutex struct B {};
914
[7e10773]915        void g(A & mutex a, B & mutex b) {
[694ee7d]916                accept(f); //ambiguous, which monitor
917        }
918\end{lstlisting}
919
920The obvious solution is to specify the correct monitor as follows :
921
922\begin{lstlisting}
[7e10773]923        accept( void f(mutex struct A & mutex this))
[694ee7d]924        mutex struct A {};
925
926        mutex struct B {};
927
[7e10773]928        void g(A & mutex a, B & mutex b) {
[694ee7d]929                accept( f, b );
930        }
931\end{lstlisting}
932
[b1bdc7d6]933This is unambiguous. Both locks will be acquired and kept, when routine \code{f} is called the lock for monitor \code{a} will be temporarily transferred from \code{g} to \code{f} (while \code{g} still holds lock \code{b}). This behavior can be extended to multi-monitor accept statment as follows.
[694ee7d]934
935\begin{lstlisting}
[7e10773]936        accept( void f(mutex struct A & mutex, mutex struct A & mutex))
[694ee7d]937        mutex struct A {};
938
939        mutex struct B {};
940
[7e10773]941        void g(A & mutex a, B & mutex b) {
[694ee7d]942                accept( f, b, a );
943        }
944\end{lstlisting}
945
[7e10773]946Note that the set of monitors passed to the \code{accept} statement must be entirely contained in the set of monitor already acquired in the routine. \code{accept} used in any other context is Undefined Behaviour.
[694ee7d]947
[efe4d730]948% ######  ####### #######    #    ### #        #####
949% #     # #          #      # #    #  #       #     #
950% #     # #          #     #   #   #  #       #
951% #     # #####      #    #     #  #  #        #####
952% #     # #          #    #######  #  #             #
953% #     # #          #    #     #  #  #       #     #
954% ######  #######    #    #     # ### #######  #####
955%
956%                #####  #     # ####### #     # #######  #####
957%             #     # #     # #       #     # #       #     #
958%             #     # #     # #       #     # #       #
959%    #####    #     # #     # #####   #     # #####    #####
960%             #   # # #     # #       #     # #             #
961%             #    #  #     # #       #     # #       #     #
962%                #### #  #####  #######  #####  #######  #####
963
964
[b512454]965\subsubsection{Implementation Details: External scheduling queues}
[b1bdc7d6]966To support multi-monitor external scheduling means that some kind of entry-queues must be used that is aware of both monitors. However, acceptable routines must be aware of the entry queues which means they must be stored inside at least one of the monitors that will be acquired. This in turn adds the requirement a systematic algorithm of disambiguating which queue is relavant regardless of user ordering. The proposed algorithm is to fall back on monitors lock ordering and specify that the monitor that is acquired first is the lock with the relevant entry queue. This assumes that the lock acquiring order is static for the lifetime of all concerned objects but that is a reasonnable constraint. This algorithm choice has two consequences, the entry queue of the highest priority monitor is no longer a true FIFO queue and the queue of the lowest priority monitor is both required and probably unused. The queue can no longer be a FIFO queue because instead of simply containing the waiting threads in order arrival, they also contain the second mutex. Therefore, another thread with the same highest priority monitor but a different lowest priority monitor may arrive first but enter the critical section after a thread with the correct pairing. Secondly, since it may not be known at compile time which monitor will be the lowest priority monitor, every monitor needs to have the correct queues even though it is probable that half the multi-monitor queues will go unused for the entire duration of the program.
[694ee7d]967
[c69adb7]968\subsection{Other concurrency tools}
[b1bdc7d6]969TO BE CONTINUED...
[c69adb7]970
[f7ff3fb]971
972
973
974
975
976
977
978
979
[d1fbaa7]980\newpage
[efe4d730]981% ######     #    ######     #    #       #       ####### #       ###  #####  #     #
982% #     #   # #   #     #   # #   #       #       #       #        #  #     # ##   ##
983% #     #  #   #  #     #  #   #  #       #       #       #        #  #       # # # #
984% ######  #     # ######  #     # #       #       #####   #        #   #####  #  #  #
985% #       ####### #   #   ####### #       #       #       #        #        # #     #
986% #       #     # #    #  #     # #       #       #       #        #  #     # #     #
987% #       #     # #     # #     # ####### ####### ####### ####### ###  #####  #     #
[c69adb7]988\section{Parallelism}
[687165a]989Historically, computer performance was about processor speeds and instructions count. However, with heat dissipation being a direct consequence of speed increase, parallelism has become the new source for increased performance~\cite{Sutter05, Sutter05b}. In this decade, it is not longer reasonnable to create a high-performance application without caring about parallelism. Indeed, parallelism is an important aspect of performance and more specifically throughput and hardware utilization. The lowest-level approach of parallelism is to use \glspl{kthread} in combination with semantics like \code{fork}, \code{join}, etc. However, since these have significant costs and limitations, \glspl{kthread} are now mostly used as an implementation tool rather than a user oriented one. There are several alternatives to solve these issues that all have strengths and weaknesses. While there are many variations of the presented paradigms, most of these variations do not actually change the guarantees or the semantics, they simply move costs in order to achieve better performance for certain workloads.
[c69adb7]990
991\subsection{User-level threads}
[687165a]992A direct improvement on the \gls{kthread} approach is to use \glspl{uthread}. These threads offer most of the same features that the operating system already provide but can be used on a much larger scale. This approach is the most powerfull solution as it allows all the features of multi-threading, while removing several of the more expensives costs of using kernel threads. The down side is that almost none of the low-level threading problems are hidden, users still have to think about data races, deadlocks and synchronization issues. These issues can be somewhat alleviated by a concurrency toolkit with strong garantees but the parallelism toolkit offers very little to reduce complexity in itself.
[c69adb7]993
[687165a]994Examples of languages that support \glspl{uthread} are Erlang~\cite{Erlang} and \uC~\cite{uC++book}.
[c69adb7]995
[687165a]996\subsubsection{Fibers : user-level threads without preemption}
997A popular varient of \glspl{uthread} is what is often reffered to as \glspl{fiber}. However, \glspl{fiber} do not present meaningful semantical differences with \glspl{uthread}. Advocates of \glspl{fiber} list their high performance and ease of implementation as majors strenghts of \glspl{fiber} but the performance difference between \glspl{uthread} and \glspl{fiber} is controversial and the ease of implementation, while true, is a weak argument in the context of language design. Therefore this proposal largely ignore fibers.
[d073e3c]998
[955d9e43]999An example of a language that uses fibers is Go~\cite{Go}
[694ee7d]1000
[d073e3c]1001\subsection{Jobs and thread pools}
[687165a]1002The approach on the opposite end of the spectrum is to base parallelism on \glspl{pool}. Indeed, \glspl{pool} offer limited flexibility but at the benefit of a simpler user interface. In \gls{pool} based systems, users express parallelism as units of work and a dependency graph (either explicit or implicit) that tie them together. This approach means users need not worry about concurrency but significantly limits the interaction that can occur among jobs. Indeed, any \gls{job} that blocks also blocks the underlying worker, which effectively means the CPU utilization, and therefore throughput, suffers noticeably. It can be argued that a solution to this problem is to use more workers than available cores. However, unless the number of jobs and the number of workers are comparable, having a significant amount of blocked jobs always results in idles cores.
[d073e3c]1003
1004The gold standard of this implementation is Intel's TBB library~\cite{TBB}.
1005
[c69adb7]1006\subsection{Paradigm performance}
[687165a]1007While the choice between the three paradigms listed above may have significant performance implication, it is difficult to pindown the performance implications of chosing a model at the language level. Indeed, in many situations one of these paradigms may show better performance but it all strongly depends on the workload. Having a large amount of mostly independent units of work to execute almost guarantess that the \gls{pool} based system has the best performance thanks to the lower memory overhead. However, interactions between jobs can easily exacerbate contention. User-level threads allow fine-grain context switching, which results in better resource utilisation, but context switches will be more expansive and the extra control means users need to tweak more variables to get the desired performance. Furthermore, if the units of uninterrupted work are large enough the paradigm choice is largely amorticised by the actual work done.
[694ee7d]1008
[efe4d730]1009%  #####  #######    #          ####### ######  ######
1010% #     # #         # #            #    #     # #     #
1011% #       #        #   #           #    #     # #     #
1012% #       #####   #     # #####    #    ######  ######
1013% #       #       #######          #    #     # #     #
1014% #     # #       #     #          #    #     # #     #
1015%  #####  #       #     #          #    ######  ######
1016
[a9aab60]1017\section{\CFA 's Thread Building Blocks}
[687165a]1018As a system-level language, \CFA should offer both performance and flexibilty as its primary goals, simplicity and user-friendliness being a secondary concern. Therefore, the core of parallelism in \CFA should prioritize power and efficiency. With this said, deconstructing popular paradigms in order to get simple building blocks yields \glspl{uthread} as the core parallelism block. \Glspl{pool} and other parallelism paradigms can then be built on top of the underlying threading model.
[c69adb7]1019
[f7ff3fb]1020\subsection{Coroutines : A stepping stone}\label{coroutine}
1021While the main focus of this proposal is concurrency and paralellism, it is important to adress coroutines which are actually a significant underlying aspect of the concurrency system. Indeed, while having nothing todo with parallelism and arguably very little to do with concurrency, coroutines need to deal with context-switchs and and other context management operations. Therefore, this proposal includes coroutines both as an intermediate step for the implementation of threads and a first class feature of \CFA.
1022
1023The core API of coroutines revolve around two features : independent stacks and \code{suspend}/\code{resume}.
1024Here is an example of a solution to the fibonnaci problem using \CFA coroutines :
1025\begin{lstlisting}
1026        struct Fibonacci {
1027              int fn; // used for communication
1028              coroutine_descriptor c;
1029        };
1030
1031        void ?{}(Fibonacci* this) {
1032              this->fn = 0;
1033        }
1034
1035        coroutine_descriptor* get_¶coroutine¶(Fibonacci* this) {
1036              return &this->c;
1037        }
1038
1039        void co_main(Fibonacci* this) {
1040                int fn1, fn2;           // retained between resumes
1041                this->fn = 0;
1042                fn1 = this->fn;
1043                suspend(this);          // return to last resume
1044
1045                this->fn = 1;
1046                fn2 = fn1;
1047                fn1 = this->fn;
1048                suspend(this);          // return to last resume
1049
1050                for ( ;; ) {
1051                        this->fn = fn1 + fn2;
1052                        fn2 = fn1;
1053                        fn1 = this->fn;
1054                        suspend(this);  // return to last resume
1055                }
1056        }
1057
1058        int next(Fibonacci* this) {
1059                resume(this); // transfer to last suspend
1060                return this.fn;
1061        }
1062
1063        void main() {
1064                Fibonacci f1, f2;
1065                for ( int i = 1; i <= 10; i += 1 ) {
1066                        sout | next(&f1) | '§\verb+ +§' | next(&f2) | endl;
1067                }
1068        }
1069\end{lstlisting}
1070
1071\subsubsection{Construction}
1072One important design challenge for coroutines and threads (shown in section \ref{threads}) is that the runtime system needs to run some code after the user-constructor runs. In the case of the coroutines this challenge is simpler since there is no loss of determinism brough by preemption or scheduling, however, the underlying challenge remains the same for coroutines and threads.
1073
1074The runtime system needs to create the coroutine's stack and more importantly prepare it for the first resumption. The timing of the creation is non trivial since users both expect to have fully constructed objects once the main is called and to be able to resume the coroutine from the main (Obviously we only solve cases where these two statements don't conflict). There are several solutions to this problem but the chosen options effectively forces the design of the coroutine.
1075
1076Furthermore, \CFA faces an extra challenge which is that polymorphique routines rely on invisible thunks when casted to non-polymorphic routines and these thunks have function scope, for example :
1077
1078TODO : Simple case where a thunk would be created.
1079
1080
1081
1082\subsubsection{Alternative: Inheritance}
1083One solution to this challenge would be to use inheritence,
1084
1085\begin{lstlisting}
1086        struct Fibonacci {
1087              int fn; // used for communication
1088              coroutine c;
1089        };
1090
1091        void ?{}(Fibonacci* this) {
1092              this->fn = 0;
1093                (&this->c){};
1094        }
1095\end{lstlisting}
1096
1097There are two downsides to the approach. The first, which is relatively minor, is that the base class needs to be made aware of the main routine pointer, regardless of whether we use a parameter or a virtual pointer, this means the coroutine data must be made larger to store a value that is actually a compile time constant (The address of the main routine). The second problem which is both subtle but significant, is that now can get the initialisation order of there coroutines wrong. Indeed, every field of a \CFA struct will be constructed but in the order of declaration, unless users explicitly write otherwise. This means that users who forget to initialize a the coroutine at the right time may resume the coroutine at with an uninitilized object. For coroutines, this is unlikely to be a problem, for threads however, this is a significant problem.
1098
1099\subsubsection{Alternative: Reserved keyword}
1100The next alternative is to use language support to annotate coroutines as follows :
1101
1102\begin{lstlisting}
1103        coroutine struct Fibonacci {
1104              int fn; // used for communication
1105        };
1106\end{lstlisting}
1107
1108This mean the compiler can solve problems by injecting code where needed. The downside of this approach is that it makes coroutine a special case in the language. Users who would want to extend coroutines or build their own for various reasons can only do so in ways offered by the language. Furthermore, implementing coroutines without language supports also displays the power of \CFA.
1109
1110\subsubsection{Alternative: Lamda Objects}
1111
1112Boost does not use objects...
1113TO BE CONTINUED...
1114
1115\subsubsection{Trait based coroutines}
1116
1117Finally the approach chosen, which is the one closest to \CFA idioms, is to use trait-based lazy coroutines, the approach shown in section \ref{coroutine}. This approach defines a coroutine as anything that satisfies the \code{is_coroutine} and is used as a coroutine is a coroutine. This entails the an object is not a coroutine until \code{resume} (and \code{prime}) is called on the object. Correspondingly, any object that is passed to \code{resume} is a coroutine since it must satisfy the \code{is_coroutine} trait to compile.
1118
[efe4d730]1119% ####### #     # ######  #######    #    ######   #####
1120%    #    #     # #     # #         # #   #     # #     #
1121%    #    #     # #     # #        #   #  #     # #
1122%    #    ####### ######  #####   #     # #     #  #####
1123%    #    #     # #   #   #       ####### #     #       #
1124%    #    #     # #    #  #       #     # #     # #     #
1125%    #    #     # #     # ####### #     # ######   #####
1126
[f7ff3fb]1127\subsection{Thread Interface}\label{threads}
[687165a]1128The basic building blocks of \CFA are \glspl{cfathread}. By default these are implemented as \glspl{uthread}, and as such, offer a flexible and lightweight threading interface (lightweight compared to \glspl{kthread}). A thread can be declared using a struct declaration with prefix \code{thread} as follows :
[c69adb7]1129
[a9aab60]1130\begin{lstlisting}
[f7ff3fb]1131        trait is_¶thread¶(dtype T) {
1132                void co_main(T* this);
1133                coroutine* get_coroutine(T* this);
1134        };
1135
[a9aab60]1136        thread struct foo {};
1137\end{lstlisting}
[c69adb7]1138
[687165a]1139Obviously, for this thread implementation to be usefull it must run some user code. Several other threading interfaces use a function-pointer representation as the interface of threads (for example : \Csharp~\cite{Csharp} and Scala~\cite{Scala}). However, this proposal considers that statically tying a \code{main} routine to a thread superseeds this approach. Since the \code{main} routine is already a special routine in \CFA (where the program begins), the existing syntax for declaring routines names with special semantics can be extended, i.e. operator overloading. As such the \code{main} routine of a thread can be defined as :
[a9aab60]1140\begin{lstlisting}
1141        thread struct foo {};
[c69adb7]1142
[687165a]1143        void ?main(foo* this) {
1144                sout | "Hello World!" | endl;
[a9aab60]1145        }
1146\end{lstlisting}
[c69adb7]1147
[687165a]1148In this example, threads of type \code{foo} will start there execution in the \code{void ?main(foo*)} routine which in this case prints \code{"Hello World!"}. While this proposoal encourages this approach which is enforces strongly type programming. Users may prefer to use the routine based thread semantics for the sake of simplicity. With these semantics it is trivial to write a thread type that takes a function pointer as parameter and executes it on its stack asynchronously :
[c69adb7]1149\begin{lstlisting}
[a9aab60]1150        typedef void (*voidFunc)(void);
[c69adb7]1151
[a9aab60]1152        thread struct FuncRunner {
1153                voidFunc func;
1154        };
[c69adb7]1155
[a9aab60]1156        //ctor
[687165a]1157        void ?{}(FuncRunner* this, voidFunc inFunc) {
[a9aab60]1158                func = inFunc;
1159        }
[c69adb7]1160
[a9aab60]1161        //main
[f7ff3fb]1162        void t_main(FuncRunner* this) {
[a9aab60]1163                this->func();
1164        }
1165\end{lstlisting}
[c69adb7]1166
[687165a]1167Of course for threads to be useful, it must be possible to start and stop threads and wait for them to complete execution. While using an \acrshort{api} such as \code{fork} and \code{join} is relatively common in the literature, such an interface is unnecessary. Indeed, the simplest approach is to use \acrshort{raii} principles and have threads \code{fork} once the constructor has completed and \code{join} before the destructor runs.
[a9aab60]1168\begin{lstlisting}
[687165a]1169thread struct World; //FuncRunner declared above
[a9aab60]1170
[687165a]1171void ?main(thread World* this) {
[a9aab60]1172        sout | "World!" | endl;
[c69adb7]1173}
1174
[a9aab60]1175void main() {
[687165a]1176        World w;
[a9aab60]1177        //Thread run forks here
1178
1179        //Print to "Hello " and "World!" will be run concurrently
1180        sout | "Hello " | endl;
1181
1182        //Implicit join at end of scope
[c69adb7]1183}
[a9aab60]1184\end{lstlisting}
[687165a]1185This semantic has several advantages over explicit semantics : typesafety is guaranteed, a thread is always started and stopped exaclty once and users cannot make any progamming errors. However, one of the apparent drawbacks of this system is that threads now always form a lattice, that is they are always destroyed in opposite order of construction. While this seems like a significant limitation, existing \CFA semantics can solve this problem. Indeed, by using dynamic allocation to create threads will naturally let threads outlive the scope in which the thread was created much like dynamically allocating memory will let objects outlive the scope in which thy were created :
[c69adb7]1186
[a9aab60]1187\begin{lstlisting}
1188        thread struct MyThread {
1189                //...
1190        };
[c69adb7]1191
[a9aab60]1192        //ctor
[687165a]1193        void ?{}(MyThread* this,
1194                     bool is_special = false) {
1195                //...
1196        }
[a9aab60]1197
1198        //main
[687165a]1199        void ?main(MyThread* this) {
1200                //...
1201        }
1202
1203        void foo() {
1204                MyThread* special_thread;
1205                {
1206                        MyThread thrds = {false};
1207                        //Start a thread at the beginning of the scope
1208
1209                        DoStuff();
1210
1211                        //create a other thread that will outlive the thread in this scope
1212                        special_thread = new MyThread{true};
1213
1214                        //Wait for the thread to finish
1215                }
1216                DoMoreStuff();
1217
1218                //Now wait for the special
1219        }
1220\end{lstlisting}
1221
1222Another advantage of this semantic is that it naturally scale to multiple threads meaning basic synchronisation is very simple :
1223
1224\begin{lstlisting}
1225        thread struct MyThread {
1226                //...
1227        };
1228
1229        //ctor
1230        void ?{}(MyThread* this) {}
1231
1232        //main
1233        void ?main(MyThread* this) {
[a9aab60]1234                //...
1235        }
[c69adb7]1236
[a9aab60]1237        void foo() {
1238                MyThread thrds[10];
1239                //Start 10 threads at the beginning of the scope
[c69adb7]1240
[a9aab60]1241                DoStuff();
[c69adb7]1242
[a9aab60]1243                //Wait for the 10 threads to finish
1244        }
[687165a]1245\end{lstlisting}
[d073e3c]1246
[df3339a]1247\newpage
1248\bf{WORK IN PROGRESS}
[a9aab60]1249\subsection{The \CFA Kernel : Processors, Clusters and Threads}\label{kernel}
1250
1251
1252\subsection{Paradigms}\label{cfaparadigms}
1253Given these building blocks we can then reproduce the all three of the popular paradigms. Indeed, we get \glspl{uthread} as the default paradigm in \CFA. However, disabling \glspl{preemption} on the \gls{cfacluster} means \glspl{cfathread} effectively become \glspl{fiber}. Since several \glspl{cfacluster} with different scheduling policy can coexist in the same application, this allows \glspl{fiber} and \glspl{uthread} to coexist in the runtime of an application.
1254
1255% \subsection{High-level options}\label{tasks}
1256%
1257% \subsubsection{Thread interface}
1258% constructors destructors
1259%       initializer lists
1260% monitors
1261%
1262% \subsubsection{Futures}
1263%
1264% \subsubsection{Implicit threading}
1265% Finally, simpler applications can benefit greatly from having implicit parallelism. That is, parallelism that does not rely on the user to write concurrency. This type of parallelism can be achieved both at the language level and at the system level.
1266%
1267% \begin{center}
1268% \begin{tabular}[t]{|c|c|c|}
1269% Sequential & System Parallel & Language Parallel \\
1270% \begin{lstlisting}
1271% void big_sum(int* a, int* b,
1272%                int* out,
1273%                size_t length)
1274% {
1275%       for(int i = 0; i < length; ++i ) {
1276%               out[i] = a[i] + b[i];
1277%       }
1278% }
1279%
1280%
1281%
1282%
1283%
1284% int* a[10000];
1285% int* b[10000];
1286% int* c[10000];
1287% //... fill in a and b ...
1288% big_sum(a, b, c, 10000);
1289% \end{lstlisting} &\begin{lstlisting}
1290% void big_sum(int* a, int* b,
1291%                int* out,
1292%                size_t length)
1293% {
1294%       range ar(a, a + length);
1295%       range br(b, b + length);
1296%       range or(out, out + length);
1297%       parfor( ai, bi, oi,
1298%       [](int* ai, int* bi, int* oi) {
1299%               oi = ai + bi;
1300%       });
1301% }
1302%
1303% int* a[10000];
1304% int* b[10000];
1305% int* c[10000];
1306% //... fill in a and b ...
1307% big_sum(a, b, c, 10000);
1308% \end{lstlisting}&\begin{lstlisting}
1309% void big_sum(int* a, int* b,
1310%                int* out,
1311%                size_t length)
1312% {
1313%       for (ai, bi, oi) in (a, b, out) {
1314%               oi = ai + bi;
1315%       }
1316% }
1317%
1318%
1319%
1320%
1321%
1322% int* a[10000];
1323% int* b[10000];
1324% int* c[10000];
1325% //... fill in a and b ...
1326% big_sum(a, b, c, 10000);
1327% \end{lstlisting}
1328% \end{tabular}
1329% \end{center}
1330%
1331% \subsection{Machine setup}\label{machine}
1332% Threads are all good and well but wee still some OS support to fully utilize available hardware.
1333%
1334% \textbf{\large{Work in progress...}} Do wee need something beyond specifying the number of kernel threads?
1335
[efe4d730]1336%    #    #       #
1337%   # #   #       #
1338%  #   #  #       #
1339% #     # #       #
1340% ####### #       #
1341% #     # #       #
1342% #     # ####### #######
[a9aab60]1343\section{Putting it all together}
[694ee7d]1344
[efe4d730]1345
1346
1347
1348
1349
1350
1351
1352
1353
1354% ####### #     # ####### #     # ######  #######
1355% #       #     #    #    #     # #     # #
1356% #       #     #    #    #     # #     # #
1357% #####   #     #    #    #     # ######  #####
1358% #       #     #    #    #     # #   #   #
1359% #       #     #    #    #     # #    #  #
1360% #        #####     #     #####  #     # ######
[694ee7d]1361\section{Future work}
[c69adb7]1362Concurrency and parallelism is still a very active field that strongly benefits from hardware advances. As such certain features that aren't necessarily mature enough in their current state could become relevant in the lifetime of \CFA.
1363\subsection{Transactions}
[694ee7d]1364
[efe4d730]1365% ####### #     # ######
1366% #       ##    # #     #
1367% #       # #   # #     #
1368% #####   #  #  # #     #
1369% #       #   # # #     #
1370% #       #    ## #     #
1371% ####### #     # ######
[694ee7d]1372\section*{Acknowledgements}
1373
[c69adb7]1374\clearpage
[a9aab60]1375\printglossary[type=\acronymtype]
[c69adb7]1376\printglossary
[694ee7d]1377
[c69adb7]1378\clearpage
[694ee7d]1379\bibliographystyle{plain}
[efe4d730]1380\bibliography{cw92,distSharedMem,lfp92,mlw92,parallel,parallelIO,partheory,pl,pldi92,ps,realtime,techreportsPAB,visual,local}
[694ee7d]1381
1382
1383\end{document}
Note: See TracBrowser for help on using the repository browser.