source: doc/theses/aaron_moss_PhD/phd/experiments.tex @ 0e6a0beb

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 0e6a0beb was 0e6a0beb, checked in by Aaron Moss <a3moss@…>, 6 years ago

thesis: Started Experiments chapter

  • Property mode set to 100644
File size: 6.4 KB
Line 
1\chapter{Experiments}
2\label{expr-chap}
3
4I have implemented a prototype system to test the practical effectiveness of the various algorithms described in Chapters~\ref{resolution-chap} and~\ref{env-chap}.
5This 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.
6The 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
8There are three sources of problem instances for the resolver prototype.
9The first is small, hand-written tests designed to test the expressive power and correctness of the prototype.
10These tests are valuable for regression testing, but not time-consuming enough to be useful performance tests.
11The 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.
12I have implemented a flagged \CFACC{} pass which outputs information which can be used to initialize the procedural generator's parameters to realistic values.
13The final sort of problem instances are derived from actual \CFA{} code.
14The 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.
15Since 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
19The resolver prototype can express most of the \CFA{} features described in Chapter~\ref{cfa-chap}.
20It supports both monomorphic and polymorphic functions, with type assertions for polymorphic functions.
21Traits are not explicitly represented, but \CFACC{} inlines traits before the resolver pass, so this is a faithful representation of the existing compiler problem.
22The 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
24The 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.
26Each 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$.
27This is markedly simpler than the graph of conversion costs in \CFA{}, but captures the essentials of the design well.
28For 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.
30Named types also support type parameters, and as such can represent generic types as well.
31Generic 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.
33Function 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.
34Void 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.
35The prototype system also does not represent type qualifiers (\eg{} !const!, !volatile!), so all such qualifiers are stripped during conversion to the prototype system.
36
37The resolver prototype supports three sorts of expressions in its input language.
38The 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.
39The 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.
40The third input expression, the \emph{function expression}, represents a call to a function, with a name and zero or more argument subexpressions.
41As 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
43The main area for future expansion in the design of the resolver prototype is conversions.
44Cast expressions are implemented in the output language of the resolver, but cannot be expressed in the input.
45The 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.}.
46Future 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?"
Note: See TracBrowser for help on using the repository browser.