[e8a7ca2] | 1 | \chapter{Introduction}
|
---|
| 2 |
|
---|
[471ff17] | 3 | % The highest level overview of Cforall and EHMs. Get this done right away.
|
---|
[cb6b8cb] | 4 | This thesis covers the design and implementation of the exception handling
|
---|
[21f2e92] | 5 | mechanism (EHM) of
|
---|
[6071efc] | 6 | \CFA (pronounced sea-for-all and may be written Cforall or CFA).
|
---|
[cb6b8cb] | 7 | \CFA is a new programming language that extends C, which maintains
|
---|
[6071efc] | 8 | backwards-compatibility while introducing modern programming features.
|
---|
| 9 | Adding exception handling to \CFA gives it new ways to handle errors and
|
---|
[cb6b8cb] | 10 | make large control-flow jumps.
|
---|
[471ff17] | 11 |
|
---|
| 12 | % Now take a step back and explain what exceptions are generally.
|
---|
[21f2e92] | 13 | Exception handling provides dynamic inter-function control flow.
|
---|
[cb6b8cb] | 14 | A language's EHM is a combination of language syntax and run-time
|
---|
| 15 | components that construct, raise, propagate and handle exceptions,
|
---|
| 16 | to provide all of that control flow.
|
---|
[553f8abe] | 17 | There are two forms of exception handling covered in this thesis:
|
---|
| 18 | termination, which acts as a multi-level return,
|
---|
| 19 | and resumption, which is a dynamic function call.
|
---|
[cb6b8cb] | 20 | % About other works:
|
---|
| 21 | Often, when this separation is not made, termination exceptions are assumed
|
---|
| 22 | as they are more common and may be the only form of handling provided in
|
---|
| 23 | a language.
|
---|
[553f8abe] | 24 |
|
---|
[cb6b8cb] | 25 | All types of exception handling link a raise with a handler.
|
---|
| 26 | Both operations are usually language primitives, although raises can be
|
---|
[9cdfa5fb] | 27 | treated as a function that takes an exception argument.
|
---|
| 28 | Handlers are more complex, as they are added to and removed from the stack
|
---|
| 29 | during execution, must specify what they can handle and must give the code to
|
---|
[cb6b8cb] | 30 | handle the exception.
|
---|
| 31 |
|
---|
| 32 | Exceptions work with different execution models but for the descriptions
|
---|
| 33 | that follow a simple call stack, with functions added and removed in a
|
---|
| 34 | first-in-last-out order, is assumed.
|
---|
| 35 |
|
---|
| 36 | Termination exception handling searches the stack for the handler, then
|
---|
| 37 | unwinds the stack to where the handler was found before calling it.
|
---|
| 38 | The handler is run inside the function that defined it and when it finishes
|
---|
| 39 | it returns control to that function.
|
---|
[e46ea00] | 40 | \begin{center}
|
---|
[9411cf0] | 41 | %\input{termination}
|
---|
| 42 | %
|
---|
| 43 | %\medskip
|
---|
[432bffe] | 44 | \input{termhandle.pstex_t}
|
---|
[9411cf0] | 45 | % I hate these diagrams, but I can't access xfig to fix them and they are
|
---|
| 46 | % better than the alternative.
|
---|
[e46ea00] | 47 | \end{center}
|
---|
| 48 |
|
---|
[cb6b8cb] | 49 | Resumption exception handling searches the stack for a handler and then calls
|
---|
| 50 | it without removing any other stack frames.
|
---|
| 51 | The handler is run on top of the existing stack, often as a new function or
|
---|
| 52 | closure capturing the context in which the handler was defined.
|
---|
[9cdfa5fb] | 53 | After the handler has finished running, it returns control to the function
|
---|
[cb6b8cb] | 54 | that preformed the raise, usually starting after the raise.
|
---|
| 55 | \begin{center}
|
---|
[9411cf0] | 56 | %\input{resumption}
|
---|
| 57 | %
|
---|
| 58 | %\medskip
|
---|
[432bffe] | 59 | \input{resumhandle.pstex_t}
|
---|
[9411cf0] | 60 | % The other one.
|
---|
[cb6b8cb] | 61 | \end{center}
|
---|
[e46ea00] | 62 |
|
---|
[553f8abe] | 63 | Although a powerful feature, exception handling tends to be complex to set up
|
---|
[9cdfa5fb] | 64 | and expensive to use,
|
---|
[cb6b8cb] | 65 | so it is often limited to unusual or ``exceptional" cases.
|
---|
[9cdfa5fb] | 66 | The classic example is error handling; exceptions can be used to
|
---|
[cb6b8cb] | 67 | remove error handling logic from the main execution path, and pay
|
---|
[553f8abe] | 68 | most of the cost only when the error actually occurs.
|
---|
[e8a7ca2] | 69 |
|
---|
[471ff17] | 70 | \section{Thesis Overview}
|
---|
[21f2e92] | 71 | This work describes the design and implementation of the \CFA EHM.
|
---|
[553f8abe] | 72 | The \CFA EHM implements all of the common exception features (or an
|
---|
[e8a7ca2] | 73 | equivalent) found in most other EHMs and adds some features of its own.
|
---|
[9cdfa5fb] | 74 | The design of all the features had to be adapted to \CFA's feature set, as
|
---|
[e8a7ca2] | 75 | some of the underlying tools used to implement and express exception handling
|
---|
| 76 | in other languages are absent in \CFA.
|
---|
[9cdfa5fb] | 77 | Still, the resulting syntax resembles that of other languages:
|
---|
[f42a6b8] | 78 | \begin{cfa}
|
---|
| 79 | try {
|
---|
[e8a7ca2] | 80 | ...
|
---|
| 81 | T * object = malloc(request_size);
|
---|
| 82 | if (!object) {
|
---|
[f42a6b8] | 83 | throw OutOfMemory{fixed_allocation, request_size};
|
---|
[e8a7ca2] | 84 | }
|
---|
| 85 | ...
|
---|
[f42a6b8] | 86 | } catch (OutOfMemory * error) {
|
---|
[e8a7ca2] | 87 | ...
|
---|
| 88 | }
|
---|
[f42a6b8] | 89 | \end{cfa}
|
---|
[e8a7ca2] | 90 | % A note that yes, that was a very fast overview.
|
---|
[471ff17] | 91 | The design and implementation of all of \CFA's EHM's features are
|
---|
[553f8abe] | 92 | described in detail throughout this thesis, whether they are a common feature
|
---|
[e8a7ca2] | 93 | or one unique to \CFA.
|
---|
| 94 |
|
---|
| 95 | % The current state of the project and what it contributes.
|
---|
[cb6b8cb] | 96 | All of these features have been implemented in \CFA,
|
---|
| 97 | covering both changes to the compiler and the run-time.
|
---|
| 98 | In addition, a suite of test cases and performance benchmarks were created
|
---|
[9cdfa5fb] | 99 | alongside the implementation.
|
---|
[f42a6b8] | 100 | The implementation techniques are generally applicable in other programming
|
---|
[553f8abe] | 101 | languages and much of the design is as well.
|
---|
[cb6b8cb] | 102 | Some parts of the EHM use other features unique to \CFA and would be
|
---|
[f42a6b8] | 103 | harder to replicate in other programming languages.
|
---|
| 104 |
|
---|
[e46ea00] | 105 | The contributions of this work are:
|
---|
| 106 | \begin{enumerate}
|
---|
[553f8abe] | 107 | \item Designing \CFA's exception handling mechanism, adapting designs from
|
---|
[cb6b8cb] | 108 | other programming languages and creating new features.
|
---|
| 109 | \item Implementing stack unwinding and the \CFA EHM, including updating
|
---|
| 110 | the \CFA compiler and the run-time environment.
|
---|
[9cdfa5fb] | 111 | \item Designing and implementing a prototype virtual system.
|
---|
[553f8abe] | 112 | % I think the virtual system and per-call site default handlers are the only
|
---|
| 113 | % "new" features, everything else is a matter of implementation.
|
---|
[cb6b8cb] | 114 | \item Creating tests to check the behaviour of the EHM.
|
---|
[9cdfa5fb] | 115 | \item Creating benchmarks to check the performance of the EHM,
|
---|
[cb6b8cb] | 116 | as compared to other languages.
|
---|
[e46ea00] | 117 | \end{enumerate}
|
---|
| 118 |
|
---|
[cb6b8cb] | 119 | The rest of this thesis is organized as follows.
|
---|
| 120 | The current state of exceptions is covered in \autoref{s:background}.
|
---|
[9cdfa5fb] | 121 | The existing state of \CFA is covered in \autoref{c:existing}.
|
---|
[cb6b8cb] | 122 | New EHM features are introduced in \autoref{c:features},
|
---|
| 123 | covering their usage and design.
|
---|
| 124 | That is followed by the implementation of these features in
|
---|
[553f8abe] | 125 | \autoref{c:implement}.
|
---|
[cb6b8cb] | 126 | Performance results are examined in \autoref{c:performance}.
|
---|
[f42a6b8] | 127 | Possibilities to extend this project are discussed in \autoref{c:future}.
|
---|
[cb6b8cb] | 128 | Finally, the project is summarized in \autoref{c:conclusion}.
|
---|
[471ff17] | 129 |
|
---|
| 130 | \section{Background}
|
---|
| 131 | \label{s:background}
|
---|
| 132 |
|
---|
[cb6b8cb] | 133 | Exception handling has been examined before in programming languages,
|
---|
| 134 | with papers on the subject dating back 70s.\cite{Goodenough75}
|
---|
| 135 | Early exceptions were often treated as signals, which carried no information
|
---|
[6cf21ed8] | 136 | except their identity.
|
---|
| 137 | Ada originally used this system\cite{Ada}, but now allows for a string
|
---|
| 138 | message as a payload\cite{Ada12}.
|
---|
[fcaa1e4] | 139 |
|
---|
[166b384] | 140 | The modern flagship for termination exceptions -- if one exists -- is \Cpp,
|
---|
[471ff17] | 141 | which added them in its first major wave of non-object-orientated features
|
---|
[6cf21ed8] | 142 | in 1990.\cite{CppHistory}
|
---|
[cb6b8cb] | 143 | Many EHMs have special exception types,
|
---|
| 144 | however \Cpp has the ability to use any type as an exception.
|
---|
| 145 | These were found to be not very useful and have been pushed aside for classes
|
---|
| 146 | inheriting from
|
---|
[fcaa1e4] | 147 | \code{C++}{std::exception}.
|
---|
[9cdfa5fb] | 148 | Although there is a special catch-all syntax (@catch(...)@), there are no
|
---|
[cb6b8cb] | 149 | operations that can be performed on the caught value, not even type inspection.
|
---|
[9cdfa5fb] | 150 | Instead, the base exception-type \code{C++}{std::exception} defines common
|
---|
[cb6b8cb] | 151 | functionality (such as
|
---|
[f42a6b8] | 152 | the ability to describe the reason the exception was raised) and all
|
---|
[cb6b8cb] | 153 | exceptions have this functionality.
|
---|
| 154 | That trade-off, restricting usable types to gain guaranteed functionality,
|
---|
| 155 | is almost universal now, as without some common functionality it is almost
|
---|
| 156 | impossible to actually handle any errors.
|
---|
[fcaa1e4] | 157 |
|
---|
[6cf21ed8] | 158 | Java was the next popular language to use exceptions.\cite{Java8}
|
---|
[9cdfa5fb] | 159 | Its exception system largely reflects that of \Cpp, except that it requires
|
---|
[f42a6b8] | 160 | you throw a child type of \code{Java}{java.lang.Throwable}
|
---|
[fcaa1e4] | 161 | and it uses checked exceptions.
|
---|
[cb6b8cb] | 162 | Checked exceptions are part of a function's interface,
|
---|
| 163 | the exception signature of the function.
|
---|
[9cdfa5fb] | 164 | Every exception that could be raised from a function, either directly or
|
---|
[cb6b8cb] | 165 | because it is not handled from a called function, is given.
|
---|
| 166 | Using this information, it is possible to statically verify if any given
|
---|
[9cdfa5fb] | 167 | exception is handled, and guarantee that no exception will go unhandled.
|
---|
[cb6b8cb] | 168 | Making exception information explicit improves clarity and safety,
|
---|
| 169 | but can slow down or restrict programming.
|
---|
| 170 | For example, programming high-order functions becomes much more complex
|
---|
| 171 | if the argument functions could raise exceptions.
|
---|
| 172 | However, as odd it may seem, the worst problems are rooted in the simple
|
---|
| 173 | inconvenience of writing and updating exception signatures.
|
---|
| 174 | This has caused Java programmers to develop multiple programming ``hacks''
|
---|
| 175 | to circumvent checked exceptions, negating their advantages.
|
---|
| 176 | One particularly problematic example is the ``catch-and-ignore'' pattern,
|
---|
| 177 | where an empty handler is used to handle an exception without doing any
|
---|
| 178 | recovery or repair. In theory that could be good enough to properly handle
|
---|
| 179 | the exception, but more often is used to ignore an exception that the
|
---|
[9cdfa5fb] | 180 | programmer does not feel is worth the effort of handling, for instance if
|
---|
[cb6b8cb] | 181 | they do not believe it will ever be raised.
|
---|
[9cdfa5fb] | 182 | If they are incorrect, the exception will be silenced, while in a similar
|
---|
[cb6b8cb] | 183 | situation with unchecked exceptions the exception would at least activate
|
---|
[9cdfa5fb] | 184 | the language's unhandled exception code (usually, a program abort with an
|
---|
[cb6b8cb] | 185 | error message).
|
---|
[471ff17] | 186 |
|
---|
| 187 | %\subsection
|
---|
[cb6b8cb] | 188 | Resumption exceptions are less popular,
|
---|
[9cdfa5fb] | 189 | although resumption is as old as termination; that is, few
|
---|
[fcaa1e4] | 190 | programming languages have implemented them.
|
---|
[471ff17] | 191 | % http://bitsavers.informatik.uni-stuttgart.de/pdf/xerox/parc/techReports/
|
---|
| 192 | % CSL-79-3_Mesa_Language_Manual_Version_5.0.pdf
|
---|
[6cf21ed8] | 193 | Mesa is one programming language that did.\cite{Mesa} Experience with Mesa
|
---|
[f42a6b8] | 194 | is quoted as being one of the reasons resumptions were not
|
---|
[471ff17] | 195 | included in the \Cpp standard.
|
---|
| 196 | % https://en.wikipedia.org/wiki/Exception_handling
|
---|
[166b384] | 197 | Since then, resumptions have been ignored in mainstream programming languages.
|
---|
[cb6b8cb] | 198 | However, resumption is being revisited in the context of decades of other
|
---|
| 199 | developments in programming languages.
|
---|
| 200 | While rejecting resumption may have been the right decision in the past,
|
---|
| 201 | the situation has changed since then.
|
---|
[9cdfa5fb] | 202 | Some developments, such as the functional programming equivalent to resumptions,
|
---|
[cb6b8cb] | 203 | algebraic effects\cite{Zhang19}, are enjoying success.
|
---|
[9cdfa5fb] | 204 | A complete reexamination of resumption is beyond this thesis,
|
---|
| 205 | but their reemergence is enough reason to try them in \CFA.
|
---|
[fcaa1e4] | 206 | % Especially considering how much easier they are to implement than
|
---|
[cb6b8cb] | 207 | % termination exceptions and how much Peter likes them.
|
---|
[471ff17] | 208 |
|
---|
| 209 | %\subsection
|
---|
[f42a6b8] | 210 | Functional languages tend to use other solutions for their primary error
|
---|
[cb6b8cb] | 211 | handling mechanism, but exception-like constructs still appear.
|
---|
| 212 | Termination appears in the error construct, which marks the result of an
|
---|
| 213 | expression as an error; then the result of any expression that tries to use
|
---|
| 214 | it also results in an error, and so on until an appropriate handler is reached.
|
---|
| 215 | Resumption appears in algebraic effects, where a function dispatches its
|
---|
[fcaa1e4] | 216 | side-effects to its caller for handling.
|
---|
[471ff17] | 217 |
|
---|
| 218 | %\subsection
|
---|
[166b384] | 219 | More recently, exceptions seem to be vanishing from newer programming
|
---|
[f42a6b8] | 220 | languages, replaced by ``panic".
|
---|
[cb6b8cb] | 221 | In Rust, a panic is just a program level abort that may be implemented by
|
---|
[6cf21ed8] | 222 | unwinding the stack like in termination exception
|
---|
| 223 | handling.\cite{RustPanicMacro}\cite{RustPanicModule}
|
---|
[814f87d] | 224 | Go's panic though is very similar to a termination, except it only supports
|
---|
[fcaa1e4] | 225 | a catch-all by calling \code{Go}{recover()}, simplifying the interface at
|
---|
[6cf21ed8] | 226 | the cost of flexibility.\cite{Go:2021}
|
---|
[471ff17] | 227 |
|
---|
| 228 | %\subsection
|
---|
[9cdfa5fb] | 229 | As exception handling's most common use cases are in error handling,
|
---|
[cb6b8cb] | 230 | here are some other ways to handle errors with comparisons with exceptions.
|
---|
[471ff17] | 231 | \begin{itemize}
|
---|
| 232 | \item\emph{Error Codes}:
|
---|
[cb6b8cb] | 233 | This pattern has a function return an enumeration (or just a set of fixed
|
---|
| 234 | values) to indicate if an error has occurred and possibly which error it was.
|
---|
| 235 |
|
---|
| 236 | Error codes mix exceptional/error and normal values, enlarging the range of
|
---|
| 237 | possible return values. This can be addressed with multiple return values
|
---|
| 238 | (or a tuple) or a tagged union.
|
---|
| 239 | However, the main issue with error codes is forgetting to check them,
|
---|
| 240 | which leads to an error being quietly and implicitly ignored.
|
---|
| 241 | Some new languages and tools will try to issue warnings when an error code
|
---|
| 242 | is discarded to avoid this problem.
|
---|
| 243 | Checking error codes also bloats the main execution path,
|
---|
[9cdfa5fb] | 244 | especially if the error is not handled immediately and has to be passed
|
---|
[cb6b8cb] | 245 | through multiple functions before it is addressed.
|
---|
[471ff17] | 246 |
|
---|
[9411cf0] | 247 | Here is an example of the pattern in Bash, where commands can only ``return"
|
---|
| 248 | numbers and most output is done through streams of text.
|
---|
| 249 | \begin{lstlisting}[language=bash,escapechar={}]
|
---|
| 250 | # Immediately after running a command:
|
---|
| 251 | case $? in
|
---|
| 252 | 0)
|
---|
| 253 | # Success
|
---|
| 254 | ;;
|
---|
| 255 | 1)
|
---|
| 256 | # Error Code 1
|
---|
| 257 | ;;
|
---|
| 258 | 2|3)
|
---|
| 259 | # Error Code 2 or Error Code 3
|
---|
| 260 | ;;
|
---|
| 261 | # Add more cases as needed.
|
---|
| 262 | asac
|
---|
| 263 | \end{lstlisting}
|
---|
| 264 |
|
---|
[471ff17] | 265 | \item\emph{Special Return with Global Store}:
|
---|
[cb6b8cb] | 266 | Similar to the error codes pattern but the function itself only returns
|
---|
[9cdfa5fb] | 267 | that there was an error,
|
---|
| 268 | and stores the reason for the error in a fixed global location.
|
---|
| 269 | For example, many routines in the C standard library will only return some
|
---|
[cb6b8cb] | 270 | error value (such as -1 or a null pointer) and the error code is written into
|
---|
| 271 | the standard variable @errno@.
|
---|
[471ff17] | 272 |
|
---|
[cb6b8cb] | 273 | This approach avoids the multiple results issue encountered with straight
|
---|
[9411cf0] | 274 | error codes as only a single error value has to be returned,
|
---|
| 275 | but otherwise has the same disadvantages and more.
|
---|
[cb6b8cb] | 276 | Every function that reads or writes to the global store must agree on all
|
---|
| 277 | possible errors and managing it becomes more complex with concurrency.
|
---|
[471ff17] | 278 |
|
---|
[9411cf0] | 279 | This example shows some of what has to be done to robustly handle a C
|
---|
| 280 | standard library function that reports errors this way.
|
---|
| 281 | \begin{lstlisting}[language=C]
|
---|
| 282 | // Now a library function can set the error.
|
---|
| 283 | int handle = open(path_name, flags);
|
---|
| 284 | if (-1 == handle) {
|
---|
| 285 | switch (errno) {
|
---|
| 286 | case ENAMETOOLONG:
|
---|
| 287 | // path_name is a bad argument.
|
---|
| 288 | break;
|
---|
| 289 | case ENFILE:
|
---|
| 290 | // A system resource has been exausted.
|
---|
| 291 | break;
|
---|
| 292 | // And many more...
|
---|
| 293 | }
|
---|
| 294 | }
|
---|
| 295 | \end{lstlisting}
|
---|
| 296 | % cite open man page?
|
---|
| 297 |
|
---|
[471ff17] | 298 | \item\emph{Return Union}:
|
---|
[cb6b8cb] | 299 | This pattern replaces error codes with a tagged union.
|
---|
[471ff17] | 300 | Success is one tag and the errors are another.
|
---|
| 301 | It is also possible to make each possible error its own tag and carry its own
|
---|
[9cdfa5fb] | 302 | additional information, but the two-branch format is easy to make generic
|
---|
[471ff17] | 303 | so that one type can be used everywhere in error handling code.
|
---|
| 304 |
|
---|
[cb6b8cb] | 305 | This pattern is very popular in any functional or semi-functional language
|
---|
| 306 | with primitive support for tagged unions (or algebraic data types).
|
---|
[814f87d] | 307 | Return unions can also be expressed as monads (evaluation in a context)
|
---|
| 308 | and often are in languages with special syntax for monadic evaluation,
|
---|
| 309 | such as Haskell's \code{haskell}{do} blocks.
|
---|
| 310 |
|
---|
[cb6b8cb] | 311 | The main advantage is that an arbitrary object can be used to represent an
|
---|
[9cdfa5fb] | 312 | error, so it can include a lot more information than a simple error code.
|
---|
[cb6b8cb] | 313 | The disadvantages include that the it does have to be checked along the main
|
---|
[9cdfa5fb] | 314 | execution, and if there aren't primitive tagged unions proper, usage can be
|
---|
[cb6b8cb] | 315 | hard to enforce.
|
---|
[814f87d] | 316 | % We need listing Rust/rust to format code snippets from it.
|
---|
| 317 | % Rust's \code{rust}{Result<T, E>}
|
---|
| 318 |
|
---|
[9411cf0] | 319 | This is a simple example of examining the result of a failing function in
|
---|
| 320 | Haskell, using its \code{haskell}{Either} type.
|
---|
| 321 | Examining \code{haskell}{error} further would likely involve more matching,
|
---|
| 322 | but the type of \code{haskell}{error} is user defined so there are no
|
---|
| 323 | general cases.
|
---|
| 324 | \begin{lstlisting}[language=haskell]
|
---|
| 325 | case failingFunction argA argB of
|
---|
| 326 | Right value -> -- Use the successful computed value.
|
---|
| 327 | Left error -> -- Handle the produced error.
|
---|
| 328 | \end{lstlisting}
|
---|
| 329 |
|
---|
[814f87d] | 330 | Return unions as monads will result in the same code, but can hide most
|
---|
| 331 | of the work to propagate errors in simple cases. The code to actually handle
|
---|
| 332 | the errors, or to interact with other monads (a common case in these
|
---|
| 333 | languages) still has to be written by hand.
|
---|
[471ff17] | 334 |
|
---|
[9411cf0] | 335 | If \code{haskell}{failingFunction} is implemented with two helpers that
|
---|
| 336 | use the same error type, then it can be implemented with a \code{haskell}{do}
|
---|
| 337 | block.
|
---|
[86bd8538] | 338 | \begin{lstlisting}[language=haskell,literate={}]
|
---|
[9411cf0] | 339 | failingFunction x y = do
|
---|
| 340 | z <- helperOne x
|
---|
| 341 | helperTwo y z
|
---|
| 342 | \end{lstlisting}
|
---|
| 343 |
|
---|
[471ff17] | 344 | \item\emph{Handler Functions}:
|
---|
[cb6b8cb] | 345 | This pattern associates errors with functions.
|
---|
| 346 | On error, the function that produced the error calls another function to
|
---|
[471ff17] | 347 | handle it.
|
---|
| 348 | The handler function can be provided locally (passed in as an argument,
|
---|
| 349 | either directly as as a field of a structure/object) or globally (a global
|
---|
| 350 | variable).
|
---|
[cb6b8cb] | 351 | C++ uses this approach as its fallback system if exception handling fails,
|
---|
[9cdfa5fb] | 352 | such as \snake{std::terminate} and, for a time,
|
---|
| 353 | \snake{std::unexpected}.\footnote{\snake{std::unexpected} was part of the
|
---|
| 354 | Dynamic Exception Specification, which has been removed from the standard
|
---|
| 355 | as of C++20.\cite{CppExceptSpec}}
|
---|
[f42a6b8] | 356 |
|
---|
[cb6b8cb] | 357 | Handler functions work a lot like resumption exceptions,
|
---|
| 358 | but without the dynamic search for a handler.
|
---|
| 359 | Since setting up the handler can be more complex/expensive,
|
---|
| 360 | especially when the handler has to be passed through multiple layers of
|
---|
| 361 | function calls, but cheaper (constant time) to call,
|
---|
| 362 | they are more suited to more frequent (less exceptional) situations.
|
---|
[9411cf0] | 363 | Although, in \Cpp and other languages that do not have checked exceptions,
|
---|
| 364 | they can actually be enforced by the type system be more reliable.
|
---|
| 365 |
|
---|
| 366 | This is a more local example in \Cpp, using a function to provide
|
---|
| 367 | a default value for a mapping.
|
---|
| 368 | \begin{lstlisting}[language=C++]
|
---|
| 369 | ValueT Map::key_or_default(KeyT key, ValueT(*make_default)(KeyT)) {
|
---|
| 370 | ValueT * value = find_value(key);
|
---|
| 371 | if (nullptr != value) {
|
---|
| 372 | return *value;
|
---|
| 373 | } else {
|
---|
| 374 | return make_default(key);
|
---|
| 375 | }
|
---|
| 376 | }
|
---|
| 377 | \end{lstlisting}
|
---|
[471ff17] | 378 | \end{itemize}
|
---|
| 379 |
|
---|
| 380 | %\subsection
|
---|
[cb6b8cb] | 381 | Because of their cost, exceptions are rarely used for hot paths of execution.
|
---|
| 382 | Hence, there is an element of self-fulfilling prophecy as implementation
|
---|
[166b384] | 383 | techniques have been focused on making them cheap to set up,
|
---|
[cb6b8cb] | 384 | happily making them expensive to use in exchange.
|
---|
| 385 | This difference is less important in higher-level scripting languages,
|
---|
[9cdfa5fb] | 386 | where using exceptions for other tasks is more common.
|
---|
[6cf21ed8] | 387 | An iconic example is Python's
|
---|
[9cdfa5fb] | 388 | \code{Python}{StopIteration}\cite{PythonExceptions} exception, that
|
---|
[cb6b8cb] | 389 | is thrown by an iterator to indicate that it is exhausted.
|
---|
[9cdfa5fb] | 390 | When paired with Python's iterator-based for-loop, this will be thrown every
|
---|
[6cf21ed8] | 391 | time the end of the loop is reached.\cite{PythonForLoop}
|
---|