-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgvi.cpp
1173 lines (1101 loc) · 44.3 KB
/
gvi.cpp
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <iostream>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include <vector>
#include <set>
#include <exception>
#include <cassert>
#include <cstdint>
std::string usage = " [-p] [-vv <verilator-version>] -v <verilog-source> -t <top-module> { -c <clk-port> } { -I <verilog-include-path> } { -G <verilator-parameter>=<value> } { -o <verilator-option> }[-g] [-n]\n -vv Specify the verilator version (default is 5.012)\n -g Extends modulename with a hash of the given generics.\n If not top module and verilator fiel is given, only\n output the hash value and exit.\n -n No trace output (.vcd-file) of the verilated module.\n -p use pkg-config to determine verilator compiler flags.\n If not set, compiler flags are set based on the location of verilator executable.";
struct Options
{
template<class T>
T get_value(int &i, int argc, char *argv[], const std::string &expected, bool verbose = false) {
if (i+1 < argc) {
++i;
T value;
if (verbose) {
value = argv[i];
} else {
std::istringstream value_in(argv[i]);
value_in >> value;
if (!value_in || value[0] == '-') { throw std::runtime_error(std::string("cannot read ") + expected + " from argument " + argv[i-1] + " " + argv[i]);}
}
return value;
}
throw std::runtime_error(std::string("expecting ") + expected + " after " + argv[i]);
return T();
}
std::string verilator_version;
std::string verilog_source;
std::vector<std::string> system_verilog_sources;
std::string top_module;
std::vector<std::string> clk_ports;
std::vector<std::string> verilog_include_paths;
std::vector<std::string> verilog_parameter_args;
std::vector<std::string> verilator_options;
bool add_generics_hash;
std::string generics_hash;
bool no_traces;
bool unittest;
bool help;
bool use_pkg_config;
Options(int argc, char *argv[])
: verilog_source(""), top_module(""), add_generics_hash(false), generics_hash(""), no_traces(false), unittest(false), help(false), use_pkg_config(false)
{
for (int i = 1; i < argc; ++i) {
std::string argvi = argv[i];
if (argvi == "-v") verilog_source = get_value<std::string>(i,argc,argv, "<verilog-source>");
else if (argvi == "-vv")verilator_version = get_value<std::string>(i,argc,argv, "<verilator-version>");
else if (argvi == "-t") top_module = get_value<std::string>(i,argc,argv, "<top-module>");
else if (argvi == "-c") clk_ports.push_back(get_value<std::string>(i,argc,argv, "<clk-port>"));
else if (argvi == "-I") verilog_include_paths.push_back(get_value<std::string>(i,argc,argv,"<verilog-include-path>"));
else if (argvi == "-G") verilog_parameter_args.push_back(get_value<std::string>(i,argc,argv,"<verilog-parameter-arg>",true));
else if (argvi == "-o") verilator_options.push_back(get_value<std::string>(i,argc,argv,"<verilator-option>",true));
else if (argvi == "-n") no_traces = true;
else if (argvi == "-g") add_generics_hash = true;
else if (argvi == "-u") unittest = true;
else if (argvi == "-h") help = true;
else if (argvi == "-p") use_pkg_config = true;
else if (argvi[0] != '-') system_verilog_sources.push_back(argvi);
else throw std::runtime_error(std::string("unknown option ") + argv[i]);
}
if (add_generics_hash) {
generics_hash = generate_generics_hash(verilog_parameter_args);
}
if (verilog_source.size()*top_module.size() == 0 && !unittest && !help) {
if (add_generics_hash && generics_hash.size()) {
std::cout << generics_hash << std::endl;
exit(0);
}
throw std::runtime_error(std::string("usage: ")+argv[0]+" "+usage);
}
if (verilator_version.size() == 0) {
verilator_version = "5.012";
}
}
std::string generate_generics_hash(const std::vector<std::string> &generics)
{
uint32_t result = 1;
int i = 0;
for (auto &gen: generics) {
for (auto &ch: gen) {
if (i%2) {
result *= (uint32_t)ch;
} else {
result += (uint32_t)ch;
}
++i;
}
}
std::ostringstream out;
out << "_" << std::hex << std::setw(8) << std::setfill('0') << result << std::dec;
return out.str();
}
};
void extract_portname_and_bitsize(const std::string &token, std::string &portname, int &left_bit, int &right_bit, int &bitsize) {
// extract portname
auto begin = token.find('('); ++begin;
auto end = token.find(',');
portname = token.substr(begin,end-begin);
if (portname[0] == '&') portname = portname.substr(1);
std::cerr << "portname " << portname << std::endl;
// extract bit size of port
begin = end+1;
end = token.find(')');
std::istringstream bits_in(token.substr(begin,end-begin));
char comma;
bits_in >> left_bit >> comma >> right_bit;
bitsize = 1+std::max(left_bit,right_bit)-std::min(left_bit,right_bit);
}
void extract_portname_and_bitsize_unittest() {
std::string portname;
int left_bit, right_bit, bitsize;
// test 1
extract_portname_and_bitsize("VL_IN8(portname,1,0)", portname, left_bit, right_bit, bitsize);
assert(portname=="portname");
assert(left_bit==1);
assert(right_bit==0);
assert(bitsize==2);
// test 2
extract_portname_and_bitsize("VL_OUT32(stb_o,31,0)", portname, left_bit, right_bit, bitsize);
assert(portname=="stb_o");
assert(left_bit==31);
assert(right_bit==0);
assert(bitsize==32);
// test 3
extract_portname_and_bitsize("VL_OUT32(&stb_o,31,0)", portname, left_bit, right_bit, bitsize);
assert(portname=="stb_o");
assert(left_bit==31);
assert(right_bit==0);
assert(bitsize==32);
// something like this is not supported (yet)
// extract_portname_and_bitsize("VL_OUT32((&trace)[32],0,0)", portname, left_bit, right_bit, bitsize);
}
bool in_token(const std::string &token) {
return token.size() >= 5 &&
token.substr(0,5) == "VL_IN" &&
token.find("[") == token.npos; // something like VL_IN8((&events)[32],0,0) are not supported
}
void in_token_unittest() {
assert(in_token("VL_IN8") == true);
assert(in_token("VL_IN32") == true);
assert(in_token("VL_OUT8") == false);
assert(in_token("VL_OUT32") == false);
assert(in_token("VL_IN8((&events)[32],0,0)") == false);
}
bool out_token(const std::string &token) {
return token.size() >= 6 &&
token.substr(0,6) == "VL_OUT" &&
token.find("[") == token.npos; // something like VL_OUT8((&events)[32],0,0) are not supported
}
void out_token_unittest() {
assert(out_token("VL_IN8") == false);
assert(out_token("VL_IN32") == false);
assert(out_token("VL_OUT8") == true);
assert(out_token("VL_OUT32") == true);
assert(out_token("VL_OUT8((&events)[32],0,0)") == false);
}
struct Port
{
Port() {}
Port(const std::string &token) {
extract_portname_and_bitsize(token, name_orig, left_bit, right_bit, bitsize);
if (in_token(token)) direction = "in";
if (out_token(token)) direction = "out";
tk = token;
is_array = (bitsize!=1);
int start_ch = 0;
// remove "__SYM__"-prefix that is put by veriltor to avoid collisions with c++ keywords
if (name_orig.find("__SYM__")==0) {
start_ch = 7;
}
for (int i = start_ch; i < name_orig.size(); ++i) {
// remove leading underscores and two consecutive underscores
if (name.size() == 0 && name_orig[i] == '_') continue;
if (name.size() != 0 && name_orig[i] == '_' && name_orig[i-1] == '_') continue;
name.push_back(name_orig[i]);
}
}
Port(const Port &p)
: name_orig(p.name_orig), name(p.name), direction(p.direction), left_bit(p.left_bit), right_bit(p.right_bit), bitsize(p.bitsize), is_array(p.is_array), tk(p.tk)
{}
std::string name_orig;
std::string name;
std::string direction;
int left_bit;
int right_bit;
int bitsize;
bool is_array;
std::string tk;
};
void port_unittest() {
Port p("VL_OUT32(out1,31,0");
assert(p.name_orig == "out1");
assert(p.name == "out1");
assert(p.direction == "out");
assert(p.left_bit == 31);
assert(p.right_bit == 0);
assert(p.bitsize == 32);
assert(p.tk == "VL_OUT32(out1,31,0");
Port p2(p); // test copy constructor
assert(p.name_orig == p2.name_orig);
assert(p.name == p2.name);
assert(p.direction == p2.direction);
assert(p.left_bit == p2.left_bit);
assert(p.right_bit == p2.right_bit);
assert(p.bitsize == p2.bitsize);
assert(p.tk == p2.tk);
Port p3("VL_IN32(__SYS__in1,31,0");
assert(p3.name_orig == "__SYS__in1");
assert(p3.name == "SYS_in1");
assert(p3.direction == "in");
assert(p3.left_bit == 31);
assert(p3.right_bit == 0);
assert(p3.bitsize == 32);
assert(p3.tk == "VL_IN32(__SYS__in1,31,0");
}
std::string function_name_prefix(const std::string modulename) {
return modulename + "_gvi_";
}
//////////////////////////////////
// VHDL FILE
//////////////////////////////////
std::string ghdl_verilator_interface_preface(const std::string &modulename) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "library ieee;" << std::endl;
out << "use ieee.std_logic_1164.all;" << std::endl;
out << "use ieee.numeric_std.all;" << std::endl;
out << std::endl;
out << "package " << modulename << " is" << std::endl;
out << "\tfunction to_integer(logic_value : std_logic) return integer;" << std::endl;
out << "\tfunction to_std_logic(integer_value: integer) return std_logic;" << std::endl;
out << std::endl;
out << "\tfunction " << prefix << "init return integer;" << std::endl;
out << "\tattribute foreign of " << prefix << "init : function is \"VHPIDIRECT " << prefix << "init\";";
out << std::endl;
out << "\tprocedure " << prefix << "eval(idx : integer);" << std::endl;
out << "\tattribute foreign of " << prefix << "eval : procedure is \"VHPIDIRECT " << prefix << "eval\";";
out << std::endl;
out << "\tprocedure " << prefix << "dump(idx : integer);" << std::endl;
out << "\tattribute foreign of " << prefix << "dump : procedure is \"VHPIDIRECT " << prefix << "dump\";";
out << std::endl;
out << "\tprocedure " << prefix << "timestep(idx : integer; t : time);" << std::endl;
out << "\tattribute foreign of " << prefix << "timestep : procedure is \"VHPIDIRECT " << prefix << "timestep\";";
return out.str();
}
void ghdl_verilator_interface_preface_unittest() {
assert( ghdl_verilator_interface_preface("simple") ==
"library ieee;\n"
"use ieee.std_logic_1164.all;\n"
"use ieee.numeric_std.all;\n"
"\n"
"package simple is\n"
" function to_integer(logic_value : std_logic) return integer;\n"
" function to_std_logic(integer_value: integer) return std_logic;\n"
"\n"
" function simple_gvi_init return integer;\n"
" attribute foreign of simple_gvi_init : function is \"VHPIDIRECT simple_gvi_init\";"
"\n"
" procedure simple_gvi_eval(idx : integer);\n"
" attribute foreign of simple_gvi_eval : procedure is \"VHPIDIRECT simple_gvi_eval\";"
"\n"
" procedure simple_gvi_dump(idx : integer);\n"
" attribute foreign of simple_gvi_dump : procedure is \"VHPIDIRECT simple_gvi_dump\";"
"\n"
" procedure simple_gvi_timestep(idx : integer; t : time);\n"
" attribute foreign of simple_gvi_timestep : procedure is \"VHPIDIRECT simple_gvi_timestep\";"
);
}
std::string ghdl_verilator_interface_middle(const std::string &modulename) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "end package;" << std::endl;
out << std::endl;
out << "package body " << modulename << " is" << std::endl;
out << "\tfunction to_integer(logic_value: std_logic) return integer is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tif logic_value = '1' then " << std::endl;
out << "\t\t\treturn 1;" << std::endl;
out << "\t\telse " << std::endl;
out << "\t\t\treturn 0;" << std::endl;
out << "\t\tend if;" << std::endl;
out << "\tend function;" << std::endl;
out << std::endl;
out << "\tfunction to_std_logic(integer_value: integer) return std_logic is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tif integer_value = 0 then " << std::endl;
out << "\t\t\treturn '0';" << std::endl;
out << "\t\telse " << std::endl;
out << "\t\t\treturn '1';" << std::endl;
out << "\t\tend if;" << std::endl;
out << "\tend function;" << std::endl;
out << std::endl;
out << "\tfunction " << prefix << "init return integer is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend function;" << std::endl;
out << std::endl;
out << "\tprocedure " << prefix << "eval(idx : integer) is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend procedure;" << std::endl;
out << std::endl;
out << "\tprocedure " << prefix << "dump(idx : integer) is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend procedure;" << std::endl;
out << std::endl;
out << "\tprocedure " << prefix << "timestep(idx : integer; t : time) is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend procedure;" << std::endl;
return out.str();
}
std::string ghdl_verilator_interface_end(const std::string &modulename) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "end package body;" << std::endl;
return out.str();
}
std::string ghdl_verilator_entity_begin(const std::string &modulename) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "library ieee;" << std::endl;
out << "use ieee.std_logic_1164.all;" << std::endl;
out << "use ieee.numeric_std.all; " << std::endl;
out << std::endl;
out << "use work." << modulename << ".all;" << std::endl;
out << std::endl;
// remove the V from the start of the modulename
out << "entity " << modulename.substr(1) << " is" << std::endl;
out << "port(" << std::endl;
return out.str();
}
std::string ghdl_verilator_entity_middle(const std::string &modulename, const std::vector<Port> &ports) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << ");" << std::endl;
out << "end entity;" << std::endl;
out << std::endl;
out << "architecture simulation of " << modulename.substr(1) << " is" << std::endl;
out << "\tsignal " << modulename << "_idx : integer := " << prefix << "init;" << std::endl;
out << "begin" << std::endl;
out << "\tmain: process" << std::endl;
out << "\tbegin" << std::endl;
return out.str();
}
std::string ghdl_verilator_entity_end(const std::string &modulename) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "\tend process;" << std::endl;
out << "end architecture;" << std::endl;
out << std::endl;
return out.str();
}
std::string ghdl_verilator_interface_function_declaration_in(const std::string &modulename, const Port &port)
{
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "\t--" << port.tk << std::endl;
if (port.bitsize <= 32) {
out << "\tprocedure " << prefix << port.name << "(idx : integer; " << port.name << " : integer);" << std::endl;
} else {
out << "\tprocedure " << prefix << port.name << "(idx : integer; ";
int parts = 1 + (port.bitsize-1) / 32;
for (int part = parts-1; part >= 0; --part) {
out << port.name << "_gvi_lw" << part << " : integer";
if (part) out << ";";
else out << ");" << std::endl;
}
}
out << "\tattribute foreign of " << prefix << port.name << " : procedure is \"VHPIDIRECT " << prefix << port.name << "\";";
return out.str();
}
std::string ghdl_verilator_interface_function_definition_in(const std::string &modulename, const Port &port)
{
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "\t--" << port.tk << std::endl;
if (port.bitsize <= 32) {
out << "\tprocedure " << prefix << port.name << "(idx : integer; " << port.name << " : integer) is" << std::endl;
} else {
out << "\tprocedure " << prefix << port.name << "(idx : integer; ";
int parts = 1 + (port.bitsize-1) / 32;
for (int part = parts-1; part >= 0; --part) {
out << port.name << "_gvi_lw" << part << " : integer";
if (part) out << ";";
else out << ") is" << std::endl;
}
}
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend procedure;";
return out.str();
}
std::string ghdl_verilator_interface_function_declaration_out(const std::string &modulename, const Port &port)
{
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
if (port.bitsize <= 32) {
out << "\t--" << port.tk << std::endl;
out << "\tfunction " << prefix << port.name << "(idx : integer) return integer;" << std::endl;
out << "\tattribute foreign of " << prefix << port.name << " : function is \"VHPIDIRECT " << prefix << port.name << "\";";
} else {
int parts = 1 + (port.bitsize-1) / 32;
for (int part = parts-1; part >= 0; --part) {
out << "\t--" << port.tk << std::endl;
out << "\tfunction " << prefix << port.name << "_gvi_lw" << part << "(idx : integer) return integer;" << std::endl;
out << "\tattribute foreign of " << prefix << port.name << "_gvi_lw" << part << " : function is \"VHPIDIRECT " << prefix << port.name << "_gvi_lw" << part << "\";";
}
}
return out.str();
}
std::string ghdl_verilator_interface_function_definition_out(const std::string &modulename, const Port &port)
{
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
if (port.bitsize <= 32) {
out << "\t--" << port.tk << std::endl;
out << "\tfunction " << prefix << port.name << "(idx : integer) return integer is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend function;" << std::endl;
} else {
int parts = 1 + (port.bitsize-1) / 32;
out << "\t--" << port.tk << std::endl;
for (int part = parts-1; part >= 0; --part) {
out << "\tfunction " << prefix << port.name << "_gvi_lw" << part << "(idx : integer) return integer is" << std::endl;
out << "\tbegin" << std::endl;
out << "\t\tassert false report \"VHPI\" severity failure;" << std::endl;
out << "\tend function;" << std::endl;
}
}
return out.str();
}
std::string filename_to_modulename(const std::string &filename)
{
auto begin = filename.find_last_of('/');
if (begin == filename.npos) begin = 0;
else ++begin;
auto end = filename.find_last_of('.');
return filename.substr(begin,end-begin);
}
void filename_to_modulename_unittest() {
assert(filename_to_modulename("simple/Vsimple.h") == "Vsimple");
assert(filename_to_modulename("generated/lm32_wb/Vlm32_wb.h") == "Vlm32_wb");
}
std::string ghdl_verilator_interface_set_inputs(const std::vector<Port> &ports, const std::string &modulename) {
std::ostringstream out;
for (auto port: ports) {
if (port.direction == "in") {
if (port.bitsize == 1) {
if (port.is_array) {
out << "\t\t" << function_name_prefix(modulename) << port.name << "(" << modulename << "_idx, to_integer(unsigned(" << port.name << ")));" << std::endl;
} else {
out << "\t\t" << function_name_prefix(modulename) << port.name << "(" << modulename << "_idx, to_integer(" << port.name << "));" << std::endl;
}
} else {
auto left_bit = port.left_bit;
int parts = 1 + (port.bitsize-1) / 32;
out << "\t\t" << function_name_prefix(modulename) << port.name << "(" << modulename << "_idx";
for (int part = parts-1; part >= 0; --part) {
if (port.left_bit > port.right_bit) { // the 'downto' case
out << ", to_integer(signed(" << port.name << "(" << left_bit << " downto " << 32*part << ")))";
} else { // the 'to' case
out << ", to_integer(signed(" << port.name << "(" << 32*part << " to " << left_bit << ")))";
}
left_bit = 32*part-1;
if (part == 0) {
out << ");" << std::endl;
}
}
}
}
}
return out.str();
}
std::string ghdl_verilator_interface_get_outputs(const std::vector<Port> &ports, const std::string &modulename) {
std::ostringstream out;
for (auto port: ports) {
if (port.direction == "out") {
out << "\t\t" << port.name << " <= ";
if (port.bitsize == 1 && !port.is_array) {
out << "to_std_logic(" << function_name_prefix(modulename) << port.name << "(" << modulename << "_idx));" << std::endl;
} else if (port.bitsize <= 32) {
out << "std_logic_vector(to_signed(" << function_name_prefix(modulename) << port.name << "(" << modulename << "_idx), " << port.bitsize << "));" << std::endl;
} else {
int parts = 1 + (port.bitsize-1) / 32;
auto bits = port.bitsize - (parts-1)*32;
for (int part = parts-1; part >= 0; --part) {
out << "std_logic_vector(to_signed(" << function_name_prefix(modulename) << port.name << "_gvi_lw" << part << "(" << modulename << "_idx), " << bits << "))";
if (part) out << " & ";
else out << ";" << std::endl;
bits = 32;
}
}
}
}
return out.str();
}
void write_vhdl_file(std::ofstream &vhd_out, const std::vector<Port> &ports, const std::vector<Port> &clk_ports, const std::string &modulename)
{
vhd_out << ghdl_verilator_interface_preface(modulename) << std::endl << std::endl;
for(auto port: ports) {
if (port.direction == "in") vhd_out << ghdl_verilator_interface_function_declaration_in(modulename, port) << std::endl << std::endl;
if (port.direction == "out") vhd_out << ghdl_verilator_interface_function_declaration_out(modulename, port) << std::endl << std::endl;
}
vhd_out << ghdl_verilator_interface_middle(modulename) << std::endl << std::endl;
for(auto port: ports) {
if (port.direction == "in") vhd_out << ghdl_verilator_interface_function_definition_in(modulename, port) << std::endl << std::endl;
if (port.direction == "out") vhd_out << ghdl_verilator_interface_function_definition_out(modulename, port) << std::endl << std::endl;
}
vhd_out << ghdl_verilator_interface_end(modulename) << std::endl;
vhd_out << ghdl_verilator_entity_begin(modulename);
for (int i = 0; i < ports.size(); ++i) {
if (i > 0) vhd_out << ";" << std::endl;
vhd_out << "\t" << ports[i].name << " : " << ports[i].direction;
if (ports[i].bitsize == 1 && !ports[i].is_array) vhd_out << " std_logic";
else {
vhd_out << " std_logic_vector(" << ports[i].left_bit;
if (ports[i].left_bit > ports[i].right_bit) vhd_out << " downto ";
else vhd_out << " to ";
vhd_out << ports[i].right_bit << ")";
}
}
vhd_out << ghdl_verilator_entity_middle(modulename, ports);
vhd_out << "\t\twait for 0 ns;" << std::endl;
vhd_out << "\t\twhile true loop" << std::endl;
vhd_out << ghdl_verilator_interface_set_inputs(ports, modulename);
vhd_out << "\t\t" << function_name_prefix(modulename) << "timestep(" << modulename << "_idx, now);" << std::endl;
vhd_out << "\t\t" << function_name_prefix(modulename) << "eval(" << modulename << "_idx);" << std::endl;
vhd_out << "\t\t" << function_name_prefix(modulename) << "dump(" << modulename << "_idx);" << std::endl;
vhd_out << ghdl_verilator_interface_get_outputs(ports, modulename);
vhd_out << "\t\twait until " << clk_ports.front().name << "'event";
if (clk_ports.size() > 1) {
for (int i = 1; i < clk_ports.size(); ++i) {
vhd_out << " or " << clk_ports[i].name << "'event";
}
}
vhd_out << ";" << std::endl;
vhd_out << "\t\tend loop;" << std::endl;
vhd_out << ghdl_verilator_entity_end(modulename);
}
////////////////////////////
//// CPP FILE
////////////////////////////
std::string cpp_verilator_interface_preface(const std::string &modulename, bool no_traces) {
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
out << "#include <verilated.h> // Defines common routines" << std::endl;
out << "#include \"" << modulename << ".h\" // From Verilating \"lm32_top.v\"" << std::endl;
out << "" << std::endl;
if (!no_traces) {
out << "#if VM_TRACE" << std::endl;
out << "# include <verilated_vcd_c.h> // Trace file format header" << std::endl;
out << "#endif" << std::endl;
out << "" << std::endl;
}
out << "#include <iostream>" << std::endl;
out << "#include <iomanip>" << std::endl;
out << "#include <vector>" << std::endl;
out << "#include <memory>" << std::endl;
out << "#include <cstdint>" << std::endl;
out << "#include <climits>" << std::endl;
out << "" << std::endl;
out << "// Container for all lm32 instances that will ever be instantiated" << std::endl;
out << "// Users will work with an index into this container." << std::endl;
out << "std::vector<" << modulename << "*> " << modulename << "_top_instances;" << std::endl;
if (!no_traces) {
out << "std::vector<VerilatedVcdC*> " << modulename << "_tfp_instances;" << std::endl;
}
out << "" << std::endl;
out << "extern double main_time; // Current simulation time" << std::endl;
out << "double sc_time_stamp();" << std::endl;
// out << "double main_time = 0; // Current simulation time" << std::endl;
// out << "// This is a 64-bit integer to reduce wrap over issues and" << std::endl;
// out << "// allow modulus. You can also use a double, if you wish." << std::endl;
// out << "double sc_time_stamp () { // Called by $time in Verilog" << std::endl;
// out << "\treturn main_time; // converts to double, to match" << std::endl;
// out << " // what SystemC does" << std::endl;
// out << "}" << std::endl;
out << "" << std::endl;
out << "// GHDL interface" << std::endl;
out << "extern \"C\" {" << std::endl;
out << "\tint " << function_name_prefix(modulename) << "init(int *pts) {" << std::endl;
out << "\t\tint idx = " << modulename << "_top_instances.size();" << std::endl;
out << "\t\t" << modulename << "_top_instances.push_back(new "<< modulename<< ");" << std::endl;
if (!no_traces) {
out << "\t\tVerilated::traceEverOn(true); // Verilator must compute traced signals" << std::endl;
out << "\t\t" << modulename << "_tfp_instances.push_back(new VerilatedVcdC);" << std::endl;
out << "\t\t" << modulename << "_top_instances[idx]->trace(" << modulename << "_tfp_instances[idx], 99); // Trace 99 levels of hierarchy" << std::endl;
}
out << "\t\tstd::ostringstream filename;" << std::endl;
out << "\t\tfilename << \"" << modulename << "_vlt_dump_\" << std::setw(2) << std::setfill('0') << std::dec << idx << \".vcd\";" << std::endl;
if (!no_traces) {
out << "\t\t" << modulename << "_tfp_instances[idx]->open(filename.str().c_str()); // Open the dump file" << std::endl;
}
out << "\t\t//std::cout << \"interface_lm32_init in C++ called. returing index \" << idx << std::endl;" << std::endl;
out << "\t\treturn idx;" << std::endl;
out << "\t}" << std::endl;
out << "\tvoid " << function_name_prefix(modulename) << "eval(int idx) {" << std::endl;
out << "\t\t" << modulename << "_top_instances[idx]->eval();" << std::endl;
out << "\t}" << std::endl;
out << "\tvoid " << function_name_prefix(modulename) << "dump(int idx) {" << std::endl;
if (!no_traces) {
out << "\t\tif (" << modulename << "_tfp_instances[idx]) " << modulename << "_tfp_instances[idx]->dump(main_time); // Create waveform trace for this timestamp" << std::endl;
}
out << "\t}" << std::endl;
out << "\tvoid " << function_name_prefix(modulename) << "timestep(int idx, uint64_t time) {" << std::endl;
out << "\t\tmain_time = time/1000.0;" << std::endl;
out << "\t}" << std::endl;
return out.str();
}
std::string gen_mask(int bitsize) {
uint64_t num = ((uint64_t)1 << bitsize) - 1;
std::ostringstream out;
out << "0x" << std::hex << num;
return out.str();
}
std::string cpp_verilator_interface_function_definition_in(const std::string &modulename, const Port &port)
{
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
if (port.bitsize <= 32) {
out << "\tvoid " << function_name_prefix(modulename) << port.name << "(int idx, int " << port.name << ") {" << std::endl;
out << "\t\t" << modulename << "_top_instances[idx]->" << port.name_orig << " = " << gen_mask(port.bitsize) << " & (unsigned)" << port.name << ";" << std::endl;
out << "\t}" << std::endl;
} else {
out << "\tvoid " << function_name_prefix(modulename) << port.name << "(int idx";
int parts = 1 + (port.bitsize-1) / 32;
for (int part = parts-1; part >= 0; --part) {
out << ", int " << port.name << "_gvi_lw" << part;
}
out << ") {" << std::endl;
int bitsize = port.bitsize - 32*(parts-1);
if (port.bitsize <= 64) {
out << "\t\t" << modulename << "_top_instances[idx]->" << port.name_orig << " = " << gen_mask(bitsize) << " & (unsigned)" << port.name << "_gvi_lw" << parts-1 << ";" << std::endl;
bitsize = 32;
for (int part = parts-2; part >= 0; --part) {
out << "\t\t" << modulename << "_top_instances[idx]->" << port.name_orig << " <<= 32;" << std::endl;
out << "\t\t" << modulename << "_top_instances[idx]->" << port.name_orig << " |= (unsigned)" << port.name << "_gvi_lw" << part << ";" << std::endl;
}
} else { // port.bitsize > 64
for (int part = parts-1; part >= 0; --part) {
out << "\t\t" << modulename << "_top_instances[idx]->" << port.name_orig << "[" << part << "] = " << gen_mask(bitsize) << " & (unsigned)" << port.name << "_gvi_lw" << part << ";" << std::endl;
bitsize = 32;
}
}
out << "\t}" << std::endl;
}
return out.str();
}
std::string cpp_verilator_interface_function_definition_out(const std::string &modulename, const Port &port)
{
std::string prefix = function_name_prefix(modulename);
std::ostringstream out;
if (port.bitsize <= 32) {
out << "\tint " << function_name_prefix(modulename) << port.name << "(int idx) {" << std::endl;
out << "\t\treturn " << modulename << "_top_instances[idx]->" << port.name_orig << ";" << std::endl;
out << "\t}" << std::endl;
} else {
int parts = 1 + (port.bitsize-1) / 32;
for (int part = parts-1; part >= 0; --part) {
out << "\tint " << function_name_prefix(modulename) << port.name << "_gvi_lw" << part << "(int idx) {" << std::endl;
if (port.bitsize <= 64) {
out << "\t\treturn " << modulename << "_top_instances[idx]->" << port.name_orig << " >> " << part*32 << ";" << std::endl;
} else {
out << "\t\treturn " << modulename << "_top_instances[idx]->" << port.name_orig << "[" << part << "];" << std::endl;
}
out << "\t}" << std::endl;
}
}
return out.str();
}
void write_cpp_file(std::ofstream &cpp_out, const std::vector<Port> &ports, const std::string &modulename, bool no_traces)
{
cpp_out << cpp_verilator_interface_preface(modulename, no_traces) << std::endl;
for (auto port: ports) {
// if (port.bitsize <= 64) {
if (port.direction == "in") cpp_out << cpp_verilator_interface_function_definition_in(modulename, port) << std::endl;
if (port.direction == "out") cpp_out << cpp_verilator_interface_function_definition_out(modulename, port) << std::endl;
// }
}
cpp_out << "}" << std::endl;
}
void write_common_cpp_file(std::ofstream &cpp_out)
{
cpp_out << "double main_time;" << std::endl;
cpp_out << "double sc_time_stamp() { return main_time; }" << std::endl;
}
void unittest() {
extract_portname_and_bitsize_unittest();
in_token_unittest();
out_token_unittest();
port_unittest();
ghdl_verilator_interface_preface_unittest();
filename_to_modulename_unittest();
}
std::set<std::string> extract_module_ports(const Options &options)
{
std::string result;
std::set<std::string> array_ports;
std::ifstream vin(options.verilog_source);
std::string token;
for (;;) {
vin >> token;
if (!vin) break;
if (token == "module") {
std::string modulename;
vin >> modulename;
if (!vin) break;
if (modulename == options.top_module) {
char hash;
vin >> hash;
if (!vin) break;
if (hash == '#') {
int nesting = 0;
for (;;) {
char c;
c = vin.get();
if (!vin) break;
if (c == '(') ++nesting;
if (c == ')') --nesting;
//result.push_back(c);
if (nesting == 0) break;
}
vin >> hash;
if (!vin) break;
}
if (hash == '(') // there was no parameter list
{
result.push_back('(');
int nesting = 1;
bool is_array = false;
for (;;) {
char c;
c = vin.get();
if (!vin) break;
if (c == '(') ++nesting;
if (c == ')') --nesting;
if (c == '[') is_array = true;
if (c == ',' || (c == ')' && nesting == 0)) {
if (is_array) {
// find the last token before the comma ','
int i_begin = result.size()-1;
while(i_begin && isspace(result[i_begin])) --i_begin;
int i_end = i_begin+1;
while(i_begin && !isspace(result[i_begin])) --i_begin;
if (isspace(result[i_begin])) ++i_begin;
std::string arrayport = result.substr(i_begin, i_end-i_begin);
// std::cerr << "arrayport " << arrayport << std::endl;
array_ports.insert(arrayport);
}
is_array = false;
}
if (c == '/') {
char c2 = vin.get();
if (!vin) break;
if (c2 == '/') { // skip the line comment
std::string line;
std::getline(vin,line);
if (!vin) break;
c = '\n';
} else if (c2 == '*') { // skip the block comment
char c3 = vin.get();
if (!vin) break;
for (;;) {
char c4 = vin.get();
if (!vin || (c3 == '*' && c4 == '/')) break;
c3 = c4;
}
continue;
} else {
vin.putback(c2);
}
}
result.push_back(c);
if (nesting == 0) return array_ports;
}
}
}
}
}
return array_ports;
}
// std::string extract_module_parameters(const Options &options)
// {
// std::string result;
// std::ifstream vin(options.verilog_source);
// std::string token;
// for (;;) {
// vin >> token;
// if (!vin) break;
// if (token == "module") {
// std::string modulename;
// vin >> modulename;
// if (!vin) break;
// if (modulename == options.top_module) {
// char hash;
// vin >> hash;
// if (!vin) break;
// if (hash == '#') {
// for (;;) {
// char c;
// c = vin.get();
// if (!vin) break;
// result.push_back(c);
// if (c == ')') return result;
// }
// }
// }
// }
// }
// return result;
// }
// std::string parameter_verilog_to_vhdl(const std::string &par)
// {
// return par;
// }
// std::string transform_module_parameters_verilog_to_vhdl(const std::string &in)
// {
// std::istringstream pin(in);
// std::string result;
// std::string token;
// for (;;) {
// char c;
// pin >> c;
// if (!pin) break;
// token.push_back(c);
// if (token == "(") {
// result.append("port map (\n");
// token.clear();
// } else if (token == ")") {
// result.append(")");
// token.clear();
// break;
// } else if (token == "parameter") {
// for (;;) {
// c = pin.get();
// if (c == ',' || c == ')') {
// result.append("\t");
// result.append(parameter_verilog_to_vhdl(token));
// if (c == ')') {
// result.append("\n");
// result.append(")");
// } else {
// result.append(";\n");
// }
// break;
// } else if (c != '\n' && c != '\r') {
// token.push_back(c);
// }
// }
// token.clear();
// }
// }
// return result;
// }
void generate_ghdl_verilator_interface(const Options &options)
{
std::string generated_verilator_header(".gvi/");
generated_verilator_header.append(options.top_module + options.generics_hash);
generated_verilator_header.append("/V");
generated_verilator_header.append(options.top_module + options.generics_hash);
generated_verilator_header.append(".h");
std::string basename(generated_verilator_header.c_str());
basename = basename.substr(0,basename.find_last_of("/"));
basename.append("/");
basename.append(options.top_module + options.generics_hash);
basename.append("_wrapper");
std::set<std::string> ports_that_are_arrays = extract_module_ports(options);
// call verilator
std::string verilator_call;
verilator_call.append("verilator -Wno-lint --trace --cc ");
if (options.system_verilog_sources.size() > 0) {
verilator_call.append(" -sv "); // enable SystemVerilog parsing
}
for (int i = 0; i < options.system_verilog_sources.size(); ++i) {
verilator_call.append(" ");
verilator_call.append(options.system_verilog_sources[i]);
verilator_call.append(" ");
}
verilator_call.append(options.verilog_source);
verilator_call.append(" --top-module ");
verilator_call.append(options.top_module);
for (int i = 0; i < options.verilator_options.size(); ++i) {
verilator_call.append(" ");
verilator_call.append(options.verilator_options[i]);
}
for (int i = 0; i < options.verilog_parameter_args.size(); ++i) {
verilator_call.append(" \'-G");
verilator_call.append(options.verilog_parameter_args[i]);
verilator_call.append("\'");
}
for (int i = 0; i < options.verilog_include_paths.size(); ++i) {
verilator_call.append(" -I");
verilator_call.append(options.verilog_include_paths[i]);
}
system("mkdir -p .gvi");
verilator_call.append(" --Mdir .gvi/");
verilator_call.append(options.top_module + options.generics_hash);
verilator_call.append(" --prefix V");
verilator_call.append(options.top_module + options.generics_hash);
verilator_call.append(" --exe ");
verilator_call.append(options.top_module + options.generics_hash);
verilator_call.append("_wrapper_main.cpp");
std::cout << "gvi: execute command: " << verilator_call << std::endl;
int verilator_status = system(verilator_call.c_str());
if (verilator_status < 0) {
throw std::runtime_error("failed to run verilator");
} else {
// std::cerr << "WEXITSTATUS(verilator_status)=" << WEXITSTATUS(verilator_status) << std::endl;
if (WEXITSTATUS(verilator_status)) {
throw std::runtime_error("verilator returned with error");
}
}
std::cout << "gvi: generating ghdl bindings for verilated model" << std::endl;
std::ifstream in(generated_verilator_header.c_str());
if (!in) {
throw std::runtime_error(std::string("cannot open file ") + generated_verilator_header);
}
std::string modulename = filename_to_modulename(generated_verilator_header);
// verilator generated a top module C++ header file
// look at this header file to find the ports (names and bitsizes)
std::vector<Port> ports;
for (;;) {
std::string token;
in >> token;
if (!in) {
break;
}
if (in_token(token) || out_token(token)) {
ports.push_back(Port(token));
// fix the arrays that have only 1 element
if (ports_that_are_arrays.find(ports.back().name)!=ports_that_are_arrays.end()) {
ports.back().is_array = true;
}
}
}