A localized condition handling construct for a graphical dataflow language
D. Langan
DOI: https://doi.org/10.1145/98949.99015
1990-04-01
Abstract:This paper gives a brief description of dataflow programming and of the condition handling constructs used in existing dataflow languages. It is argued that existing mechanisms arc deficient both in terms of flexibility and performance. A construct that provides for increased flexibility and improved performance is presented. The construct described here is called a supervisor and has three component parts called (a) the input acceptance lest, (b) the condition handler and (c) the output acceptance test. The basic dataflow model is expanded to include condition arcs and tokens. The construct presented here is a part of a more comprehensive scheme for condition handling in dataflow models [Langan 88]. AN INTRODUCTION TO DATAFLOW The increased use of computers, the decrease in (heir cost, and the application of computers to more complex problems, has led to languages and architectures designed to take advantage of increased processing power. Languages have evolved that allow the programmer to identify computations that can be executed in asynchronous fashion (e.g., Ada and Modula-2). Such parallel processing languages allow for a clear statement of algorithms that require parallel execution. The languages mentioned above all have one aspect in common; they are control flow based languages which assume multiple loci of execution. Another approach for the description of parallel computations is dataflow. The essential characteristics of basic datallow arc: (1) A dataflow graph is collection of nodes, each providing a side effect free function, connected by directed arcs. The arcs arc the data paths along which the data tokens flow from node to node. (2) A node executes (or fires), consuming its input tokens, only if the input it requires is available and if adequate space is available for anv output tokens.____________________________ Permission lo copy without fee all or part of this material is granted provided that the copies are not made or distributed for direct com mercial advantage, live ACM copyright notice and the title of the publication and its date appear, and notice is given that copying is by permission of the Association for Computing Machinery. To copy otherwise, or lo republish, requires a fee and/or specific per mission. © 1990 ACM 0-89791-356-6/90/0400/0118 $1.50 (3) All communication including input values, output values and synchronization signals is via tokens. Figure 1: A Dataflow Graph Figure 1 shows a dataflow graph called G dial computes (a+b)*(a-b). The compulations for + and can be performed as soon as tokens holding values for a and b, appear on the input arcs to the nodes labeled N1 and N2. The + and may be executed in parallel. Dataflow languages differ from oilier parallel processing languages in that their execution is data driven as opposed lo being driven by control flow. Many descriptions of dataflow have appeared in the literature of the past twenty years. [Karp 1966, Dennis 1975, Landry 1981, Veen 1986], define different dataflow models. These models differ with respect to the atomic operations available, the use of arcs, and the rules concerning the firing of nodes. As a result, a "standard" dataflow model docs not exist; however, most of the models proposed are basically similar. These models assume dial nodes represent deterministic sideeffect free compulations. An excellent overview of both proposed models and architectures may be found in [Arvind 1986, Srini 1986, Veen 1986]. A condition is an event that is deemed noteworthy. An event, at the hardware level, might be the existence of a designated slate after a given instruction (c.g., overflow after multiplication) or it might refer to an attempt to make an invalid memory reference (e.g., range error on an array reference). At the programming level, an event might refer to a particular set of values for a specified set of variables during execution. Conditions may include slates predefined by the system, language support environment, or the user of the programming language. The existence of a noteworthy event may be independent of its detection. The act of checking to determine if a condition has occurred or that the condition exists, is referred to as condition detection. The signaling of the fact that a condition exists is called posting the condition. A condition handler is a collection of responses that are taken if a condition is detected. A condition handler may include the resumption, termination or modification of the execution environment of the associated code. The major problems with conditions concern detection, flow of control, association of condition handlers with code, and the transfer of condition notification through environments. EXISTING DATAFLOW LANGUAGES Proposals for condition handling in dataflow differ substantially. Three major efforts at creating a new high level dataflow language have been VAL [Ackerman 1979], Id [Arvind 1978] and Lucid [Wadge 1985]. In VAL the problem of handling conditions is dealt with by extending each token type to include condition values (c.g., OVERFLOW [Integer] or ZERO_DIVIDE [Real]). The semantics of each operator is extended to include the various condition values that might be received (e.g., P O S I T I V E _ O V E R F L O W + X = POSITIVE_OVERFLOW if 0 ^ X, X = P O S I T I V E . O V E R F L O W o r X = POSITIVE.UNDERFLOW, otherwise UNKNOWN). Plouffc [Plouffc 1980] proposes a mechanism for exception handling and recovery in applicative systems and demonstrates his proposal in terms of Id. Plouffc’s mechanism differs from the VAL approach in that he creates a type specifically for conditions. This "condition" type permits more flexibility for condition handling. For example, the user could define new types of conditions, whereas with VAL the user is limited to predefined condition values. Plouffc’s error type allows for a "composite" type of condition through the concatenation of error notifications. In Lucid conditions are also treated as a separate data type, but the various operators provided have an extended semantics to allow for the use of condition tokens. Unlike the two approaches described above, the condition tokens do not carry with them any information that would convey the original cause of the condition and hence condition handling is made more difficult. The three linguistic mechanisms proposed for the textual dataflow languages VAL, Id [PloulTc 1980) and Lucid demonstrate certain similarities; in particular, all three do the following: (1) extend the basic operators to include the facility to produce an output even if a condition should occur, (2) extend functionality to deal with