Filed on: [Indigo]Language>Overview.doc, .press Last written: June 1, 1982 8:26 pm By: Jim Horning Cedar Language Overview Version 3 [If you are reading this document on-line, I suggest that you use the Tioga Levels and Lines menus to initially browse the top few levels of its structure before reading it straight through. If you must read it in hardcopy form, the multiply-indented material may be skipped while skimming.] Introduction The programming language of the Cedar Programming Environment (hereafter, Cedar Language, or just Cedar) has resulted from an evolutionary process in PARC and SDD that spanned more than a decade. Understanding what the language is, and why it is that way, may be somewhat easier with a little historical background. Mesa is a system implementation language in the "Pascal family," with extensive facilities for modularization and separate compilation, processes and monitors, exceptional-condition handling, and control of low-level hardware functions. It was initially designed and implemented in the PARC Computer Science Laboratory, primarily by Butler Lampson, Chuck Geschke, Jim Mitchell, Ed Satterthwaite, and Dick Sweet. Subsequently, the OPD-OSBU System Development Department assumed responsibility for development and maintenance. It has gone through a series of releases; the most recent is Mesa 8.0. When CSL launched the Cedar Project in 1979, it was decided to use the Mesa language and system as a starting point. (Mesa 6, 7, and 8 are its closest relatives.) However, Mesa did not have some of the features that were believed to be important for an experimental programming environment, so some extensions and changes were designed. The major changes resulted from adding automatic storage deallocation (garbage collection) and facilities for delaying the binding of type information, without sacrificing complete type-checking in either case. This Overview is intended to introduce a competent programmer who knows some other language in the Pascal family to the basic vocabulary and concepts that are needed before plunging into sources of more detailed information about the Cedar Language. It assumes that you have already read the Briefing Blurb and Getting Started in Cedar. If you haven't, read them first and return. This Overview starts with a brief review of the common concepts that Cedar shares with other members of the Pascal family, then gives a somewhat less hasty tour of the more novel features of Mesa, followed by a discussion of the additional changes that produced Cedar. The Cedar Language Reference Manual defines the Cedar Language by means of desugarings to a kernel language; we briefly introduce its central concepts and terminology. Finally, there is a guide to sources of further information. It does not provide the detail needed to actually write Cedar programs. In particular, discussion of the syntax is almost completely absent. The goal is that, when you finish reading it, you will have acquired a fair acquaintance with Cedar terminology and concepts, and that you have a fair idea of what you need to learn. Different things are discussed in varying depth; generally a long discussion indicates that this is something you should plan to study carefully. Most of the Cedar 3 documentation is still (as of June 1, 1982) in an interim form; this certainly applies to the language documentation. Comments and suggestions on how it can be made more useful are welcome at any time. Although we plan a systematic attempt to assess the effectiveness of the various kinds and pieces of documentation, you should not wait until asked to let us know what you think about it. Various proposals and descriptions of interim implementations from September 1979 onward have been given labels such as 5C1, 5C2, 6C2, 6C5, and 7T11. Version 3 of the Cedar language documentation is intended to supersede all descriptions prior to June 1982. Previous documents may be read for historical interest, but are believed only at the reader's peril. This Overview has been compiled by Jim Horning; errors and sources of confusion should be reported to him. Most of the contents have simply been lifted from previous documents, with a small amount of validity checking. Review of the Pascal-like features The following summarizes aspects of Cedar (and Mesa) that are basically similar to those of other members of the "Pascal family" of languages (e.g., Euclid, Modula, Ada). If there are any concepts in this section that are not already familiar to you, you should probably find a Pascal textbook and study it before proceeding to further material on Cedar. An algorithm or computer program consists of two essential parts, a description of actions that are to be performed, and a description of the data that are manipulated by these actions. Actions are described by statements, and data are described by type definitions. Data and types Data are represented by values. Values are immutable; they are not changed by computation. A constant always denotes the same value within a scope. A variable is a value that may contain another value; assignment changes the value contained by a variable, but not the value that is the variable. A value used in a program may be represented by a literal constant, the identifier of a constant or variable, or by an expression, which will itself contain other values. Every identifier occurring in the program must be introduced by a declaration. A declaration associates with an identifier both a data type and a constant value (which may itself be a variable, and contain different values at different times). A data type defines both a set of values and the actions that may be performed on elements of that set. It may either be directly described in a declaration using it, or it may be referenced by a type identifier, introduced in a type declaration. The type of every constant, variable, and expression can be deduced from static analysis. This analysis is performed by the compiler to ensure that all programs are type-correct; thus the language is said to be strongly typed. An enumerated type definition indicates an ordered set of values, i.e., introduces identifiers standing for each value in the set. The simple types are the enumerated types, the subrange types, and the built-in types, including BOOL, INT, REAL, and CHAR. There are standard denotations for literal constants of the built-in types: TRUE and FALSE for BOOL, numbers for INT and its subranges and for REAL, quotations for CHAR. Numbers and quotations are syntactically distinct from identifiersas are the "reserved words" of the language. The set of values of type CHAR is an 8-bit variant of the ASCII character codes. A type may be defined as a subrange of a simple type by indicating the smallest and largest value of the subrange. Structured types are defined by describing the types of their components, and indicating a structuring method: ARRAY or RECORD. These differ in the mechanism for selecting a component of a value. In an array structure, all components are of the same type. A component is selected by a computable selector, or index. The index type, which must be simple, is indicated in the array type definition. It is usually a programmer-defined enumerated type, or a subrange of INT. Given a value of the index type, an array selector yields a value of the component type. Every array structure value can therefore be regarded as a mapping of the index type into the component type. In a record structure, the components (called fields) are not necessarily of the same type. In order that the type of a selected component be evident from the program text (without executing the program), a record selector is not a computable value, but must instead be an identifier uniquely denoting the component to be selected. A record type may be specified as consisting of several variants. This allows different record values of the same type to have structures that differ in the number of components, their types, or their identifiers. The variant describing a particular value is indicated by a special field, called its tag. Variants of a type may also share fields in addition to the tag. An explicit variable declaration associates an identifier and a static variable; the identifier is used to denote the variable in expressions. Dynamic variables are generated by a special procedure (NEW) that yields a pointer or reference value that subsequently serves in place of an identifier to refer to the variable. Finite graphs in their full generality may be represented using pointers or references. Statements The simplest statement is the assignment statement. It specifies that a newly computed value be assigned to a variable (or a component of a variable). The value is obtained by evaluating an expression. Expressions consist of variables, constants, operators, and procedure values operating on arguments to produce new values. Constants are literal or declared; variables and procedures are built-in or declared; the set of operators is defined within the language, and includes operators for arithmetic, comparison, and logical operations. The procedure statement causes the application (invocation, call) of a designated procedure value to the values of its arguments (actual parameters). Basic statements are the components of structured statements, which specify sequential, selective, or repeated execution of their components. Sequential execution of a sequence of statements is specified by separating them by semicolons; conditional or selective execution by the if statement and the select statement; and repeated execution by loop statements. A block can be used to associate declarations with statements. The identifiers so declared have significance only within the block. Hence, the block is the scope of these identifiers, and they are said to be local to the block. Since a block may appear as a statement, scopes may be nested. A block can be the body of a procedure value. A procedure has a fixed number of parameters, each of which is denoted within the procedure by an identifier called the formal parameter. Actual argument values are supplied for parameters at each application. Procedures may also have results; applications of such procedures may appear within expressions. From Pascal to Mesa Mesa extended Pascal in a number of directions intended to make it more effective for the development of large systems. Students of programming languages will discern influences from Algol 68, BCPL, and several other system implementation languages. It is a larger language, and is rather more difficult to master in its entirety, than Pascal. It is intended for professional programmers, not for beginning students. Mesa modules are separately compiled program units, with type-checking preserved across module boundaries. Mesa provides mechanisms for systematic handling of exceptions, processes and monitors, procedures as first-class values that can be assigned to variables, and a fair number of syntactic and semantic amenities intended to make programming more convenient. The following sections introduce each of the major conceptual extensions, but do not explain them in great depth. See [Geschke, et al.] for a more extensive rationale, and CSL-79-3 for full details. Modules Mesa modules are a "programming in the large" mechanism for partitioning a system into manageable units. They can be used to encapsulate abstractions, to provide a degree of protection, and to enforce "information hiding." They are also the units of separate compilation. There are two kinds of modules: DEFINITIONS modules, which define interfaces, and PROGRAM modules, which contain the executable code to implement these interfaces. Definitions (or defs) modules define interfaces to abstractions. They typically declare some shared types, useful constants, and the argument and result types of a set of procedure identifiers. They compile into symbol tables, which are shared by both clients and implementations. Checks are performed when modules are bound into a configuration to ensure that separately compiled pieces have used consistent versions of the shared definitions. Definitions modules produce no executable code and "exist" at runtime only in the sense that their symbol tables are accessible (e.g., for debugging). Program modules provide implementations of abstractions. They typically declare collections of variables that define their local state and provide bodies for the procedures of their interfaces. Viewed as source text, they are similar to Pascal procedures and Simula class definitions. They can be loaded and interconnected to form complete systems. At runtime, one or more instances of a program module may be created. A separate global frame (activation record) is allocated for each, containing storage for its global variables (those which are declared outside its procedures), which persist between applications of its procedures. The lifetimes of module instances (unlike those of procedure applications) are not restricted to follow any particular discipline. Communication paths among modules are established dynamically and are not constrained by any (static or dynamic) nesting relationships; lifetimes and access paths are completely decoupled. A module that accesses (relies on declarations from) other modules must include DIRECTORY statements, so the necessary symbol tables can be acquired. If it uses only a subset of the declarations, it is good practice to indicate which ones with a USING list. Declarations in a definitions module are public unless declared to be PRIVATE. Normally the importing module accesses only the public identifiers; private declarations may be accessed by implementing modules that indicate they SHARE the interface. A directory statement may list the name of a file containing the symbol table to be used, but if the file name is the same as the module name (except for the extension .bcd) it is omitted. A module that uses non-constant declarations (e.g., exported types and procedures) from another module must explicitly import it. If a program module implements any part of an interface (e.g., by supplying the value of a procedure or type that it declares), it must explicitly export it. The compiler will check that its PUBLIC declarations are type-consistent with the corresponding declarations in the exported interface(s). Each module is effectively parameterized by a set of interface records, one for each interface it imports, and supplies a set of export records, one for each interface it exports. Binding a group of modules together into a configuration involves assigning values from the export records to the corresponding fields in the interface records. Accesses introduce dependencies into the compilation order of modules. Since it needs their symbol tables, each module must be compiled after the modules it accesses (and recompiled if they change). But information does not flow in the other direction. Program modules are imported only in very unusual circumstances; those that are not may be freely recompiled without invalidating previous compilation and checking of any other modules. Only definitions modules are exported. Types, as well as procedures, can be declared opaquely in definitions modules and subsequently bound to concrete values supplied by program modules. This makes the internal structure of the type invisible to clients of the interface, and ensures that there can be no compilation dependencies between the definition of the concrete type and the interface module. The definition of the type can be changed at any time without requiring recompilation of the definitions module or any clients of the interface. Effective use of Mesa requires a thorough understanding of modules and their use. They have significantly influenced our program design and construction techniques. Programs are almost never self-contained modules; the importation and re-use of existing code has "all the advantages of theft over honest toil" (without the moral stigma). Considerable emphasis is laid on the careful design of interfaces, and on their documentation. Since it is only interface changes that force recompilation (or perhaps even rewriting) of client programs, it is important that interfaces remain stable for substantial periods, even while their implementations are undergoing change. A recommended approach is to define, comment, and circulate for review, all of the interfaces in a (sub)system before writing any of the program modules. Definitions modules play much the same role as "program design languages" in other environments, with the additional advantages of being precisely defined and mechanically enforced. The Mesa language definition does not contain many features commonly expected in programming languages, such as input/output and string-manipulation operations. Of course, these facilities are available to Mesa programmers, but they are provided by packages written in the language itself. The descriptions of standard packages in the Mesa Programmer's Manual, Version 8.0, run to more than 300 pages. When managing large collections of modules (and in systems like the Mesa Development Environment and Cedar they run into the thousands), module names become very important. The use of cryptic or acronymic names is discouraged. By convention, source file names have the extension .mesa, and object file names have the extension .bcd (for Binary Configuration Description). The definitions module for an interface Xyz is customarily named Xyz; if it is implemented by a single program module, that is customarily named XyzImpl. Exceptions Mesa provides a way to indicate when exceptional conditions arise in the course of execution and an orderly means for dealing with them that is inexpensive if they do not arise. Exceptions cause a transfer of control from the program that raises them to another, dynamically-selected program intended to handle the situation. They may be raised in response to the detection of "impossible" situations, invalid inputs, the inability of an abstraction to supply its specified service, or simply unusual events. Mesa exceptions are conceptually similar to procedure calls, except that the binding to the handler is determined by searching the catch phrases in the call stack of the process in which the exception is raised; the dynamically innermost handler that accepts the condition is applied. Like normal procedures, handlers can take parameters and return values. They are written in a distinctive syntax that clearly identifies them as code for the exceptional case. Catch phrases are syntactically and semantically similar to select statements, with test items indicating the exceptions for which the associated handler should be applied. There are special test items to catch arbitrary exceptions and to catch an attempt to unwind the call stack in response to an exception. A series of catch phrases may be associated with a procedure application, or enabled throughout a block. A handler is like a procedure body, but when it completes, there are a number of additional control options: GOTO, EXIT, LOOP, RETRY, CONTINUE, REJECT, and RESUME. Resumption is analogous to returning from a procedure, possibly with a result. Exceptions are divided into SIGNALs, which may be resumed, and ERRORs, which may not; in common parlance they are generally all called signals. Since handlers may take parameters and return results, each exception type must be declared in a scope that includes both all points where it is raised and all catch phrases that accept it. The cost of raising an exception is significantly higher than the cost of procedure application, but it shouldn't happen very often. The system guarantees that all exceptions are handled at some level; those that the program fails to catch are accepted by the debugger, keeping intact the state of the program that raised it. Exceptions can be used in very intricate ways to achieve subtle effects (e.g., by raising another exception within a handler). Experience has shown that this is almost always a mistake. Some call it elegance, others call it incomprehensible: "For the programmer, the main import of nested signals is that one needs to consider, when writing a routine, not only what signals can be generated, directly or indirectly, by the called procedures, but also those which can be generated by catch phrases in that procedure or even the catch phrases of any calling procedures, also both directly and indirectly." [Mesa Language Manual] Although his language proposals have not yet been implemented, Roy Levin's discussion in [Indigo]SignallingGuidelines.press is the best source of guidance on tasteful and appropriate uses of exceptions. The most important point is that the exceptions a procedure may raise must be considered part of its interface, and documented as such. The language should enforce this, but it currently doesn't. Processes, monitors, and condition variables Mesa provides for concurrent execution of multiple processes within a single system. This makes it natural to structure programs to reflect their inherent concurrency. Mesa also provides facilities for mutually exclusive access to resources and process synchronization by means of entry to monitors and waiting on condition variables. The FORK pseudo-procedure makes it possible to start the execution of another procedure concurrently with the program that applies it. It returns a result process, which may either be detached to proceed independently, or saved for a future JOIN. There is no rule against multiple coexisting instances of a procedure, either forked or called, although care must be taken to ensure appropriate discipline on accesses to shared global data. The JOIN pseudo-procedure takes a single process argument. When the forked procedure has executed a RETURN and the JOIN has been executed (in either order), the returning process is deleted, and the joining process receives its results and continues execution. A process type is declared similarly to a procedure type, except that only the type of the result is specified. Generally, two or more cooperating processes need to interact in more complicated ways than simply forking and joining. The interprocess synchronization mechanism provided in Mesa is a variant of "monitors" adapted from the work of Hoare, Brinch Hansen, and Dijkstra. The underlying view is that interaction among processes is always based on access to shared resources (e.g., data) and that a proper vehicle for this interaction must unify the synchronization, the shared data, and the procedures which perform the accesses. A monitor is typically a module instance, with data in its global frame, and its own procedures for accessing them. Some of the procedures are public, allowing calls into the monitor from outside. Obviously, conflicts could arise if two processes were executing in the same monitor at the same time. To prevent this, a monitor lock is used for mutual exclusion. Application of one of a monitor's ENTRY procedures automatically acquires its lock (waiting if necessary), and a return releases it. Any integrity constraint that the programmer wishes to ensure on the monitor's data is called a monitor invariant. The lock makes it possible for the programmer to ensure that his monitor invariant will be true whenever an entry procedure begins executionregardless of what is happening in various processessimply by making sure that every entry procedure restores his invariant before returning. Of course, a process may enter the monitor and find that the monitor data is in a good state but indicates that the process may not proceed until some other process enters the monitor and changes the situation. The WAIT operation allows a process to release the monitor lock temporarily (and suspend execution) without returning. The wait is performed on a condition variable, which is associated by agreement with the actual condition needed. After making the condition true, some other process must perform a NOTIFY on the condition variable; this allows a waiting process to reacquire the lock and resume execution. Note that the monitor invariant must be restored before any wait, since it releases the lock. The procedures of a monitor are classified as entry, internal, and external. Internal procedures may only be called by entry or internal procedures of the same monitor, since they are intended to be executed within the monitor's mutual exclusion, but do not acquire the monitor lock. External procedures are logically outside the monitor, but are declared within the same module for reasons of logical packaging. Being outside, they must not reference any monitor data nor call any internal procedures; they are often used to provide a convenient interface that "hides" one or more calls on entry procedures. The attributes ENTRY and INTERNAL are associated with a procedure's body, not with its type; thus they do not appear in definitions modules. From the client side of an interface, a monitor appears like any other module. In simple cases, a monitor's data comprises its global variables, protected by an implicit lock that is automatically allocated in its global frame. However, many applications deal with multiple objects, represented, say, as records accessed through pointers. It may be necessary to ensure that operations on these objects are atomic, i.e., once the operation has begun, the object will not be otherwise referenced until the operation is finished. It is possible to associate a lock with the object, rather than with the module's global frame, by declaring the data as a MONITORED RECORD. A single module instance can then implement each operation as an entry procedure, taking the object as a parameter. Locking is specified in the module heading by a LOCKS clause. Control constructs Mesa's facilities for ordinary sequential "programming in the small" are extensive, but fairly conventional. The syntax is not exactly like that of any other language, but for the most part it can be picked up easily with a few minutes study of the grammar. (In fact, since most program text is produced either by editing existing programs or by the use of the Tioga editor to expand syntactic templates, you may be able to just "fake it.") This section mentions a number of areas where Mesa provides "convenience" extensions or conceptually small changes. SELECT statements generalize Pascal's "case" construct by allowing several ways to specify how one statement is to be chosen for execution from an ordered list. The most common form is based on the relation between the value of a given expression and those of expressions associated with each selectable statement. The relation may be equality (the default), any relational operator appropriate to the types of the values involved, or containment in a subrange. A single selection may be prefixed by several selectors, and an optional ENDCASE statement is selected only if none of the others are. Selection can also be based on the type of a variant record (and in Cedar, on the current type referred to by a REF ANY). Select expressions are analogous, but choose from an ordered list of expressions. Discriminating selection is used to branch on the type of a variant record value. Iteration is provided by loop statements in which several different kinds of control can be freely intermixed. A loop has a control clause and a body. The control clause may specify a logical condition for normal termination, possibly combined with a range or a sequence of assignments. In addition to ordinary statements, the body may contain EXIT or GOTO statements to explicitly terminate its execution, and may be followed by an EXITS clause that acts like a selection on the GOTO used to terminate the loop. (GOTO cannot be used to synthesize arbitrary control structures. It is much more like a "local" exception.) In Pascal, procedure execution must proceed somehow to the end of the body before terminating; in Mesa, it can be terminated anywhere by executing a RETURN statement. If the procedure's type includes a result, the return statement may supply the values to be returned (which is otherwise taken from the result variables named in the type). Each procedure body is followed by an implicit return. Pascal procedures are not values that may be assigned to variables; Mesa procedures are. In most cases, the programmer still thinks of a constant association between a procedure name and its body, but to truly understand what is going on when interface records are bound it helps to realize that procedure values from the export records are being assigned to appropriate fields of the import records. This same power is available to the Mesa programmer; one popular form of "object-oriented programming" is based on the creation of an explicit record of procedures for each kind of object, and passing this record and the object around together. INLINE procedure constants may be declared in definitions modules or locally. This is an instruction to the compiler to expand the body inline for each application, rather than compiling a call to out-of-line code. This attribute is intended to improve the speed without changing the semantics of the procedure. It should be considered a form of tight binding best reserved for late stages of system tuning; among other things, it is a known source of compiler problems. In addition to procedures and exceptions, Mesa has a third mechanism for transfer of control, called a PORT. When used in pairs, ports can provide a very general form of coroutine implementation. In some circumstances, coroutines have advantages similar to processes at somewhat lower cost, but they are not currently much used in Mesa or Cedar. Miscellaneous Every expression in a Mesa program has a type that can be deduced by static analysis of the program text, called type determination. The language imposes constraints on the type of each expression according to the context in which it is used, even in separately compiled modules. Each identifier and each expression has a syntactic type derived from its structure. The inherent type of an identifier is established by declaration; the form of a literal implies its type, and each operator produces a result with a type that is a function of the types of the operands. The type rules in Mesa take two general forms: The type required by the context is known exactly, and a given expression must have it. The required type is called the target type. Examples occur in assignment, initialization, record construction, array construction, argument list construction, and array subscripting. Several coercions (e.g., pointer dereferencing, base/subrange conversion, single-component record to field) will be applied if needed to convert a value whose inherent type is not its target type to one that is. The exact type is not implied by context, but a relation that must be satisfied by a set of types is known. The process of finding types to satisfy that relation is called balancing. Examples include generic operators (such as relationals) that require two operands of the same type, conditional expressions, and select expressions. The common type selected will be the one requiring the fewest coercions. A sequence in Mesa is an indexable collection of items, all of which have the same type. In this respect, a sequence resembles an array; however, the length of the sequence is not part of its type. The (maximum) length of a sequence is specified when the object containing that sequence is created, and it cannot subsequently be changed. It is the responsibility of the programmer to keep track of the number of items in the sequence at any time. Mesa allows a default initial value to be associated with a type. If a type is constructed from other types using one of Mesa's structures, such as RECORD, an implicit default value for the constructed type is derived from the default values of the component types, but it can be overridden with an explicit default value. Default values for arguments can simplify procedure calls; default fields of records make the corresponding constructors more concise and more convenient; initial values are useful to ensure that the corresponding storage is always well-formed, even before the variable has been used by the program. Dynamic variables in Mesa are allocated in zones. These are not necessarily associated with fixed areas of storage; rather, they are objects characterized by procedures for allocation and deallocation. There is a standard system zone, but programs that allocate vast quantities of similar dynamic variables can often improve performance by segregating each kind into its own zone. The operator NEW is used to create a dynamic variable in a zone, and FREE to release it. The MACHINE DEPENDENT attribute allows precise control of the representation of values at the bit level. From Mesa to Cedar The Cedar Language is very closely related to Mesa. The most radical change is the provision of automatic deallocation of dynamic storage, or garbage collection. Several other changes extend the range of binding times available for such important attributes as the types of variables. It is intended that most Cedar programs will be written in the safe subset, which imposes a number of restrictions not present in Mesa to ensure the safe operation of the garbage collector, and introduces some new (safe) features to make these restrictions tolerable. The full (unsafe) language is generally "upward compatible" with Mesa. Garbage collection, collectible storage, and REFs Although Mesa pointers are typed, they provide a rich source of opportunities for creation of safety problems, including the classical dangling pointer problem, where a pointer is used after the storage it refers to has been deallocated, and the opposite storage leak problem, where storage becomes inaccessible without being deallocated for reuse. Freeing the programmer from responsibility for deallocating storage at just the right time was a major goal of Cedar. It adds a new class of REF types that are just like the corresponding pointer types except that the system is responsible for freeing the dynamic variable it refers to after it has become inaccessible. Cedar provides three types of storage: Frame: This is storage that is implicitly allocated by procedure application and module instantiation to hold variables declared in the corresponding scope. It is also implicitly deallocated, upon exit from the scope. Collectible: This is storage that is explicitly allocated by NEW, and implicitly deallocated after there are no more accessible REFs to it. FREE applied to a REF variable will cause it (and REF fields in the dynamic variable it refers to) to be "NILed out," but the dynamic variable will only be freed when no other REFs to it remain. Heap: This is storage that is explicitly allocated by NEW, and deallocated by (unsafe) FREE statements, as in Mesa. Heap storage is referenced by pointers. Pointers may not be dereferenced in checked regions, and should not refer to dynamic variables containing REFs. The introduction of collectible storage has substantially revised programming style and interface design in Cedar. When the project was being contemplated, some Mesa programmers indicated that as much as 40% of their time went into designing and checking the code to avoid dangling pointers and "storage leaks," to tracking errors in this code, and to wasting time in tracking other errors by suspecting storage deallocation problems. With REFs and a reliable garbage collector that all goes away. Frame (static) variables are still less expensive than dynamic variables, since entire frames are allocated and freed on procedure entry and exit (and the mechanism for doing it has been rather carefully tuned). However, it is entirely reasonable to use dynamic variables for data whose lifetime is not closely connected to a particular procedure application or module instance. Objects of large or varying size are almost always passed across interfaces by reference. Definitive measurements on the cost of garbage collection have not yet been made, but preliminary data indicates that it is generally less than 20%. Only in very special circumstances is heap storage worth the added program complexity and potential for errors. Safety A desirable property of a high-level language is implementation independence, which means that the effects of each program are explicable in terms of the languagerather than its implementationeven if the program is erroneous. Mesa comes rather close to meeting this goal (as evidenced by the fact that most Mesa debugging can be done "at the Mesa level," without ever worrying about the format of frames or the details of storage management), but it does contain some unsafe features whose use can lead to messy implementation dependencies. It was desirable on general grounds to reduce implementation-dependence in Cedar. However, the decision to include facilities for garbage collection made it imperative. A collector can cause storage to be deallocated (permitting its subsequent reallocation and re-use) at times that are completely unpredictable from examination of the source program. A single programming error that smashes a REF used by the collector can destroy data structures in ways that make it difficult to reconstruct any evidence of the original cause of the crash. A major goal for the Cedar Language was that it contain a useful subset for which garbage collection was safe. The safe subset of Cedar is basically that part of the language where even incorrect programs cannot interfere with the reliable operation of the collector. The vast majority of Cedar programs should be written primarily (or entirely) in the safe subset. Since Cedar does not provide acceptably efficient substitutes for every use of Mesa's unsafe features, it provides a means for indicating that some regions of a program are trusted. This inhibits compiler enforcement of the safety restrictions and indicates that the programmer has assumed the additional responsibility of ensuring that these regions of the program do not violate the integrity of the system. Invulnerability, safety, and checking It is an obviously desirable property of a programming system that no user programming error can "break" its abstract machine and reduce its world to a rubble of bits. We call this property invulnerability. In general, it can be ensured only by maintaining the integrity of certain data structures known to the runtime system. Collectively, the properties that must be maintained to ensure invulnerability are called the safety invariants; each part of the system is responsible for ensuring that they are not destroyed, and must assume that the rest of the system does likewise. Unfortunately, invulnerability is not a local property. If any part of the system fails to maintain the invariants, the entire system (including programs that are themselves correct) is potentially vulnerable. We use the term safety for the property that the invariants cannot be invalidated locally, even by incorrect programs. Cedar operations, both built-in and programmer-defined, are classified as safe or unsafe. Most of the Cedar Language is safe. Unsafe constructs include LOOPHOLE, dereferencing POINTERs (but REFs are safe), JOIN, @ (address of), computed variant records, and non-copying variant discrimination. A region of program text, bracketted to form a block, may be prefixed with CHECKED, TRUSTED, or UNCHECKED. In checked program regions, language-enforced restrictions guarantee safety. If a block is checked, then within that block only safe operations may be used, the block itself implements a safe operation, and procedures declared in the block are treated as safe. Even unchecked regions are supposed to maintain the safety invariants, but the guarantee must be provided by the programmer, rather than the system. If a block is unchecked, unsafe operations may be used internally, the block itself is considered to implement an unsafe operation, and procedures declared in the block are treated as unsafe. Generally even unchecked regions can be composed primarily of safe operations; Unsafe operations should be used only for good reasons and with due caution. A trusted block may also invoke unsafe operations, but it is assumed to implement an operation that is safe by programmer guarantee. TRUSTED is a programmer assertion that cannot be checked by the compiler, and therefore represents a special kind of loophole. For easy upward compatibility from Mesa, the following defaults have been adopted: If a module is prefixed with CEDAR, then the outermost block is CHECKED and all interfaces are assumed to be safe; otherwise, the outermost block is UNCHECKED and all interfaces are assumed to be unsafe. The checking attribute is inherited; unless a nested block is explicitly prefixed, it is checked or unchecked like the textually enclosing block. If a system consists entirely of safe regions (and the invariants hold initially), then by induction the system is invulnerable. However, an error in an unchecked region can make even the checked regions vulnerable. Thus the CHECKED/UNCHECKED boundary limits responsibility, but not vulnerability. Confidence that errors in checked regions will not cause system crashes is based on the the automatic enforcement of safety restrictions. Confidence that unchecked regions will not cause system crashes is based on trust that they are free from errors that violate the safety invariants. Caveat: The conversion of the Cedar system to safe interfaces is presently underway. The unsafe interfaces are beginning to disappear. You should program as safely as you can, but do not be surprised by the initial density of safety complaints from the compiler. A good rule is to prefix each module with CEDAR, and then to put TRUSTED on each block about which the compiler complains, after convincing yourself that the complaint is not your fault, because it results from necessary use of a currently unsafe system interface. Type confusion Mesa is a strongly typed language, which means that the types of identifiers are declared, and that the language imposes restrictions to keep values of one type from being accidentally interpreted as values of another. Because knowledge of the type structure of values in memory is so essential to the garbage collector (it must locate and follow REFs in order to determine current storage usage), it is particularly vulnerable to any operations that cause data in memory to be interpreted as having other than their inherent types. Thus, much of the effort in designing the safe subset went into identifying all the features in Mesa that allow type-checking to be circumvented (accidentally or deliberately) and designing safe replacements for the important uses of those features. LOOPHOLE is a "type converter" in Mesa that allows any value to be treated as having any specified type; it is the most obvious breach of type security. It causes a safety problem only if it allows mistyped data to be stored into memory (i.e., if the target type contains an address, such as a pointer or procedure value); other uses will introduce implementation dependencies, but not threaten safety. Within checked regions, LOOPHOLE is not allowed to produce a value of a reference-containing (RC) type. Narrowing and type discrimination Cedar introduces a number of new type distinctions, frequently leading to a number of separate, but closely related types. It is often desirable to coerce a value of one of these types into a value of a related type. Where the types are such that it can be statically guaranteed that no information will ever be lost by the coercion, it is called a widening, and is performed automatically whenever demanded by context (e.g., lengthening an INTEGER to a LONG INTEGER). In general, conversion in the other direction requires a runtime check to ensure that information is not being lost. To make the possibility of such failure explicit in the program text, the NARROW type converter may be applied (and may include a catch phrase to handle the NarrowFault error). The built-in test ISTYPE can be applied to a value to determine whether it can be narrowed to a specified type without error. If so, it is said to satisfy the type's predicate. If the target type of a narrowing is uniquely determined by context, it need not be an explicit argument to NARROW. A narrowing may cause an implicit widening of its argument. Delayed binding A desirable property of a high-level programming language is that is allow a wide range of binding times: that is, it should allow the programmer maximal control over when the attributes of a particular variable are determined, with different choices not requiring changes in all expressions containing the variable. Examples of such attributes are its type, storage allocation method, implementation (for abstract objects), and actual value; examples of binding times include program-writing time, compilation, program initialization, block entry, and statement execution. Generally speaking, deferring the binding of an attribute leads to greater generality in the program at the cost of decreased static static checkability and (often) runtime efficiency. Experience with languages like LISP and Smalltalk, in which most binding is done dynamically, shows that, if type and/or implementation binding can be deferred, it is much easier to write certain kinds of programs, e.g., programming tools (debuggers, performance monitors) and knowledge representation systems. But most programs take full advantage of this flexibility only occasionally. Cedar was designed to take advantage of early binding, as Mesa does, but to allow certain bindings to be explicitly deferred. Dynamic typing, REF ANY, and dynamically typed procedure variables Mesa provides very limited variability in the binding time of an object's type. Variant records allow a deferred choice between specific enumerated alternatives, and sequences allow deferring the specification of an object's length until it is allocated. Otherwise, all types must be fixed at compile time. This makes it virtually impossible to avoid LOOPHOLEs and ad hoc type tagging schemes when writing schedulers, sorters, output formatters, etc. that must operate on objects of unpredictable type. Cedar's solution to this problem requires two new mechanisms: a runtime representation for types, and a way to associate a type with an object at runtime that is guaranteed consistent with the type system and checking at compile time. (Note that it adopts the view that an object's type is inherent in the object itself, rather than in the way the object is referred to.) TYPE is a type in the Cedar Language. Its "structuring methods" (e.g., ARRAY, RECORD, and REF) are now viewed as operators that take type arguments and return types. In the current language, the arguments to such operators must be compiletime constants. ANY is not a type in Cedar, but can stand in place of a type in the arguments to two operators: REF and PROC. A REF ANY value may refer to a dynamic variable of any type whatsoever. Thus a REF T value, for any T, can be widened to a REF ANY value. But a REF ANY value cannot be directly dereferenced, because the type of the result would not be statically knowable. The discriminating selection statement has been generalized to allow discrimination on the referent type of a REF ANY; within each selectable statement, the type is (statically) known to be the type specified in its test item. NARROW can also be used to safely convert a REF ANY value back to a REF T value; ISTYPE can be used to check whether NARROW will succeed. A PROC type may also have ANY in place of the type of its formal parameter record type and/or result record type. PROC values with specific parameter and result types may be widened to these dynamic types, and later tested and narrowed analogously to REF ANYs. They must be so narrowed before being applied. In principle, each value in Cedar carries its (inherent) type with it at all times. In practice, almost all analysis and checking of types is done by the compiler, and both space and time efficiency are gained by not storing the type with the value. However, the symbol tables produced by the compiler contain enough information to recover the type on demand. There are type-conversion routines in both directions between TypedValues and ordinary Cedar values, and numerous operations on TypedValues to examine the type and structure of a TypedValue, to change its attributes, etc. Thus it is possible to write a program that deals with any given Cedar value or type without anticipating the specific type when the program is written. Programs such as BugBane (the Cedar debugger) absolutely require such flexibility. The current implementation is too slow to be used effectively by client programs as a substitute for true polymorphism in the language, but is suitable for examining and changing variables interactively with the Cedar debugger. Miscellaneous Although Cedar was not intended as a research project in programming languages, its developers were not completely immune to the temptation to make Mesa better in ways that were not strictly required to enable the new programming environment. This section discusses a few of these new features. Types as clusters of operations In addition to its predicate, each type has an associated cluster (or group) of operations. The main purpose of this association is to support a style of "object oriented" notation. Using a record-like notation, a procedure "field" will be looked up in the cluster of the object's type, and then applied to the object and the other arguments. Each built-in type and type constructor in Cedar implicitly supplies a standard cluster for each type. The mechanism by which clusters are extended is that each opaque or record type defined in a definitions module acquires as part of its cluster all procedures declared in the same module. It is preferred style in Cedar to use this object notation in invoking operations of interfaces designed to support it. Consult the relevant package documentation if in doubt. LISTs and ATOMs Cedar includes LIST OF as a new type constructor for singly-linked (by REFs) lists, and a constructor for list values that mimics that of LISP, avoiding the need for a lot of NEWs or CONSs. The analog of LISP's CAR and CDR are provided by the standard fields first and rest. Unlike LISP, Cedar lists are statically typed (although the element type may be REF ANY). Cedar also has a built-in type ATOM, which can be used for values that are uniquely determined by their print names. Any Rope can be converted to an ATOM and conversely; the advantage of ATOMs is that, unlike Ropes, it is very cheap to compare them for identity. Atom literals are just identifiers prefixed by $. Ropes and IO Mesa STRINGs are rather awkward objects, having been tuned for efficiency in a small-machine (Alto) world, rather than for flexibility and convenience. They are POINTERs to fixed-length sequences of characters. Considerable care is required to avoid surprising results, even for rather straightforward string-processing applications. Cedar Ropes, on the other hand, are somewhat heavier-weight, more convenient to use, and less prone to surprises. Several different implementations of Ropes, efficient for different purposes, provide the same interface. Rope is a Cedar package that supports the creation and manipulation of immutable reference-counted sequences of characters. Procedures are provided for concatenation, conversion between CedarString and Rope objects, taking substrings, scanning, and other operations. A client can provide specialized implementations for Rope objects. The standard implementation attempts to avoid copying when performing Substr, Concat and Replace operations. The Rope package is the standard support for sequences of characters in Cedar, and is in the boot file. Most of the common operations on input/output streams, plus string conversions that are commonly used in dealing with input or formatting output, have been collected in the IO interface. Implementations are available for stream interfaces to all common devices, and to allow Ropes and streams to be readily interconverted. Kernel Language Concepts and Terminology The Cedar Language Reference Manual defines Cedar by means of desugarings into a kernel language. The kernel language may be viewed in either of two ways: It is a relatively simple, yet very powerful, base language, from which a language very much like Cedar could have been developed by providing convenient syntactic forms for common combinations of basic constructs. It is likely that the future evolution of Cedar will move it assymtotically close to this hypothetical language, but not all the power of the kernel language is currently available to the Cedar programmer. It is a palatable (to programmers) notation for denotational semantics. The functional meaning denoted by each Cedar program can be derived by systematically transforming the program into a function written in the kernel language. The remainder of the material in this section is by Butler Lampson, and is believed by him to be in an even less satisfactory state than the rest of the Cedar Language documentation. It will be replaced shortly and is included in the present document solely to give the reader some hope that the two-page Reference Manual will not forever remain inscrutable. The kernel language - Last edited by BWL, May 25, 1982: We describe the Cedar language in terms of a much simpler kernel language. Cedar differs from the kernel in two ways: It has a more elaborate syntax. The meaning of each construct in Cedar is explained by giving an equivalent kernel program. Often the kernel program is longer or less readable; the Cedar construct can be thought of as an idiom which conveniently expresses a common operation. Sometimes the Cedar construct has no real advantage, and the difference is the result of backward compatibility with the ten-year history of Mesa and Cedar. It has a large number of built-in types and procedures. In the kernel language all of these could in principle be programmed by the user, though in fact most are provided by special code in the Cedar compiler. In general, you can view these built-in facilities much like a library, selecting the ones most useful for your work and ignoring the others. Unfortunately, the kernel language is not a subset of the current Cedar language. Many important objects (notably types, declarations and bindings) which are ordinary values in the kernel language that can be freely passed as arguments or bound to variables, are subject to various restrictions in Cedar: they can only be written in literal form, cannot be arguments or results of procedures, or whatever. The long-term goal for evolution of the Cedar language is to make it a superset of the kernel defined here. In the meantime, however, you should view the kernel as a concise and hopefully clear way of describing the meaning of Cedar programs. The kernel is a distillation of the essential properties of the Cedar language, not an entirely separate invention. Most Cedar constructs have simple translations into the kernel. Those which do not (e.g., many of the features of OPEN) are considered to be mistakes, and should not be used in new programs. ??? describes the incompatibilities between the kernel language and current Cedar, i.e., the constructs in Cedar which would have a different meaning in a kernel program. For the most part, these are bits of syntax which do not have consistent meanings in current Cedar; future evolution of the language will replace them with their kernel equivalents. Cedar overview - Last edited by BWL, May 24, 1982 This section gives a brief summary of the essential concepts on which the Cedar language is based. The explanations are concise and incomplete. For more thorough definitions, see ¶ ???. Doing computations Application: The basic mechanism for computing in Cedar is applying a procedure (proc for short) to arguments. When the proc is finished, it returns some results, which can be discarded or passed as arguments to other procs. In the program an application is denoted by (the denotation of) the proc followed by square brackets enclosing (the denotation of) the arguments: f [x, y]. There are special ways of writing many kinds of application: x+1, person.salary, IF x < 3 THEN red ELSE green, x: INT_7. Value: An entity which takes part in the computation (i.e., acts as a proc, argument or result) is called a value. Values are immutable: they are not changed by the computation. Examples: 3, TRUE, "Hello", l x IN x+3; actually these are all expressions which denote values in an obvious way. Variable: Certain values, called variables, can contain other values. The value contained by a variable (usually called the value of the variable) can change when a new value is assigned to the variable. In addition to its results, a proc may have side-effects by changing the values of variables. A variable is often represented by a block of storage; the bits in this block hold the representation of its value. Group: A group is an ordered set of values, often denoted like this: [3, x+1, "Hello"]. A group is itself a value. The type system Type: A type specifies certain properties of a value (e.g., integer between 0 and 10); these properties are so simple that the compiler can make sure that proc arguments have the desired properties. A type also collects together some procs for computing with the value (e.g., add and multiply). A type is a value which is a pair: Its predicate, a function from values to BOOL. A value has type T if T's predicate returns TRUE when applied to the value. Its cluster, a binding in which each value is a proc taking one argument of the type ????. The expression e.f denotes the result of looking up f in the cluster of e's syntactic type #e, and applying the resulting proc to e. A proc's type depends on the types of its domain and range; a proc with domain (argument type) D and range (result type) R has the type D_R. Every expression e has a syntactic type denoted #e, which is the result type or range declared for its outermost proc; in general this may depend on the arguments. The value of the expression always has this type (satisfies this predicate); of course it may have other types as well. Mark: Every value carries a set of marks (e.g., INT or ARRAY; think of them as little flags stuck on top of the value). The predicate HASMARK tests for a mark on a value; it is normally used to write type predicates. The set of all possible marks is partially ordered. The set of marks carried by a value has a largest member m, and it includes every mark smaller than m. Hence all the marks on a value can be represented by the single mark m; we can say that m is the mark on the value. Type-checking: The purpose of type-checking is to ensure that the arguments of a proc satisfy the predicate of the domain type; this is a special kind of pre-condition for executing the proc. The proc body can then rely on the fact that the formal parameters satisfy their type predicates. It must establish that the results satisfy the predicate of the range type; this is a special kind of post-condition which holds after executing the proc. Finally, the caller can rely on the fact that the results satisfy their type predicate. In summary: Caller: establish pre-condition: arguments have the domain type; rely on post-condition: results have the range type. Body: rely on pre-condition: formals have the domain type; establish post-condition: returns have the range type. Implies: A type T1 implies a type T2 (T1gT2) if T1.predicate[x] implies T2.predicate[x] for any value x. This is a partial ordering on types. The idea is that T1gT2 if a value of type T1 is as good as a value of type T2. If T1gT2 then (U_T1)g(U_T2); a proc returning a T1 is as good as one returning a T2. Also (T2_U)g(T1_U); a proc taking a T2 is as good as one taking a T1, (because it will be happy if it gets a T1, since that is as good as a T2). Writing programs Name: A name appearing in the program denotes the value bound to the name in the scope that the name appears in (unless the name is before a colon or after a dot). An atom is a value that can be used to refer to a name; a literal atom is written like this: $alpha. Expression: In the program a value is denoted by an expression, which is: a literal value (3 or "Hello"), or a name (x or salary), or an application of a proc to other values(Sin[90] or GetProperties[directory, ReadFileName[input]]), or a l-expression, which yields a proc value (l [x: INT] IN (IF x<0 THEN x ELSE x) ), or a constructor for a declaration or binding ([x: INT~3, y: REAL~3.14]. If a value is known for each name in the expression, then the expression can be evaluated to produce a value. Thus an expression is a rule for computing a value. Binding: A binding is an ordered set of [name, type, value] triples, often denoted by a constructor like this: [x: INT~3, y: BOOL~TRUE], or simply [x~3, y~TRUE]. Sometimes it is called a closure or an environment. Scope: A scope is a region of the program in which the value bound to a name does not change (but it might be a variable). For each scope there is a binding which determines these values. A new scope is introduced (in the kernel) by &IN or by a [...] constructor for a declaration or binding. Declaration: A declaration is an ordered set of [name, type] pairs, often denoted like this: [x: int, y: bool]. A declaration can be instantiated (e.g., on block entry) to produce a binding in which each name is bound to a variable of the proper type; instantiating the previous example yields [x: VAR INT~(&VAR INT).NEW, y: VAR BOOL~(&VAR BOOL).NEW]. If d is a declaration, a binding b has type d if it has the same names, and for each name n the value b.n has the type d.n. A binding b matches d if the values of b can be coerced to yield a binding b' which has type d. Conveniences Coercion: Each type cluster contains To and From procedures for converting between values of the type and values of other types (e.g., INT to REAL). One of these procedures is applied automatically if necessary to convert or coerce an argument value to the domain type of a proc; this application is a coercion. Each coercion has an associated atom called its tag (e.g., $widen for INT_REAL or $output for INT_Rope); several coercions may be composed into a single one if they have the same tag. Exception: There is a set of exception values. An expression e denotes a value which is either of type #e or is an exception. Whenever an exception value turns up in evaluating an expression, it immediately becomes the value of the whole expression, unless (in the kernel) the expression has the form e &BUT {...}. The {...} tests for exception values and can supply an ordinary value, or another exception, as the value of the &BUT expression. An exception value may contain an ordinary value, so that arbitrary information can be passed along with an exception. Safe: The safety invariant says that all references are legal, i.e., each REF T value is NIL or refers to a variable of type T. A proc is safe if it maintains the safety invariant whenever it is applied to arguments of the proper types. If a proc body (l-expression) is checked, the compiler guarantees that it is safe, and the proc value is safe; trusted, the programmer asserts that it is safe (but the compiler makes no checks), and the proc value is safe; unchecked, the compiler makes no checks and the proc value is unsafe. It is best to write checked code whenever possible. However, checked code cannot call unsafe procs (since the compiler then cannot guarantee safety). Finalization: Process: Concurrency is obtained by creating a number of processes. Each process executes a single sequential computation, one step at a time. There can be lots of processes, all running concurrently. They all share the same address space. Shared data (touched by more than one process) can be protected by a monitor; only one process can execute within any proc of the monitor at a time. Thus monitor procs can read and write shared data safely. A process can wait on a condition variable within a monitor; other processes can then enter the monitor. The waiting process runs again when the condition is notified, or after a timeout. Kernel language grammar The grammar is written in a variant of BNF: Parentheses are for grouping. item | item means choose one. ?item means zero or one occurrences of item. item; ... means zero or more occurrences of item separated by ";". The separator could be something else (such as "," or ELSE), or absent. item!.. means one or more occurrences of item. ·item indicates a nonrecommended usage. Terminals are punctuation other than ()?| or one of these characters boldfaced, or anything in SMALL CAPS. Note that [] and {} are terminals, and do not denote optional occurrence and repetition as they do in many other variants of BNF. In left-hand sides, small bold letters are comments, not part of the nonterminal name. name ::= letter (letter | digit)... -- appears as an e, with value equal to its current binding &BINDING[$n], and also denoting an ATOM in atom literals, before colon, and after dot. literal ::= num | -- WHOLENUMBER literal expressed in decimal ' extendedChar | digit!.. C | -- CHAR literal; the C form specifies the code in octal $ n -- ATOM literal expression ::= n | literal | e1 Z e2 | -- standard application [ e, ... ] | -- construct group l de1 ( | => de2) IN e | -- construct standard proc LET db IN e | ( l DECLS[db] IN e ) Z INSTANCE[db] LET (d | b), ... IN e | LET [(d | b), ...] IN e IF e1 THEN e2 ELSE e3 | ( IFPROC[e1, l IN e2, l IN e3] ) [] e . n | ( LOOKUP Z [TYPEOF Z [e], $n] ) Z [e] e1 [ e2 ] | ( (e1) . APPLY ) Z [e2] e1 infixOp e2 | (e1) . infixOp[e2] [ (p: t), ... ] | [p, ...]: t X ... -- construct declaration [ (p: t ~ e), ... ] | [p, ...]: t X ... ~ [e, ...] -- construct binding e1 but -- catch phrases infixOp ::= This one must be in the syntax for the d_t case _ | --: [TYPE, TYPE]_[TYPE]; constructor for PROC types | AND | -- concatenate two groups, bindings or decls | X --: [TYPE, TYPE]_[TYPE]; constructor for group types but ::= e BUT { butChoice; ... } LET val(~HIDEEXCEPTION[e] IN WITH val( SELECT FROM e(: EXORVALUE[normal] => e(, h(: EXORVALUE[hiddenException] => LET selector(~h(.v.CODE IN butChoice ELSE ... ELSE val(.v ENDCASE=>ERROR butChoice ::= e1 => e2 | IF selector(=e1 THEN LET BINDD[selector(.DOMAIN, h(.v.args] IN e2 | ??? te RESUME ? ·e1, !.. => e2 | IF (selector(=e1) OR ... THEN e2 ) ANY => e2 IF TRUE THEN e2 pattern ::= n | [p, ...] declaration ::= p : t -- declarations with recursion remain mysterious Note that we do not have e:e, which would be ambiguous with n:e; write DECL[e, e] instead. binding ::= p : t~e | BINDD[DECLNNR[p, (LET p~e IN t)], FIX p IN e] or p : t~e | BINDN[p, TYPECHECK[ (LET p~n IN t), FIX p IN e] ] p~e BINDN[p, FIX p IN e] Note that we do not have e~e, which would be ambiguous with n~e; write BINDD[e, e] instead. db ::= e -- type ::= e -- no special syntax is needed for types For More Information . . . Annotated Cedar Examples This document contains four complete, runnable Cedar programs chosen to illustrate the use of most of the major features of the language, and to provide an introduction to the style of programming that is preferred in Cedar. You should certainly invest time in studying them before attempting to write Cedar programs. If you are one of those who learns best from examples, you may find them virtually the only tutorial information you need to learn the language. These examples have been chosen so that they are also useful prototypes of kinds of programs you may want to write in Cedar. If you are like most Cedar programmers, you will probably find it easier to start from such a prototype, and change it to do what you want, than to enter a whole program "from scratch." Cedar Style Because Cedar programmers so frequently read each other's code, it is considered good citizenship to adhere to certain stylistic conventions. Cedar Style discusses the generally agreed conventions, and provides an annotated prototype that you will probably want to keep close to hand. You can save yourself a lot of typing, and produce nicely formatted code at the same time, by using Tioga's abbreviation expansion mechanism to generate all the high-level structure of your program (at least, all the bits that aren't simply copied). The Cedar Style document also contains a list of the standard Cedar abbreviations and their expansions. Reference Manual Eventually, this is intended to be a full-fledged precise definition of the complete syntax and semantics of the Cedar Language. What exists at present, however, is just the essence: two pages of carefully condensed material describing the syntax and semantics of the entire language, with examples and notes. It is definitely not for those with weak eyes, and should probably not even be read until you have gotten a fair acquaintance with the language from other sources. It seems traditional that the syntax of every programming language is defined using its own notation. Cedar is no exception. The reference grammar is written in BLOVOBNF (Butler Lampson's own variation on BNF). It provides a relatively compact source of information on the exact form of constructs accepted by the compiler. It will also alert you to much of the available variety in the languagebut of course, not every syntactically valid program makes semantic sense. You should be warned that the parsing grammar used by the compiler is somewhat larger and more complex than the reference grammar. Some of this is for technical reasons associated with LALR(1) parsing, and some of it to enable the compiler to make certain semantic distinctions while parsing. The differences should be invisible when dealing with correct programs, but may affect the error messages given for incorrect ones. Cedar Catalog: packages and tools Since so much Cedar programming is done "at the component level," you need to know what packages and tools are available and what they do. In general, full documentation (or at least the best approximation thereto that is available) for each component is stored on [Indigo]Documentation>. The problem is finding out which components you should be interested in. That's where the Cedar Catalog comes in handy. It contains a somewhat structured list of all the components in Cedar whose developers consider "interesting." A component may be interesting because of what it provides, or because of how it does it. In the former case, you may wish to include it in your program, in the latter you may want to study it, or even take it as a prototype for your program. For each entry, the Catalog indicates why it is interesting, and how to acquire documentation or the component itself. It also identifies the implementor, who is the ultimate source of advice and help. Mesa 5.0 Manual The Mesa Language Manual, Version 5.0, PARC Technical Report CSL-79-3, is the most recent self-contained manual on the Mesa Language. It falls somewhere between a tutorial and a reference manual, and many users have complained that it isn't entirely satisfactory for either purpose. But if you need more information about the Mesa-like parts of Cedar, it may be your best source. Chapter 4 gives the details of Mesa's basic control constructs. Chapter 5 tells all about procedures. Chapter 7 goes into more detail than you probably want about the fine points of modules, programs, and configurations. You may be better off extrapolating from the Annotated Cedar Examples. It is easy to get in trouble with signals unless you use them in straightforward ways. Chapter 8 gives some of the gory details. Chapter 10 provides a pretty reasonable discussion of how to make effective use of processes, monitors, condition variables, etc. Who to see If you haven't managed to find information that you want after you have looked in what you consider to be the obvious places (or if you don't understand what you have found), don't hesitate to ask. Almost anyone in CSL is a fount of wisdom, willing to be asked almost any question on almost any subject. (Of course, the answers aren't equally reliable, but you can't have everything.) If the first person you ask doesn't know the answer, chances are good that you'll get a pointer to either a person or document that will have the answer. The ultimate authority on exactly what the Cedar compiler will accept, and what code it will produce, is Ed Satterthwaite. Roy Levin knows the Cedar runtime system inside out; Paul Rovner is the runtime-type system expert; and Russ Atkinson can explain how to use BugBane to debug obscure problems. Ê–"CedarDoc" style˜Idefšœ:˜:K˜"K˜ItitlešœÏs ˜%JšÏb£˜£section˜ šœ»˜»J˜ÓJ˜£—šœúž‚˜üJšœØÏi œŸœx˜ñJšœÕ˜ÕJ˜™—Jšœ–žÑœÚ˜Á—˜"J˜âJš œSŸœ4ŸœAŸ œŸœ˜Šssection˜JšœŸœ Ÿ œ(Ÿœ1ŸœŸœ9Ïz$Ðiz  œ˜§Jš œ2ŸœŸ œ%Ÿ œlŸ œyŸœ&˜žJšœŸ œÚŸœÕŸœ˜ÙJšœŸ œzŸœ=Ÿœ œœœœNœœœœœœŒœ2˜éJšœŸœO˜ršŸœKŸœœœE˜ÃJš œŸœ\Ÿœ˜œ&Ÿœ”˜ÙšœŸœŸœ—˜ËJšœ8ŸœìŸœB˜ñ——Jš œ@ŸœIŸœ1œŸœŸ œ«˜™—˜ JšœŸœŒŸ œÞŸ œk˜šJšœŸœ Ÿ œIŸ œ˜•Jš œ'ŸœÜŸ œ ŸœŸœ˜éJšœŸœ•Ÿœ/ŸœM˜¢Jš œŸœŸœ$Ÿ œLŸœJ˜€JšœŸœ?˜`——šœ˜Jšœ ˜ Jš œŸœ“Ÿ œŸ œŸ œ¨˜êJšœ€Ÿœ@˜Æ˜J˜š œ Ðcs œŸ œ¢œ/Ÿ œ˜£JšÏcœ¿Ÿ œŸœŸœ(ŸœŸ œd£ œ‹˜ÓJš£œÕ˜ÜJš œŸ œ£œ#Ÿ œGŸœ:Ÿœè˜ÝJš œŸœ: œœ0Ÿœœ–œÌ˜¶JšœwŸœ˜Ÿœ&œc˜ªJšœ5Ÿœ;ŸœPŸ œh˜ÔJšœˆŸÏaœo£œ¸£ œ˜ÝJš œ.Ÿœ£ œ¢£=œ£Àœ£!˜ú—šœ¤˜¤Jšœö˜öJšœš£ œª˜Ï—J˜’Jšœ˜—šœ ˜ Jšœ²Ÿ œ3Ÿœ;ŸœÆ˜üJšœƒŸ œ;Ÿœ/ŸœÊ˜ÌJšœƒŸœzŸœ˜žJšœmœœœœœœœmœœK˜‚JšœFŸœs˜½JšœÅ˜ÅJšœÝŸœ˜òJšœÔœÄ˜™—˜,Jšœ3Ÿ œæŸœŸ˜ÎJšœœ°Ÿœ1œÁ˜¶Jš œœ\œŸœœý˜ôJ˜Jš œ¿Ÿ œAœ½ŸœßŸœ9˜ýJš œ×œsŸœŸœˆœÃ˜ÈJš œ.ŸœŸœŸœëŸœ›œ ˜àJšœœœº˜ÛJš œÃŸœ}Ÿœîœ¦œ˜þ—˜J˜¬Jš œœ‘œ§œUŸœC˜òJšœ|ŸœŸœÃœœMœ*œœŸœ_˜ìJšœ•œï˜ŠJšœ…˜…Jšœ£œ'£¨˜ÖJšœgœ?Ÿ œ¦˜Ù—˜ šœqŸœ¿Ÿœ–˜æJšœxŸ œ•Ÿ œÂ˜ãJšœ¬Ÿ œà˜•—JšœŸœ´˜¾Jšœ”œÔ˜îJšœ+ŸœÚœ5œ˜ÕJšœœS˜h——šœ˜JšœŽŸœ,Ÿ œC˜œJšœ?Ÿ œˆ˜Òšœ-œ˜1Jš œ‡ŸœhŸ œßœŽŸœ˜œ˜&JšŸœÓ˜ÙJšŸ œ1œ@œ œœœ5œCœ˜ÎJšŸœ1œœ@˜›—Jšœjœ˜oJšœ¸œ6˜ñJšœÇŸ œ†˜Ù—˜Jšœ1ŸœNŸœ´ŸœB˜žJšœŠœ‘˜žJšœsŸ œŸœå˜‡ sssection˜%JšœmŸœAŸœØŸœŒ˜ÃšœâŸœÞ˜ÆJš œœœœ œS˜§—šœKœœ œ˜jJšœ„˜„Jšœð˜ðJšœ†œw˜ƒ—JšœpœœN œ¿˜°Jšœáœ œÖ˜ÈJšžœªœœ3Ÿ>œO˜—˜JšœÛœ°˜ŽJšœœ£œG˜ú—˜!Jš œÝŸœTœ œÂœ`˜úJšœœŸ œ˜°Jšœlœ=˜¯——˜Jšœ[Ÿœ˜öJšœ œÞ˜šœœ+˜BJšœßœŸœƒ˜öJšœó˜óJš œœCœœœ ˜ýšœœ] œ˜mJšœœFŸœŸœœœ×œoœ&œŸœœœ˜ìJš œœœVœ…œ1˜³—Jšœç˜çJšœ>Ÿ œ€˜ÉJ˜ã——N˜˜ J˜¦˜Jšœ:Ÿœ•˜ÖJšœ¢˜¢J˜¯—šœœ˜Jšœœœ1œAœ!œœœœœ%ŸœŸœ œEœ˜ìJšœœrœ"œy˜¸—šœ ˜ šœœ–œ˜©J˜¢—I flushleft˜Ã———˜(šœ>Ÿ œŸœ:˜šJšœ.Ÿ œé˜¤Jšœ0Ÿœ ˜æ—J˜æšœž!˜7˜ušœ{˜{Jšœ´˜´—J˜ß—J˜ˆJšœæœH˜²J˜à—N˜N˜N˜N˜N˜šœ#˜1J˜¹˜Jš&ž œ0ŸœŸ œŸœŸ œ-ŸœÒŸœŸœŸœ@ŸœŸ œœŸœœŸœœŸœŸœœ˜õJšžœgŸœ Ÿ œ7œ ÏgœŸœœŸœM˜£Jš žœŸ œŸœKŸœ.Ÿœ>Ÿ œ™˜JšžœŸœ;Ÿœ(˜r—˜Jšžœ£˜§˜"Jš œŸ œœ ŸœŸœŸœœ˜zJš œŸœ_Ÿœ"ŸœŸœŸœ%Ÿœ˜ß—Jšœ_ŸœŸœŸÏmŸœŸœŸœ Ÿœé˜¨š žœŸœœœJœ€˜Jš œ9Ÿœ*ŸœGŸœŸœŸœ˜Ú—šž œ“˜ ˜J˜8J˜4—˜J˜4J˜6——JšUžœ ŸœŸœŸ¦ŸœŸœ Ÿœ Ÿœ ŸœŸœ8Ÿ¦ŸœŸœŸœŸ¦ŸœŸ¦Ÿœ¦œŸ¦ŸœŸœŸœŸ¦œ¦œŸ¦ŸœŸœŸœ)ŸœŸœ˜Ã—˜Jš žœŸœ,ŸœŸœQŸœWŸœ˜ˆšž œ*Ÿ œ ˜IJšœŸœ˜"JšœŸœŸœŸœ˜Jš œŸ œŸœŸ œŸ œŸ œŸœ˜fJšœ¥œŸ œ¥œŸœœœœŸœœŸœœŸœ˜VJš œŸ œ ŸœœŸœœ˜E—JšœPŸ œH˜¡JšžœŸœFŸ œ ŸœœŸœœœŸœŸœœÐis§ ˜ÕJšžœXœqœ8˜¤š ž œŸ œDŸœŸœŸ œ•˜¦JšœŸœœœœœœŸœœœœœœ˜:—JšœŸœŸœ Ÿœ-Ÿœ ŸœŸœ ŸœŸœŸœŸœŸœŸœŸœ˜Û—˜ JšžœŸœŸœWœœPŸœGŸœ2Ÿœ¦œ¦œU˜ðJš ž œ4Ÿœ*ŸœÄŸœœzœƒ˜³šžœŸœ0œŸœ œ!Ÿœ Ÿœo¥œ˜ŽJšŸœF˜MJšŸœh˜oJšŸ œ=˜F—J˜–Jšž œ˜Jšžœ2Ÿ œóŸœŸœŸœtŸœ Ÿœ˜ú——˜šœ'œ˜+J˜J˜J˜-Jšœyœ ˜ŠJšœ.˜.Jšœ'˜'JšœEž œ œœ˜ìJšœÐbsœ0˜V—šž¨žœ˜ J˜WJšœœœ˜;J˜—šž œ˜ Jšœ œ˜1Jšœ!œ0˜UJšœœ˜—šž¨ žœ˜J˜J˜ Jšœœ¦œœ˜!J˜Jš¥œœ œ#˜3J˜Jšœœžœ¥œœžœœžœ¦œœžœ˜1Jš œœœžœžœœž˜/Jš#œœœœœœžœœž¨œ¥œœž¨œ¥œœž¨œžœ˜