source: doc/proposals/concurrency/concurrency.tex @ a3eaa29

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 a3eaa29 was a3eaa29, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

v0.4 review up to external scheduling

  • Property mode set to 100644
File size: 40.3 KB
Line 
1% requires tex packages: texlive-base texlive-latex-base tex-common texlive-humanities texlive-latex-extra texlive-fonts-recommended
2
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-^
9% math escape $...$ (dollar symbol)
10
11\documentclass[twoside,11pt]{article}
12
13%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
15% Latex packages used in the document.
16\usepackage[T1]{fontenc}                                % allow Latin1 (extended ASCII) characters
17\usepackage{textcomp}
18\usepackage[latin1]{inputenc}
19\usepackage{fullpage,times,comment}
20\usepackage{epic,eepic}
21\usepackage{upquote}                                                                    % switch curled `'" to straight
22\usepackage{calc}
23\usepackage{xspace}
24\usepackage{graphicx}
25\usepackage{tabularx}
26\usepackage[acronym]{glossaries}
27\usepackage{varioref}                                                           % extended references
28\usepackage{inconsolata}
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"
33\usepackage[usenames]{color}
34\usepackage[pagewise]{lineno}
35\usepackage{fancyhdr}
36\renewcommand{\linenumberfont}{\scriptsize\sffamily}
37\input{common}                                          % bespoke macros used in the document
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}
40
41\usepackage{tikz}
42\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
43
44\renewcommand{\UrlFont}{\small\sf}
45
46\setlength{\topmargin}{-0.45in}                                                 % move running title into header
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}
63\newcommand{\code}[1]{\lstinline{#1}}
64
65\input{glossary}
66
67\newsavebox{\LstBox}
68
69%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70
71\setcounter{secnumdepth}{3}                             % number subsubsections
72\setcounter{tocdepth}{3}                                % subsubsections in table of contents
73% \linenumbers                                            % comment out to turn off line numbering
74\makeindex
75\pagestyle{fancy}
76\fancyhf{}
77\cfoot{\thepage}
78\rfoot{v\input{version}}
79
80%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81
82\begin{document}
83% \linenumbers
84
85\title{Concurrency in \CFA}
86\author{Thierry Delisle \\
87Dept. of Computer Science, University of Waterloo, \\ Waterloo, Ontario, Canada
88}
89
90\maketitle
91\section{Introduction}
92This proposal provides a minimal core concurrency API that is both simple, efficient and can be reused to build higher-level features. The simplest possible 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 construct as the basis of the concurrency in \CFA.
93Indeed, for highly productive parallel programming high-level approaches are much more popular\cite{HPP:Study}. Examples are task based parallelism, message passing, implicit threading.
94
95There are actually two problems that need to be solved in the design of the concurrency for a 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.
96
97\section{Concurrency}
98Several 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 rely on message passing or other paradigms that often closely relate to networking concepts. However, in imperative or OO languages, these approaches entail a clear distinction between concurrent and non-concurrent paradigms (i.e. message passing versus routine call). Which in turns mean that programmers need to learn two sets of designs patterns in order to be effective. Approaches based on shared memory are more closely related to non-concurrent paradigms since they often rely on non-concurrent constructs like routine calls and objects. At a lower level these can be implemented as locks and atomic operations. However, for productivity reasons it is desireable to have a higher-level construct to be the core concurrency paradigm\cite{HPP:Study}. This project proposes Monitors\cite{Hoare74} as the core concurrency construct.
99\\
100
101Finally, an approach that is worth mentionning because it is gaining in popularity is transactionnal memory\cite{Dice10}. However, the performance and feature set is currently too restrictive to be possible 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.
102
103\section{Monitors}
104A 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 :
105\begin{lstlisting}
106        typedef /*some monitor type*/ monitor;
107        int f(monitor & m);
108
109        int main() {
110                monitor m;
111                f(m);
112        }
113\end{lstlisting}
114
115\subsection{Call semantics} \label{call}
116The above example of monitors already displays some of their intrinsic caracteristics. 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.
117\\
118
119Another aspect to consider is when a monitor acquires its mutual exclusion. Indeed, a monitor may need to be passed through multiple helper routines that do not acquire the monitor mutual exclusion on entry. Examples of this can be both generic helper routines (\code{swap}, \code{sort}, etc.) or specific helper routines like the following example :
120
121\begin{lstlisting}
122        mutex struct counter_t { /*...*/ };
123
124        void ?{}(counter_t & nomutex this);
125        int ++?(counter_t & mutex this);
126        void ?{}(Int * this, counter_t & mutex cnt);
127\end{lstlisting}
128*semantics of the declaration of \code{mutex struct counter_t} are discussed in details in section \ref{data}
129\\
130
131This example is of a monitor implementing an atomic counter. Here, the constructor uses the \code{nomutex} keyword to signify that it does not acquire the coroutine mutual exclusion when constructing. This is because object not yet constructed should never be shared and therefore do not require mutual exclusion. The prefix increment operator
132uses \code{mutex} to protect the incrementing process from race conditions. Finally, we have a conversion operator from \code{counter_t} to \code{Int}. This conversion may or may not require the \code{mutex} key word depending whether or not reading an \code{Int} is an atomic operation or not.
133\\
134
135Having 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. If there were a meaning to routine \code{void foo(counter_t & this)} then one could argue that it should be to 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 this is the more "normal" behavior, \code{nomutex} effectively stating explicitly that "this routine has nothing special". An other alternative is to make 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 more clearly 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 will be used for the sake of clarity.
136\\
137
138Regardless of which keyword is kept, it is important to establish when mutex/nomutex may be used depending on type parameters.
139\begin{lstlisting}
140        int f1(monitor & mutex m);
141        int f2(const monitor & mutex m);
142        int f3(monitor ** mutex m);
143        int f4(monitor *[] mutex m);
144        int f5(graph(monitor*) & mutex m);
145\end{lstlisting}
146
147The problem is to indentify which object(s) should be acquired. Furthermore we also need to acquire each objects only once. In case of simple routines like \code{f1} and \code{f2} it is easy to identify an exhaustive list of objects to acquire on entering. Adding indirections (\code{f3}) still allows the compiler and programmer to indentify which object will be acquired. However, adding in arrays (\code{f4}) makes it much harder. Array lengths aren't 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 custom 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).
148
149\subsection{Data semantics} \label{data}
150Once 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 appripriate protection. For example here is a more fleshed-out version of the counter showed in \ref{call}:
151\begin{lstlisting}
152        mutex struct counter_t {
153                int value;
154        };
155
156        void ?{}(counter_t & nomutex this) {
157                this.cnt = 0;
158        }
159
160        int ++?(counter_t & mutex this) {
161                return ++this->value;
162        }
163
164        void ?{}(int * this, counter_t & mutex cnt) {
165                *this = (int)cnt;
166        }
167\end{lstlisting}
168\begin{tabular}{ c c }
169Thread 1 & Thread 2 \\
170\begin{lstlisting}
171        void f(counter_t & mutex c) {
172                for(;;) {
173                        sout | (int)c | endl;
174                }
175        }
176\end{lstlisting} &\begin{lstlisting}
177        void g(counter_t & mutex c) {
178                for(;;) {
179                        ++c;
180                }
181        }
182
183\end{lstlisting}
184\end{tabular}
185\\
186
187
188This simple counter offers an example of monitor usage. Notice how the counter is used without any explicit synchronisation and yet supports thread-safe semantics for both reading and writting. \\
189
190These simple mutual exclusion semantics also naturally expand to multi-monitor calls.
191\begin{lstlisting}
192        int f(MonitorA & mutex a, MonitorB & mutex b);
193
194        MonitorA a;
195        MonitorB b;
196        f(a,b);
197\end{lstlisting}
198
199This code acquires both locks before entering the critical section. In practice, writing multi-locking routines that can not lead to deadlocks can be very tricky. Having language level support for such feature is therefore a significant asset for \CFA. However, this does have significant repercussions relating to scheduling (see \ref{insched} and \ref{extsched}). Furthermore, the ability to acquire multiple monitors at the same time does incur a significant pitfall even without looking into scheduling. For example :
200\begin{lstlisting}
201        void foo(A & mutex a, B & mutex a) {
202                //...
203        }
204
205        void bar(A & mutex a, B & nomutex a)
206                //...
207                foo(a, b);
208                //...
209        }
210
211        void baz(A & nomutex a, B & mutex a)
212                //...
213                foo(a, b);
214                //...
215        }
216\end{lstlisting}
217
218Recursive mutex routine calls are allowed in \CFA but if not done carefully it can lead to nested monitor call problems\cite{Lister77}. These problems which are a specific  implementation of the lock acquiring order problem. In the example above, the user uses implicit ordering in the case of function \code{bar} but explicit ordering in the case of \code{baz}. This subtle mistake can mean that calling these two functions concurrently will lead to deadlocks, depending on the implicit ordering matching the explicit ordering. As shown on several occasion\cit, there isn't really any solutions to this problem, users simply need to be carefull when acquiring multiple monitors at the same time.
219
220\subsection{Internal scheduling} \label{insched}
221Monitors should also be able to schedule what threads access it 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 wait for them to be signaled. Here is a simple example of such a technique :
222
223\begin{lstlisting}
224        mutex struct A {
225                condition e;
226        }
227
228        void foo(A & mutex a) {
229                //...
230                wait(a.e);
231                //...
232        }
233
234        void bar(A & mutex a) {
235                signal(a.e);
236        }
237\end{lstlisting}
238
239Here routine \code{foo} waits on the \code{signal} from \code{bar} before making further progress, effectively ensuring a basic ordering. This semantic can easily be extended to multi-monitor calls by offering the same guarantee.
240
241\begin{center}
242\begin{tabular}{ c @{\hskip 0.65in} c }
243Thread 1 & Thread 2 \\
244\begin{lstlisting}
245void foo(monitor & mutex a,
246         monitor & mutex b) {
247        //...
248        wait(a.e);
249        //...
250}
251
252foo(a, b);
253\end{lstlisting} &\begin{lstlisting}
254void bar(monitor & mutex a,
255         monitor & mutex b) {
256        signal(a.e);
257}
258
259
260
261bar(a, b);
262\end{lstlisting}
263\end{tabular}
264\end{center}
265
266A direct extension of the single monitor semantics would be 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. On the technical side, partially releasing lock is feasible but from the user perspective a choice must be made for the syntax of this feature. It is possible to do without any extra syntax by relying on order of acquisition (Note that here the use of helper routines is irrelevant, only routines the acquire mutual exclusion have an impact on internal scheduling):
267
268\begin{center}
269\begin{tabular}{|c|c|c|}
270Context 1 & Context 2 & Context 3 \\
271\hline
272\begin{lstlisting}
273condition e;
274
275void foo(monitor & mutex a,
276         monitor & mutex b) {
277        wait(e);
278}
279
280
281
282
283
284
285foo(a,b);
286\end{lstlisting} &\begin{lstlisting}
287condition e;
288
289void bar(monitor & mutex a,
290         monitor & nomutex b) {
291        foo(a,b);
292}
293
294void foo(monitor & mutex a,
295         monitor & mutex b) {
296        wait(e);
297}
298
299bar(a, b);
300\end{lstlisting} &\begin{lstlisting}
301condition e;
302
303void bar(monitor & mutex a,
304         monitor & nomutex b) {
305        foo(a,b);
306}
307
308void baz(monitor & nomutex a,
309         monitor & mutex b) {
310        wait(e);
311}
312
313bar(a, b);
314\end{lstlisting}
315\end{tabular}
316\end{center}
317
318This can be interpreted in two different ways :
319\begin{flushleft}
320\begin{enumerate}
321        \item \code{wait} atomically releases the monitors acquired by the inner-most routine, \underline{ignoring} nested calls.
322        \item \code{wait} atomically releases the monitors acquired by the inner-most routine, \underline{considering} nested calls.
323\end{enumerate}
324\end{flushleft}
325While the difference between these two is subtle, it has a significant impact. In the first case it means that the calls to \code{foo} would behave the same in Context 1 and 2. This semantic would also mean that the call to \code{wait} in routine \code{baz} would only release \code{monitor b}. While this may seem intuitive with these examples, it does have one significant implication, it creates a strong distinction between acquiring multiple monitors in sequence and acquiring the same monitors simulatenously, i.e. :
326
327\begin{center}
328\begin{tabular}{c @{\hskip 0.35in} c @{\hskip 0.35in} c}
329\begin{lstlisting}
330enterMonitor(a);
331enterMonitor(b);
332// do stuff
333leaveMonitor(b);
334leaveMonitor(a);
335\end{lstlisting} & != &\begin{lstlisting}
336enterMonitor(a);
337enterMonitor(a, b);
338// do stuff
339leaveMonitor(a, b);
340leaveMonitor(a);
341\end{lstlisting}
342\end{tabular}
343\end{center}
344
345This is not intuitive because even if both methods display the same monitors state both inside and outside the critical section respectively, the behavior is different. Furthermore, the actual acquiring order will be exaclty the same since acquiring a monitor from inside its mutual exclusion is a no-op. This means that even if the data and the actual control flow are the same using both methods, the behavior of the \code{wait} will be different. The alternative is option 2, that is releasing acquired monitors, \underline{considering} nesting. This solves the issue of having the two acquiring method differ at the cost of making routine \code{foo} behave differently depending on from which context it is called (Context 1 or 2). Indeed in Context 2, routine \code{foo} actually behaves like routine \code{baz} rather than having the same behavior than in Context 1. The fact that both implicit approaches can be unintuitive depending on the perspective may be a sign that the explicit approach is superior. For this reason this \CFA does not support implicit monitor releasing and uses explicit semantics.
346\\
347
348The following examples shows three alternatives of explicit wait semantics :
349\\
350
351\begin{center}
352\begin{tabular}{|c|c|c|}
353Case 1 & Case 2 & Case 3 \\
354Branding on construction & Explicit release list & Explicit ignore list \\
355\hline
356\begin{lstlisting}
357void foo(monitor & mutex a,
358         monitor & mutex b,
359           condition & c)
360{
361        // Releases monitors
362        // branded in ctor
363        wait(c);
364}
365
366monitor a;
367monitor b;
368condition1 c1 = {a};
369condition2 c2 = {a, b};
370
371//Will release only a
372foo(a,b,c1);
373
374//Will release a and b
375foo(a,b,c2);
376\end{lstlisting} &\begin{lstlisting}
377void foo(monitor & mutex a,
378         monitor & mutex b,
379           condition & c)
380{
381        // Releases monitor a
382        // Holds monitor b
383        waitRelease(c, [a]);
384}
385
386monitor a;
387monitor b;
388condition c;
389
390
391
392foo(a,b,c);
393
394
395
396\end{lstlisting} &\begin{lstlisting}
397void foo(monitor & mutex a,
398         monitor & mutex b,
399           condition & c)
400{
401        // Releases monitor a
402        // Holds monitor b
403        waitHold(c, [b]);
404}
405
406monitor a;
407monitor b;
408condition c;
409
410
411
412foo(a,b,c);
413
414
415
416\end{lstlisting}
417\end{tabular}
418\end{center}
419(Note : Case 2 and 3 use tuple semantics to pass a variable length list of elements.)
420\\
421
422All these cases have their pros and cons. Case 1 is more distinct because it means programmers need to be carefull about where the condition is initialized as well as where it is used. On the other hand, it is very clear and explicitly states which monitor is released and which monitor stays acquired. This is similar to Case 2, which releases only the monitors explictly listed. However, in Case 2, calling the \code{wait} routine instead of the \code{waitRelease} routine releases all the acquired monitor. The Case 3 is an improvement on that since it releases all the monitors except those specified. The result is that the \code{wait} routine can be written as follows :
423\begin{lstlisting}
424void wait(condition & cond) {
425        waitHold(cond, []);
426}
427\end{lstlisting}
428This alternative offers nice and consistent behavior between \code{wait} and \code{waitHold}. However, one large pitfall is that mutual exclusion can now be violated by calls to library code. Indeed, even if the following example seems benign there is one significant problem :
429\begin{lstlisting}
430monitor global;
431
432extern void doStuff(); //uses global
433
434void foo(monitor & mutex m) {
435        //...
436        doStuff(); //warning can release monitor m
437        //...
438}
439
440foo(global);
441\end{lstlisting}
442
443Indeed, if Case 2 or 3 are chosen it any code can violate the mutual exclusion of the calling code by issuing calls to \code{wait} or \code{waitHold} in a nested monitor context. Case 2 can be salvaged by removing the \code{wait} routine from the API but Case 3 cannot prevent users from calling \code{waitHold(someCondition, [])}. For this reason the syntax proposed in Case 3 is rejected. Note that the syntax proposed in case 1 and 2 are not exclusive. Indeed, by supporting two types of condition both cases can be supported :
444\begin{lstlisting}
445struct condition { /*...*/ };
446
447// Second argument is a variable length tuple.
448void wait(condition & cond, [...] monitorsToRelease);
449void signal(condition & cond);
450
451struct conditionN { /*...*/ };
452
453void ?{}(conditionN* this, /*list of N monitors to release*/);
454void wait(conditionN & cond);
455void signal(conditionN & cond);
456\end{lstlisting}
457
458Regardless of the option chosen for wait semantics, signal must be symmetrical. 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.
459
460Finally, an additionnal semantic which can be very usefull is the \code{signalBlock} 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.
461\\
462
463\subsection{External scheduling} \label{extsched}
464As one might expect, the alternative to Internal scheduling is to use External scheduling instead. This method is somewhat more robust to deadlocks since one of the threads keeps a relatively tight control on scheduling. Indeed, as the following examples will demontrate, 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 (see \uC) or in terms of data (see 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 reset of the languages semantics. Two challenges specific to \CFA arise when trying to add external scheduling whith loose object definitions and multi-monitor routines. The following example shows what a simple use \code{accept} versus \code{wait}/\code{signal} and its advantages.
465
466\begin{center}
467\begin{tabular}{|c|c|}
468Internal Scheduling & External Scheduling \\
469\hline
470\begin{lstlisting}
471        _Monitor blarg {
472                condition c;
473        public:
474                void f();
475                void g() { signal}
476                void h() { wait(c); }
477        private:
478        }
479\end{lstlisting}&\begin{lstlisting}
480        _Monitor blarg {
481
482        public:
483                void f();
484                void g();
485                void h() { _Accept(g); }
486        private:
487        }
488\end{lstlisting}
489\end{tabular}
490\end{center}
491
492In the case of internal scheduling, the call to \code{wait} only guarantees that \code{g} was 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.
493\\
494
495\subsubsection{Loose object definitions}
496In \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 :
497
498\begin{lstlisting}
499        mutex struct A {};
500
501        void f(A & mutex a);
502        void g(A & mutex a);
503        void h(A & mutex a) { accept(g); }
504\end{lstlisting}
505
506While this is the direct translation of the \uC code, at the time of compiling routine \code{f} the \CFA does not already have a declaration of \code{g} while the \uC compiler does. This means that either the compiler has to dynamically find which routines are "acceptable" or the language needs a way of statically listing "acceptable" routines. Since \CFA has no existing concept that resemble dynamic routine definitions or pattern matching, the static approach seems the more consistent with the current language paradigms. This approach leads to the \uC example being translated to :
507\begin{lstlisting}
508        accept( void g(mutex struct A & mutex a) )
509        mutex struct A {};
510
511        void f(A & mutex a) { accept(g); }
512        void g(A & mutex a);
513\end{lstlisting}
514
515This syntax is the most consistent with the language since it somewhat mimics the \code{forall} declarations. However, the fact that it comes before the struct declaration does means the type needs to be forward declared (done inline in the example). Here are a few alternatives to this syntax : \\
516\begin{tabular}[t]{l l}
517Alternative 1 & Alternative 2 \\
518\begin{lstlisting}
519mutex struct A
520accept( void g(A & mutex a) )
521{};
522\end{lstlisting} &\begin{lstlisting}
523mutex struct A {}
524accept( void g(A & mutex a) );
525
526\end{lstlisting} \\
527Alternative 3 & Alternative 4 \\
528\begin{lstlisting}
529mutex struct A {
530        accept( void g(A & mutex a) )
531};
532
533\end{lstlisting} &\begin{lstlisting}
534mutex struct A {
535        accept :
536                void g(A & mutex a) );
537};
538\end{lstlisting}
539\end{tabular}
540
541
542An 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.
543
544\subsubsection{Multi-monitor scheduling}
545
546External 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 :
547\begin{lstlisting}
548        accept( void f(mutex struct A & mutex this))
549        mutex struct A {};
550
551        mutex struct B {};
552
553        void g(A & mutex a, B & mutex b) {
554                accept(f); //ambiguous, which monitor
555        }
556\end{lstlisting}
557
558The obvious solution is to specify the correct monitor as follows :
559
560\begin{lstlisting}
561        accept( void f(mutex struct A & mutex this))
562        mutex struct A {};
563
564        mutex struct B {};
565
566        void g(A & mutex a, B & mutex b) {
567                accept( f, b );
568        }
569\end{lstlisting}
570
571This is unambiguous. The 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.
572
573\begin{lstlisting}
574        accept( void f(mutex struct A & mutex, mutex struct A & mutex))
575        mutex struct A {};
576
577        mutex struct B {};
578
579        void g(A & mutex a, B & mutex b) {
580                accept( f, b, a );
581        }
582\end{lstlisting}
583
584Note 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.
585
586\subsection{Implementation Details}
587\textbf{\large{Work in progress...}}
588\subsubsection{Interaction with polymorphism}
589At first glance, interaction between monitors and \CFA's concept of polymorphism seem complexe to support. However, it can be reasoned that entry-point locking can solve most of the issues that could be present with polymorphism.
590
591First 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. We must remember that monitors' 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 handle incomplete types (by definition) no \code{dtype} polymorphic routine can access shared data since the data would require knowledge about the type. Therefore the only concern when combining \code{dtype} polymorphism and monitors is to protect access to routines. With callsite-locking, this would require significant amount of work since any \code{dtype} routine could have to obtain some lock before calling a routine. However, with entry-point-locking calling a monitor routine becomes exactly the same as calling it from anywhere else.
592
593\subsubsection{External scheduling queues}
594To 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 most 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 gut that is a reasonnable contraint. This algorithm choice has two consequences, the ofthe 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 probably that half the multi-monitor queues will go unused for the entire duration of the program.
595
596\subsection{Other concurrency tools}
597
598\section{Parallelism}
599Historically, computer performance was about processor speeds and instructions count. However, with heat dissipaction being an ever growing challenge, parallelism has become the new source of greatest performance \cite{Sutter05, Sutter05b}. In this decade, it is not longer reasonnable create high-performance application without caring about parallelism. Indeed, parallelism an important aspect of performance and more specifically throughput and hardware utilization. The lowest level approach parallelism is to use \glspl{kthread}. 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 which all have strengths and weaknesses.
600
601\subsection{User-level threads}
602A 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 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 complexities are hidden, users still have to think about data races, deadlocks and synchronization issues. This can be somewhat alleviated by a concurrency toolkit with strong garantees but the parallelism toolkit offers very little to reduce complexity in itself.
603
604Examples of languages that support are Java\cite{Java}, Haskell\cite{Haskell} and \uC\cite{uC++book}.
605\subsection{Jobs and thread pools}
606The opposite approach is to base parallelism on \glspl{job}. Indeed, \glspl{job} offer limited flexibility but at the benefit of a simpler user interface. In \gls{job} based systems users express parallelism as units of work and the dependency graph (either explicit or implicit) that tie them together. This means users need not to worry about concurrency but significantly limits the interaction that can occur between different jobs. Indeed, any \gls{job} that blocks also blocks the underlying \gls{kthread}, this effectively mean the CPU utilization, and therefore throughput, will suffer noticeably. The golden standard of this implementation is Intel's TBB library\cite{TBB}.
607
608\subsection{Fibers : user-level threads without preemption}
609Finally, in the middle of the flexibility versus complexity spectrum lay \glspl{fiber} which offer \glspl{uthread} without the complexity of preemption. This means users don't have to worry about other \glspl{fiber} suddenly executing between two instructions which signficantly reduces complexity. However, any call to IO or other concurrency primitives can lead to context switches. Furthermore, users can also block \glspl{fiber} in the middle of their execution without blocking a full processor core. This means users still have to worry about mutual exclusion, deadlocks and race conditions in their code, raising the complexity significantly.
610\cite{Go}
611
612\subsection{Paradigm performance}
613While the choice between the three paradigms listed above may have significant performance implication, it is difficult to pin the performance implications of chosing a model at the language level. Indeed, in many situations own of these paradigms will show better performance but it all strongly depends on the usage. Having mostly indepent units of work to execute almost guarantess that the \gls{job} based system will have the best performance. However, add interactions between jobs and the processor utilisation might suffer. User-level threads may allow maximum ressource utilisation but context switches will be more expansive and it is also harder for users to get perfect tunning. As with every example, fibers sit somewhat in the middle of the spectrum. Furthermore, if the units of uninterrupted work are large enough the paradigm choice will be fully armoticised by the actual work done.
614
615\section{\CFA 's Thread Building Blocks}
616As 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, it is possible to deconstruct the three paradigms details aboved in order to get simple building blocks. Here is a table showing the core caracteristics of the mentionned paradigms :
617\begin{center}
618\begin{tabular}[t]{| r | c | c |}
619\cline{2-3}
620\multicolumn{1}{ c| }{} & Has a stack & Preemptive \\
621\hline
622\Glspl{job} & X & X \\
623\hline
624\Glspl{fiber} & \checkmark & X \\
625\hline
626\Glspl{uthread} & \checkmark & \checkmark \\
627\hline
628\end{tabular}
629\end{center}
630
631As shown in section \ref{cfaparadigms} these different blocks being available in \CFA it is trivial to reproduce any of these paradigm.
632
633\subsection{Thread Interface}
634The 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 comparatievely to \glspl{kthread}). A thread can be declared using a struct declaration prefix with the \code{thread} as follows :
635
636\begin{lstlisting}
637        thread struct foo {};
638\end{lstlisting}
639
640Obviously, for this thread implementation to be usefull it must run some user code. Several other threading interfaces use some function pointer representation as the interface of threads (for example : \Csharp \cite{Csharp} and Scala \cite{Scala}). However, we consider that statically tying a \code{main} routine to a thread superseeds this approach. Since the \code{main} routine is definetely a special routine in \CFA, we can reuse the existing syntax for declaring routines with unordinary name, i.e. operator overloading. As such the \code{main} routine of a thread can be defined as such :
641\begin{lstlisting}
642        thread struct foo {};
643
644        void ?main(thread foo* this) {
645                /*... Some useful code ...*/
646        }
647\end{lstlisting}
648
649With these semantics it is trivial to write a thread type that takes a function pointer as parameter and executes it on its stack asynchronously :
650\begin{lstlisting}
651        typedef void (*voidFunc)(void);
652
653        thread struct FuncRunner {
654                voidFunc func;
655        };
656
657        //ctor
658        void ?{}(thread FuncRunner* this, voidFunc inFunc) {
659                func = inFunc;
660        }
661
662        //main
663        void ?main(thread FuncRunner* this) {
664                this->func();
665        }
666\end{lstlisting}
667
668In this example \code{func} is a function pointer stored in \acrfull{tls}, which is \CFA is both easy to use and completly typesafe.
669
670Of course for threads to be useful, it must be possible to start and stop threads and wait for them to complete execution. While using \acrshort{api} such as \code{fork} and \code{join} is relatively common in the literature, such an interface is not needed. 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.
671\begin{lstlisting}
672thread struct FuncRunner; //FuncRunner declared above
673
674void world() {
675        sout | "World!" | endl;
676}
677
678void main() {
679        FuncRunner run = {world};
680        //Thread run forks here
681
682        //Print to "Hello " and "World!" will be run concurrently
683        sout | "Hello " | endl;
684
685        //Implicit join at end of scope
686}
687\end{lstlisting}
688This semantic has several advantages over explicit semantics : typesafety is guaranteed, any thread will always be started and stopped exaclty once and users can't make any progamming errors. Furthermore it naturally follows the memory allocation semantics which means users don't need to learn multiple semantics.
689
690These semantics also naturally scale to multiple threads meaning basic synchronisation is very simple :
691\begin{lstlisting}
692        thread struct MyThread {
693                //...
694        };
695
696        //ctor
697        void ?{}(thread MyThread* this) {}
698
699        //main
700        void ?main(thread MyThread* this) {
701                //...
702        }
703
704        void foo() {
705                MyThread thrds[10];
706                //Start 10 threads at the beginning of the scope
707
708                DoStuff();
709
710                //Wait for the 10 threads to finish
711        }
712\end{lstlisting}
713
714\subsection{The \CFA Kernel : Processors, Clusters and Threads}\label{kernel}
715
716
717\subsection{Paradigms}\label{cfaparadigms}
718Given 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.
719
720% \subsection{High-level options}\label{tasks}
721%
722% \subsubsection{Thread interface}
723% constructors destructors
724%       initializer lists
725% monitors
726%
727% \subsubsection{Futures}
728%
729% \subsubsection{Implicit threading}
730% 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.
731%
732% \begin{center}
733% \begin{tabular}[t]{|c|c|c|}
734% Sequential & System Parallel & Language Parallel \\
735% \begin{lstlisting}
736% void big_sum(int* a, int* b,
737%                int* out,
738%                size_t length)
739% {
740%       for(int i = 0; i < length; ++i ) {
741%               out[i] = a[i] + b[i];
742%       }
743% }
744%
745%
746%
747%
748%
749% int* a[10000];
750% int* b[10000];
751% int* c[10000];
752% //... fill in a and b ...
753% big_sum(a, b, c, 10000);
754% \end{lstlisting} &\begin{lstlisting}
755% void big_sum(int* a, int* b,
756%                int* out,
757%                size_t length)
758% {
759%       range ar(a, a + length);
760%       range br(b, b + length);
761%       range or(out, out + length);
762%       parfor( ai, bi, oi,
763%       [](int* ai, int* bi, int* oi) {
764%               oi = ai + bi;
765%       });
766% }
767%
768% int* a[10000];
769% int* b[10000];
770% int* c[10000];
771% //... fill in a and b ...
772% big_sum(a, b, c, 10000);
773% \end{lstlisting}&\begin{lstlisting}
774% void big_sum(int* a, int* b,
775%                int* out,
776%                size_t length)
777% {
778%       for (ai, bi, oi) in (a, b, out) {
779%               oi = ai + bi;
780%       }
781% }
782%
783%
784%
785%
786%
787% int* a[10000];
788% int* b[10000];
789% int* c[10000];
790% //... fill in a and b ...
791% big_sum(a, b, c, 10000);
792% \end{lstlisting}
793% \end{tabular}
794% \end{center}
795%
796% \subsection{Machine setup}\label{machine}
797% Threads are all good and well but wee still some OS support to fully utilize available hardware.
798%
799% \textbf{\large{Work in progress...}} Do wee need something beyond specifying the number of kernel threads?
800
801\section{Putting it all together}
802
803\section{Future work}
804Concurrency 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.
805\subsection{Transactions}
806
807\section*{Acknowledgements}
808
809\clearpage
810\printglossary[type=\acronymtype]
811\printglossary
812
813\clearpage
814\bibliographystyle{plain}
815\bibliography{pl,local}
816
817
818\end{document}
Note: See TracBrowser for help on using the repository browser.