1 | \chapter{Experiments} |
---|
2 | \label{expr-chap} |
---|
3 | |
---|
4 | I have implemented a prototype system to test the practical effectiveness of the various algorithms described in Chapters~\ref{resolution-chap} and~\ref{env-chap}. |
---|
5 | This prototype system essentially just implements the expression resolution pass of \CFACC{}, with a simplified version of the \CFA{} type system and a parser to read in problem instances. |
---|
6 | The prototype system allows for quicker iteration on algorithms due to its simpler language model and lack of a requirement to generate runnable code, yet captures enough of the nuances of \CFA{} to have some predictive power for the runtime performance of algorithmic variants in \CFACC{} itself. |
---|
7 | |
---|
8 | There are three sources of problem instances for the resolver prototype. |
---|
9 | The first is small, hand-written tests designed to test the expressive power and correctness of the prototype. |
---|
10 | These tests are valuable for regression testing, but not time-consuming enough to be useful performance tests. |
---|
11 | The second sort of problem instances are procedurally generated according to a set of parameters (\eg{} distributions of polymorphic versus monomorphic functions, number of function arguments, number of types, \etc{}); the procedural problem generator can be used to explore the behaviour of an algorithm with respect to certain sorts of problem instances by varying the input parameters. |
---|
12 | I have implemented a flagged \CFACC{} pass which outputs information which can be used to initialize the procedural generator's parameters to realistic values. |
---|
13 | The final sort of problem instances are derived from actual \CFA{} code. |
---|
14 | The prototype has a rich enough representation of \CFA{} that actual instances of expression resolution can be expressed with good fidelity, and I have implemented a compiler pass for \CFACC{} which can generate instances from actual code. |
---|
15 | Since at this juncture all development in \CFA{} is done by our research team, I have tested the prototype system on all \CFA{} code currently extant, primarily the standard library and compiler test suite. |
---|
16 | |
---|
17 | \section{Resolver Prototype Features} |
---|
18 | |
---|
19 | The resolver prototype can express most of the \CFA{} features described in Chapter~\ref{cfa-chap}. |
---|
20 | It supports both monomorphic and polymorphic functions, with type assertions for polymorphic functions. |
---|
21 | Traits are not explicitly represented, but \CFACC{} inlines traits before the resolver pass, so this is a faithful representation of the existing compiler problem. |
---|
22 | The prototype system supports variable declarations as well as function declarations, and has a lexical-scoping scheme which obeys \CFA{}-like overloading and overriding rules. |
---|
23 | |
---|
24 | The type system of the resolver prototype also captures the key aspects of the \CFA{} type system. |
---|
25 | \emph{Concrete types} represent the built-in arithmetic types of \CFA{}, along with the implicit conversions between them. |
---|
26 | Each concrete type is represented by an integer ID, and the conversion cost from $x$ to $y$ is $|y-x|$, a safe conversion if $y > x$, or an unsafe conversion if $y < x$. |
---|
27 | This is markedly simpler than the graph of conversion costs in \CFA{}, but captures the essentials of the design well. |
---|
28 | For simplicity, !zero_t! and !one_t!, the types of !0! and !1!, are represented by the type corresponding to !int!. |
---|
29 | \emph{Named types} are analogues to \CFA{} aggregates, such as structs and unions; aggregate fields are encoded as unary functions from the struct type to the field type, named based on the field name. |
---|
30 | Named types also support type parameters, and as such can represent generic types as well. |
---|
31 | Generic named types are used to represent the built-in parameterized types of \CFA{} as well; !T*! is encoded as \texttt{\#\$ptr<T>}. |
---|
32 | \CFA{} arrays are also represented as pointers, to simulate array-to-pointer decay, while top-level reference types are replaced by their referent to simulate the variety of reference conversions. |
---|
33 | Function types have first-class representation in the prototype as the type of both function declarations and function pointers, though the function type in the prototype system loses information about type assertions, so polymorphic function pointers cannot be expressed. |
---|
34 | Void and tuple types are also supported in the prototype, to express the multiple-return-value functions in \CFA{}, though varargs functions and !ttype! tuple-typed type variables are absent from the prototype system. |
---|
35 | The prototype system also does not represent type qualifiers (\eg{} !const!, !volatile!), so all such qualifiers are stripped during conversion to the prototype system. |
---|
36 | |
---|
37 | The resolver prototype supports three sorts of expressions in its input language. |
---|
38 | The simplest are \emph{value expressions}, which are expressions declared to be a certain type; these implement literal expressions in \CFA{}, and, already being typed, are passed through the resolver unchanged. |
---|
39 | The second sort, \emph{name expressions}, represent a variable expression in \CFA{}; these contain the name of a variable or function, and are matched to an appropriate declaration overloading that name by the resolver. |
---|
40 | The third input expression, the \emph{function expression}, represents a call to a function, with a name and zero or more argument subexpressions. |
---|
41 | As is usual in \CFA{}, operators are represented as function calls; however, as mentioned above, the prototype system represents field access expressions !a.f! as function expressions as well. |
---|
42 | |
---|
43 | The main area for future expansion in the design of the resolver prototype is conversions. |
---|
44 | Cast expressions are implemented in the output language of the resolver, but cannot be expressed in the input. |
---|
45 | The only implicit conversions supported are between the arithmetic-like concrete types, which captures most, but not all, of \CFA{}'s built-in implicit conversions\footnote{Notable absences include \lstinline{void*} to other pointer types, or \lstinline{0} to pointer types.}. |
---|
46 | Future work should include a way to express implicit (and possibly explicit) conversions in the input language, with an investigation of the most efficient way to handle implicit conversions, and potentially design for user-defined conversions. |
---|
47 | |
---|
48 | \section{Resolver Prototype Design} |
---|
49 | |
---|
50 | % talk about GC here, associated visitor/AST design |
---|
51 | |
---|
52 | % talk about shared type representations |
---|
53 | |
---|
54 | \section{Experimental Results} |
---|
55 | |
---|
56 | % use Jenkins daily build logs to rebuild speedup graph with more data |
---|
57 | |
---|
58 | % look back at Resolution Algorithms section for threads to tie up "does the algorithm look like this?" |
---|