source: doc/generic_types/generic_types.tex @ 309be81

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 309be81 was ae6cc8b, checked in by Aaron Moss <a3moss@…>, 7 years ago

Added contributions to intro/abstract/conclusion based on Magnus' suggestions

  • Property mode set to 100644
File size: 72.8 KB
Line 
1% take off review (for line numbers) and anonymous (for anonymization) on submission
2% \documentclass[format=acmlarge, anonymous, review]{acmart}
3\documentclass[format=acmlarge,review]{acmart}
4
5\usepackage{xspace,calc,comment}
6\usepackage{upquote}                                                                    % switch curled `'" to straight
7\usepackage{listings}                                                                   % format program code
8
9\makeatletter
10% parindent is relative, i.e., toggled on/off in environments like itemize, so store the value for
11% use rather than use \parident directly.
12\newlength{\parindentlnth}
13\setlength{\parindentlnth}{\parindent}
14
15\newlength{\gcolumnposn}                                % temporary hack because lstlisting does handle tabs correctly
16\newlength{\columnposn}
17\setlength{\gcolumnposn}{2.75in}
18\setlength{\columnposn}{\gcolumnposn}
19\newcommand{\C}[2][\@empty]{\ifx#1\@empty\else\global\setlength{\columnposn}{#1}\global\columnposn=\columnposn\fi\hfill\makebox[\textwidth-\columnposn][l]{\lst@commentstyle{#2}}}
20\newcommand{\CRT}{\global\columnposn=\gcolumnposn}
21\makeatother
22
23% Useful macros
24\newcommand{\CFA}{C$\mathbf\forall$\xspace} % Cforall symbolic name
25\newcommand{\CC}{\rm C\kern-.1em\hbox{+\kern-.25em+}\xspace} % C++ symbolic name
26\newcommand{\CCeleven}{\rm C\kern-.1em\hbox{+\kern-.25em+}11\xspace} % C++11 symbolic name
27\newcommand{\CCfourteen}{\rm C\kern-.1em\hbox{+\kern-.25em+}14\xspace} % C++14 symbolic name
28\newcommand{\CCseventeen}{\rm C\kern-.1em\hbox{+\kern-.25em+}17\xspace} % C++17 symbolic name
29\newcommand{\CCtwenty}{\rm C\kern-.1em\hbox{+\kern-.25em+}20\xspace} % C++20 symbolic name
30
31\newcommand{\TODO}[1]{\textbf{TODO}: {\itshape #1}} % TODO included
32%\newcommand{\TODO}[1]{} % TODO elided
33\newcommand{\eg}{\textit{e}.\textit{g}.,\xspace}
34\newcommand{\ie}{\textit{i}.\textit{e}.,\xspace}
35\newcommand{\etc}{\textit{etc}.,\xspace}
36
37% CFA programming language, based on ANSI C (with some gcc additions)
38\lstdefinelanguage{CFA}[ANSI]{C}{
39        morekeywords={_Alignas,_Alignof,__alignof,__alignof__,asm,__asm,__asm__,_At,_Atomic,__attribute,__attribute__,auto,
40                _Bool,catch,catchResume,choose,_Complex,__complex,__complex__,__const,__const__,disable,dtype,enable,__extension__,
41                fallthrough,fallthru,finally,forall,ftype,_Generic,_Imaginary,inline,__label__,lvalue,_Noreturn,one_t,otype,restrict,_Static_assert,
42                _Thread_local,throw,throwResume,trait,try,ttype,typeof,__typeof,__typeof__,zero_t},
43}%
44
45\lstset{
46language=CFA,
47columns=fullflexible,
48basicstyle=\linespread{0.9}\sf,                                                 % reduce line spacing and use sanserif font
49stringstyle=\tt,                                                                                % use typewriter font
50tabsize=4,                                                                                              % 4 space tabbing
51xleftmargin=\parindent,                                                                 % indent code to paragraph indentation
52%mathescape=true,                                                                               % LaTeX math escape in CFA code $...$
53escapechar=\$,                                                                                  % LaTeX escape in CFA code
54keepspaces=true,                                                                                %
55showstringspaces=false,                                                                 % do not show spaces with cup
56showlines=true,                                                                                 % show blank lines at end of code
57aboveskip=4pt,                                                                                  % spacing above/below code block
58belowskip=3pt,
59% replace/adjust listing characters that look bad in sanserif
60literate={-}{\raisebox{-0.15ex}{\texttt{-}}}1 {^}{\raisebox{0.6ex}{$\scriptscriptstyle\land\,$}}1
61        {~}{\raisebox{0.3ex}{$\scriptstyle\sim\,$}}1 {_}{\makebox[1.2ex][c]{\rule{1ex}{0.1ex}}}1 % {`}{\ttfamily\upshape\hspace*{-0.1ex}`}1
62        {<-}{$\leftarrow$}2 {=>}{$\Rightarrow$}2,
63moredelim=**[is][\color{red}]{`}{`},
64}% lstset
65
66% inline code @...@
67\lstMakeShortInline@
68
69% ACM Information
70\citestyle{acmauthoryear}
71
72\acmJournal{PACMPL}
73
74\title{Generic and Tuple Types with Efficient Dynamic Layout in \CFA}
75
76\author{Aaron Moss}
77\email{a3moss@uwaterloo.ca}
78\author{Robert Schluntz}
79\email{rschlunt@uwaterloo.ca}
80\author{Peter Buhr}
81\email{pabuhr@uwaterloo.ca}
82\affiliation{%
83        \institution{University of Waterloo}
84        \department{David R. Cheriton School of Computer Science}
85        \streetaddress{Davis Centre, University of Waterloo}
86        \city{Waterloo}
87        \state{ON}
88        \postcode{N2L 3G1}
89        \country{Canada}
90}
91
92\terms{generic, tuple, variadic, types}
93\keywords{generic types, tuple types, variadic types, polymorphic functions, C, Cforall}
94
95\begin{CCSXML}
96<ccs2012>
97<concept>
98<concept_id>10011007.10011006.10011008.10011024.10011025</concept_id>
99<concept_desc>Software and its engineering~Polymorphism</concept_desc>
100<concept_significance>500</concept_significance>
101</concept>
102<concept>
103<concept_id>10011007.10011006.10011008.10011024.10011028</concept_id>
104<concept_desc>Software and its engineering~Data types and structures</concept_desc>
105<concept_significance>500</concept_significance>
106</concept>
107<concept>
108<concept_id>10011007.10011006.10011041.10011047</concept_id>
109<concept_desc>Software and its engineering~Source code generation</concept_desc>
110<concept_significance>300</concept_significance>
111</concept>
112</ccs2012>
113\end{CCSXML}
114
115\ccsdesc[500]{Software and its engineering~Polymorphism}
116\ccsdesc[500]{Software and its engineering~Data types and structures}
117\ccsdesc[300]{Software and its engineering~Source code generation}
118
119\begin{abstract}
120The C programming language is a foundational technology for modern computing with millions of lines of code implementing everything from commercial operating-systems to hobby projects. This installation base and the programmers producing it represent a massive software-engineering investment spanning decades and likely to continue for decades more. Nonetheless, C, first standardized over thirty years ago, lacks many features that make programming in more modern languages safer and more productive. The goal of the \CFA project is to create an extension of C that provides modern safety and productivity features while still ensuring strong backwards compatibility with C and its programmers. Prior projects have attempted similar goals but failed to honour C programming-style; for instance, adding object-oriented or functional programming with garbage collection is a non-starter for many C developers. Specifically, \CFA is designed to have an orthogonal feature-set based closely on the C programming paradigm, so that \CFA features can be added \emph{incrementally} to existing C code-bases, and C programmers can learn \CFA extensions on an as-needed basis, preserving investment in existing code and engineers. This paper describes two \CFA extensions, generic and tuple types, details how their design avoids shortcomings of similar features in C and other C-like languages, and presents experimental results validating the design.
121\end{abstract}
122
123\begin{document}
124\maketitle
125
126\section{Introduction \& Background}
127
128\CFA\footnote{Pronounced ``C-for-all'', and written \CFA or Cforall.} is an evolutionary extension of the C programming language that aims to add modern language features to C while maintaining both source compatibility with C and a familiar programming model for programmers. Four key design goals were set out in the original design of \CFA~\citep{Bilson03}:
129\begin{enumerate}
130\item The behaviour of standard C code must remain the same when translated by a \CFA compiler as when translated by a C compiler.
131\item Standard C code must be as fast and as small when translated by a \CFA compiler as when translated by a C compiler.
132\item \CFA code must be at least as portable as standard C code.
133\item Extensions introduced by \CFA must be translated in the most efficient way possible.
134\end{enumerate}
135These goals ensure existing C code-bases can be converted to \CFA incrementally and with minimal effort, and C programmers can productively generate \CFA code without training beyond the features they wish to employ. In its current implementation, \CFA is compiled by translating it to the GCC-dialect of C~\citep{GCCExtensions}, allowing it to leverage the portability and code optimizations provided by GCC, meeting goals (1)-(3). Ultimately, a compiler is necessary for advanced features and optimal performance.
136
137\CFA has been previously extended with polymorphic functions and name overloading (including operator overloading) by \citet{Bilson03}, and deterministically-executed constructors and destructors by \citet{Schluntz17}. This paper builds on those contributions, identifying shortcomings in existing approaches to generic and variadic data types in C-like languages and presenting a design of generic and variadic types as as extension of the \CFA language that avoids those shortcomings. Particularly, the solution we present is both reusable and type-checked, as well as conforming to the design goals of \CFA and ergonomically using existing C abstractions. We have empirically compared our new design to both standard C and \CC; the results show that this design is \TODO{awesome, I hope}.
138
139\subsection{Polymorphic Functions}
140\label{sec:poly-fns}
141
142\CFA's polymorphism was originally formalized by \citet{Ditchfield92}, and first implemented by \citet{Bilson03}. The signature feature of \CFA is parametric-polymorphic functions; such functions are written using a @forall@ clause (which gives the language its name):
143\begin{lstlisting}
144`forall( otype T )` T identity( T val ) { return val; }
145int forty_two = identity( 42 );                         $\C{// T is bound to int, forty\_two == 42}$
146\end{lstlisting}
147The @identity@ function above can be applied to any complete object-type (or ``@otype@''). The type variable @T@ is transformed into a set of additional implicit parameters to @identity@ that encode sufficient information about @T@ to create and return a variable of that type. The \CFA implementation passes the size and alignment of the type represented by an @otype@ parameter, as well as an assignment operator, constructor, copy constructor and destructor. If this extra information is not needed, \eg for a pointer, the type parameter can be declared as @dtype T@, where @dtype@ is short for ``data type''.
148
149Here, the runtime cost of polymorphism is spread over each polymorphic call, due to passing more arguments to polymorphic functions; preliminary experiments have shown this overhead to be similar to \CC virtual function calls. An advantage of this design is that, unlike \CC template functions, \CFA @forall@ functions are compatible with C separate compilation.
150
151Since bare polymorphic-types provide only a narrow set of available operations, \CFA provides a \emph{type assertion} mechanism to provide further type information, where type assertions may be variable or function declarations that depend on a polymorphic type variable. For instance, @twice@ can be defined using the \CFA syntax for operator overloading:
152\begin{lstlisting}
153forall( otype T | { T `?`+`?`(T, T); } )        $\C{// ? denotes operands}$
154  T twice( T x ) { return x + x; }                      $\C{// (2)}$
155int val = twice( twice( 3.7 ) );
156\end{lstlisting}
157which works for any type @T@ with an addition operator defined. The translator accomplishes this polymorphism by creating a wrapper function for calling @+@ with @T@ bound to @double@, then providing this function to the first call of @twice@. It then has the option of using the same @twice@ again and converting the result to @int@ on assignment, or creating another @twice@ with type parameter @T@ bound to @int@ because \CFA uses the return type in its type analysis. The first approach has a late conversion from integer to floating-point on the final assignment, while the second has an eager conversion to integer. \CFA minimizes the number of conversions and their potential to lose information, so it selects the first approach.
158
159Monomorphic specializations of polymorphic functions can satisfy polymorphic type-assertions.
160% \begin{lstlisting}
161% forall(otype T `| { T twice(T); }`)           $\C{// type assertion}$
162% T four_times(T x) { return twice( twice(x) ); }
163% double twice(double d) { return d * 2.0; }    $\C{// (1)}$
164% double magic = four_times(10.5);                      $\C{// T bound to double, uses (1) to satisfy type assertion}$
165% \end{lstlisting}
166\begin{lstlisting}
167forall( otype T `| { int ?<?( T, T ); }` )      $\C{// type assertion}$
168  void qsort( const T * arr, size_t size );
169forall( otype T `| { int ?<?( T, T ); }` )      $\C{// type assertion}$
170  T * bsearch( T key, const T * arr, size_t size );
171double vals[10] = { /* 10 floating-point values */ };
172qsort( vals, 10 );                                                      $\C{// sort array}$
173double * val = bsearch( 5.0, vals, 10 );        $\C{// binary search sorted array for key}$
174\end{lstlisting}
175@qsort@ and @bsearch@ can only be called with arguments for which there exists a function named @<@ taking two arguments of the same type and returning an @int@ value.
176Here, the built-in monomorphic specialization of @<@ for type @double@ is passed as an additional implicit parameter to the calls of @qsort@ and @bsearch@.
177
178Crucial to the design of a new programming language are the libraries to access thousands of external features.
179\CFA inherits a massive compatible library-base, where other programming languages have to rewrite or provide fragile inter-language communication with C.
180A simple example is leveraging the existing type-unsafe (@void *@) C @bsearch@, shown here searching a floating-point array:
181\begin{lstlisting}
182void * bsearch( const void * key, const void * base, size_t nmemb, size_t size,
183                                int (* compar)(const void *, const void *));
184int comp( const void * t1, const void * t2 ) { return *(double *)t1 < *(double *)t2 ? -1 :
185                                *(double *)t2 < *(double *)t1 ? 1 : 0; }
186double key = 5.0;
187double * val = (double *)bsearch( &key, vals, size, sizeof(vals[0]), comp );
188\end{lstlisting}
189but providing a type-safe \CFA overloaded wrapper.
190\begin{lstlisting}
191forall( otype T | { int ?<?( T, T ); } ) T * bsearch( T key, const T * arr, size_t size ) {
192        int comp( const void * t1, const void * t2 ) { /* as above with double changed to T */ }
193        return (T *)bsearch( &key, arr, size, sizeof(T), comp );
194}
195forall( otype T | { int ?<?( T, T ); } ) unsigned int bsearch( T key, const T * arr, size_t size ) {
196        T *result = bsearch( key, arr, size );  $\C{// call first version}$
197        return result ? result - arr : size;            $\C{// pointer subtraction includes sizeof(T)}$
198}
199double * val = bsearch( 5.0, vals, 10 );        $\C{// selection based on return type}$
200int posn = bsearch( 5.0, vals, 10 );
201\end{lstlisting}
202The nested routine @comp@ provides the hidden interface from typed \CFA to untyped (@void *@) C, plus the cast of the result.
203As well, an alternate kind of return is made available, position versus pointer to found element.
204\CC's type-system cannot disambiguate between the two versions of @bsearch@ because it does not use the return type in overload resolution, nor can \CC separately compile a templated @bsearch@.
205
206Call-site inferencing and nested functions provide a localized form of inheritance. For example, @qsort@ only sorts in ascending order using @<@. However, it is trivial to locally change this behaviour:
207\begin{lstlisting}
208{   int ?<?( double x, double y ) { return x `>` y; }   $\C{// override behaviour}$
209        qsort( vals, size );                                    $\C{// descending sort}$
210}
211\end{lstlisting}
212Within the block, the nested version of @<@ performs @>@ and this local version overrides the built-in @<@ so it is passed to @qsort@.
213Hence, programmers can easily form new local environments to maximize reuse of existing functions and types.
214
215Finally, variables may be overloaded:
216\lstDeleteShortInline@
217\par\smallskip
218\begin{tabular}{@{}l@{\hspace{\parindent}}|@{\hspace{\parindent}}l@{}}
219\begin{lstlisting}
220short int MAX = ...;
221int MAX = ...;
222double MAX = ...;
223\end{lstlisting}
224&
225\begin{lstlisting}
226short int s = MAX;  // select correct MAX
227int i = MAX;
228double d = MAX;
229\end{lstlisting}
230\end{tabular}
231\lstMakeShortInline@
232\smallskip\par\noindent
233Hence, the single name @MAX@ replaces all the C type-specific names: @SHRT_MAX@, @INT_MAX@, @DBL_MAX@.
234
235\subsection{Traits}
236
237\CFA provides \emph{traits} to name a group of type assertions:
238% \begin{lstlisting}
239% trait has_magnitude(otype T) {
240%     _Bool ?<?(T, T);                                          $\C{// comparison operator for T}$
241%     T -?(T);                                                          $\C{// negation operator for T}$
242%     void ?{}(T*, zero_t);                                     $\C{// constructor from 0 literal}$
243% };
244% forall(otype M | has_magnitude(M))
245% M abs( M m ) {
246%     M zero = { 0 };                                                   $\C{// uses zero\_t constructor from trait}$
247%     return m < zero ? -m : m;
248% }
249% forall(otype M | has_magnitude(M))
250% M max_magnitude( M a, M b ) {
251%     return abs(a) < abs(b) ? b : a;
252% }
253% \end{lstlisting}
254\begin{lstlisting}
255trait summable( otype T ) {
256        void ?{}(T*, zero_t);                                   $\C{// constructor from 0 literal}$
257        T ?+?( T, T );                                                  $\C{// assortment of additions}$
258        T ?+=?( T *, T );
259        T ++?( T * );
260        T ?++( T * );
261};
262forall( otype T | summable( T ) )
263  T sum( T a[$\,$], size_t size ) {
264        T total = { 0 };                                                $\C{// instantiate T from 0}$
265        for ( unsigned int i = 0; i < size; i += 1 )
266                total += a[i];                                          $\C{// select appropriate +}$
267        return total;
268}
269\end{lstlisting}
270The trait name allows specifying the same set of assertions in multiple locations, preventing repetition mistakes at each function declaration.
271
272In fact, the set of operators is incomplete, \eg no assignment, but @otype@ is syntactic sugar for the following implicit trait:
273\begin{lstlisting}
274trait otype( dtype T | sized(T) ) {
275        // sized is a compiler-provided pseudo-trait for types with known size and alignment}
276        void ?{}( T * );                                                $\C{// default constructor}$
277        void ?{}( T *, T );                                             $\C{// copy constructor}$
278        void ?=?( T *, T );                                             $\C{// assignment operator}$
279        void ^?{}( T * );                                               $\C{// destructor}$
280};
281\end{lstlisting}
282Given the information provided for an @otype@, variables of polymorphic type can be treated as if they were a complete struct type -- they can be stack-allocated using the @alloca@ compiler builtin, default or copy-initialized, assigned, and deleted. As an example, the @sum@ function produces generated code something like the following (simplified for clarity and brevity)\TODO{fix example, maybe elide, it's likely too long with the more complicated function}:
283\begin{lstlisting}
284void abs( size_t _sizeof_M, size_t _alignof_M,
285                void (*_ctor_M)(void*), void (*_copy_M)(void*, void*),
286                void (*_assign_M)(void*, void*), void (*_dtor_M)(void*),
287                _Bool (*_lt_M)(void*, void*), void (*_neg_M)(void*, void*),
288        void (*_ctor_M_zero)(void*, int),
289                void* m, void* _rtn ) {                         $\C{// polymorphic parameter and return passed as void*}$
290                                                                                        $\C{// M zero = { 0 };}$
291        void* zero = alloca(_sizeof_M);                 $\C{// stack allocate zero temporary}$
292        _ctor_M_zero(zero, 0);                                  $\C{// initialize using zero\_t constructor}$
293                                                                                        $\C{// return m < zero ? -m : m;}$
294        void *_tmp = alloca(_sizeof_M);
295        _copy_M( _rtn,                                                  $\C{// copy-initialize return value}$
296                _lt_M( m, zero ) ?                                      $\C{// check condition}$
297                 (_neg_M(m, _tmp), _tmp) :                      $\C{// negate m}$
298                 m);
299        _dtor_M(_tmp); _dtor_M(zero);                   $\C{// destroy temporaries}$
300}
301\end{lstlisting}
302
303Semantically, traits are simply a named lists of type assertions, but they may be used for many of the same purposes that interfaces in Java or abstract base classes in \CC are used for. Unlike Java interfaces or \CC base classes, \CFA types do not explicitly state any inheritance relationship to traits they satisfy; this can be considered a form of structural inheritance, similar to implementation of an interface in Go, as opposed to the nominal inheritance model of Java and \CC. Nominal inheritance can be simulated with traits using marker variables or functions:
304\begin{lstlisting}
305trait nominal(otype T) {
306    T is_nominal;
307};
308
309int is_nominal;                                                         $\C{// int now satisfies the nominal trait}$
310\end{lstlisting}
311
312Traits, however, are significantly more powerful than nominal-inheritance interfaces; most notably, traits may be used to declare a relationship among multiple types, a property that may be difficult or impossible to represent in nominal-inheritance type systems:
313\begin{lstlisting}
314trait pointer_like(otype Ptr, otype El) {
315    lvalue El *?(Ptr);                                          $\C{// Ptr can be dereferenced into a modifiable value of type El}$
316}
317
318struct list {
319    int value;
320    list *next;                                                         $\C{// may omit "struct" on type names}$
321};
322
323typedef list *list_iterator;
324
325lvalue int *?( list_iterator it ) { return it->value; }
326\end{lstlisting}
327
328In the example above, @(list_iterator, int)@ satisfies @pointer_like@ by the user-defined dereference function, and @(list_iterator, list)@ also satisfies @pointer_like@ by the built-in dereference operator for pointers. Given a declaration @list_iterator it@, @*it@ can be either an @int@ or a @list@, with the meaning disambiguated by context (\eg @int x = *it;@ interprets @*it@ as an @int@, while @(*it).value = 42;@ interprets @*it@ as a @list@).
329While a nominal-inheritance system with associated types could model one of those two relationships by making @El@ an associated type of @Ptr@ in the @pointer_like@ implementation, few such systems could model both relationships simultaneously.
330
331\section{Generic Types}
332
333One of the known shortcomings of standard C is that it does not provide reusable type-safe abstractions for generic data structures and algorithms. Broadly speaking, there are three approaches to create data structures in C. One approach is to write bespoke data structures for each context in which they are needed. While this approach is flexible and supports integration with the C type-checker and tooling, it is also tedious and error-prone, especially for more complex data structures. A second approach is to use @void*@-based polymorphism. This approach is taken by the C standard library functions @qsort@ and @bsearch@, and does allow the use of common code for common functionality. However, basing all polymorphism on @void*@ eliminates the type-checker's ability to ensure that argument types are properly matched, often requires a number of extra function parameters, and also adds pointer indirection and dynamic allocation to algorithms and data structures that would not otherwise require them. A third approach to generic code is to use pre-processor macros to generate it -- this approach does allow the generated code to be both generic and type-checked, though any errors produced may be difficult to interpret. Furthermore, writing and invoking C code as preprocessor macros is unnatural and somewhat inflexible.
334
335Other C-like languages such as \CC and Java use \emph{generic types} to produce type-safe abstract data types. The authors have chosen to implement generic types as well, with some care taken that the generic types design for \CFA integrates efficiently and naturally with the existing polymorphic functions in \CFA while retaining backwards compatibility with C; maintaining separate compilation is a particularly important constraint on the design. However, where the concrete parameters of the generic type are known, there is not extra overhead for the use of a generic type.
336
337A generic type can be declared by placing a @forall@ specifier on a @struct@ or @union@ declaration, and instantiated using a parenthesized list of types after the type name:
338\begin{lstlisting}
339forall(otype R, otype S) struct pair {
340    R first;
341    S second;
342};
343
344forall(otype T)
345T value( pair(const char*, T) p ) { return p.second; }
346
347forall(dtype F, otype T)
348T value_p( pair(F*, T*) p ) { return *p.second; }
349
350pair(const char*, int) p = { "magic", 42 };
351int magic = value( p );
352
353pair(void*, int*) q = { 0, &p.second };
354magic = value_p( q );
355double d = 1.0;
356pair(double*, double*) r = { &d, &d };
357d = value_p( r );
358\end{lstlisting}
359
360\CFA classifies generic types as either \emph{concrete} or \emph{dynamic}. Dynamic generic types vary in their in-memory layout depending on their type parameters, while concrete generic types have a fixed memory layout regardless of type parameters. A type may have polymorphic parameters but still be concrete; in \CFA such types are called \emph{dtype-static}. Polymorphic pointers are an example of dtype-static types -- @forall(dtype T) T*@ is a polymorphic type, but for any @T@ chosen, @T*@ has exactly the same in-memory representation as a @void*@, and can therefore be represented by a @void*@ in code generation.
361
362\CFA generic types may also specify constraints on their argument type to be checked by the compiler. For example, consider the following declaration of a sorted set type, which ensures that the set key supports comparison and tests for equality:
363\begin{lstlisting}
364forall(otype Key | { _Bool ?==?(Key, Key); _Bool ?<?(Key, Key); })
365struct sorted_set;
366\end{lstlisting}
367
368\subsection{Concrete Generic Types}
369
370The \CFA translator instantiates concrete generic types by template-expanding them to fresh struct types; concrete generic types can therefore be used with zero runtime overhead. To enable inter-operation among equivalent instantiations of a generic type, the translator saves the set of instantiations currently in scope and reuses the generated struct declarations where appropriate. For example, a function declaration that accepts or returns a concrete generic type produces a declaration for the instantiated struct in the same scope, which all callers that can see that declaration may reuse. As an example of the expansion, the concrete instantiation for @pair(const char*, int)@ looks like this:
371\begin{lstlisting}
372struct _pair_conc1 {
373        const char* first;
374        int second;
375};
376\end{lstlisting}
377
378A concrete generic type with dtype-static parameters is also expanded to a struct type, but this struct type is used for all matching instantiations. In the example above, the @pair(F*, T*)@ parameter to @value_p@ is such a type; its expansion looks something like this, and is used as the type of the variables @q@ and @r@ as well, with casts for member access where appropriate:
379\begin{lstlisting}
380struct _pair_conc0 {
381        void* first;
382        void* second;
383};
384\end{lstlisting}
385
386\subsection{Dynamic Generic Types}
387
388Though \CFA implements concrete generic types efficiently, it also has a fully general system for computing with dynamic generic types. As mentioned in Section~\ref{sec:poly-fns}, @otype@ function parameters (in fact all @sized@ polymorphic parameters) come with implicit size and alignment parameters provided by the caller. Dynamic generic structs also have implicit size and alignment parameters, and also an \emph{offset array} which contains the offsets of each member of the struct\footnote{Dynamic generic unions need no such offset array, as all members are at offset 0; the size and alignment parameters are still provided for dynamic unions, however.}. Access to members\footnote{The \lstinline@offsetof@ macro is implemented similarly.} of a dynamic generic struct is provided by adding the corresponding member of the offset array to the struct pointer at runtime, essentially moving a compile-time offset calculation to runtime where necessary.
389
390These offset arrays are statically generated where possible. If a dynamic generic type is declared to be passed or returned by value from a polymorphic function, the translator can safely assume that the generic type is complete (that is, has a known layout) at any call-site, and the offset array is passed from the caller; if the generic type is concrete at the call site the elements of this offset array can even be statically generated using the C @offsetof@ macro. As an example, @p.second@ in the @value@ function above is implemented as @*(p + _offsetof_pair[1])@, where @p@ is a @void*@, and @_offsetof_pair@ is the offset array passed in to @value@ for @pair(const char*, T)@. The offset array @_offsetof_pair@ is generated at the call site as @size_t _offsetof_pair[] = { offsetof(_pair_conc1, first), offsetof(_pair_conc1, second) };@.
391
392In some cases the offset arrays cannot be statically generated. For instance, modularity is generally provided in C by including an opaque forward-declaration of a struct and associated accessor and mutator routines in a header file, with the actual implementations in a separately-compiled \texttt{.c} file. \CFA supports this pattern for generic types, and in this instance the caller does not know the actual layout or size of the dynamic generic type, and only holds it by pointer. The \CFA translator automatically generates \emph{layout functions} for cases where the size, alignment, and offset array of a generic struct cannot be passed in to a function from that function's caller. These layout functions take as arguments pointers to size and alignment variables and a caller-allocated array of member offsets, as well as the size and alignment of all @sized@ parameters to the generic struct (un-@sized@ parameters are forbidden from the language from being used in a context that affects layout). Results of these layout functions are cached so that they are only computed once per type per function.%, as in the example below for @pair@.
393% \begin{lstlisting}
394% static inline void _layoutof_pair(size_t* _szeof_pair, size_t* _alignof_pair, size_t* _offsetof_pair,
395%               size_t _szeof_R, size_t _alignof_R, size_t _szeof_S, size_t _alignof_S) {
396%     *_szeof_pair = 0; // default values
397%     *_alignof_pair = 1;
398
399%       // add offset, size, and alignment of first field
400%     _offsetof_pair[0] = *_szeof_pair;
401%     *_szeof_pair += _szeof_R;
402%     if ( *_alignof_pair < _alignof_R ) *_alignof_pair = _alignof_R;
403
404%       // padding, offset, size, and alignment of second field
405%     if ( *_szeof_pair & (_alignof_S - 1) )
406%               *_szeof_pair += (_alignof_S - ( *_szeof_pair & (_alignof_S - 1) ) );
407%     _offsetof_pair[1] = *_szeof_pair;
408%     *_szeof_pair += _szeof_S;
409%     if ( *_alignof_pair < _alignof_S ) *_alignof_pair = _alignof_S;
410
411%       // pad to struct alignment
412%     if ( *_szeof_pair & (*_alignof_pair - 1) )
413%               *_szeof_pair += ( *_alignof_pair - ( *_szeof_pair & (*_alignof_pair - 1) ) );
414% }
415% \end{lstlisting}
416
417Layout functions also allow generic types to be used in a function definition without reflecting them in the function signature. For instance, a function that strips duplicate values from an unsorted @vector(T)@ would likely have a pointer to the vector as its only explicit parameter, but use some sort of @set(T)@ internally to test for duplicate values. This function could acquire the layout for @set(T)@ by calling its layout function with the layout of @T@ implicitly passed into the function.
418
419Whether a type is concrete, dtype-static, or dynamic is decided based solely on the type parameters and @forall@ clause on the struct declaration. This design allows opaque forward declarations of generic types like @forall(otype T) struct Box;@ -- like in C, all uses of @Box(T)@ can be in a separately compiled translation unit, and callers from other translation units know the proper calling conventions to use. If the definition of a struct type was included in the decision of whether a generic type is dynamic or concrete, some further types may be recognized as dtype-static (\eg @forall(otype T) struct unique_ptr { T* p };@ does not depend on @T@ for its layout, but the existence of an @otype@ parameter means that it \emph{could}.), but preserving separate compilation (and the associated C compatibility) in the existing design is judged to be an appropriate trade-off.
420
421\subsection{Applications}
422\label{sec:generic-apps}
423
424The reuse of dtype-static struct instantiations enables some useful programming patterns at zero runtime cost. The most important such pattern is using @forall(dtype T) T*@ as a type-checked replacement for @void*@, as in this example, which takes a @qsort@ or @bsearch@-compatible comparison routine and creates a similar lexicographic comparison for pairs of pointers:
425\begin{lstlisting}
426forall(dtype T)
427int lexcmp( pair(T*, T*)* a, pair(T*, T*)* b, int (*cmp)(T*, T*) ) {
428        int c = cmp(a->first, b->first);
429        if ( c == 0 ) c = cmp(a->second, b->second);
430        return c;
431}
432\end{lstlisting}
433Since @pair(T*, T*)@ is a concrete type, there are no added implicit parameters to @lexcmp@, so the code generated by \CFA is effectively identical to a version of this function written in standard C using @void*@, yet the \CFA version is type-checked to ensure that the fields of both pairs and the arguments to the comparison function match in type.
434
435Another useful pattern enabled by reused dtype-static type instantiations is zero-cost ``tag'' structs. Sometimes a particular bit of information is only useful for type-checking, and can be omitted at runtime. Tag structs can be used to provide this information to the compiler without further runtime overhead, as in the following example:
436\begin{lstlisting}
437forall(dtype Unit) struct scalar { unsigned long value; };
438
439struct metres {};
440struct litres {};
441
442forall(dtype U)
443scalar(U) ?+?(scalar(U) a, scalar(U) b) {
444        return (scalar(U)){ a.value + b.value };
445}
446
447scalar(metres) half_marathon = { 21093 };
448scalar(litres) swimming_pool = { 2500000 };
449
450scalar(metres) marathon = half_marathon + half_marathon;
451scalar(litres) two_pools = swimming_pool + swimming_pool;
452marathon + swimming_pool; // ERROR -- caught by compiler
453\end{lstlisting}
454@scalar@ is a dtype-static type, so all uses of it use a single struct definition, containing only a single @unsigned long@, and can share the same implementations of common routines like @?+?@ -- these implementations may even be separately compiled, unlike \CC template functions. However, the \CFA type-checker ensures that matching types are used by all calls to @?+?@, preventing nonsensical computations like adding the length of a marathon to the volume of an olympic pool.
455
456\section{Tuples}
457\label{sec:tuples}
458
459The @pair(R, S)@ generic type used as an example in the previous section can be considered a special case of a more general \emph{tuple} data structure. The authors have implemented tuples in \CFA, with a design particularly motivated by two use cases: \emph{multiple-return-value functions} and \emph{variadic functions}.
460
461In standard C, functions can return at most one value. This restriction results in code that emulates functions with multiple return values by \emph{aggregation} or by \emph{aliasing}. In the former situation, the function designer creates a record type that combines all of the return values into a single type. Unfortunately, the designer must come up with a name for the return type and for each of its fields. Unnecessary naming is a common programming language issue, introducing verbosity and a complication of the user's mental model. As such, this technique is effective when used sparingly, but can quickly get out of hand if many functions need to return different combinations of types. In the latter approach, the designer simulates multiple return values by passing the additional return values as pointer parameters. The pointer parameters are assigned inside of the routine body to emulate a return. Using this approach, the caller is directly responsible for allocating storage for the additional temporary return values. This responsibility complicates the call site with a sequence of variable declarations leading up to the call. Also, while a disciplined use of @const@ can give clues about whether a pointer parameter is going to be used as an out parameter, it is not immediately obvious from only the routine signature whether the callee expects such a parameter to be initialized before the call. Furthermore, while many C routines that accept pointers are designed so that it is safe to pass @NULL@ as a parameter, there are many C routines that are not null-safe. On a related note, C does not provide a standard mechanism to state that a parameter is going to be used as an additional return value, which makes the job of ensuring that a value is returned more difficult for the compiler.
462
463C does provide a mechanism for variadic functions through manipulation of @va_list@ objects, but it is notoriously type-unsafe. A variadic function is one that contains at least one parameter, followed by @...@ as the last token in the parameter list. In particular, some form of \emph{argument descriptor} is needed to inform the function of the number of arguments and their types, commonly a format string or counter parameter. It is important to note that both of these mechanisms are inherently redundant, because they require the user to specify information that the compiler knows explicitly. This required repetition is error prone, because it is easy for the user to add or remove arguments without updating the argument descriptor. In addition, C requires the programmer to hard code all of the possible expected types. As a result, it is cumbersome to write a variadic function that is open to extension. For example, consider a simple function that sums $N$ @int@s:
464\begin{lstlisting}
465int sum(int N, ...) {
466  va_list args;
467  va_start(args, N);  // must manually specify last non-variadic argument
468  int ret = 0;
469  while(N) {
470    ret += va_arg(args, int);  // must specify type
471    N--;
472  }
473  va_end(args);
474  return ret;
475}
476
477sum(3, 10, 20, 30);  // must keep initial counter argument in sync
478\end{lstlisting}
479
480The @va_list@ type is a special C data type that abstracts variadic argument manipulation. The @va_start@ macro initializes a @va_list@, given the last named parameter. Each use of the @va_arg@ macro allows access to the next variadic argument, given a type. Since the function signature does not provide any information on what types can be passed to a variadic function, the compiler does not perform any error checks on a variadic call. As such, it is possible to pass any value to the @sum@ function, including pointers, floating-point numbers, and structures. In the case where the provided type is not compatible with the argument's actual type after default argument promotions, or if too many arguments are accessed, the behaviour is undefined~\citep{C11}. Furthermore, there is no way to perform the necessary error checks in the @sum@ function at run-time, since type information is not carried into the function body. Since they rely on programmer convention rather than compile-time checks, variadic functions are inherently unsafe.
481
482In practice, compilers can provide warnings to help mitigate some of the problems. For example, GCC provides the @format@ attribute to specify that a function uses a format string, which allows the compiler to perform some checks related to the standard format specifiers. Unfortunately, this attribute does not permit extensions to the format string syntax, so a programmer cannot extend it to warn for mismatches with custom types.
483
484\subsection{Tuple Expressions}
485
486The tuple extensions in \CFA can express multiple return values and variadic function parameters in an efficient and type-safe manner. \CFA introduces \emph{tuple expressions} and \emph{tuple types}. A tuple expression is an expression producing a fixed-size, ordered list of values of heterogeneous types. The type of a tuple expression is the tuple of the subexpression types, or a \emph{tuple type}. In \CFA, a tuple expression is denoted by a comma-separated list of expressions enclosed in square brackets. For example, the expression @[5, 'x', 10.5]@ has type @[int, char, double]@. The previous expression has three \emph{components}. Each component in a tuple expression can be any \CFA expression, including another tuple expression. The order of evaluation of the components in a tuple expression is unspecified, to allow a compiler the greatest flexibility for program optimization. It is, however, guaranteed that each component of a tuple expression is evaluated for side-effects, even if the result is not used. Multiple-return-value functions can equivalently be called \emph{tuple-returning functions}.
487
488\CFA allows declaration of \emph{tuple variables}, variables of tuple type. For example:
489\begin{lstlisting}
490[int, char] most_frequent(const char*);
491
492const char* str = "hello, world!";
493[int, char] freq = most_frequent(str);
494printf("%s -- %d %c\n", str, freq);
495\end{lstlisting}
496In this example, the type of the @freq@ and the return type of @most_frequent@ are both tuple types. Also of note is how the tuple expression @freq@ is implicitly flattened into separate @int@ and @char@ arguments to @printf@; this code snippet could have been shortened by replacing the last two lines with @printf("%s -- %d %c\n", str, most_frequent(str));@ using exactly the same mechanism.
497
498In addition to variables of tuple type, it is also possible to have pointers to tuples, and arrays of tuples. Tuple types can be composed of any types, except for array types, since arrays are not of fixed size, which makes tuple assignment difficult when a tuple contains an array.
499\begin{lstlisting}
500[double, int] di;
501[double, int] * pdi
502[double, int] adi[10];
503\end{lstlisting}
504This example declares a variable of type @[double, int]@, a variable of type pointer to @[double, int]@, and an array of ten @[double, int]@.
505
506\subsection{Flattening and Restructuring}
507
508In function call contexts, tuples support implicit flattening and restructuring conversions. Tuple flattening recursively expands a tuple into the list of its basic components. Tuple structuring packages a list of expressions into a value of tuple type.
509\begin{lstlisting}
510int f(int, int);
511int g([int, int]);
512int h(int, [int, int]);
513[int, int] x;
514int y;
515
516f(x);      // flatten
517g(y, 10);  // structure
518h(x, y);   // flatten & structure
519\end{lstlisting}
520In \CFA, each of these calls is valid. In the call to @f@, @x@ is implicitly flattened so that the components of @x@ are passed as the two arguments to @f@. For the call to @g@, the values @y@ and @10@ are structured into a single argument of type @[int, int]@ to match the type of the parameter of @g@. Finally, in the call to @h@, @y@ is flattened to yield an argument list of length 3, of which the first component of @x@ is passed as the first parameter of @h@, and the second component of @x@ and @y@ are structured into the second argument of type @[int, int]@. The flexible structure of tuples permits a simple and expressive function call syntax to work seamlessly with both single- and multiple-return-value functions, and with any number of arguments of arbitrarily complex structure.
521
522% In {K-W C} \citep{Buhr94a,Till89}, a precursor to \CFA, there were 4 tuple coercions: opening, closing, flattening, and structuring. Opening coerces a tuple value into a tuple of values, while closing converts a tuple of values into a single tuple value. Flattening coerces a nested tuple into a flat tuple, \ie it takes a tuple with tuple components and expands it into a tuple with only non-tuple components. Structuring moves in the opposite direction, \ie it takes a flat tuple value and provides structure by introducing nested tuple components.
523
524In \CFA, the design has been simplified to require only the two conversions previously described, which trigger only in function call and return situations. Specifically, the expression resolution algorithm examines all of the possible alternatives for an expression to determine the best match. In resolving a function call expression, each combination of function value and list of argument alternatives is examined. Given a particular argument list and function value, the list of argument alternatives is flattened to produce a list of non-tuple valued expressions. Then the flattened list of expressions is compared with each value in the function's parameter list. If the parameter's type is not a tuple type, then the current argument value is unified with the parameter type, and on success the next argument and parameter are examined. If the parameter's type is a tuple type, then the structuring conversion takes effect, recursively applying the parameter matching algorithm using the tuple's component types as the parameter list types. Assuming a successful unification, eventually the algorithm gets to the end of the tuple type, which causes all of the matching expressions to be consumed and structured into a tuple expression. For example, in
525\begin{lstlisting}
526int f(int, [double, int]);
527f([5, 10.2], 4);
528\end{lstlisting}
529There is only a single definition of @f@, and 3 arguments with only single interpretations. First, the argument alternative list @[5, 10.2], 4@ is flattened to produce the argument list @5, 10.2, 4@. Next, the parameter matching algorithm begins, with $P =~$@int@ and $A =~$@int@, which unifies exactly. Moving to the next parameter and argument, $P =~$@[double, int]@ and $A =~$@double@. This time, the parameter is a tuple type, so the algorithm applies recursively with $P' =~$@double@ and $A =~$@double@, which unifies exactly. Then $P' =~$@int@ and $A =~$@double@, which again unifies exactly. At this point, the end of $P'$ has been reached, so the arguments @10.2, 4@ are structured into the tuple expression @[10.2, 4]@. Finally, the end of the parameter list $P$ has also been reached, so the final expression is @f(5, [10.2, 4])@.
530
531\subsection{Member Access}
532
533At times, it is desirable to access a single component of a tuple-valued expression without creating unnecessary temporary variables to assign to. Given a tuple-valued expression @e@ and a compile-time constant integer $i$ where $0 \leq i < n$, where $n$ is the number of components in @e@, @e.i@ accesses the $i$\textsuperscript{th} component of @e@. For example,
534\begin{lstlisting}
535[int, double] x;
536[char *, int] f();
537void g(double, int);
538[int, double] * p;
539
540int y = x.0;  // access int component of x
541y = f().1;  // access int component of f
542p->0 = 5;  // access int component of tuple pointed-to by p
543g(x.1, x.0);  // rearrange x to pass to g
544double z = [x, f()].0.1;  // access second component of first component of tuple expression
545\end{lstlisting}
546As seen above, tuple-index expressions can occur on any tuple-typed expression, including tuple-returning functions, square-bracketed tuple expressions, and other tuple-index expressions, provided the retrieved component is also a tuple. This feature was proposed for {K-W C}, but never implemented~\citep[p.~45]{Till89}.
547
548It is possible to access multiple fields from a single expression using a \emph{member-access tuple expression}. The result is a single tuple expression whose type is the tuple of the types of the members. For example,
549\begin{lstlisting}
550struct S { int x; double y; char * z; } s;
551s.[x, y, z];
552\end{lstlisting}
553Here, the type of @s.[x, y, z]@ is @[int, double, char *]@. A member tuple expression has the form @a.[x, y, z];@ where @a@ is an expression with type @T@, where @T@ supports member access expressions, and @x, y, z@ are all members of @T@ with types @T$_x$@, @T$_y$@, and @T$_z$@ respectively. Then the type of @a.[x, y, z]@ is @[T$_x$, T$_y$, T$_z$]@.
554
555Since tuple index expressions are a form of member-access expression, it is possible to use tuple-index expressions in conjunction with member tuple expressions to manually restructure a tuple (\eg rearrange components, drop components, duplicate components, etc.):
556\begin{lstlisting}
557[int, int, long, double] x;
558void f(double, long);
559
560f(x.[0, 3]);          // f(x.0, x.3)
561x.[0, 1] = x.[1, 0];  // [x.0, x.1] = [x.1, x.0]
562[long, int, long] y = x.[2, 0, 2];
563\end{lstlisting}
564
565It is possible for a member tuple expression to contain other member access expressions:
566\begin{lstlisting}
567struct A { double i; int j; };
568struct B { int * k; short l; };
569struct C { int x; A y; B z; } v;
570v.[x, y.[i, j], z.k];
571\end{lstlisting}
572This expression is equivalent to @[v.x, [v.y.i, v.y.j], v.z.k]@. That is, the aggregate expression is effectively distributed across the tuple, which allows simple and easy access to multiple components in an aggregate, without repetition. It is guaranteed that the aggregate expression to the left of the @.@ in a member tuple expression is evaluated exactly once. As such, it is safe to use member tuple expressions on the result of a side-effecting function.
573
574\subsection{Tuple Assignment}
575
576In addition to tuple-index expressions, individual components of tuples can be accessed by a \emph{destructuring assignment} which has a tuple expression with lvalue components on its left-hand side. More generally, an assignment where the left-hand side of the assignment operator has a tuple type is called \emph{tuple assignment}. There are two kinds of tuple assignment depending on whether the right-hand side of the assignment operator has a tuple type or a non-tuple type, called \emph{multiple assignment} and \emph{mass assignment}, respectively.
577\begin{lstlisting}
578int x;
579double y;
580[int, double] z;
581[y, x] = 3.14;  // mass assignment
582[x, y] = z;     // multiple assignment
583z = 10;         // mass assignment
584z = [x, y];     // multiple assignment
585\end{lstlisting}
586Let $L_i$ for $i$ in $[0, n)$ represent each component of the flattened left-hand side, $R_i$ represent each component of the flattened right-hand side of a multiple assignment, and $R$ represent the right-hand side of a mass assignment.
587
588For a multiple assignment to be valid, both tuples must have the same number of elements when flattened. Multiple assignment assigns $R_i$ to $L_i$ for each $i$.
589That is, @?=?(&$L_i$, $R_i$)@ must be a well-typed expression. In the previous example, @[x, y] = z@, @z@ is flattened into @z.0, z.1@, and the assignments @x = z.0@ and @y = z.1@ are executed.
590
591A mass assignment assigns the value $R$ to each $L_i$. For a mass assignment to be valid, @?=?(&$L_i$, $R$)@ must be a well-typed expression. This rule differs from C cascading assignment (\eg @a=b=c@) in that conversions are applied to $R$ in each individual assignment, which prevents data loss from the chain of conversions that can happen during a cascading assignment. For example, @[y, x] = 3.14@ performs the assignments @y = 3.14@ and @x = 3.14@, which results in the value @3.14@ in @y@ and the value @3@ in @x@. On the other hand, the C cascading assignment @y = x = 3.14@ performs the assignments @x = 3.14@ and @y = x@, which results in the value @3@ in @x@, and as a result the value @3@ in @y@ as well.
592
593Both kinds of tuple assignment have parallel semantics, such that each value on the left side and right side is evaluated \emph{before} any assignments occur. As a result, it is possible to swap the values in two variables without explicitly creating any temporary variables or calling a function:
594\begin{lstlisting}
595int x = 10, y = 20;
596[x, y] = [y, x];
597\end{lstlisting}
598After executing this code, @x@ has the value @20@ and @y@ has the value @10@.
599
600Tuple assignment is an expression where the result type is the type of the left-hand side of the assignment, just like all other assignment expressions in C. This definition allows cascading tuple assignment and use of tuple assignment in other expression contexts, an occasionally useful idiom to keep code succinct and reduce repetition.
601% In \CFA, tuple assignment is an expression where the result type is the type of the left-hand side of the assignment, as in normal assignment. That is, a tuple assignment produces the value of the left-hand side after assignment. These semantics allow cascading tuple assignment to work out naturally in any context where a tuple is permitted. These semantics are a change from the original tuple design in {K-W C}~\citep{Till89}, wherein tuple assignment was a statement that allows cascading assignments as a special case. This decision was made in an attempt to fix what was seen as a problem with assignment, wherein it can be used in many different locations, such as in function-call argument position. While permitting assignment as an expression does introduce the potential for subtle complexities, it is impossible to remove assignment expressions from \CFA without affecting backwards compatibility with C. Furthermore, there are situations where permitting assignment as an expression improves readability by keeping code succinct and reducing repetition, and complicating the definition of tuple assignment puts a greater cognitive burden on the user. In another language, tuple assignment as a statement could be reasonable, but it would be inconsistent for tuple assignment to be the only kind of assignment in \CFA that is not an expression.
602
603\subsection{Casting}
604
605In C, the cast operator is used to explicitly convert between types. In \CFA, the cast operator has a secondary use as type ascription. That is, a cast can be used to select the type of an expression when it is ambiguous, as in the call to an overloaded function:
606\begin{lstlisting}
607int f();     // (1)
608double f();  // (2)
609
610f();       // ambiguous - (1),(2) both equally viable
611(int)f();  // choose (2)
612\end{lstlisting}
613
614Since casting is a fundamental operation in \CFA, casts should be given a meaningful interpretation in the context of tuples. Taking a look at standard C provides some guidance with respect to the way casts should work with tuples:
615\begin{lstlisting}
616int f();
617void g();
618
619(void)f();  // (1)
620(int)g();  // (2)
621\end{lstlisting}
622In C, (1) is a valid cast, which calls @f@ and discards its result. On the other hand, (2) is invalid, because @g@ does not produce a result, so requesting an @int@ to materialize from nothing is nonsensical. Generalizing these principles, any cast wherein the number of components increases as a result of the cast is invalid, while casts that have the same or fewer number of components may be valid.
623
624Formally, a cast to tuple type is valid when $T_n \leq S_m$, where $T_n$ is the number of components in the target type and $S_m$ is the number of components in the source type, and for each $i$ in $[0, n)$, $S_i$ can be cast to $T_i$. Excess elements ($S_j$ for all $j$ in $[n, m)$) are evaluated, but their values are discarded so that they are not included in the result expression. This approach follows naturally from the way that a cast to @void@ works in C.
625
626For example, in
627\begin{lstlisting}
628  [int, int, int] f();
629  [int, [int, int], int] g();
630
631  ([int, double])f();           $\C{// (1)}$
632  ([int, int, int])g();         $\C{// (2)}$
633  ([void, [int, int]])g();      $\C{// (3)}$
634  ([int, int, int, int])g();    $\C{// (4)}$
635  ([int, [int, int, int]])g();  $\C{// (5)}$
636\end{lstlisting}
637
638(1) discards the last element of the return value and converts the second element to @double@. Since @int@ is effectively a 1-element tuple, (2) discards the second component of the second element of the return value of @g@. If @g@ is free of side effects, this expression is equivalent to @[(int)(g().0), (int)(g().1.0), (int)(g().2)]@.
639Since @void@ is effectively a 0-element tuple, (3) discards the first and third return values, which is effectively equivalent to @[(int)(g().1.0), (int)(g().1.1)]@).
640
641Note that a cast is not a function call in \CFA, so flattening and structuring conversions do not occur for cast expressions\footnote{User-defined conversions have been considered, but for compatibility with C and the existing use of casts as type ascription, any future design for such conversions would require more precise matching of types than allowed for function arguments and parameters.}. As such, (4) is invalid because the cast target type contains 4 components, while the source type contains only 3. Similarly, (5) is invalid because the cast @([int, int, int])(g().1)@ is invalid. That is, it is invalid to cast @[int, int]@ to @[int, int, int]@.
642
643\subsection{Polymorphism}
644
645Tuples also integrate with \CFA polymorphism as a special sort of generic type. Due to the implicit flattening and structuring conversions involved in argument passing, @otype@ and @dtype@ parameters are restricted to matching only with non-tuple types.
646\begin{lstlisting}
647forall(otype T, dtype U)
648void f(T x, U * y);
649
650f([5, "hello"]);
651\end{lstlisting}
652In this example, @[5, "hello"]@ is flattened, so that the argument list appears as @5, "hello"@. The argument matching algorithm binds @T@ to @int@ and @U@ to @const char*@, and calls the function as normal.
653
654Tuples, however, may contain polymorphic components. For example, a plus operator can be written to add two triples of a type together.
655\begin{lstlisting}
656forall(otype T | { T ?+?(T, T); })
657[T, T, T] ?+?([T, T, T] x, [T, T, T] y) {
658  return [x.0+y.0, x.1+y.1, x.2+y.2];
659}
660[int, int, int] x;
661int i1, i2, i3;
662[i1, i2, i3] = x + ([10, 20, 30]);
663\end{lstlisting}
664
665Flattening and restructuring conversions are also applied to tuple types in polymorphic type assertions. Previously in \CFA, it has been assumed that assertion arguments must match the parameter type exactly, modulo polymorphic specialization (\ie no implicit conversions are applied to assertion arguments). In the example below:
666\begin{lstlisting}
667int f([int, double], double);
668forall(otype T, otype U | { T f(T, U, U); })
669void g(T, U);
670g(5, 10.21);
671\end{lstlisting}
672If assertion arguments must match exactly, then the call to @g@ cannot be resolved, since the expected type of @f@ is flat, while the only @f@ in scope requires a tuple type. Since tuples are fluid, this requirement reduces the usability of tuples in polymorphic code. To ease this pain point, function parameter and return lists are flattened for the purposes of type unification, which allows the previous example to pass expression resolution.
673
674This relaxation is made possible by extending the existing thunk generation scheme, as described by \citet{Bilson03}. Now, whenever a candidate's parameter structure does not exactly match the formal parameter's structure, a thunk is generated to specialize calls to the actual function:
675\begin{lstlisting}
676int _thunk(int _p0, double _p1, double _p2) {
677  return f([_p0, _p1], _p2);
678}
679\end{lstlisting}
680Essentially, this thunk provides flattening and structuring conversions to inferred functions, improving the compatibility of tuples and polymorphism. These thunks take advantage of GCC C nested functions to produce closures that have the usual function pointer signature.
681
682\subsection{Variadic Tuples}
683
684To define variadic functions, \CFA adds a new kind of type parameter, @ttype@. Matching against a @ttype@ (``tuple type'') parameter consumes all remaining argument components and packages them into a tuple, binding to the resulting tuple of types. In a given parameter list, there should be at most one @ttype@ parameter that must occur last, otherwise the call can never resolve, given the previous rule. This idea essentially matches normal variadic semantics, with a strong feeling of similarity to \CCeleven variadic templates. As such, @ttype@ variables are also referred to as \emph{argument} or \emph{parameter packs} in this paper.
685
686Like variadic templates, the main way to manipulate @ttype@ polymorphic functions is through recursion. Since nothing is known about a parameter pack by default, assertion parameters are key to doing anything meaningful. Unlike variadic templates, @ttype@ polymorphic functions can be separately compiled.
687
688For example, the C @sum@ function at the beginning of Section~\ref{sec:tuples} could be written using @ttype@ as:
689\begin{lstlisting}
690int sum(){ return 0; }        // (0)
691forall(ttype Params | { int sum(Params); })
692int sum(int x, Params rest) { // (1)
693  return x+sum(rest);
694}
695sum(10, 20, 30);
696\end{lstlisting}
697Since (0) does not accept any arguments, it is not a valid candidate function for the call @sum(10, 20, 30)@.
698In order to call (1), @10@ is matched with @x@, and the argument resolution moves on to the argument pack @rest@, which consumes the remainder of the argument list and @Params@ is bound to @[20, 30]@.
699In order to finish the resolution of @sum@, an assertion parameter that matches @int sum(int, int)@ is required.
700Like in the previous iteration, (0) is not a valid candidate, so (1) is examined with @Params@ bound to @[int]@, requiring the assertion @int sum(int)@.
701Next, (0) fails, and to satisfy (1) @Params@ is bound to @[]@, requiring an assertion @int sum()@.
702Finally, (0) matches and (1) fails, which terminates the recursion.
703Effectively, this algorithm traces as @sum(10, 20, 30)@ $\rightarrow$ @10+sum(20, 30)@ $\rightarrow$ @10+(20+sum(30))@ $\rightarrow$ @10+(20+(30+sum()))@ $\rightarrow$ @10+(20+(30+0))@.
704
705As a point of note, this version does not require any form of argument descriptor, since the \CFA type system keeps track of all of these details. It might be reasonable to take the @sum@ function a step further to enforce a minimum number of arguments:
706\begin{lstlisting}
707int sum(int x, int y){
708  return x+y;
709}
710forall(ttype Params | { int sum(int, Params); })
711int sum(int x, int y, Params rest) {
712  return sum(x+y, rest);
713}
714\end{lstlisting}
715
716One more iteration permits the summation of any summable type, as long as all arguments are the same type:
717\begin{lstlisting}
718trait summable(otype T) {
719  T ?+?(T, T);
720};
721forall(otype R | summable(R))
722R sum(R x, R y){
723  return x+y;
724}
725forall(otype R, ttype Params
726  | summable(R)
727  | { R sum(R, Params); })
728R sum(R x, R y, Params rest) {
729  return sum(x+y, rest);
730}
731\end{lstlisting}
732Unlike C, it is not necessary to hard code the expected type. This code is naturally open to extension, in that any user-defined type with a @?+?@ operator is automatically able to be used with the @sum@ function. That is to say, the programmer who writes @sum@ does not need full program knowledge of every possible data type, unlike what is necessary to write an equivalent function using the standard C mechanisms. Summing arbitrary heterogeneous lists is possible with similar code by adding the appropriate type variables and addition operators.
733
734It is also possible to write a type-safe variadic print routine which can replace @printf@:
735\begin{lstlisting}
736struct S { int x, y; };
737forall(otype T, ttype Params |
738  { void print(T); void print(Params); })
739void print(T arg, Params rest) {
740  print(arg);
741  print(rest);
742}
743void print(char * x) { printf("%s", x); }
744void print(int x) { printf("%d", x);  }
745void print(S s) { print("{ ", s.x, ",", s.y, " }"); }
746
747print("s = ", (S){ 1, 2 }, "\n");
748\end{lstlisting}
749This example routine showcases a variadic-template-like decomposition of the provided argument list. The individual @print@ routines allow printing a single element of a type. The polymorphic @print@ allows printing any list of types, as long as each individual type has a @print@ function. The individual print functions can be used to build up more complicated @print@ routines, such as for @S@, which is something that cannot be done with @printf@ in C.
750
751It is also possible to use @ttype@ polymorphism to provide arbitrary argument forwarding functions. For example, it is possible to write @new@ as a library function:
752\begin{lstlisting}
753struct Pair(otype R, otype S);
754forall(otype R, otype S)
755void ?{}(Pair(R, S) *, R, S);  // (1)
756
757forall(dtype T, ttype Params | sized(T) | { void ?{}(T *, Params); })
758T * new(Params p) {
759  return ((T*)malloc( sizeof(T) )){ p }; // construct into result of malloc
760}
761
762Pair(int, char) * x = new(42, '!');
763\end{lstlisting}
764The @new@ function provides the combination of type-safe @malloc@ with a constructor call, so that it becomes impossible to forget to construct dynamically allocated objects. This function provides the type-safety of @new@ in \CC, without the need to specify the allocated type again, thanks to return-type inference.
765
766In the call to @new@, @Pair(double, char)@ is selected to match @T@, and @Params@ is expanded to match @[double, char]@. The constructor (1) may be specialized to  satisfy the assertion for a constructor with an interface compatible with @void ?{}(Pair(int, char) *, int, char)@.
767
768\TODO{Check if we actually can use ttype parameters on generic types (if they set the complete flag, it should work, or nearly so).}
769
770\subsection{Implementation}
771
772Tuples are implemented in the \CFA translator via a transformation into generic types. For each $N$, the first time an $N$-tuple is seen in a scope a generic type with $N$ type parameters is generated. For example:
773\begin{lstlisting}
774[int, int] f() {
775  [double, double] x;
776  [int, double, int] y;
777}
778\end{lstlisting}
779Is transformed into:
780\begin{lstlisting}
781forall(dtype T0, dtype T1 | sized(T0) | sized(T1))
782struct _tuple2 {  // generated before the first 2-tuple
783  T0 field_0;
784  T1 field_1;
785};
786_tuple2(int, int) f() {
787  _tuple2(double, double) x;
788  forall(dtype T0, dtype T1, dtype T2 | sized(T0) | sized(T1) | sized(T2))
789  struct _tuple3 {  // generated before the first 3-tuple
790    T0 field_0;
791    T1 field_1;
792    T2 field_2;
793  };
794  _tuple3_(int, double, int) y;
795}
796\end{lstlisting}
797
798Tuple expressions are then simply converted directly into compound literals:
799\begin{lstlisting}
800[5, 'x', 1.24];
801\end{lstlisting}
802Becomes:
803\begin{lstlisting}
804(_tuple3(int, char, double)){ 5, 'x', 1.24 };
805\end{lstlisting}
806
807Since tuples are essentially structures, tuple indexing expressions are just field accesses:
808\begin{lstlisting}
809void f(int, [double, char]);
810[int, double] x;
811
812x.0+x.1;
813printf("%d %g\n", x);
814f(x, 'z');
815\end{lstlisting}
816Is transformed into:
817\begin{lstlisting}
818void f(int, _tuple2(double, char));
819_tuple2(int, double) x;
820
821x.field_0+x.field_1;
822printf("%d %g\n", x.field_0, x.field_1);
823f(x.field_0, (_tuple2){ x.field_1, 'z' });
824\end{lstlisting}
825Note that due to flattening, @x@ used in the argument position is converted into the list of its fields. In the call to @f@, the second and third argument components are structured into a tuple argument. Similarly, tuple member expressions are recursively expanded into a list of member access expressions.
826
827Expressions that may contain side effects are made into \emph{unique expressions} before being expanded by the flattening conversion. Each unique expression is assigned an identifier and is guaranteed to be executed exactly once:
828\begin{lstlisting}
829void g(int, double);
830[int, double] h();
831g(h());
832\end{lstlisting}
833Internally, this expression is converted to two variables and an expression:
834\begin{lstlisting}
835void g(int, double);
836[int, double] h();
837
838_Bool _unq0_finished_ = 0;
839[int, double] _unq0;
840g(
841  (_unq0_finished_ ? _unq0 : (_unq0 = f(), _unq0_finished_ = 1, _unq0)).0,
842  (_unq0_finished_ ? _unq0 : (_unq0 = f(), _unq0_finished_ = 1, _unq0)).1,
843);
844\end{lstlisting}
845Since argument evaluation order is not specified by the C programming language, this scheme is built to work regardless of evaluation order. The first time a unique expression is executed, the actual expression is evaluated and the accompanying boolean is set to true. Every subsequent evaluation of the unique expression then results in an access to the stored result of the actual expression. Tuple member expressions also take advantage of unique expressions in the case of possible impurity.
846
847Currently, the \CFA translator has a very broad, imprecise definition of impurity, where any function call is assumed to be impure. This notion could be made more precise for certain intrinsic, auto-generated, and builtin functions, and could analyze function bodies when they are available to recursively detect impurity, to eliminate some unique expressions.
848
849The various kinds of tuple assignment, constructors, and destructors generate GNU C statement expressions. A variable is generated to store the value produced by a statement expression, since its fields may need to be constructed with a non-trivial constructor and it may need to be referred to multiple time, \eg in a unique expression. The use of statement expressions allows the translator to arbitrarily generate additional temporary variables as needed, but binds the implementation to a non-standard extension of the C language. However, there are other places where the \CFA translator makes use of GNU C extensions, such as its use of nested functions, so this restriction is not new.
850
851\section{Evaluation}
852
853\TODO{Magnus suggests we need some graphs, it's kind of a done thing that the reviewers will be looking for. Also, we've made some unsubstantiated claims about the runtime performance of \CFA, which some micro-benchmarks could help with. I'm thinking a simple stack push and pop, with an idiomatic \lstinline@void*@, \CFA, \CC template and \CC virtual inheritance versions (the void* and virtual inheritance versions likely need to be linked lists, or clumsy in their API -- possibly both versions) to test generics, and variadic print to test tuples. We measure SLOC, runtime performance, executable size (making sure to include benchmarks for multiple types in the executable), and possibly manually count the number of places where the programmer must provide un-type-checked type information. Appendices don't count against our page limit, so we might want to include the source code for the benchmarks (or at least the relevant implementation details) in one.}
854
855\section{Related Work}
856
857\CC is the existing language it is most natural to compare \CFA to, as they are both more modern extensions to C with backwards source compatibility. The most fundamental difference in approach between \CC and \CFA is their approach to this C compatibility. \CC does provide fairly strong source backwards compatibility with C, but is a dramatically more complex language than C, and imposes a steep learning curve to use many of its extension features. For instance, in a break from general C practice, template code is typically written in header files, with a variety of subtle restrictions implied on its use by this choice, while the other polymorphism mechanism made available by \CC, class inheritance, requires programmers to learn an entirely new object-oriented programming paradigm; the interaction between templates and inheritance is also quite complex. \CFA, by contrast, has a single facility for polymorphic code, one which supports separate compilation and the existing procedural paradigm of C code. A major difference between the approaches of \CC and \CFA to polymorphism is that the set of assumed properties for a type is \emph{explicit} in \CFA. One of the major limiting factors of \CC's approach is that templates cannot be separately compiled, and, until concepts~\citep{C++Concepts} are standardized (currently anticipated for \CCtwenty), \CC provides no way to specify the requirements of a generic function in code beyond compilation errors for template expansion failures. By contrast, the explicit nature of assertions in \CFA allows polymorphic functions to be separately compiled, and for their requirements to be checked by the compiler; similarly, \CFA generic types may be opaque, unlike \CC template classes.
858
859Cyclone also provides capabilities for polymorphic functions and existential types~\citep{Grossman06}, similar in concept to \CFA's @forall@ functions and generic types. Cyclone existential types can include function pointers in a construct similar to a virtual function table, but these pointers must be explicitly initialized at some point in the code, a tedious and potentially error-prone process. Furthermore, Cyclone's polymorphic functions and types are restricted in that they may only abstract over types with the same layout and calling convention as @void*@, in practice only pointer types and @int@ - in \CFA terms, all Cyclone polymorphism must be dtype-static. This design provides the efficiency benefits discussed in Section~\ref{sec:generic-apps} for dtype-static polymorphism, but is more restrictive than \CFA's more general model.
860
861\TODO{Talk about GObject, other object-oriented frameworks for C (Objective-C)?}
862
863Go \citep{Go} and Rust \citep{Rust} are both modern, compiled languages with abstraction features similar to \CFA traits, \emph{interfaces} in Go and \emph{traits} in Rust. However, both languages represent dramatic departures from C in terms of language model, and neither has the same level of compatibility with C as \CFA. Go is a garbage-collected language, imposing the associated runtime overhead, and complicating foreign-function calls with the necessity of accounting for data transfer between the managed Go runtime and the unmanaged C runtime. Furthermore, while generic types and functions are available in Go, they are limited to a small fixed set provided by the compiler, with no language facility to define more. Rust is not garbage-collected, and thus has a lighter-weight runtime that is more easily interoperable with C. It also possesses much more powerful abstraction capabilities for writing generic code than Go. On the other hand, Rust's borrow-checker, while it does provide strong safety guarantees, is complex and difficult to learn, and imposes a distinctly idiomatic programming style on Rust. \CFA, with its more modest safety features, is significantly easier to port C code to, while maintaining the idiomatic style of the original source.
864
865\section{Conclusion \& Future Work}
866
867There is ongoing work on a wide range of \CFA feature extensions, including reference types, exceptions, and concurrent programming primitives. In addition to this work, there are some interesting future directions the polymorphism design could take. Notably, \CC template functions trade compile time and code bloat for optimal runtime of individual instantiations of polymorphic functions. \CFA polymorphic functions, by contrast, use an approach that is essentially dynamic virtual dispatch. The runtime overhead of this approach is low, but not as low as \CC template functions, and it may be beneficial to provide a mechanism for particularly performance-sensitive code to close this gap. Further research is needed, but two promising approaches are to allow an annotation on polymorphic function call sites that tells the translator to create a template-specialization of the function (provided the code is visible in the current translation unit) or placing an annotation on polymorphic function definitions that instantiates a version of the polymorphic function specialized to some set of types. These approaches are not mutually exclusive, and would allow these performance optimizations to be applied only where most useful to increase performance, without suffering the code bloat or loss of generality of a template expansion approach where it is unnecessary.
868
869In conclusion, the authors' design for generic types and tuples, unlike those available in existing work, is both reusable and type-checked, while still supporting a full range of C features, including separately-compiled modules. We have experimentally validated the performance of our design against both \CC and standard C, showing it is \TODO{shiny, cap'n}.
870
871\begin{acks}
872The authors would like to thank Magnus Madsen for valuable editorial feedback.
873
874This work is supported in part by a corporate partnership with \grantsponsor{Huawei}{Huawei Ltd.}{http://www.huawei.com}\ and the first author's \grantsponsor{NSERC-PGS}{NSERC PGS D}{http://www.nserc-crsng.gc.ca/Students-Etudiants/PG-CS/BellandPostgrad-BelletSuperieures_eng.asp} scholarship.
875\end{acks}
876
877\bibliographystyle{ACM-Reference-Format}
878\bibliography{cfa}
879
880\end{document}
881
882% Local Variables: %
883% tab-width: 4 %
884% compile-command: "make" %
885% End: %
Note: See TracBrowser for help on using the repository browser.