Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
language:langs:start [2020/04/29 16:55] – rajit | language:langs:start [2022/07/11 11:43] (current) – [Auxillary sub-languages] rajit | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Hardware description and specification languages ====== | ====== Hardware description and specification languages ====== | ||
- | ACT permits the specification and description of circuits at multiple levels of abstraction. These languages are embedded into ACT as //sublanguages//. | + | ACT permits the specification and description of circuits at multiple levels of abstraction. These languages are embedded into ACT as //sub-languages//. These sub-languages can be used to specify circuits in a variety of ways and at different levels of abstraction. Some sub-languages are only useful when combined with others. |
+ | |||
+ | ===== Sub-languages to specify circuits ===== | ||
+ | |||
+ | ACT has the following four sub-languages that are used to specify circuits: | ||
+ | |||
+ | * [[chp|Communicating hardware processes]]: | ||
+ | * [[dflow|Dataflow]]: | ||
+ | * [[hse|Handshaking expansions]]: | ||
+ | * [[prs|Production rules]]: gate-level and transistor-level circuit specification | ||
+ | |||
+ | |||
+ | When simulating a design or translating the circuit to an implementation, | ||
+ | |||
+ | The CHP sub-language is used to describe the circuits using a programming notation. The HSE sub-language operates on Boolean-valued variables, and has syntax similar to the CHP block. A process can have at most one CHP block and at most one HSE block; if multiple blocks of the same type are detected, an error will be flagged. | ||
+ | |||
+ | The dataflow sub-language can be used to specify computations as a static dataflow graph. The PRS sub-language can be used to specify gates as well as transistor-level implementations of circuits. These blocks can be repeated in a process, and the result is the concurrent composition of the blocks. | ||
+ | |||
+ | When translating circuits from one level of abstraction to another (especially going down to production rules), it may be helpful to add additional levels of design hierarchy (e.g. by instantiating standard gates). To support this, ACT includes a refinement body. | ||
+ | |||
+ | * [[refine|Refinement]]: | ||
+ | |||
+ | The refinement body is simply a standard ACT body. When the refinement body is selected, the other circuit languages are omitted. Similarly when one of CHP/HSE/PRS are selected, the refinement body is omitted. The refinement body can be selected using the '' | ||
+ | |||
+ | ===== Auxiliary sub-languages ===== | ||
+ | |||
+ | Auxiliary sub-languages augment the circuit specification in some way. The sizing sub-language can be used to specify gate sizing directives that apply to the '' | ||
+ | |||
+ | * [[sizing|Gate sizing directives]] | ||
+ | * [[spec|Specifications]] | ||
+ | |||
+ | ===== Selecting sub-language level ===== | ||
+ | |||
+ | There are four possible levels of detail at which to model a circuit component: | ||
+ | * CHP, where channels and full expression syntax is permitted | ||
+ | * HSE, where sequencing can be specified, but all variables are Boolean-valued | ||
+ | * PRS, which corresponds to individual pull-up and pull-down networks (gates) | ||
+ | * device, which corresponds to the transistor-level implementation of the gates. The device level doesn' | ||
+ | |||
+ | A configuration file can be specified that selects the level of detail for a process | ||
+ | |||
+ | < | ||
+ | begin level | ||
+ | # valid strings are " | ||
+ | | ||
+ | end | ||
+ | </ | ||
+ | This specifies the default level selected for every process. (Dataflow is treated as fine-grained parallel CHP.) | ||
+ | |||
+ | < | ||
+ | begin level | ||
+ | begin types | ||
+ | # chp process model | ||
+ | | ||
+ | # prs process model | ||
+ | | ||
+ | end | ||
+ | end | ||
+ | </ | ||
+ | This specifies that the particular process names should be modeled at the specified level of abstraction. | ||
- | * The [[: |