[9c14ae9] | 1 | % T I T L E P A G E |
---|
| 2 | % ------------------- |
---|
| 3 | % Last updated May 24, 2011, by Stephen Carr, IST-Client Services |
---|
| 4 | % The title page is counted as page `i' but we need to suppress the |
---|
| 5 | % page number. We also don't want any headers or footers. |
---|
| 6 | \pagestyle{empty} |
---|
| 7 | \pagenumbering{roman} |
---|
| 8 | |
---|
| 9 | % The contents of the title page are specified in the "titlepage" |
---|
| 10 | % environment. |
---|
| 11 | \begin{titlepage} |
---|
| 12 | \begin{center} |
---|
| 13 | \vspace*{1.0cm} |
---|
| 14 | |
---|
| 15 | \Huge |
---|
| 16 | {\bf Resource Management and Tuples in \CFA} |
---|
| 17 | |
---|
| 18 | \vspace*{1.0cm} |
---|
| 19 | |
---|
| 20 | \normalsize |
---|
| 21 | by \\ |
---|
| 22 | |
---|
| 23 | \vspace*{1.0cm} |
---|
| 24 | |
---|
| 25 | \Large |
---|
[0111dc7] | 26 | Robert Schluntz \\ |
---|
[9c14ae9] | 27 | |
---|
| 28 | \vspace*{3.0cm} |
---|
| 29 | |
---|
| 30 | \normalsize |
---|
| 31 | A thesis \\ |
---|
| 32 | presented to the University of Waterloo \\ |
---|
| 33 | in fulfillment of the \\ |
---|
| 34 | thesis requirement for the degree of \\ |
---|
| 35 | Master of Mathematics \\ |
---|
| 36 | in \\ |
---|
| 37 | Computer Science \\ |
---|
| 38 | |
---|
| 39 | \vspace*{2.0cm} |
---|
| 40 | |
---|
| 41 | Waterloo, Ontario, Canada, 2017 \\ |
---|
| 42 | |
---|
| 43 | \vspace*{1.0cm} |
---|
| 44 | |
---|
[0111dc7] | 45 | \copyright\ Robert Schluntz 2017 \\ |
---|
[9c14ae9] | 46 | \end{center} |
---|
| 47 | \end{titlepage} |
---|
| 48 | |
---|
| 49 | % The rest of the front pages should contain no headers and be numbered using Roman numerals starting with `ii' |
---|
| 50 | \pagestyle{plain} |
---|
| 51 | \setcounter{page}{2} |
---|
| 52 | |
---|
| 53 | \cleardoublepage % Ends the current page and causes all figures and tables that have so far appeared in the input to be printed. |
---|
| 54 | % In a two-sided printing style, it also makes the next page a right-hand (odd-numbered) page, producing a blank page if necessary. |
---|
| 55 | |
---|
| 56 | |
---|
| 57 | |
---|
| 58 | % D E C L A R A T I O N P A G E |
---|
| 59 | % ------------------------------- |
---|
| 60 | % The following is the sample Delaration Page as provided by the GSO |
---|
| 61 | % December 13th, 2006. It is designed for an electronic thesis. |
---|
| 62 | \noindent |
---|
| 63 | I hereby declare that I am the sole author of this thesis. This is a true copy of the thesis, including any required final revisions, as accepted by my examiners. |
---|
| 64 | |
---|
| 65 | \bigskip |
---|
| 66 | |
---|
| 67 | \noindent |
---|
| 68 | I understand that my thesis may be made electronically available to the public. |
---|
| 69 | |
---|
| 70 | \cleardoublepage |
---|
| 71 | %\newpage |
---|
| 72 | |
---|
| 73 | % A B S T R A C T |
---|
| 74 | % --------------- |
---|
| 75 | |
---|
| 76 | \begin{center}\textbf{Abstract}\end{center} |
---|
| 77 | |
---|
[7493339] | 78 | \CFA is a modern, non-object-oriented extension of the C programming language. |
---|
[0111dc7] | 79 | This thesis addresses several critical deficiencies of C, notably: resource management, a limited function-return mechanism, and unsafe variadic functions. |
---|
| 80 | To solve these problems, two fundamental language features are introduced: tuples and constructors/destructors. |
---|
[7493339] | 81 | While these features exist in prior programming languages, the contribution of this work is engineering these features into a highly complex type system. |
---|
[0111dc7] | 82 | C is an established language with a dedicated user-base. |
---|
| 83 | An important goal is to add new features in a way that naturally feels like C, to appeal to this core user-base, and due to huge amounts of legacy code, maintaining backwards compatibility is crucial. |
---|
[9c14ae9] | 84 | |
---|
| 85 | \cleardoublepage |
---|
| 86 | %\newpage |
---|
| 87 | |
---|
[12d3187] | 88 | % A C K N O W L E D G E M E N T S |
---|
| 89 | % ------------------------------- |
---|
[9c14ae9] | 90 | |
---|
[12d3187] | 91 | \begin{center}\textbf{Acknowledgements}\end{center} |
---|
[9c14ae9] | 92 | |
---|
[12d3187] | 93 | I would like to thank my supervisor, Professor Peter Buhr, for all of his help, including reading the many drafts of this thesis and providing guidance throughout my degree. |
---|
| 94 | This work would not have been as enjoyable, nor would it have been as strong without Peter's knowledge, help, and encouragement. |
---|
| 95 | |
---|
| 96 | I would like to thank my readers, Professors Gregor Richards and Patrick Lam for all of their helpful feedback. |
---|
| 97 | |
---|
| 98 | Thanks to Aaron Moss and Thierry Delisle for many helpful discussions, both work-related and not, and for all of the work they have put into the \CFA project. |
---|
| 99 | This thesis would not have been the same without their efforts. |
---|
| 100 | |
---|
| 101 | I thank Glen Ditchfield and Richard Bilson, for all of their help with both the design and implementation of \CFA. |
---|
| 102 | |
---|
| 103 | I thank my partner, Erin Blackmere, for all of her love and support. |
---|
| 104 | Without her, I would not be who I am today. |
---|
| 105 | |
---|
| 106 | Thanks to my parents, Bob and Jackie Schluntz, for their love and support throughout my life, and for always encouraging me to be my best. |
---|
| 107 | |
---|
| 108 | Thanks to my best friends, Travis Bartlett, Abraham Dubrisingh, and Kevin Wu, whose companionship is always appreciated. |
---|
| 109 | The time we've spent together over the past 4 years has always kept me entertained. |
---|
| 110 | An extra shout-out to Kaleb Alway, Max Bardakov, Ten Bradley, and Ed Lee, with whom I've shared many a great meal; thank you for being my friend. |
---|
| 111 | |
---|
| 112 | Finally, I would like to acknowledge financial support in the form of a David R. Cheriton Graduate Scholarship and a corporate partnership with Huawei Ltd. |
---|
| 113 | |
---|
| 114 | \cleardoublepage |
---|
| 115 | %\newpage |
---|
[9c14ae9] | 116 | |
---|
[0111dc7] | 117 | % % D E D I C A T I O N |
---|
| 118 | % % ------------------- |
---|
[9c14ae9] | 119 | |
---|
[0111dc7] | 120 | % \begin{center}\textbf{Dedication}\end{center} |
---|
[9c14ae9] | 121 | |
---|
[0111dc7] | 122 | % % This is dedicated to the one I love. |
---|
| 123 | % TODO |
---|
| 124 | % \cleardoublepage |
---|
| 125 | % %\newpage |
---|
[9c14ae9] | 126 | |
---|
| 127 | % T A B L E O F C O N T E N T S |
---|
| 128 | % --------------------------------- |
---|
| 129 | \renewcommand\contentsname{Table of Contents} |
---|
| 130 | \tableofcontents |
---|
| 131 | \cleardoublepage |
---|
| 132 | \phantomsection |
---|
| 133 | %\newpage |
---|
| 134 | |
---|
| 135 | % L I S T O F T A B L E S |
---|
| 136 | % --------------------------- |
---|
| 137 | \addcontentsline{toc}{chapter}{List of Tables} |
---|
| 138 | \listoftables |
---|
| 139 | \cleardoublepage |
---|
| 140 | \phantomsection % allows hyperref to link to the correct page |
---|
| 141 | %\newpage |
---|
| 142 | |
---|
[0111dc7] | 143 | % % L I S T O F F I G U R E S |
---|
| 144 | % % ----------------------------- |
---|
| 145 | % \addcontentsline{toc}{chapter}{List of Figures} |
---|
| 146 | % \listoffigures |
---|
| 147 | % \cleardoublepage |
---|
| 148 | % \phantomsection % allows hyperref to link to the correct page |
---|
| 149 | % %\newpage |
---|
[9c14ae9] | 150 | |
---|
| 151 | % L I S T O F S Y M B O L S |
---|
| 152 | % ----------------------------- |
---|
| 153 | % To include a Nomenclature section |
---|
| 154 | % \addcontentsline{toc}{chapter}{\textbf{Nomenclature}} |
---|
| 155 | % \renewcommand{\nomname}{Nomenclature} |
---|
| 156 | % \printglossary |
---|
| 157 | % \cleardoublepage |
---|
| 158 | % \phantomsection % allows hyperref to link to the correct page |
---|
| 159 | % \newpage |
---|
| 160 | |
---|
| 161 | % Change page numbering back to Arabic numerals |
---|
| 162 | \pagenumbering{arabic} |
---|
| 163 | |
---|