Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
language:types2 [2024/07/18 16:15] – [User-defined types] rajit | language:types2 [2024/10/24 10:28] (current) – [Functions] rajit | ||
---|---|---|---|
Line 20: | Line 20: | ||
- | |||
- | ===== Methods ===== | ||
Process, channel, and data types can include //methods// that provide mechanisms to | Process, channel, and data types can include //methods// that provide mechanisms to | ||
- | manipulate the type or access parts of the type. There are a number of built-in | + | manipulate the type or access parts of the type. There are a number of special |
method names that can be specified for data types and channel types. | method names that can be specified for data types and channel types. | ||
- | ==== Data methods ==== | ||
- | |||
- | There are two methods that can be specified for a data type: | ||
- | - a //set method//, used to write a value to the type; | ||
- | - a //get method//, used to read the value of the type. | ||
- | One can think of these as type conversion methods invoked | ||
- | automatically to read or write the data type. When a normal | ||
- | data type is used, the special variable '' | ||
- | defined to be the built-in type that is implemented by the | ||
- | user-defined data type. | ||
- | |||
- | <code act> | ||
- | deftype d1of2 <: int< | ||
- | { | ||
- | spec { | ||
- | exclhi(d0, | ||
- | } | ||
- | | ||
- | set { | ||
- | | ||
- | } | ||
- | get { | ||
- | | ||
- | } | ||
- | } | ||
- | } | ||
- | </ | ||
- | |||
- | In the example above, the '' | ||
- | '' | ||
- | '' | ||
- | '' | ||
- | the methods specify conversion operations. | ||
- | |||
- | The selection statement in the '' | ||
- | selection operator '' | ||
- | that when the '' | ||
- | cannot both be '' | ||
- | specification body. Also, if both '' | ||
- | (i.e. an illegal state in which to execute a get operation), the | ||
- | variable '' | ||
- | one of '' | ||
- | data type. (This is different in the case of a channel, where the | ||
- | semantics of the channel permit waiting.) | ||
- | |||
- | |||
- | ==== Channel methods ==== | ||
- | |||
- | |||
- | There are eight possible methods that can be defined for a channel type: | ||
- | |||
- | * Methods for sending and receiving values on the channel | ||
- | * '' | ||
- | * '' | ||
- | * Methods for initializing | ||
- | * '' | ||
- | * '' | ||
- | |||
- | For channels, there are two special methods that are used for probe operations with different syntax. Both of these have to be specified via an expression, rather than the normal method syntax. | ||
- | * '' | ||
- | * '' | ||
- | |||
- | The send operation '' | ||
- | parts: setting the data value, followed by the synchronization | ||
- | operation, and possibly the reset phase of the handshake. | ||
- | Setting the data value also indicates that the sender is | ||
- | ready to communicate. It is illegal to set the data value multiple | ||
- | times without an intervening synchronization operation. Finally, | ||
- | attempting to set the data value might block if the previous channel | ||
- | operation has not completed as yet. Whether or not this could occur | ||
- | depends on the channel protocol. | ||
- | |||
- | The receive operation '' | ||
- | three parts: receiving the data value, followed by the synchronization | ||
- | operation, and finally the rest of the handshake. | ||
- | Attempting to get the data value from the channel will | ||
- | block if the sender has not provided any value. Once a value has been | ||
- | extracted from the channel, the synchronization operation can be | ||
- | executed. Prior to the synchronization, | ||
- | executed; the channel must be designed so that subsequent get | ||
- | operations will return the same value as the first one, and will be | ||
- | guaranteed not to block. The get operation is used to implement a CHP | ||
- | value probe, where the receiver can peek at the value pending in the | ||
- | channel without attempting a synchronization operation. | ||
- | |||
- | An example definition of a Boolean channel where the channel has an | ||
- | lazy-active send and passive receive is below. Note that for a channel, | ||
- | '' | ||
- | on the channel. | ||
- | |||
- | <code act> | ||
- | defchan e1of2 <: chan(bool) (bool d0,d1,e) | ||
- | { | ||
- | spec { | ||
- | exclhi(d0, | ||
- | } | ||
- | | ||
- | set { | ||
- | [e]; | ||
- | } | ||
- | send_up { | ||
- | [~e] | ||
- | } | ||
- | send_rest { | ||
- | d0-,d1- | ||
- | } | ||
- | get { | ||
- | | ||
- | } | ||
- | recv_up { | ||
- | e- | ||
- | } | ||
- | recv_rest { | ||
- | | ||
- | } | ||
- | recv_probe = (d0|d1); | ||
- | } | ||
- | } | ||
- | </ | ||
- | |||
- | In the example above, the '' | ||
- | specify the sequence of operations on the channel variables that are | ||
- | invoked for a send action. The '' | ||
- | specify the sequence of operations used to perform a receive. The | ||
- | special variable '' | ||
- | that is being either sent or received on the channel. | ||
- | |||
- | This channel has an active send and passive receive, and hence probes | ||
- | are only supported at the receiver. The '' | ||
- | expression specifies the Boolean expression corresponding to the probe | ||
- | at the receiver end of the channel. A '' | ||
- | specified in a similar way when the sender is passive and receiver is | ||
- | active. | ||
- | The '' | ||
- | handshake protocol. If the channel were to correspond to a two-phase | ||
- | protocol, a different sequence of actions can be specified instead. | ||
- | When defining an exchange channel, the special variable '' | ||
- | used to specify the value being received by the sender, and being sent by the receiver. | ||
===== Instantiating user-defined types ===== | ===== Instantiating user-defined types ===== | ||
Line 300: | Line 160: | ||
adder and five-bit adder. | adder and five-bit adder. | ||
+ | ==== Default parameters ==== | ||
- | ===== Direction flags and user-defined types ===== | + | When defining complex user-defined types with many parameters, it can be useful to have |
+ | default parameter values. ACT has syntax to support default parameter values for trailing | ||
+ | parameters in a template definition. | ||
+ | |||
+ | <code act> | ||
+ | template <pint N; pbool active_high = true> | ||
+ | defproc driver(bool? | ||
+ | { | ||
+ | bool sig; | ||
+ | prs { | ||
+ | inp => sig- | ||
+ | } | ||
+ | [active_high -> prs { sig => outp- } | ||
+ | [] else -> sig = outp; | ||
+ | ] | ||
+ | } | ||
+ | </ | ||
+ | (Note: this is not a real signal driver, but the idea here is the you have a parameterized | ||
+ | driver that can drive a fanout of '' | ||
+ | '' | ||
+ | <code act> | ||
+ | driver< | ||
+ | </ | ||
+ | will have four production rules: | ||
+ | <code act> | ||
+ | x.inp -> sig- | ||
+ | ~x.inp -> sig+ | ||
+ | sig -> x.outp- | ||
+ | ~sig -> x.outp+ | ||
+ | </ | ||
+ | However, this behavior can be changed by using: | ||
+ | <code act> | ||
+ | driver< | ||
+ | </ | ||
+ | In this case, '' | ||
+ | |||
+ | Note that ACT is very strict about type-checking; | ||
+ | ===== Direction flags ===== | ||
Line 344: | Line 242: | ||
interaction between connections and directional types in ACT, and this | interaction between connections and directional types in ACT, and this | ||
is detailed in the section on connections. | is detailed in the section on connections. | ||
+ | |||
+ | ===== Macros and Functions within User-defined types ===== | ||
+ | |||
+ | User-defined types support additional methods (beyond the special ones for channels and data types). | ||
+ | These methods are of two types: | ||
+ | * //macros//, which correspond to CHP fragments that are used for in-place substitution; | ||
+ | * // | ||
+ | |||
+ | ==== Macros ==== | ||
+ | |||
+ | ==== Functions ==== | ||
+ | |||
+ | === Operator overloading === | ||
+ |