Show last authors
1 == ESO files ==
2
3 ----
4
5 ESO tracelists are mainly used to test SCCharts. They have a very simple format. see the following figure.
6
7 {{code title="ABO-ESO trace" linenumbers="true" language="perl"}}
8 !reset ;
9 A
10 %Output : A B O1
11 ;
12 %Output : O1
13 ;
14 B
15 %Output : B O2
16 ;
17 !reset ;
18 %Output :
19 ;
20 A
21 %Output :A B O2
22 ;
23 {{/code}}
24
25 An ESO trace is devided into ticks, a tick is seperated with semicolon (;)
26
27 After a reset statement, which resets the whole automaton, the inputs are listed and these are followed bythe outputs.The inputs tell the simulator when to set which signal. The outputs show what signals are expected after the inputs where applied.
28
29
30
31 The normal ESO tracelist carries pure and valued signals. Pure and valued signals are only for extended SCCharts. In this Thesis Hardware Synthesis from SCCharts, the SCCharts are in a core version. Core SCCharts only contain variables, no signals. When we want to use the ESO file to test the synthesized hardware, we need also a core variant from ESO.
32
33 == From ESO to core ESO ==
34
35 ----
36
37 This transformation is quite easy. We must transform pure and valued signals into variables. For detailed information see emsoft13 paper.
38
39
40
41 The following table shows the transformation principle:
42
43 |=(((
44 example
45 )))|=(((
46 pure signals
47 )))|=(((
48 valued signals
49 )))
50 |(((
51 ESO
52 )))|(% style="text-align: center;" %)(% style="text-align: center;" %)
53 (((
54 A
55 )))|(% style="text-align: center;" %)(% style="text-align: center;" %)
56 (((
57 B(10)
58 )))
59 |(((
60 core ESO
61 )))|(% style="text-align: center;" %)(% style="text-align: center;" %)
62 (((
63 boolean A
64 )))|(% style="text-align: center;" %)(% style="text-align: center;" %)
65 (((
66 boolean B
67
68 integer B_value = 10
69 )))
70
71
72
73 Pure signals are transformed to an boolean varaible and valued signals must transform in a present variable (B) and a variable which carries the value (B_value).
74
75
76
77 For example:
78
79 |=(((
80 ESO
81 )))|=(((
82 core ESO
83 )))
84 |(((
85 {{code linenumbers="true" language="perl"}}
86 !reset;
87 A B(5) C(false)
88 %Output: D E(3) F(false)
89 ;
90 A
91 %Output:F(false)
92 ;
93 {{/code}}
94 )))|(((
95 {{code linenumbers="true" language="perl"}}
96 !reset ;
97 %% A : true
98 %% B : true
99 %% B_value : 5
100 %% C : true
101 %% C_value : false
102 %% D :true
103 %% E : true
104 %% E_value : 3
105 %% F : true
106 %% F_value : false
107 ;
108 %% A : true
109 %% F : true
110 %% F_value : false ;
111 {{/code}}
112 )))
113
114 {{info}}
115 Information about inputs and/or output get lost!
116 {{/info}}
117
118 No new core ESO grammer is needed, because the %%-construct already exists in the ESo-Grammer. This construct is called extraInfos. These extraInfos are used to create variables.The main problem is here, that the information about which signal was an input and which signal was an output is get lost.
119
120 If we want to know which signal was an input or an output, we must have the proper SCL-Model. It holds this information.
121
122 == Technical View ==
123
124 ----
125
126 This transformation is a M2M transformation from an ESO Model to a new ESO Model. The transformation iterates through all traces an all ticks and for every pure Signals it generates a boolean variable and add it to the new ESO trace to the corresponding tick. And for each valued signal a boolean variable for the present status is created and a boolean or integer variabel for the value.
127
128
129
130