Misplaced Pages

Esterel (disambiguation)

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.

Esterel is a synchronous programming language for the development of complex reactive systems. The imperative programming style of Esterel allows the simple expression of parallelism and preemption . As a consequence, it is well suited for control-dominated model designs.

#614385

6-484: Esterel is a programming language for complex reactive systems. Esterel or Estérel may also refer to: Esterel The development of the language started in the early 1980s, and was mainly carried out by a team of Ecole des Mines de Paris and INRIA led by Gérard Berry in France. Current compilers take Esterel programs and generate C code or hardware (RTL) implementations ( VHDL or Verilog ). The language

12-687: Is still under development, with several compilers out. The commercial development environment of Esterel is Esterel Studio. The company that commercialized it ( Synfora ) initiated a normalization process with the IEEE in April 2007 however the working group (P1778) dissolved March 2011. The reference manual is publicly available. A provisional version of Esterel has been implemented in Racket . The notion of time used in Esterel differs from that of non-synchronous languages in

18-639: The emit statement. Communication is instantaneous, that means that a signal emitted in a cycle is visible immediately. Note that one can communicate back and forth in the same cycle. Thus is an erroneous program , since the writer "emit A" should run before the reader "present A", whereas this program requires "present A" to be performed first. Pure Esterel has eleven primitive statements. Esterel has several derived constructions: The full Esterel language also has statements for declaring and instantiating modules, for variables, for calling external procedures, and for valued signals. The following program emits

24-432: The following way: The notion of physical time is replaced with the notion of order. Only the simultaneity and precedence of events are considered. This means that the physical time does not play any special role. This is called multiform notion of time. An Esterel program describes a totally ordered sequence of logical instants. At each instant, an arbitrary number of events occur (including 0). Event occurrences that happen at

30-399: The property of being either present or absent in an instant. Valued signals also contain a value. Signals are broadcast across the program, and that means any process can read or write a signal. The value of a valued signal can be determined in any instant, even if the signal is absent. The default status of a signal is absent. Signals remain absent until they are explicitly set to present using

36-446: The same logical instant are considered simultaneous. Other events are ordered as their instances of occurrences. There are two types of statements: Those that take zero time (execute and terminate in the same instant) and those that delay for a prescribed number of cycles. Signals are the only means of communication. There are valued and non-valued signals. They are further categorized as being input, output, or local signals. A signal has

#614385