module ARCH_TREE (FUNCTIONS, CHANNELS, EXTENDED_VARIABLE_ARRAY, MESI_CACHE) is ------------------------------------------------------------------------------- -- Architecture of systems communicating by means of 2*N shared variables, -- represented as the cells a[0], ..., a[N-1] and c[0], ..., c[N-1] of two -- N-variable arrays. ------------------------------------------------------------------------------- process Arch_Tree [NCS: Pid, CS: Access, A, C: Operation, MU: Latency] is par NCS, CS, A, C in Protocol [NCS, CS, A, C] || L [NCS, CS, A, C, MU] end par end process ------------------------------------------------------------------------------- -- Auxiliary process for compositional generation: protocol without latencies ------------------------------------------------------------------------------- process Protocol [NCS: Pid, CS: Access, A, C: Operation] is par A, C in par P [NCS, CS, A, C] (0 of Pid) || P [NCS, CS, A, C] (1 of Pid) end par || par Variable_Array [A] (0 of Nat) || Variable_Array [C] (0 of Nat) end par end par end process ------------------------------------------------------------------------------- -- Auxiliary process for inserting latencies ------------------------------------------------------------------------------- process L [NCS: Pid, CS: Access, A, C: Operation, MU: Latency] is var a, c: Cache_Array, a_i, c_i: Cache, index: Nat, pid: Pid, acc: Access, op: Operation, cop: Cached_Operation in a := cache_array (cache (Invalid)); c := cache_array (cache (Invalid)); loop alt A (?op, ?index, ?any Nat, ?pid) where index < N; a_i := a[index]; cop := update_caches (pid, op, !?a_i); a[index] := a_i; MU (cop, pid) [] C (?op, ?index, ?any Nat, ?pid) where index < N; c_i := c[index]; cop := update_caches (pid, op, !?c_i); c[index] := c_i; MU (cop, pid) [] CS (?acc, ?pid); if acc == Enter then MU (acc, pid) end if [] NCS (?pid); MU (Work, pid) end alt end loop end var end process end module