Changeset 5e81a9c
- Timestamp:
- Jul 4, 2023, 12:37:32 PM (17 months ago)
- Branches:
- master
- Children:
- 930a800
- Parents:
- adb67cf3
- Location:
- doc/theses/colby_parsons_MMAth/text
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/colby_parsons_MMAth/text/conclusion.tex
radb67cf3 r5e81a9c 5 5 % ====================================================================== 6 6 This thesis presented a suite of safe and efficient concurrency tools that provide users with the means to write scalable programs in \CFA through many avenues. 7 If users prefer the message passing paradigm of concurrency, \CFA now provides tools in the form of a performant actor system and channels.7 If users prefer the message passing paradigm of concurrency, \CFA now provides message passing tools in the form of a performant actor system and channels. 8 8 For shared memory concurrency the mutex statement provides a safe and easy-to-use interface for mutual exclusion. 9 The waituntil statement provided by this works aids in writing concurrent programs in both the message passing and shared memory worlds of concurrency.10 Furthermore no other language provides a synchronous multiplexing tool polymorphic over resources like \CFA's waituntil.9 The waituntil statement provided by this works aids in writing concurrent programs in both the message passing and shared memory paradigms of concurrency. 10 Furthermore, no other language provides a synchronous multiplexing tool polymorphic over resources like \CFA's waituntil. 11 11 From the novel copy queue data structure in the actor system, to the plethora of user-supporting safety features, all these utilities build upon existing tools with value added. 12 12 … … 15 15 This thesis scratches the surface of implicit concurrency by providing an actor system. 16 16 There is room for more implicit concurrency tools in \CFA. 17 User-defined implicit concurrency in the form of annotated loops or recursive functions exists in many other languages and libraries~\cite{uC++,openmp} andcould be implemented and expanded on in \CFA.17 User-defined implicit concurrency in the form of annotated loops or recursive functions exists in many other languages and libraries~\cite{uC++,openmp}. Similar implicit concurrency mechanisms could be implemented and expanded on in \CFA. 18 18 Additionally, the problem of automatic parallelism of sequential programs via the compiler is an interesting research space that other languages have approached~\cite{wilson94,haskell:parallel} that could also be explored in \CFA. 19 20 21 \subsection{Synchronously Multiplexing System Calls}22 There are many tools that try to sychronize on or asynchronously check I/O, since improvements in this area pay dividends in many areas of computer science~\cite{linux:select,linux:poll,linux:epoll,linux:iouring}.23 Research on improving user-space tools to synchronize over I/O and other system calls is an interesting area to explore in the world of concurrent tooling.24 19 25 20 \subsection{Advanced Actor Stealing Heuristics} 26 21 In this thesis, two basic victim selection heuristics were chosen when implementing the work stealing actor system. Good victim selection is an active area of work stealing research, especially when taking into account NUMA effects and cache locality~\cite{barghi18,wolke17}. The actor system in \CFA is modular and exploration of other victim selection heuristics for queue stealing in \CFA could constitute future work. The other question that arises with work stealing is: When should a worker thread steal? Work stealing systems can often be too aggressive when stealing, causing the cost of the steal to be higher than what is saved by sharing the work. In the presented actor system, a worker thread steals work after it checks all its work queues for work twice and sees them all empty. Given that thief threads often have cycles to spare, there is room for a more nuanced approach to choosing when to steal. 22 23 \subsection{Synchronously Multiplexing System Calls} 24 There are many tools that try to sychronously wait for or asynchronously check I/O, since improvements in this area pay dividends in many areas of computer science~\cite{linux:select,linux:poll,linux:epoll,linux:iouring}. 25 Research on improving user-space tools to synchronize over I/O and other system calls is an interesting area to explore in the world of concurrent tooling. 27 26 28 27 \subsection{Better Atomic Operations} … … 34 33 The semantics and safety of these builtins require careful navigation since they require the user to have a nuanced understanding of concurrent memory ordering models to pass via flags. 35 34 Furthermore, these atomics also often require a user to understand how to fence appropriately to ensure correctness. 36 All these problems and more could benefit from language support, and adding said language support in \CFA could constitute a great research contribution, and allow for easier writing of low-level safe concurrent code. 35 All these problems and more could benefit from language support in \CFA. 36 Adding good language support for atomics is a difficult and nuanced problem, which if solved well would allow for easier and safer writing of low-level concurrent code. -
doc/theses/colby_parsons_MMAth/text/waituntil.tex
radb67cf3 r5e81a9c 5 5 % ====================================================================== 6 6 7 Consider the following motivati onal problem that we shall title the bathroomproblem.7 Consider the following motivating problem. 8 8 There are @N@ stalls (resources) in a bathroom and there are @M@ people (threads). 9 Each stall has their own lock since only one person may occupy a stall at a time. 10 The standard way that humans solve this problem is that they check if the stalls are occupied and if they all are they queue and watch the stalls until one is free and then enter and lock the stall. 11 This solution is simple in real life, but can be difficult to implement in a concurrent context as it requires the threads to somehow wait on all the stalls at the same time. 12 The naive solution to this is for each thread to spin indefinitely continually checking the stalls until one is free. 13 This wastes cycles and also results in no fairness among threads waiting for stalls as a thread will jump in the first stall available without any regard to other waiting threads. 14 The ability to wait for the first stall available without spinning can be done with concurrent tools that provide \gls{synch_multiplex}, the ability to wait synchronously for a resource or set of resources. 9 Each stall has its own lock since only one person may occupy a stall at a time. 10 Humans tend to solve this problem in the following way. 11 They check if all of the stalls are occupied. 12 If not they enter and claim an available stall. 13 If they are all occupied, the people queue and watch the stalls until one is free and then enter and lock the stall. 14 This solution can be implemented on a computer easily if all threads are waiting on all stalls and agree to queue. 15 Now the problem is extended. 16 Some stalls are wheelchair accessible, some stalls are dirty and other stalls are clean. 17 Each person (thread) may choose some subset of dirty, clean and accessible stalls that they want to wait for. 18 Immediately the problem becomes much more difficult. 19 A single queue no longer fully solves the problem: What happens when there is a stall available that the person at the front of the queue will not choose? 20 The naive solution to this problem has each thread to spin indefinitely continually checking the stalls until an suitable one is free. 21 This is not good enough since this approach wastes cycles and results in no fairness among threads waiting for stalls as a thread will jump in the first stall available without any regard to other waiting threads. 22 Waiting for the first stall (resource) available without spinning is an example of \gls{synch_multiplex}, the ability to wait synchronously for a resource or set of resources. 15 23 16 24 \section{History of Synchronous Multiplexing} 17 25 There is a history of tools that provide \gls{synch_multiplex}. 18 Some of the most well known include the set of unix system utilities: select(2)\cite{linux:select}, poll(2)\cite{linux:poll}, and epoll(7)\cite{linux:epoll}, and the select statement provided by Go\cite{go:selectref}. 19 20 Before one can examine the history of \gls{synch_multiplex} implementations in detail, the preceding theory must be discussed. 21 The theory surrounding this topic was largely introduced by Hoare in his 1985 CSP book \cite{Hoare85} and his later work with Roscoe on the theoretical language Occam\cite{Roscoe88}. 22 Both include guards for communication channels and the ability to wait for a single channel to be ready out of a set of channels. 26 Some well known \gls{synch_multiplex} tools include unix system utilities: select(2)\cite{linux:select}, poll(2)\cite{linux:poll}, and epoll(7)\cite{linux:epoll}, and the select statement provided by Go\cite{go:selectref}. 27 28 The theory surrounding \gls{synch_multiplex} was largely introduced by Hoare in his 1985 CSP book \cite{Hoare85} and his later work with Roscoe on the theoretical language Occam\cite{Roscoe88}. 23 29 The work on Occam in \cite{Roscoe88} calls their \gls{synch_multiplex} primitive ALT, which waits for one resource to be available and then executes a corresponding block of code. 24 Waiting for one resource out of a set of resources can be thought of as a logical exclusive or over the set of resources. 30 Waiting for one resource out of a set of resources can be thought of as a logical exclusive-or over the set of resources. 31 Both CSP and Occam include \Newterm{guards} for communication channels and the ability to wait for a single channel to be ready out of a set of channels. 25 32 Guards are a conditional operator similar to an @if@, except they apply to the resource being waited on. 26 33 If a guard is false then the resource it guards is considered to not be in the set of resources being waited on. 27 Guards can be simulated using if statements, but to do so requires \[2^N\] if cases, where @N@ is the number of guards.34 Guards can be simulated using if statements, but to do so requires \[2^N\] if statements, where @N@ is the number of guards. 28 35 The equivalence between guards and exponential if statements comes from an Occam ALT statement rule~\cite{Roscoe88}, which is presented in \CFA syntax in Figure~\ref{f:wu_if}. 29 36 Providing guards allows for easy toggling of waituntil clauses without introducing repeated code. … … 31 38 \begin{figure} 32 39 \begin{cfa} 33 when( predicate ) waituntil( A ) {} 40 // CFA's guards use the keyword 'when' 41 when( predicate ) waituntil( A ) {} 34 42 or waituntil( B ) {} 35 43 // === … … 45 53 \end{figure} 46 54 47 Switching to implementations, it is important todiscuss the resources being multiplexed.48 While the aforementioned theory discusses waiting on channels, the earliest known implementation of a synchronous multiplexing tool, Unix's select(2), is multiplexed over file descriptors.49 The select(2) system call takes in sets of file descriptors to wait on as argumentsand an optional timeout.50 Select will block until either some subset of file descriptors are available or the timeout expires.51 All file descriptors that are ready will be returned .52 This early implementation differs from the theory as when the call from selectreturns it may provide more than one ready file descriptor.53 As such select has a logicalor multiplexing semantics, whereas the theory described exclusive-or semantics.55 When discussing \gls{synch_multiplex} implementations, one must discuss the resources being multiplexed. 56 While the aforementioned theory waits on channels, the earliest known implementation of a synchronous multiplexing tool, Unix's select(2)\cite{linux:select}, is multiplexed over file descriptors. 57 The select(2) system call is passed three sets of file descriptors (read, write, exceptional) to wait on and an optional timeout. 58 Select(2) will block until either some subset of file descriptors are available or the timeout expires. 59 All file descriptors that are ready will be returned by modifying the argument sets to only contain the ready descriptors. 60 This early implementation differs from the theory presented in Occam and CSP; when the call from select(2) returns it may provide more than one ready file descriptor. 61 As such, select(2) has logical-or multiplexing semantics, whereas the theory described exclusive-or semantics. 54 62 This is not a drawback. 55 63 A user can easily achieve exclusive-or semantics with select by arbitrarily choosing only one of the returned descriptors to operate on. 56 Select was followed by poll(2), and later epoll(7), which both improvedupon drawbacks in their predecessors.57 The syscall poll(2) improved on select by allowing users to monitor descriptors with numbers higher than 1024 which was not supported by select.58 Epoll then improved on poll to return the set of file descriptors since poll would only say that some descriptor from the set was ready but not return which ones were ready.64 Select(2) was followed by poll(2), which was later followed by epoll(7), with each successor improving upon drawbacks in their predecessors. 65 The syscall poll(2) improved on select(2) by allowing users to monitor descriptors with numbers higher than 1024 which was not supported by select. 66 Epoll(7) then improved on poll(2) to return the set of file descriptors; when one or more descriptors became available poll(2) would return the number of availables descriptors, but would not indicate which descriptors were ready. 59 67 60 68 It is worth noting these \gls{synch_multiplex} tools mentioned so far interact directly with the operating system and are often used to communicate between processes. 61 Later \gls{synch_multiplex} started to appear in user-space to support fast multiplexed concurrent communication between threads.69 Later, \gls{synch_multiplex} started to appear in user-space to support fast multiplexed concurrent communication between threads. 62 70 An early example of \gls{synch_multiplex} is the select statement in Ada~\cite[\S~9.7]{Ichbiah79}. 63 71 The select statement in Ada allows a task to multiplex over some subset of its own methods that it would like to @accept@ calls to. 64 Tasks in Ada can be thought of as threads which are an object of a specific class, and as such have methods, fields, etc.65 Th is statement has the same exclusive-or semantics as ALT from Occam, and supports guards as described inOccam, however it multiplexes over methods on rather than multiplexing over channels.66 A code block is associated with each @accept@, and the method that is @accept@ed first has its corresponding code block run after the task unblocks.72 Tasks in Ada are essentially objects that have their own thread, and as such have methods, fields, etc. 73 The Ada select statement has the same exclusive-or semantics and guards as ALT from Occam, however it multiplexes over methods on rather than multiplexing over channels. 74 A code block is associated with each @accept@, and the method that is accepted first has its corresponding code block run after the task unblocks. 67 75 In this way the select statement in Ada provides rendezvous points for threads, rather than providing some resource through message passing. 68 76 The select statement in Ada also supports an optional timeout with the same semantics as select(2), and provides an @else@. … … 75 83 Go provides a timeout utility and also provides a @default@ clause which has the same semantics as Ada's @else@ clause. 76 84 77 \uC provides \gls{synch_multiplex} over futures with their @_Select@ statement and Ada-style \gls{synch_multiplex} over monitor methods with their @_Accept@ statement~\cite{uC++}.85 \uC provides \gls{synch_multiplex} over futures with their @_Select@ statement and Ada-style \gls{synch_multiplex} over monitor and task methods with their @_Accept@ statement~\cite{uC++}. 78 86 Their @_Accept@ statement builds upon the select statement offered by Ada, by offering both @and@ and @or@ semantics, which can be used together in the same statement. 79 87 These semantics are also supported for \uC's @_Select@ statement. … … 81 89 82 90 There are many other languages that provide \gls{synch_multiplex}, including Rust's @select!@ over futures~\cite{rust:select}, OCaml's @select@ over channels~\cite{ocaml:channel}, and C++14's @when_any@ over futures~\cite{cpp:whenany}. 83 Note that while C++14 and Rust provide \gls{synch_multiplex}, their impleme tations leave much to be desired as they both rely on busy-waiting polling to wait on multiple resources.91 Note that while C++14 and Rust provide \gls{synch_multiplex}, their implementations leave much to be desired as they both rely on busy-waiting polling to wait on multiple resources. 84 92 85 93 \section{Other Approaches to Synchronous Multiplexing} 86 94 To avoid the need for \gls{synch_multiplex}, all communication between threads/processes has to come from a single source. 87 95 One key example is Erlang, in which each process has a single heterogenous mailbox that is the sole source of concurrent communication, removing the need for \gls{synch_multiplex} as there is only one place to wait on resources. 88 In a similar vein, actor systems circumvent the \gls{synch_multiplex} problem as actors are traditionally non-blocking, so they will only block when waiting for the next message.96 In a similar vein, actor systems circumvent the \gls{synch_multiplex} problem as actors are traditionally non-blocking, so they will never block in a behaviour and only block when waiting for the next message. 89 97 While these approaches solve the \gls{synch_multiplex} problem, they introduce other issues. 90 98 Consider the case where a thread has a single source of communication (like erlang and actor systems) wants one of a set of @N@ resources. … … 97 105 The new \CFA \gls{synch_multiplex} utility introduced in this work is the @waituntil@ statement. 98 106 There is a @waitfor@ statement in \CFA that supports Ada-style \gls{synch_multiplex} over monitor methods, so this @waituntil@ focuses on synchronizing over other resources. 99 All of the \gls{synch_multiplex} features mentioned so far are monomorphic, only supporting one resource to wait on ,select(2) supports file descriptors, Go's select supports channel operations, \uC's select supports futures, and Ada's select supports monitor method calls.107 All of the \gls{synch_multiplex} features mentioned so far are monomorphic, only supporting one resource to wait on: select(2) supports file descriptors, Go's select supports channel operations, \uC's select supports futures, and Ada's select supports monitor method calls. 100 108 The waituntil statement in \CFA is polymorphic and provides \gls{synch_multiplex} over any objects that satisfy the trait in Figure~\ref{f:wu_trait}. 101 109 No other language provides a synchronous multiplexing tool polymorphic over resources like \CFA's waituntil. 102 All others them tie themselves to some specific type of resource.103 110 104 111 \begin{figure} … … 121 128 122 129 Currently locks, channels, futures and timeouts are supported by the waituntil statement, but this will be expanded as other use cases arise. 123 The waituntil statement supports guarded clauses, like Ada, and Occam, supports both @or@, and @and@ semantics, like \uC, and provides an @else@ for asynchronous multiplexing. An example of \CFA waituntil usage is shown in Figure~\ref{f:wu_example}. In Figure~\ref{f:wu_example} the waituntil statement is waiting for either @Lock@ to be available or for a value to be read from @Channel@ into @i@ and for @Future@ to be fulfilled. The semantics of the waituntil statement will be discussed in detail in the next section.130 The @waituntil@ statement supports guarded clauses, like Ada, and Occam, supports both @or@, and @and@ semantics, like \uC, and provides an @else@ for asynchronous multiplexing. An example of \CFA waituntil usage is shown in Figure~\ref{f:wu_example}. In Figure~\ref{f:wu_example} the waituntil statement is waiting for either @Lock@ to be available or for a value to be read from @Channel@ into @i@ and for @Future@ to be fulfilled. 124 131 125 132 \begin{figure} … … 140 147 \section{Waituntil Semantics} 141 148 There are two parts of the waituntil semantics to discuss, the semantics of the statement itself, \ie @and@, @or@, @when@ guards, and @else@ semantics, and the semantics of how the waituntil interacts with types like channels, locks and futures. 142 To start, the semantics of the statement itself will be discussed.143 149 144 150 \subsection{Waituntil Statement Semantics} 145 151 The @or@ semantics are the most straightforward and nearly match those laid out in the ALT statement from Occam, the clauses have an exclusive-or relationship where the first one to be available will be run and only one clause is run. 146 152 \CFA's @or@ semantics differ from ALT semantics in one respect, instead of randomly picking a clause when multiple are available, the clause that appears first in the order of clauses will be picked. 147 \eg in the following example, if @foo@ and @bar@ are both available, @foo@ will always be selected since it comes first in the order of waituntilclauses.153 \eg in the following example, if @foo@ and @bar@ are both available, @foo@ will always be selected since it comes first in the order of @waituntil@ clauses. 148 154 \begin{cfa} 149 155 future(int) bar; … … 154 160 155 161 The @and@ semantics match the @and@ semantics used by \uC. 156 When multiple clauses are joined by @and@, the waituntilwill make a thread wait for all to be available, but will run the corresponding code blocks \emph{as they become available}.162 When multiple clauses are joined by @and@, the @waituntil@ will make a thread wait for all to be available, but will run the corresponding code blocks \emph{as they become available}. 157 163 As @and@ clauses are made available, the thread will be woken to run those clauses' code blocks and then the thread will wait again until all clauses have been run. 158 164 This allows work to be done in parallel while synchronizing over a set of resources, and furthermore gives a good reason to use the @and@ operator. … … 168 174 169 175 The guards in the waituntil statement are called @when@ clauses. 170 The @when@ clause is passed a boolean expression. 171 All the @when@ boolean expressions are evaluated before the waituntil statement is run. 176 Each the boolean expression inside a @when@ is evaluated once before the waituntil statement is run. 172 177 The guards in Occam's ALT effectively toggle clauses on and off, where a clause will only be evaluated and waited on if the corresponding guard is @true@. 173 178 The guards in the waituntil statement operate the same way, but require some nuance since both @and@ and @or@ operators are supported. 179 This will be discussed further in Section~\ref{s:wu_guards}. 174 180 When a guard is false and a clause is removed, it can be thought of as removing that clause and its preceding operator from the statement. 175 181 \eg in the following example the two waituntil statements are semantically the same. … … 190 196 The waituntil statement expects types to register and unregister themselves via calls to @register_select@ and @unregister_select@ respectively. 191 197 When a resource becomes available, @on_selected@ is run. 192 Many types may not need @on_selected@, but it is provided since some types may need to check and set things before the resource can be accessed in the code block.198 Many types do not need @on_selected@, but it is provided since some types may need to perform some work or checks before the resource can be accessed in the code block. 193 199 The register/unregister routines in the trait return booleans. 194 200 The return value of @register_select@ is @true@ if the resource is immediately available, and @false@ otherwise. … … 200 206 The waituntil statement is not inherently complex, and can be described as a few steps. 201 207 The complexity of the statement comes from the consideration of race conditions and synchronization needed when supporting various primitives. 202 The basic steps that the waituntil statement follows are the following. 203 208 The basic steps of the waituntil statement are the following: 209 210 \begin{enumerate}[topsep=5pt,itemsep=3pt,parsep=0pt] 211 212 \item 204 213 First the waituntil statement creates a @select_node@ per resource that is being waited on. 205 214 The @select_node@ is an object that stores the waituntil data pertaining to one of the resources. 215 216 \item 206 217 Then, each @select_node@ is then registered with the corresponding resource. 207 The thread executing the waituntil then enters a loop that will loop until the entire waituntil statement being satisfied. 218 219 \item 220 The thread executing the waituntil then enters a loop that will loop until the @waituntil@ statement's predicate is satisfied. 208 221 In each iteration of the loop the thread attempts to block. 209 222 If any clauses are satified the block will fail and the thread will proceed, otherwise the block succeeds. 210 223 After proceeding past the block all clauses are checked for completion and the completed clauses have their code blocks run. 224 In the case where the block suceeds, the thread will be woken by the thread that marks one of the resources as available. 225 226 \item 211 227 Once the thread escapes the loop, the @select_nodes@ are unregistered from the resources. 212 In the case where the block suceeds, the thread will be woken by the thread that marks one of the resources as available. 228 \end{enumerate} 213 229 Pseudocode detailing these steps is presented in the following code block. 214 215 230 \begin{cfa} 216 231 select_nodes s[N]; // N select nodes 217 232 for ( node in s ) 218 233 register_select( resource, node ); 219 while( statement not satisfied ) {234 while( statement predicate not satisfied ) { 220 235 // try to block 221 236 for ( resource in waituntil statement ) … … 225 240 unregister_select( resource, node ); 226 241 \end{cfa} 227 228 These steps give a basic, but mildly inaccurate overview of how the statement works. 229 Digging into some parts of the implementation will shed light on more of the specifics and provide some accuracy. 242 These steps give a basic overview of how the statement works. 243 Digging into parts of the implementation will shed light on the specifics and provide more detail. 230 244 231 245 \subsection{Locks} 232 Locks are one of the resources supported in the waituntilstatement.246 Locks are one of the resources supported by the @waituntil@ statement. 233 247 When a thread waits on multiple locks via a waituntil, it enqueues a @select_node@ in each of the lock's waiting queues. 234 248 When a @select_node@ reaches the front of the queue and gains ownership of a lock, the blocked thread is notified. … … 248 262 \end{cfa} 249 263 250 The timeout implementation highlights a key part of the waituntil semantics, the expression is evaluated before the waituntil runs. 251 As such calls to @sleep@ and @timeout@ do not block, but instead return a type that supports the @is_selectable@ trait. 252 This mechanism is needed for types that want to support multiple operations such as channels that support reading and writing. 264 The timeout implementation highlights a key part of the waituntil semantics, the expression inside a @waituntil()@ is evaluated once at the start of the @waituntil@ algorithm. 265 As such, calls to these @sleep@ and @timeout@ routines do not block, but instead return a type that supports the @is_selectable@ trait. 266 This feature leverages \CFA's ability to overload on return type; a call to @sleep@ outside a waituntil will call a different @sleep@ that does not return a type, which will block for the appropriate duration. 267 This mechanism of returning a selectable type is needed for types that want to support multiple operations such as channels that allow both reading and writing. 253 268 254 269 \subsection{Channels}\label{s:wu_chans} 255 To support both waiting on both reading and writing to channels, the op perators @?<<?@ and @?>>?@ are used to show reading and writing to a channel respectively, where the lefthand operand is the valueand the righthand operand is the channel.256 Channels require significant complexity to waiton for a few reasons.257 The first reason is that reading or writing to a channel is a mutating operation. 258 What this means is that if a read or write to a channel occurs, the state of the channel has changed.259 In comparison, for standard locks and futures, if a lock is acquired then released or a future is ready but not accessed, the state s of the lock and the future are notmodified.260 In this way if a waituntil over locks or futures have some resources available that were not consumed, itis not an issue.270 To support both waiting on both reading and writing to channels, the operators @?<<?@ and @?>>?@ are used read and write to a channel respectively, where the lefthand operand is the value being read into/written and the righthand operand is the channel. 271 Channels require significant complexity to synchronously multiplex on for a few reasons. 272 First, reading or writing to a channel is a mutating operation; 273 If a read or write to a channel occurs, the state of the channel has changed. 274 In comparison, for standard locks and futures, if a lock is acquired then released or a future is ready but not accessed, the state of the lock and the future is not permanently modified. 275 In this way, a waituntil over locks or futures that completes with resources available but not consumed is not an issue. 261 276 However, if a thread modifies a channel on behalf of a thread blocked on a waituntil statement, it is important that the corresponding waituntil code block is run, otherwise there is a potentially erroneous mismatch between the channel state and associated side effects. 262 277 As such, the @unregister_select@ routine has a boolean return that is used by channels to indicate when the operation was completed but the block was not run yet. 263 As such some channel code blocks may be run as part ofthe unregister.264 Furthermore if there are both @and@ and @or@ operators, the @or@ operators stop behaving like exclusive-or semantics since this race between operations and unregisters exists.278 When the return is @true@, the corresponding code block is run after the unregister. 279 Furthermore, if both @and@ and @or@ operators are used, the @or@ operators have to stop behaving like exclusive-or semantics due to the race between channel operations and unregisters. 265 280 266 281 It was deemed important that exclusive-or semantics were maintained when only @or@ operators were used, so this situation has been special-cased, and is handled by having all clauses race to set a value \emph{before} operating on the channel. … … 279 294 However, due to TOCTOU issues, one cannot know that all resources are available without acquiring all the internal locks of channels in the subtree. 280 295 This is not a good solution for two reasons. 281 It is possible that once all the locks are acquired th at the subtree is not satisfied and theymust all be released.282 This would incur high cost for signalling threads and alsoheavily increase contention on internal channel locks.283 Furthermore, the waituntilstatement is polymorphic and can support resources that do not have internal locks, which also makes this approach infeasible.296 It is possible that once all the locks are acquired the subtree is not satisfied and the locks must all be released. 297 This would incur a high cost for signalling threads and heavily increase contention on internal channel locks. 298 Furthermore, the @waituntil@ statement is polymorphic and can support resources that do not have internal locks, which also makes this approach infeasible. 284 299 As such, the exclusive-or semantics are lost when using both @and@ and @or@ operators since they can not be supported without significant complexity and hits to waituntil statement performance. 285 300 286 The mechanism by which the predicate of the waituntil is checked is discussed in more detail in Section~\ref{s:wu_guards}.287 288 Another consideration introduced by channels is that supporting both reading and writing to a channel in a waituntil means that one waituntil clause may be the notifier for another waituntil clause.289 This becomes a problem when dealing with the special-cased @or@ where the clauses need to win a race to operate on a channel.290 When you have both a special-case @or@ inserting on one thread and another special-case @or@ consuming is blocked on another thread there is not one but two races that need to be consolidated by the inserting thread. 291 (The race can occur in the opposite case with a blocked producer and signalling consumer too.) 292 For them to know that the insert succeeded, they need to win the race for their own waituntil and win the race for the other waituntil. 301 Channels introduce another interesting consideration in their implementation. 302 Supporting both reading and writing to a channel in A @waituntil@ means that one @waituntil@ clause may be the notifier for another @waituntil@ clause. 303 This poses a problem when dealing with the special-cased @or@ where the clauses need to win a race to operate on a channel. 304 When both a special-case @or@ is inserting to a channel on one thread and another thread is blocked in a special-case @or@ consuming from the same channel there is not one but two races that need to be consolidated by the inserting thread. 305 (This race can also occur in the mirrored case with a blocked producer and signalling consumer.) 306 For the producing thread to know that the insert succeeded, they need to win the race for their own waituntil and win the race for the other waituntil. 307 293 308 Go solves this problem in their select statement by acquiring the internal locks of all channels before registering the select on the channels. 294 309 This eliminates the race since no other threads can operate on the blocked channel since its lock will be held. 295 296 310 This approach is not used in \CFA since the waituntil is polymorphic. 297 311 Not all types in a waituntil have an internal lock, and when using non-channel types acquiring all the locks incurs extra uneeded overhead. 298 312 Instead this race is consolidated in \CFA in two phases by having an intermediate pending status value for the race. 299 This case is detectable, and if detected the thread attempting to signal will first race to set the race flag to be pending.313 This race case is detectable, and if detected the thread attempting to signal will first race to set the race flag to be pending. 300 314 If it succeeds, it then attempts to set the consumer's race flag to its success value. 301 315 If the producer successfully sets the consumer race flag, then the operation can proceed, if not the signalling thread will set its own race flag back to the initial value. … … 311 325 In \uC and \CFA, their \gls{synch_multiplex} utilities involve both an @and@ and @or@ operator, which make the problem of checking for completion of the statement more difficult. 312 326 313 In the \uC @_Select@ statement, th ey solve this problem by constructing a tree of the resources, where the internal nodes are operators and the leafs are the resources.314 The internal nodes also store the status of each of thesubtrees beneath them.315 When resources become available, their status is modified and the status of the leaf nodes percolate into the internal nodesupdate the state of the statement.327 In the \uC @_Select@ statement, this problem is solved by constructing a tree of the resources, where the internal nodes are operators and the leaves are booleans storing the state of each resource. 328 The internal nodes also store the statuses of the two subtrees beneath them. 329 When resources become available, their corresponding leaf node status is modified and then percolates up into the internal nodes to update the state of the statement. 316 330 Once the root of the tree has both subtrees marked as @true@ then the statement is complete. 317 As an optimization, when the internal nodes are updated, their subtrees marked as @true@ are effectivelypruned and are not touched again.318 To support \uC's @_Select@ statement guards, the tree prunes the branch if theguard is false.331 As an optimization, when the internal nodes are updated, their subtrees marked as @true@ are pruned and are not touched again. 332 To support statement guards in \uC, the tree prunes a branch if the corresponding guard is false. 319 333 320 334 The \CFA waituntil statement blocks a thread until a set of resources have become available that satisfy the underlying predicate. 321 335 The waiting condition of the waituntil statement can be represented as a predicate over the resources, joined by the waituntil operators, where a resource is @true@ if it is available, and @false@ otherwise. 322 336 In \CFA, this representation is used as the mechanism to check if a thread is done waiting on the waituntil. 323 Leveraging the compiler, a routine is generated per waituntil that is passed the statuses of the resources and returns a boolean that is @true@ when the waituntil is done, and false otherwise.324 To support guards on the \CFA waituntil statement, the status of a resource disabled by a guard is set to ensurethat the predicate function behaves as if that resource is no longer part of the predicate.325 326 In \uC's @_Select@, it supports operators both inside and outside the clauses of their statement.337 Leveraging the compiler, a predicate routine is generated per waituntil that when passed the statuses of the resources, returns @true@ when the waituntil is done, and false otherwise. 338 To support guards on the \CFA waituntil statement, the status of a resource disabled by a guard is set to a boolean value that ensures that the predicate function behaves as if that resource is no longer part of the predicate. 339 340 \uC's @_Select@, supports operators both inside and outside of the clauses. 327 341 \eg in the following example the code blocks will run once their corresponding predicate inside the round braces is satisfied. 328 342 … … 335 349 336 350 This is more expressive that the waituntil statement in \CFA. 337 In \CFA, since the waituntil statement supports more resources than just futures, impl menting operators inside clauses was avoided for a few reasons.338 As a nexample, suppose \CFA supported operators inside clauses and consider the code snippet in Figure~\ref{f:wu_inside_op}.351 In \CFA, since the waituntil statement supports more resources than just futures, implementing operators inside clauses was avoided for a few reasons. 352 As a motivating example, suppose \CFA supported operators inside clauses and consider the code snippet in Figure~\ref{f:wu_inside_op}. 339 353 340 354 \begin{figure} … … 349 363 350 364 If the waituntil in Figure~\ref{f:wu_inside_op} works with the same semantics as described and acquires each lock as it becomes available, it opens itself up to possible deadlocks since it is now holding locks and waiting on other resources. 351 As such other semantics would be needed to ensure that this operation is safe.365 Other semantics would be needed to ensure that this operation is safe. 352 366 One possibility is to use \CC's @scoped_lock@ approach that was described in Section~\ref{s:DeadlockAvoidance}, however the potential for livelock leaves much to be desired. 353 367 Another possibility would be to use resource ordering similar to \CFA's @mutex@ statement, but that alone is not sufficient if the resource ordering is not used everywhere. … … 356 370 If all the locks are available, it becomes complex to both respect the ordering of the waituntil in Figure~\ref{f:wu_inside_op} when choosing which code block to run and also respect the lock ordering of @D@, @B@, @C@, @A@ at the same time. 357 371 One other way this could be implemented is to wait until all resources for a given clause are available before proceeding to acquire them, but this also quickly becomes a poor approach. 358 This approach won't work due to TOCTOU issues , asit is not possible to ensure that the full set resources are available without holding them all first.372 This approach won't work due to TOCTOU issues; it is not possible to ensure that the full set resources are available without holding them all first. 359 373 Operators inside clauses in \CFA could potentially be implemented with careful circumvention of the problems involved, but it was not deemed an important feature when taking into account the runtime cost that would need to be paid to handle these situations. 360 374 The problem of operators inside clauses also becomes a difficult issue to handle when supporting channels. 361 If internal operators were supported, it would require some way to ensure that channels with internal operators are modified on if and only if the corresponding code block is run, but that is not feasible due to reasons described in the exclusive-or portion of Section~\ref{s:wu_chans}.375 If internal operators were supported, it would require some way to ensure that channels used with internal operators are modified on if and only if the corresponding code block is run, but that is not feasible due to reasons described in the exclusive-or portion of Section~\ref{s:wu_chans}. 362 376 363 377 \section{Waituntil Performance} … … 366 380 The similar utilities discussed at the start of this chapter in C, Ada, Rust, \CC, and OCaml are either not meaningful or feasible to benchmark against. 367 381 The select(2) and related utilities in C are not comparable since they are system calls that go into the kernel and operate on file descriptors, whereas the waituntil exists solely in userspace. 368 Ada's @select@ only operates on methods, which is done in \CFA via the @waitfor@ utility so it is not feasibleto benchmark against the @waituntil@, which cannot wait on the same resource.369 Rust and \CC only offer a busy-wait based approach which is not meaninglycomparable to a blocking approach.370 OCaml's @select@ waits on channels that are not comparable with \CFA and Go channels, which makes the OCaml @select@ infeasible to compare it withGo's @select@ and \CFA's @waituntil@.371 Given the differences in features, polymorphism, and expressibility between the waituntiland @select@, and @_Select@, the aim of the microbenchmarking in this chapter is to show that these implementations lie in the same realm of performance, not to pick a winner.382 Ada's @select@ only operates on methods, which is done in \CFA via the @waitfor@ utility so it is not meaningful to benchmark against the @waituntil@, which cannot wait on the same resource. 383 Rust and \CC only offer a busy-wait based approach which is not comparable to a blocking approach. 384 OCaml's @select@ waits on channels that are not comparable with \CFA and Go channels, so OCaml @select@ is not benchmarked against Go's @select@ and \CFA's @waituntil@. 385 Given the differences in features, polymorphism, and expressibility between @waituntil@ and @select@, and @_Select@, the aim of the microbenchmarking in this chapter is to show that these implementations lie in the same realm of performance, not to pick a winner. 372 386 373 387 \subsection{Channel Benchmark}
Note: See TracChangeset
for help on using the changeset viewer.