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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
|
-- GHDL Run Time (GRT) - command line options.
-- Copyright (C) 2002 - 2014 Tristan Gingold
--
-- GHDL is free software; you can redistribute it and/or modify it under
-- the terms of the GNU General Public License as published by the Free
-- Software Foundation; either version 2, or (at your option) any later
-- version.
--
-- GHDL is distributed in the hope that it will be useful, but WITHOUT ANY
-- WARRANTY; without even the implied warranty of MERCHANTABILITY or
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
-- for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with GCC; see the file COPYING. If not, write to the Free
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-- 02111-1307, USA.
--
-- As a special exception, if other files instantiate generics from this
-- unit, or you link this unit with other files to produce an executable,
-- this unit does not by itself cause the resulting executable to be
-- covered by the GNU General Public License. This exception does not
-- however invalidate any other reasons why the executable file might be
-- covered by the GNU Public License.
with Interfaces; use Interfaces;
with Grt.Strings; use Grt.Strings;
with Grt.Errors; use Grt.Errors;
with Grt.Stdio; use Grt.Stdio;
with Grt.Astdio;
with Grt.Hooks;
with Grt.Wave_Opt.File;
package body Grt.Options is
procedure Set_Time_Resolution is
begin
case Flag_String (5) is
when 'f' | '-' =>
Time_Resolution_Scale := 5;
when 'p' =>
Time_Resolution_Scale := 4;
when 'n' =>
Time_Resolution_Scale := 3;
when 'u' =>
Time_Resolution_Scale := 2;
when 'm' =>
Time_Resolution_Scale := 1;
when 's' =>
Time_Resolution_Scale := 0;
when others =>
Error ("unhandled time resolution");
end case;
end Set_Time_Resolution;
procedure Help
is
use Grt.Astdio;
procedure P (Str : String) renames Put_Line;
Prog_Name : Ghdl_C_String;
begin
if Argc > 0 then
Prog_Name := Argv (0);
Put ("Usage: ");
Put (Prog_Name (1 .. strlen (Prog_Name)));
Put (" [OPTIONS]");
New_Line;
end if;
P ("Options are:");
P (" --help, -h disp this help");
P (" --assert-level=LEVEL stop simulation if assert at LEVEL");
P (" LEVEL is note,warning,error,failure,none");
P (" --ieee-asserts=POLICY enable or disable asserts from IEEE");
P (" POLICY is enable,disable,disable-at-0");
P (" --stop-time=X stop the simulation at time X");
P (" X is expressed as a time value, without spaces: 1ns, ps...");
P (" --stop-delta=X stop the simulation cycle after X delta");
P (" --expect-failure invert exit status");
P (" --max-stack-alloc=X error if variables are larger than X KB");
P (" --no-run do not simulate, only elaborate");
P (" --unbuffered disable buffering on stdout, stderr and");
P (" files opened in write or append mode (TEXTIO).");
P (" --read-wave-opt=FILENAME read a wave option file.");
P (" --write-wave-opt=FILENAME write a wave option file.");
-- P (" --threads=N use N threads for simulation");
P ("Additional features:");
P (" --has-feature=X test presence of feature X");
P (" --list-features display the list of features");
Grt.Hooks.Call_Help_Hooks;
P ("trace options:");
P (" --disp-time disp time as simulation advances");
P (" --trace-signals disp signals after each cycle");
P (" --trace-processes disp process name before each cycle");
P (" --stats display run-time statistics");
P ("debug options:");
P (" --disp-order disp signals order");
P (" --disp-sources disp sources while displaying signals");
P (" --disp-sig-types disp signal types");
P (" --disp-signals-map disp map bw declared sigs and internal sigs");
P (" --disp-signals-table disp internal signals");
P (" --checks do internal checks after each process run");
P (" --activity=LEVEL watch activity of LEVEL signals");
P (" LEVEL is all, min (default) or none (unsafe)");
end Help;
-- Extract from STR a number.
-- First, all leading blanks are skipped.
-- Then, all next digits are eaten.
-- The position of the first non digit or one past the upper bound is
-- returned into POS.
-- If there is no digits, OK is set to false, else to true.
procedure Extract_Integer
(Str : String;
Ok : out Boolean;
Result : out Integer_64;
Pos : out Natural)
is
begin
Pos := Str'First;
-- Skip blanks.
while Pos <= Str'Last and then Str (Pos) = ' ' loop
Pos := Pos + 1;
end loop;
Ok := False;
Result := 0;
loop
exit when Pos > Str'Last or else Str (Pos) not in '0' .. '9';
Ok := True;
Result := Result * 10
+ (Character'Pos (Str (Pos)) - Character'Pos ('0'));
Pos := Pos + 1;
end loop;
end Extract_Integer;
function Parse_Time (Str : String) return Std_Time
is
Ok : Boolean;
Pos : Natural;
Time : Integer_64;
Unit : String (1 .. 3);
Scale : Natural_Time_Scale;
begin
Extract_Integer (Str, Ok, Time, Pos);
if not Ok then
Time := 1;
end if;
-- Check unit length and convert it to lower case.
if Str'Last = Pos + 1 then
Unit (3) := ' ';
elsif Str'Last = Pos + 2 then
Unit (3) := To_Lower (Str (Pos + 2));
else
Error_S ("bad unit for '");
Diag_C (Str);
Error_E ("'");
return -1;
end if;
Unit (1) := To_Lower (Str (Pos));
Unit (2) := To_Lower (Str (Pos + 1));
if Unit = "fs " then
Scale := 5;
elsif Unit = "ps " then
Scale := 4;
elsif Unit = "ns " then
Scale := 3;
elsif Unit = "us " then
Scale := 2;
elsif Unit = "ms " then
Scale := 1;
elsif Unit = "sec" then
Scale := 0;
else
Error_S ("bad unit name for '");
Diag_C (Str);
Error_E ("'");
return -1;
end if;
if Scale > Time_Resolution_Scale then
Error_S ("unit for '");
Diag_C (Str);
Error_E ("' is less than time resolution");
return -1;
end if;
while Scale < Time_Resolution_Scale loop
Time := Time * 1000;
Scale := Scale + 1;
end loop;
return Std_Time (Time);
end Parse_Time;
procedure Decode_Option
(Option : String; Status : out Decode_Option_Status)
is
pragma Assert (Option'First = 1);
Len : constant Natural := Option'Last;
begin
Status := Decode_Option_Ok;
if Option = "--" then
Status := Decode_Option_Last;
elsif Option = "--help" or else Option = "-h" then
Help;
Status := Decode_Option_Stop;
elsif Option = "--list-features" then
Grt.Hooks.Display_Hooks_Desc;
Status := Decode_Option_Stop;
elsif Len > 14 and then Option (1 .. 14) = "--has-feature=" then
if Grt.Hooks.Has_Feature (Option (15 .. Len)) then
Grt.Errors.Exit_Status := 0;
else
Grt.Errors.Exit_Status := 1;
end if;
Status := Decode_Option_Stop;
elsif Option = "--disp-time" then
Disp_Time := True;
elsif Option = "--trace-signals" then
Trace_Signals := True;
Disp_Time := True;
elsif Option = "--trace-processes" then
Trace_Processes := True;
Disp_Time := True;
elsif Option = "--disp-order" then
Disp_Signals_Order := True;
elsif Option = "--checks" then
Checks := True;
elsif Option = "--disp-sources" then
Disp_Sources := True;
elsif Option = "--disp-sig-types" then
Disp_Sig_Types := True;
elsif Option = "--disp-signals-map" then
Disp_Signals_Map := True;
elsif Option = "--disp-signals-table" then
Disp_Signals_Table := True;
elsif Option = "--disp-sensitivity" then
Disp_Sensitivity := True;
elsif Option = "--stats" then
Flag_Stats := True;
elsif Option = "--no-run" then
Flag_No_Run := True;
elsif Len > 12 and then Option (1 .. 12) = "--stop-time=" then
Stop_Time := Parse_Time (Option (13 .. Len));
if Stop_Time = -1 then
-- In case of error...
return;
end if;
elsif Len > 13 and then Option (1 .. 13) = "--stop-delta=" then
declare
Ok : Boolean;
Pos : Natural;
Time : Integer_64;
begin
Extract_Integer (Option (14 .. Len), Ok, Time, Pos);
if not Ok or else Pos <= Len then
Error_S ("bad value in '");
Diag_C (Option);
Error_E ("'");
else
if Time > Integer_64 (Integer'Last) then
Stop_Delta := Integer'Last;
else
Stop_Delta := Integer (Time);
end if;
end if;
end;
elsif Len > 15 and then Option (1 .. 15) = "--assert-level=" then
if Option (16 .. Len) = "note" then
Severity_Level := Note_Severity;
elsif Option (16 .. Len) = "warning" then
Severity_Level := Warning_Severity;
elsif Option (16 .. Len) = "error" then
Severity_Level := Error_Severity;
elsif Option (16 .. Len) = "failure" then
Severity_Level := Failure_Severity;
elsif Option (16 .. Len) = "none" then
Severity_Level := 4;
else
Error ("bad argument for --assert-level option, try --help");
end if;
elsif Len > 15 and then Option (1 .. 15) = "--ieee-asserts=" then
if Option (16 .. Len) = "disable" then
Ieee_Asserts := Disable_Asserts;
elsif Option (16 .. Len) = "enable" then
Ieee_Asserts := Enable_Asserts;
elsif Option (16 .. Len) = "disable-at-0" then
Ieee_Asserts := Disable_Asserts_At_Time_0;
else
Error ("bad argument for --ieee-asserts option, try --help");
end if;
elsif Option = "--expect-failure" then
Expect_Failure := True;
elsif Len >= 13 and then Option (1 .. 13) = "--stack-size=" then
Warning ("option --stack-size is deprecated");
elsif Len >= 17 and then Option (1 .. 17) = "--stack-max-size=" then
Warning ("option --stack-max-size is deprecated");
elsif Len >= 18 and then Option (1 .. 18) = "--max-stack-alloc=" then
declare
Ok : Boolean;
Pos : Natural;
Val : Integer_64;
begin
Extract_Integer (Option (19 .. Len), Ok, Val, Pos);
if not Ok or else Pos <= Len then
Error_S ("bad value in '");
Diag_C (Option);
Error_E ("'");
else
Lib.Max_Stack_Allocation := Ghdl_Index_Type (Val * 1024);
end if;
end;
elsif Len >= 11 and then Option (1 .. 11) = "--activity=" then
if Option (12 .. Len) = "none" then
Flag_Activity := Activity_None;
elsif Option (12 .. Len) = "min" then
Flag_Activity := Activity_Minimal;
elsif Option (12 .. Len) = "all" then
Flag_Activity := Activity_All;
else
Error ("bad argument for --activity, try --help");
end if;
elsif Len > 10 and then Option (1 .. 10) = "--threads=" then
declare
Ok : Boolean;
Pos : Natural;
Val : Integer_64;
begin
Extract_Integer (Option (11 .. Len), Ok, Val, Pos);
if not Ok or else Pos <= Len then
Error_S ("bad value in '");
Diag_C (Option);
Error_E ("'");
else
Nbr_Threads := Integer (Val);
end if;
end;
elsif Len > 4 and then Option (1 .. 2) = "-g" then
if Option (3) = '=' then
Error_S ("missing generic name in '");
Diag_C (Option);
Error_E ("'");
return;
end if;
declare
Eq_Pos : Natural;
Over : Generic_Override_Acc;
Name : String_Access;
begin
if Option (3) = '\' then
-- Extended identifier (not yet handled).
raise Program_Error;
else
-- Search for '='.
Eq_Pos := 0;
for I in 3 .. Option'Last loop
if Option (I) = '=' then
Eq_Pos := I;
exit;
end if;
end loop;
if Eq_Pos = 0 then
Error_S ("missing '=' after generic name in '");
Diag_C (Option);
Error_E ("'");
end if;
Name := new String (1 .. Eq_Pos - 3);
for I in 3 .. Eq_Pos - 1 loop
Name (I - 2) := To_Lower (Option (I));
end loop;
end if;
Over := new Generic_Override_Type'
(Name => Name,
Value => new String'(Option (Eq_Pos + 1 .. Option'Last)),
Next => null);
-- Append.
if Last_Generic_Override /= null then
Last_Generic_Override.Next := Over;
else
First_Generic_Override := Over;
end if;
Last_Generic_Override := Over;
end;
elsif Option = "--unbuffered" then
Unbuffered_Writes := True;
setbuf (stdout, NULL_voids);
setbuf (stderr, NULL_voids);
elsif Len >= 16 and then Option (1 .. 16) = "--read-wave-opt="
then
Wave_Opt.File.Start
(Option (17 .. Option'Last), To_Be_Created => False);
elsif Len >= 17 and then Option (1 .. 17) = "--write-wave-opt="
then
Wave_Opt.File.Start
(Option (18 .. Option'Last), To_Be_Created => True);
elsif not Grt.Hooks.Call_Option_Hooks (Option) then
Error_S ("unknown option '");
Diag_C (Option);
Error_E ("', try --help");
end if;
end Decode_Option;
procedure Decode (Stop : out Boolean)
is
Arg : Ghdl_C_String;
Len : Natural;
Status : Decode_Option_Status;
begin
-- Must be done before decoding options.
Set_Time_Resolution;
Stop := False;
Last_Opt := Argc - 1;
for I in 1 .. Argc - 1 loop
Arg := Argv (I);
Len := strlen (Arg);
declare
Argument : constant String := Arg (1 .. Len);
begin
Decode_Option (Argument, Status);
case Status is
when Decode_Option_Last =>
Last_Opt := I;
exit;
when Decode_Option_Stop =>
Stop := True;
when Decode_Option_Ok =>
null;
end case;
end;
end loop;
end Decode;
end Grt.Options;
|