-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathverilog_typecheck.cpp
2002 lines (1504 loc) · 50.1 KB
/
verilog_typecheck.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
/*******************************************************************\
Module: Verilog Type Checker
Author: Daniel Kroening, [email protected]
\*******************************************************************/
#include "verilog_typecheck.h"
#include <util/arith_tools.h>
#include <util/bitvector_expr.h>
#include <util/ebmc_util.h>
#include <util/expr_util.h>
#include <util/mathematical_types.h>
#include <util/replace_symbol.h>
#include <util/simplify_expr.h>
#include <util/std_expr.h>
#include "expr2verilog.h"
#include "verilog_expr.h"
#include "verilog_types.h"
#include <cassert>
#include <map>
#include <set>
/*******************************************************************\
Function: verilog_typecheckt::typecheck_port_connection
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::typecheck_port_connection(
exprt &op,
const exprt &port)
{
const symbolt &symbol=
ns.lookup(port.get(ID_identifier));
if(!symbol.is_input && !symbol.is_output)
{
throw errort().with_location(op.source_location())
<< "port `" << symbol.name << "' is neither input nor output";
}
if(op.is_nil())
{
// *not* connected
}
else
{
// IEEE 1800 2017 6.10 allows implicit declarations of nets when
// used in a port connection.
if(op.id() == ID_symbol)
{
// The type of the implicit net is _not_ the type of the port,
// but an "implicit scalar net of default net type".
op = convert_symbol(to_symbol_expr(op), bool_typet{});
}
else
{
convert_expr(op);
}
if(symbol.is_output)
check_lhs(op, A_CONTINUOUS);
else
propagate_type(op, port.type());
}
}
/*******************************************************************\
Function: verilog_typecheckt::typecheck_port_connections
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::typecheck_port_connections(
verilog_inst_baset::instancet &inst,
const symbolt &symbol)
{
const exprt &range_expr = static_cast<const exprt &>(inst.find(ID_range));
ranget range;
if(range_expr.is_nil() || range_expr.id() == irep_idt())
range.msb = range.lsb = 0;
else
range = convert_range(range_expr);
const irept::subt &ports=symbol.type.find(ID_ports).get_sub();
// no arguments is one argument that is nil
if(
ports.size() == 0 && inst.connections().size() == 1 &&
inst.connections().front().is_nil())
{
inst.connections().clear();
}
if(inst.connections().empty())
{
if(!ports.empty())
{
throw errort().with_location(inst.source_location())
<< "module does not have ports";
}
return;
}
// named port connection?
if(inst.connections().front().id() == ID_named_port_connection)
{
// We don't require that all ports are connected.
std::set<irep_idt> assigned_ports;
for(auto &connection : inst.connections())
{
if(connection.id() != ID_named_port_connection)
{
throw errort().with_location(inst.source_location())
<< "expected a named port connection";
}
auto &named_port_connection =
to_verilog_named_port_connection(connection);
exprt &value = named_port_connection.value();
const irep_idt &name = named_port_connection.port().get(ID_identifier);
bool found=false;
std::string identifier=
id2string(symbol.module)+"."+id2string(name);
named_port_connection.port().set(ID_identifier, identifier);
if(assigned_ports.find(name)!=
assigned_ports.end())
{
throw errort().with_location(connection.source_location())
<< "port name " << name << " assigned twice";
}
for(auto &port : ports)
{
if(port.get(ID_identifier) == identifier)
{
auto &p_expr = static_cast<const exprt &>(port);
found=true;
typecheck_port_connection(value, p_expr);
named_port_connection.port().type() = p_expr.type();
break;
}
}
if(!found)
{
throw errort().with_location(connection.source_location())
<< "port name " << identifier << " not found";
}
assigned_ports.insert(identifier);
}
}
else // just a list without names
{
if(inst.connections().size() != ports.size())
{
throw errort().with_location(inst.source_location())
<< "wrong number of arguments: expected " << ports.size() << " but got "
<< inst.connections().size();
}
irept::subt::const_iterator p_it=
ports.begin();
for(auto &connection : inst.connections())
{
typecheck_port_connection(connection, (exprt &)*p_it);
p_it++;
}
}
}
/*******************************************************************\
Function: verilog_typecheckt::typecheck_builtin_port_connections
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::typecheck_builtin_port_connections(
verilog_inst_baset::instancet &inst)
{
exprt &range_expr = static_cast<exprt &>(inst.add(ID_range));
ranget range;
if(range_expr.is_nil() || range_expr.id() == irep_idt{})
range = ranget{0, 0};
else
range = convert_range(range_expr);
if(range.lsb > range.msb)
std::swap(range.lsb, range.msb);
mp_integer width = range.length();
inst.remove(ID_range);
typet &type=inst.type();
if(width==1)
type.id(ID_bool);
else
{
type.id(ID_unsignedbv);
type.set(ID_width, integer2string(width));
}
for(auto &connection : inst.connections())
{
// IEEE 1800 2017 6.10 allows implicit declarations of nets when
// used in a port connection.
if(connection.id() == ID_symbol)
{
// The type of the implicit net is _not_ the type of the port,
// but an "implicit scalar net of default net type".
connection = convert_symbol(to_symbol_expr(connection), bool_typet{});
}
else
{
convert_expr(connection);
}
propagate_type(connection, type);
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_function_or_task
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_function_or_task(verilog_declt &decl)
{
irep_idt decl_class=decl.get_class();
const std::string identifier=
id2string(module_identifier)+"."+
id2string(decl.get_identifier());
auto result=symbol_table.get_writeable(identifier);
if(result==nullptr)
{
throw errort().with_location(decl.source_location())
<< "expected to find " << decl_class << " symbol `" << identifier
<< "' in symbol_table";
}
symbolt &symbol=*result;
decl.set_identifier(symbol.name);
function_or_task_name = symbol.name;
for(auto &inner_decl : decl.declarations())
convert_decl(inner_decl);
convert_statement(decl.body());
function_or_task_name="";
symbol.value=decl.body();
}
/*******************************************************************\
Function: verilog_typecheckt::elaborate_constant_function_call
Inputs:
Outputs:
Purpose:
\*******************************************************************/
exprt verilog_typecheckt::elaborate_constant_function_call(
const function_call_exprt &function_call)
{
const function_call_exprt::argumentst &arguments=
function_call.arguments();
// find the function
if(function_call.function().id()!=ID_symbol)
{
throw errort().with_location(function_call.source_location())
<< "expected function symbol, but got `"
<< to_string(function_call.function()) << '\'';
}
const symbolt &function_symbol=
ns.lookup(to_symbol_expr(function_call.function()));
// typecheck it
verilog_declt decl=to_verilog_decl(function_symbol.value);
function_or_task_name = function_symbol.name;
for(auto &inner_decl : decl.declarations())
convert_decl(inner_decl);
convert_statement(decl.body());
const code_typet &code_type=
to_code_type(function_symbol.type);
const code_typet::parameterst ¶meters=
code_type.parameters();
if(parameters.size()!=arguments.size())
{
throw errort().with_location(function_call.source_location())
<< "function call has wrong number of arguments";
}
// elaborate the arguments of the call and assign to parameter
varst old_vars;
for(std::size_t i=0; i<arguments.size(); i++)
{
exprt value = elaborate_constant_expression(arguments[i]);
if(!value.is_constant())
{
throw errort().with_location(arguments[i].source_location())
<< "constant function argument is not constant";
}
irep_idt p_identifier=parameters[i].get_identifier();
old_vars[p_identifier]=var_value(p_identifier);
vars[p_identifier]=value;
#if 0
status() << "ASSIGN " << p_identifier << " <- " << to_string(value) << eom;
#endif
}
// interpret it
verilog_interpreter(decl.body());
function_or_task_name="";
// get return value
exprt return_value=var_value(
id2string(function_symbol.name)+"."+
id2string(function_symbol.base_name));
return return_value;
}
/*******************************************************************\
Function: verilog_typecheckt::convert_decl
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_decl(verilog_declt &decl)
{
irep_idt decl_class=decl.get_class();
if(decl_class==ID_function ||
decl_class==ID_task)
{
convert_function_or_task(decl);
return;
}
else if(decl_class == ID_verilog_genvar)
{
// ignore here
return;
}
for(auto &declarator : decl.declarators())
{
DATA_INVARIANT(declarator.id() == ID_declarator, "must have declarator");
// in a named block?
irep_idt named_block;
if(!named_blocks.empty())
named_block = named_blocks.back();
// fix the type and identifier
irep_idt full_identifier;
if(!function_or_task_name.empty())
full_identifier = id2string(function_or_task_name) + "." +
id2string(named_block) +
id2string(declarator.base_name());
else
full_identifier = id2string(module_identifier) + "." +
id2string(named_block) +
id2string(declarator.base_name());
symbolt &symbol = symbol_table_lookup(full_identifier);
declarator.type() = symbol.type;
declarator.identifier(full_identifier);
if(declarator.has_value())
{
auto &rhs = declarator.value();
convert_expr(rhs);
propagate_type(rhs, symbol.type);
}
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_inst
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_inst(verilog_instt &inst)
{
const irep_idt &inst_module=inst.get_module();
// The instantiated module must be user-defined.
const irep_idt module_identifier =
verilog_module_symbol(id2string(inst_module));
exprt::operandst ¶meter_assignments=
inst.parameter_assignments();
Forall_expr(it, parameter_assignments)
{
// These must be constants. Preserve the location.
if(it->id()==ID_named_parameter_assignment)
{
auto &value = static_cast<exprt &>(it->add(ID_value));
mp_integer v_int = convert_integer_constant_expression(value);
value = from_integer(v_int, integer_typet()).with_source_location(*it);
}
else
{
mp_integer v_int = convert_integer_constant_expression(*it);
*it = from_integer(v_int, integer_typet()).with_source_location(*it);
}
}
// get the instance symbols
for(auto &instance : inst.instances())
{
const auto instance_base_name = instance.base_name();
const irep_idt instance_identifier =
hierarchical_identifier(instance_base_name);
instance.identifier(instance_identifier);
// add relevant defparam assignments
auto &instance_defparams = defparams[instance_identifier];
irep_idt new_module_identifier = parameterize_module(
inst.source_location(),
module_identifier,
parameter_assignments,
instance_defparams);
inst.set_module(new_module_identifier);
symbolt &instance_symbol=symbol_table_lookup(instance_identifier);
// fix the module in the instance symbol
instance_symbol.value.set(ID_module, new_module_identifier);
const symbolt ¶meterized_module_symbol =
symbol_table_lookup(new_module_identifier);
// check the port connections
typecheck_port_connections(instance, parameterized_module_symbol);
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_inst_builtin
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_inst_builtin(
verilog_inst_builtint &inst)
{
const irep_idt &inst_module=inst.get_module();
for(auto &instance : inst.instances())
{
typecheck_builtin_port_connections(instance);
// check built-in ones
if(inst_module==ID_bufif0 ||
inst_module==ID_bufif1 ||
inst_module==ID_notif0 ||
inst_module==ID_notif1)
{
}
else if(inst_module==ID_nmos ||
inst_module==ID_pmos ||
inst_module==ID_rnmos ||
inst_module==ID_rpmos)
{
}
else if(inst_module==ID_and ||
inst_module==ID_nand ||
inst_module==ID_or ||
inst_module==ID_nor ||
inst_module==ID_xor ||
inst_module==ID_xnor)
{
if(instance.connections().size() < 2)
{
throw errort().with_location(instance.source_location())
<< "Primitive gate " << inst_module
<< " expects at least two operands";
}
}
else if(inst_module==ID_buf ||
inst_module==ID_not)
{
if(instance.connections().size() < 2)
{
throw errort().with_location(instance.source_location())
<< "Primitive gate " << inst_module
<< " expects at least two operands";
}
}
else if(inst_module=="tranif0" ||
inst_module=="tranif1" ||
inst_module=="rtranif1" ||
inst_module=="rtranif0")
{
}
else if(inst_module=="tran" ||
inst_module=="rtran")
{
}
else
{
throw errort().with_location(inst.source_location())
<< "Unknown primitive Verilog module " << inst_module;
}
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_always_base
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_always_base(verilog_always_baset &module_item)
{
convert_statement(module_item.statement());
}
/*******************************************************************\
Function: verilog_typecheckt::convert_initial
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_initial(
verilog_initialt &module_item)
{
if(module_item.operands().size()!=1)
{
throw errort().with_location(module_item.source_location())
<< "initial statement expected to have one operand";
}
convert_statement(module_item.statement());
}
/*******************************************************************\
Function: verilog_typecheckt::convert_block
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_block(verilog_blockt &statement)
{
// these may be 'named blocks' with an identifier
bool is_named=statement.is_named();
if(is_named)
enter_named_block(statement.base_name());
for(auto &block_statement : statement.statements())
convert_statement(block_statement);
if(is_named)
named_blocks.pop_back();
}
/*******************************************************************\
Function: verilog_typecheckt::check_lhs
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::check_lhs(
const exprt &lhs,
vassignt vassign)
{
if(lhs.id()==ID_index)
{
check_lhs(to_index_expr(lhs).array(), vassign);
}
else if(lhs.id()==ID_extractbit)
{
if(lhs.operands().size()!=2)
{
throw errort() << "extractbit takes two operands";
}
check_lhs(to_extractbit_expr(lhs).src(), vassign);
}
else if(lhs.id() == ID_verilog_non_indexed_part_select)
{
auto &part_select = to_verilog_non_indexed_part_select_expr(lhs);
check_lhs(part_select.src(), vassign);
}
else if(
lhs.id() == ID_verilog_indexed_part_select_plus ||
lhs.id() == ID_verilog_indexed_part_select_minus)
{
auto &part_select = to_verilog_indexed_part_select_plus_or_minus_expr(lhs);
check_lhs(part_select.src(), vassign);
}
else if(lhs.id()==ID_concatenation)
{
forall_operands(it, lhs)
check_lhs(*it, vassign);
return;
}
else if(lhs.id()==ID_symbol)
{
const symbolt &symbol=ns.lookup(to_symbol_expr(lhs));
switch(vassign)
{
case A_CONTINUOUS:
if(symbol.is_state_var)
{
// Continuous assignments can drive variables.
}
else if(symbol.is_input && !symbol.is_output)
{
throw errort().with_location(lhs.source_location())
<< "continuous assignment to input";
}
break;
case A_BLOCKING:
case A_NON_BLOCKING:
if(!symbol.is_state_var &&
!symbol.is_lvalue)
{
throw errort().with_location(lhs.source_location())
<< "procedural assignment to a net\n"
<< "Identifier " << symbol.display_name() << " is declared as "
<< to_string(symbol.type) << " on line " << symbol.location.get_line()
<< '.';
}
break;
case A_PROCEDURAL_CONTINUOUS:
if(!symbol.is_state_var && !symbol.is_lvalue)
{
throw errort().with_location(lhs.source_location())
<< "procedural continuous assignment to a net\n"
<< "Identifier " << symbol.display_name() << " is declared as "
<< to_string(symbol.type) << " on line " << symbol.location.get_line()
<< '.';
}
break;
}
}
else if(lhs.id() == ID_member)
{
check_lhs(to_member_expr(lhs).struct_op(), vassign);
}
else
{
throw errort() << "typechecking: failed to get identifier on LHS "
<< lhs.pretty();
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_procedural_continuous_assign
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_procedural_continuous_assign(
verilog_procedural_continuous_assignt &statement)
{
// On path to deprecation.
for(auto &assignment : statement.operands())
{
if(assignment.id() != ID_equal || assignment.operands().size() != 2)
{
throw errort().with_location(assignment.source_location())
<< "malformed procedural continuous assignment";
}
assignment.type() = bool_typet();
exprt &lhs = to_binary_expr(assignment).lhs();
exprt &rhs = to_binary_expr(assignment).rhs();
convert_expr(lhs);
convert_expr(rhs);
propagate_type(rhs, lhs.type());
check_lhs(lhs, A_PROCEDURAL_CONTINUOUS);
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_continuous_assign
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_continuous_assign(
verilog_continuous_assignt &module_item)
{
Forall_operands(it, module_item)
{
if(it->id()!=ID_equal || it->operands().size()!=2)
{
throw errort().with_location(it->source_location())
<< "malformed continuous assignment";
}
it->type()=bool_typet();
exprt &lhs = to_binary_expr(*it).lhs();
exprt &rhs = to_binary_expr(*it).rhs();
// IEEE 1800 2017 6.10 allows implicit declarations of nets when
// used as the LHS of a continuous assignment. The type is derived
// from the RHS, and hence, we convert that first.
convert_expr(rhs);
if(lhs.id() == ID_symbol)
lhs = convert_symbol(to_symbol_expr(lhs), rhs.type());
else
convert_expr(lhs);
propagate_type(rhs, lhs.type());
check_lhs(lhs, A_CONTINUOUS);
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_function_call_or_task_enable
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_function_call_or_task_enable(
verilog_function_callt &statement)
{
irep_idt base_name=
to_symbol_expr(statement.function()).get_identifier();
// We ignore everyting that starts with a '$',
// e.g., $display etc
if(!base_name.empty() && base_name[0]=='$')
{
}
else
{
// look it up
const irep_idt full_identifier =
id2string(module_identifier) + "." + id2string(base_name);
const symbolt *symbol;
if(ns.lookup(full_identifier, symbol))
{
throw errort().with_location(statement.function().source_location())
<< "unknown function or task `" << base_name << "'";
}
if(symbol->type.id() != ID_code)
{
throw errort().with_location(statement.source_location())
<< "expected task or function name";
}
const code_typet &code_type = to_code_type(symbol->type);
// check arguments
const code_typet::parameterst ¶meter_types=code_type.parameters();
exprt::operandst &arguments=statement.arguments();
if(parameter_types.size()!=arguments.size())
{
throw errort().with_location(statement.source_location())
<< "wrong number of arguments";
}
for(unsigned i=0; i<arguments.size(); i++)
{
convert_expr(arguments[i]);
propagate_type(arguments[i], parameter_types[i].type());
}
statement.function().type() = symbol->type;
statement.function().set(ID_identifier, symbol->name);
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_paramter_override
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_parameter_override(
const verilog_parameter_overridet &module_item)
{
for(auto &assignment : module_item.assignments())
{
// Copy the lhs/rhs.
exprt lhs = to_binary_expr(assignment).lhs();
exprt rhs = to_binary_expr(assignment).rhs();
// The lhs is a sequence of module instance names using
// hierarchical_identifier expressions.
convert_expr(lhs);
// turn into identifier
if(lhs.id() != ID_hierarchical_identifier)
{
throw errort().with_location(module_item.source_location())
<< "defparam expected to have a hierachical identifier";
}
const auto &hierarchical_identifier = to_hierarchical_identifier_expr(lhs);
if(hierarchical_identifier.module().id() != ID_symbol)
{
throw errort().with_location(module_item.source_location())
<< "defparam expected to have a single level identifier";
}
auto module_instance =
to_symbol_expr(hierarchical_identifier.module()).get_identifier();
auto parameter_name = hierarchical_identifier.item().get_identifier();
// The rhs must be a constant at this point.
auto rhs_value =
from_integer(convert_integer_constant_expression(rhs), integer_typet());
// store the assignment
defparams[module_instance][parameter_name] = rhs_value;
}
}
/*******************************************************************\
Function: verilog_typecheckt::convert_assign
Inputs:
Outputs:
Purpose:
\*******************************************************************/
void verilog_typecheckt::convert_force(verilog_forcet &statement)
{
exprt &lhs=statement.lhs();
exprt &rhs=statement.rhs();
convert_expr(lhs);
convert_expr(rhs);