1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
open Base
open Hardcaml
open Stdio
module type S = Waveform_intf.S
module M = Waveform_intf.M
module Make
(Data : Data.S)
(Wave : Wave.M(Data).S)
(Waves : Waves.M(Data)(Wave).S)
(Render : Render.M(Data)(Wave)(Waves).S) =
struct
let apply_wave_format
(t : Wave.t)
(format : Wave_format.t option)
(alignment : Text_alignment.t)
: Wave.t
=
let width =
try Data.get (Wave.get_data t) 0 |> Bits.width with
| _ -> 0
in
let wave_format =
match format, Wave.get_format t with
| None, fmt -> fmt
| Some fmt, _ -> fmt
in
match t with
| Binary (name, data) ->
(match wave_format with
| Bit | Bit_or _ -> t
| _ -> Data (name, data, wave_format, alignment))
| Data (name, data, _, _) ->
(match wave_format with
| (Bit | Bit_or _) when width = 1 -> Binary (name, data)
| _ -> Data (name, data, wave_format, alignment))
| Empty _ | Clock _ -> t
;;
type t =
{ waves : Wave.t array
; ports : Port.t list
}
[@@deriving sexp_of, equal, fields ~getters]
let update_waves t waves = { t with waves }
let create_from_data ~waves ~ports =
let waves = Array.of_list waves in
{ waves; ports }
;;
let combine a b = { waves = Array.append a.waves b.waves; ports = a.ports @ b.ports }
let default_display_rules =
Display_rule.
[ port_name_is "clk" ~wave_format:Bit
; port_name_is "clock" ~wave_format:Bit
; port_name_is "rst" ~wave_format:Bit
; port_name_is "reset" ~wave_format:Bit
; port_name_is "clr" ~wave_format:Bit
; port_name_is "clear" ~wave_format:Bit
; port_name_is "enable" ~wave_format:Bit
; default
]
;;
let sort_ports_and_formats t display_rules : Wave.t array =
let display_rules = Option.value ~default:default_display_rules display_rules in
let waves =
Array.to_list t.waves
|> List.map ~f:(fun wave -> Wave.get_name wave |> Port_name.of_string, wave)
|> Map.of_alist_exn (module Port_name)
in
Display_rules.sort_ports_and_formats display_rules t.ports
|> List.filter_map ~f:(fun ((port : Port.t), fmt_align_opt) ->
Map.find waves port.port_name
|> Option.map ~f:(fun wave ->
match fmt_align_opt, wave with
| Some (format, alignment), _ -> apply_wave_format wave format alignment
| None, Data (_, _, Wave_format.Index _, _)
| None, Data (_, _, Wave_format.Custom _, _) -> wave
| None, _ ->
Display_rules.run_rule Display_rule.Default port
|> Option.map ~f:(fun (format, alignment) ->
apply_wave_format wave format alignment)
|> Option.value ~default:wave))
|> Array.of_list
;;
type 'a with_options =
?display_rules:Display_rules.t
-> ?display_width:int
-> ?display_height:int
-> ?display_values:bool
-> ?wave_width:int
-> ?wave_height:int
-> ?signals_width:int
-> ?start_cycle:int
-> ?signals_alignment:Text_alignment.t
-> 'a
let to_ctx
?display_rules
?signals_alignment
?(display_width = 70)
?(display_height = 20)
?(wave_width = 3)
?(wave_height = 1)
?(start_cycle = 0)
?(display_values = false)
?signals_width
t
=
if display_height < 3
then
raise_s [%message "Invalid display height. Must be >= 3." (display_height : int)];
if display_width < 7
then raise_s [%message "Invalid display width. Must be >= 7." (display_width : int)];
if wave_height < 0
then raise_s [%message "Invalid wave height. Must be >= 0." (wave_height : int)];
Option.iter signals_width ~f:(fun signals_width ->
if signals_width >= display_width
then
raise_s
[%message
"Invalid signals_width. Require signals_width < display_width."
(signals_width : int)
(display_width : int)]);
Render.Static.draw
?signals_alignment
?signals_width
~values:display_values
~style:Render.Styles.black_on_white
~rows:display_height
~cols:display_width
{ cfg = { Waves.Config.default with wave_width; wave_height; start_cycle }
; waves = sort_ports_and_formats t display_rules
}
;;
let to_buffer
?display_rules
?display_width
?display_height
?display_values
?wave_width
?wave_height
?signals_width
?start_cycle
?signals_alignment
t
=
let buffer = Buffer.create 1024 in
let ctx =
to_ctx
?display_rules
?display_width
?display_height
?display_values
?wave_width
?wave_height
?signals_width
?start_cycle
?signals_alignment
t
in
Write.utf8 (Buffer.add_string buffer) ctx;
buffer
;;
let to_string
?display_rules
?display_width
?display_height
?display_values
?wave_width
?wave_height
?signals_width
?start_cycle
?signals_alignment
t
=
to_buffer
?display_rules
?display_width
?display_height
?display_values
?wave_width
?wave_height
?signals_width
?start_cycle
?signals_alignment
t
|> Buffer.contents
;;
let print
?display_rules
?display_width
?display_height
?display_values
?wave_width
?wave_height
?signals_width
?start_cycle
?signals_alignment
?(channel = Out_channel.stdout)
t
=
let ctx =
to_ctx
?display_rules
?display_width
?display_height
?display_values
?wave_width
?wave_height
?signals_width
?start_cycle
?signals_alignment
t
in
Write.utf8 (Out_channel.output_string channel) ctx
;;
end