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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
|
-- Semantic analysis.
-- Copyright (C) 2002, 2003, 2004, 2005 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.
with Errorout; use Errorout;
with Types; use Types;
with Flags;
with Sem_Specs; use Sem_Specs;
with Std_Package; use Std_Package;
with Sem; use Sem;
with Sem_Decls; use Sem_Decls;
with Sem_Expr; use Sem_Expr;
with Sem_Names; use Sem_Names;
with Sem_Scopes; use Sem_Scopes;
with Sem_Types;
with Std_Names;
with Evaluation; use Evaluation;
with Iirs_Utils; use Iirs_Utils;
with Xrefs; use Xrefs;
package body Sem_Stmts is
-- Process is the scope, this is also the process for which drivers can
-- be created.
-- Note: FIRST_STMT is the first statement, which can be get by:
-- get_sequential_statement_chain (usual)
-- get_associated (for case statement).
procedure Sem_Sequential_Statements_Internal (First_Stmt : Iir);
-- Access to the current subprogram or process.
Current_Subprogram: Iir := Null_Iir;
function Get_Current_Subprogram return Iir is
begin
return Current_Subprogram;
end Get_Current_Subprogram;
-- Access to the current concurrent statement.
-- Null_iir if no one.
Current_Concurrent_Statement : Iir := Null_Iir;
function Get_Current_Concurrent_Statement return Iir is
begin
return Current_Concurrent_Statement;
end Get_Current_Concurrent_Statement;
Current_Declarative_Region_With_Signals :
Implicit_Signal_Declaration_Type := (Null_Iir, Null_Iir);
procedure Push_Signals_Declarative_Part
(Cell: out Implicit_Signal_Declaration_Type; Decls_Parent : Iir) is
begin
Cell := Current_Declarative_Region_With_Signals;
Current_Declarative_Region_With_Signals := (Decls_Parent, Null_Iir);
end Push_Signals_Declarative_Part;
procedure Pop_Signals_Declarative_Part
(Cell: in Implicit_Signal_Declaration_Type) is
begin
Current_Declarative_Region_With_Signals := Cell;
end Pop_Signals_Declarative_Part;
procedure Add_Declaration_For_Implicit_Signal (Sig : Iir)
is
Last : Iir renames
Current_Declarative_Region_With_Signals.Last_Decl;
begin
if Current_Declarative_Region_With_Signals.Decls_Parent = Null_Iir then
raise Internal_Error;
end if;
if Last = Null_Iir then
Last := Get_Declaration_Chain
(Current_Declarative_Region_With_Signals.Decls_Parent);
end if;
if Last = Null_Iir then
Set_Declaration_Chain
(Current_Declarative_Region_With_Signals.Decls_Parent, Sig);
else
while Get_Chain (Last) /= Null_Iir loop
Last := Get_Chain (Last);
end loop;
Set_Chain (Last, Sig);
end if;
Last := Sig;
end Add_Declaration_For_Implicit_Signal;
-- LRM 8 Sequential statements.
-- All statements may be labeled.
-- Such labels are implicitly declared at the beginning of the declarative
-- part of the innermost enclosing process statement of subprogram body.
procedure Sem_Sequential_Labels (First_Stmt : Iir)
is
Stmt: Iir;
Label: Name_Id;
begin
Stmt := First_Stmt;
while Stmt /= Null_Iir loop
Label := Get_Label (Stmt);
if Label /= Null_Identifier then
Sem_Scopes.Add_Name (Stmt);
Name_Visible (Stmt);
Xref_Decl (Stmt);
end if;
-- Some statements have sub-lists of statements.
case Get_Kind (Stmt) is
when Iir_Kind_For_Loop_Statement
| Iir_Kind_While_Loop_Statement =>
Sem_Sequential_Labels (Get_Sequential_Statement_Chain (Stmt));
when Iir_Kind_If_Statement =>
declare
Clause : Iir;
begin
Clause := Stmt;
while Clause /= Null_Iir loop
Sem_Sequential_Labels
(Get_Sequential_Statement_Chain (Clause));
Clause := Get_Else_Clause (Clause);
end loop;
end;
when Iir_Kind_Case_Statement =>
declare
El : Iir;
begin
El := Get_Case_Statement_Alternative_Chain (Stmt);
while El /= Null_Iir loop
Sem_Sequential_Labels (Get_Associated (El));
El := Get_Chain (El);
end loop;
end;
when others =>
null;
end case;
Stmt := Get_Chain (Stmt);
end loop;
end Sem_Sequential_Labels;
procedure Fill_Array_From_Aggregate_Associated
(Chain : Iir; Nbr : in out Natural; Arr : Iir_Array_Acc)
is
El : Iir;
Ass : Iir;
begin
El := Chain;
while El /= Null_Iir loop
Ass := Get_Associated (El);
if Get_Kind (Ass) = Iir_Kind_Aggregate then
Fill_Array_From_Aggregate_Associated
(Get_Association_Choices_Chain (Ass), Nbr, Arr);
else
if Arr /= null then
Arr (Nbr) := Ass;
end if;
Nbr := Nbr + 1;
end if;
El := Get_Chain (El);
end loop;
end Fill_Array_From_Aggregate_Associated;
-- Return TRUE iff there is no common elements designed by N1 and N2.
-- N1 and N2 are static names.
-- FIXME: The current implementation is completly wrong; should check from
-- prefix to suffix.
function Is_Disjoint (N1, N2: Iir) return Boolean
is
List1, List2 : Iir_List;
El1, El2 : Iir;
begin
if N1 = N2 then
return False;
end if;
if Get_Kind (N1) = Iir_Kind_Indexed_Name
and then Get_Kind (N2) = Iir_Kind_Indexed_Name
then
if Is_Disjoint (Get_Prefix (N1), Get_Prefix (N2)) then
return True;
end if;
-- Check indexes.
List1 := Get_Index_List (N1);
List2 := Get_Index_List (N2);
for I in Natural loop
El1 := Get_Nth_Element (List1, I);
El2 := Get_Nth_Element (List2, I);
exit when El1 = Null_Iir;
El1 := Eval_Expr (El1);
Replace_Nth_Element (List1, I, El1);
El2 := Eval_Expr (El2);
Replace_Nth_Element (List2, I, El2);
-- EL are of discrete type.
if Get_Value (El1) /= Get_Value (El2) then
return True;
end if;
end loop;
return False;
end if;
return True;
end Is_Disjoint;
procedure Check_Uniq_Aggregate_Associated
(Aggr : Iir_Aggregate; Nbr : Natural)
is
Index : Natural;
Arr : Iir_Array_Acc;
Chain : Iir;
V_I, V_J : Iir;
begin
Chain := Get_Association_Choices_Chain (Aggr);
-- Count number of associated values, and create the array.
-- Already done: use nbr.
-- Fill_Array_From_Aggregate_Associated (List, Nbr, null);
Arr := new Iir_Array (0 .. Nbr - 1);
-- Fill the array.
Index := 0;
Fill_Array_From_Aggregate_Associated (Chain, Index, Arr);
if Index /= Nbr then
-- Should be the same.
raise Internal_Error;
end if;
-- Check each element is uniq.
for I in Arr.all'Range loop
V_I := Name_To_Object (Arr (I));
if Get_Name_Staticness (V_I) = Locally then
for J in 0 .. I - 1 loop
V_J := Name_To_Object (Arr (J));
if Get_Name_Staticness (V_J) = Locally
and then not Is_Disjoint (V_I, V_J)
then
Error_Msg_Sem ("target is assigned more than once", Arr (I));
Error_Msg_Sem (" (previous assignment is here)", Arr (J));
Free (Arr);
return;
end if;
end loop;
end if;
end loop;
Free (Arr);
return;
end Check_Uniq_Aggregate_Associated;
-- Do checks for the target of an assignment.
procedure Check_Simple_Signal_Target
(Stmt : Iir; Target : Iir; Staticness : Iir_Staticness);
-- STMT is used to localize the error (if any).
procedure Check_Simple_Variable_Target
(Stmt : Iir; Target : Iir; Staticness : Iir_Staticness);
-- Semantic associed with signal mode.
-- See §4.3.3
type Boolean_Array_Of_Iir_Mode is array (Iir_Mode) of Boolean;
Iir_Mode_Readable : constant Boolean_Array_Of_Iir_Mode :=
(Iir_Unknown_Mode => False,
Iir_In_Mode => True,
Iir_Out_Mode => False,
Iir_Inout_Mode => True,
Iir_Buffer_Mode => True,
Iir_Linkage_Mode => False);
Iir_Mode_Writable : constant Boolean_Array_Of_Iir_Mode :=
(Iir_Unknown_Mode => False,
Iir_In_Mode => False,
Iir_Out_Mode => True,
Iir_Inout_Mode => True,
Iir_Buffer_Mode => True,
Iir_Linkage_Mode => False);
procedure Check_Aggregate_Target
(Stmt : Iir; Target : Iir; Nbr : in out Natural)
is
Choice : Iir;
Ass : Iir;
begin
Choice := Get_Association_Choices_Chain (Target);
while Choice /= Null_Iir loop
case Get_Kind (Choice) is
when Iir_Kind_Choice_By_Range =>
-- LRM93 8.4
-- It is an error if an element association in such an
-- aggregate contains an OTHERS choice or a choice that is
-- a discrete range.
Error_Msg_Sem ("discrete range choice not allowed for target",
Choice);
when Iir_Kind_Choice_By_Others =>
-- LRM93 8.4
-- It is an error if an element association in such an
-- aggregate contains an OTHERS choice or a choice that is
-- a discrete range.
Error_Msg_Sem ("others choice not allowed for target", Choice);
when Iir_Kind_Choice_By_Expression
| Iir_Kind_Choice_By_Name
| Iir_Kind_Choice_By_None =>
-- LRM93 9.4
-- Such a target may not only contain locally static signal
-- names [...]
Ass := Get_Associated (Choice);
if Get_Kind (Ass) = Iir_Kind_Aggregate then
Check_Aggregate_Target (Stmt, Ass, Nbr);
else
if Get_Kind (Stmt) = Iir_Kind_Variable_Assignment_Statement
then
Check_Simple_Variable_Target (Stmt, Ass, Locally);
else
Check_Simple_Signal_Target (Stmt, Ass, Locally);
end if;
Nbr := Nbr + 1;
end if;
when others =>
Error_Kind ("check_aggregate_target", Choice);
end case;
Choice := Get_Chain (Choice);
end loop;
end Check_Aggregate_Target;
procedure Check_Simple_Signal_Target
(Stmt : Iir; Target : Iir; Staticness : Iir_Staticness)
is
Target_Object : Iir;
Target_Prefix : Iir;
Guarded_Target : Tri_State_Type;
Targ_Obj_Kind : Iir_Kind;
begin
Target_Object := Name_To_Object (Target);
if Target_Object = Null_Iir then
Error_Msg_Sem ("target is not a signal name", Target);
return;
end if;
Target_Prefix := Get_Base_Name (Target_Object);
Targ_Obj_Kind := Get_Kind (Target_Prefix);
case Targ_Obj_Kind is
when Iir_Kind_Signal_Interface_Declaration =>
if not Iir_Mode_Writable (Get_Mode (Target_Prefix)) then
Error_Msg_Sem
(Disp_Node (Target_Prefix) & " can't be assigned", Target);
else
Sem_Add_Driver (Target_Object, Stmt);
end if;
when Iir_Kind_Signal_Declaration =>
Sem_Add_Driver (Target_Object, Stmt);
when Iir_Kind_Guard_Signal_Declaration =>
Error_Msg_Sem ("implicit GUARD signal cannot be assigned", Stmt);
return;
when others =>
Error_Msg_Sem ("target is not a signal", Stmt);
return;
end case;
if Get_Name_Staticness (Target_Object) < Staticness then
Error_Msg_Sem ("signal name must be static", Stmt);
end if;
-- LRM93 2.1.1.2
-- A formal signal parameter is a guarded signal if and only if
-- it is associated with an actual signal that is a guarded
-- signal.
-- GHDL: a formal signal interface of a subprogram has no static
-- kind. This is determined at run-time, according to the actual
-- associated with the formal.
-- GHDL: parent of target cannot be a function.
if Targ_Obj_Kind = Iir_Kind_Signal_Interface_Declaration
and then
Get_Kind (Get_Parent (Target_Prefix)) = Iir_Kind_Procedure_Declaration
then
Guarded_Target := Unknown;
else
if Get_Signal_Kind (Target_Prefix) /= Iir_No_Signal_Kind then
Guarded_Target := True;
else
Guarded_Target := False;
end if;
end if;
case Get_Guarded_Target_State (Stmt) is
when Unknown =>
Set_Guarded_Target_State (Stmt, Guarded_Target);
when True
| False =>
if Get_Guarded_Target_State (Stmt) /= Guarded_Target then
-- LRM93 9.5
-- It is an error if the target of a concurrent signal
-- assignment is neither a guarded target nor an
-- unguarded target.
Error_Msg_Sem ("guarded and unguarded target", Target);
end if;
end case;
end Check_Simple_Signal_Target;
procedure Check_Simple_Variable_Target
(Stmt : Iir; Target : Iir; Staticness : Iir_Staticness)
is
Target_Object : Iir;
Target_Prefix : Iir;
begin
Target_Object := Name_To_Object (Target);
if Target_Object = Null_Iir then
Error_Msg_Sem ("target is not a variable name", Stmt);
return;
end if;
Target_Prefix := Get_Base_Name (Target_Object);
case Get_Kind (Target_Prefix) is
when Iir_Kind_Variable_Interface_Declaration =>
if not Iir_Mode_Writable (Get_Mode (Target_Prefix)) then
Error_Msg_Sem (Disp_Node (Target_Prefix)
& " cannot be written (bad mode)", Target);
return;
end if;
when Iir_Kind_Variable_Declaration =>
null;
when Iir_Kind_Implicit_Dereference
| Iir_Kind_Dereference =>
-- LRM 3.3
-- An object designated by an access type is always an object of
-- class variable.
null;
when others =>
Error_Msg_Sem (Disp_Node (Target_Prefix)
& " is not a variable to be assigned", Stmt);
return;
end case;
if Get_Name_Staticness (Target_Object) < Staticness then
Error_Msg_Sem
("element of aggregate of variables must be a static name", Target);
end if;
end Check_Simple_Variable_Target;
procedure Check_Target (Stmt : Iir; Target : Iir)
is
Nbr : Natural;
begin
if Get_Kind (Target) = Iir_Kind_Aggregate then
Nbr := 0;
Check_Aggregate_Target (Stmt, Target, Nbr);
Check_Uniq_Aggregate_Associated (Target, Nbr);
else
if Get_Kind (Stmt) = Iir_Kind_Variable_Assignment_Statement then
Check_Simple_Variable_Target (Stmt, Target, None);
else
Check_Simple_Signal_Target (Stmt, Target, None);
end if;
end if;
end Check_Target;
-- Return FALSE in case of error.
function Sem_Signal_Assignment_Target_And_Option (Stmt: Iir; Sig_Type : Iir)
return Boolean
is
-- The target of the assignment.
Target: Iir;
-- The value that will be assigned.
Expr: Iir;
Ok : Boolean;
begin
Ok := True;
-- Find the signal.
Target := Get_Target (Stmt);
Target := Sem_Expression (Target, Sig_Type);
if Target /= Null_Iir then
Set_Target (Stmt, Target);
Check_Target (Stmt, Target);
Sem_Types.Set_Type_Has_Signal (Get_Type (Target));
else
Ok := False;
end if;
Expr := Get_Reject_Time_Expression (Stmt);
if Expr /= Null_Iir then
Expr := Sem_Expression (Expr, Time_Type_Definition);
if Expr /= Null_Iir then
Check_Read (Expr);
Set_Reject_Time_Expression (Stmt, Expr);
else
Ok := False;
end if;
end if;
return Ok;
end Sem_Signal_Assignment_Target_And_Option;
-- Semantize a waveform_list WAVEFORM_LIST that is assigned via statement
-- ASSIGN_STMT to a subelement or a slice of a signal SIGNAL_DECL.
procedure Sem_Waveform_Chain
(Assign_Stmt: Iir;
Waveform_Chain : Iir_Waveform_Element;
Waveform_Type : in out Iir)
is
pragma Unreferenced (Assign_Stmt);
Expr: Iir;
We: Iir_Waveform_Element;
Time, Last_Time : Iir_Int64;
begin
if Waveform_Chain = Null_Iir then
-- Unaffected.
return;
end if;
-- Start with -1 to allow after 0 ns.
Last_Time := -1;
We := Waveform_Chain;
while We /= Null_Iir loop
Expr := Get_We_Value (We);
if Get_Kind (Expr) = Iir_Kind_Null_Literal then
-- GHDL: allowed only if target is guarded; this is checked by
-- sem_check_waveform_list.
null;
else
if Get_Kind (Expr) = Iir_Kind_Aggregate
and then Waveform_Type = Null_Iir
then
Error_Msg_Sem
("type of waveform is unknown, use type qualifier", Expr);
else
Expr := Sem_Expression (Expr, Waveform_Type);
if Expr /= Null_Iir then
Check_Read (Expr);
Set_We_Value (We, Eval_Expr_If_Static (Expr));
if Waveform_Type = Null_Iir then
Waveform_Type := Get_Type (Expr);
end if;
end if;
end if;
end if;
if Get_Time (We) /= Null_Iir then
Expr := Sem_Expression (Get_Time (We), Time_Type_Definition);
if Expr /= Null_Iir then
Check_Read (Expr);
if Get_Expr_Staticness (Expr) = Locally
or else (Get_Kind (Expr) = Iir_Kind_Physical_Int_Literal
and then Flags.Flag_Time_64)
then
-- LRM 8.4
-- It is an error if the time expression in a waveform
-- element evaluates to a negative value.
--
-- LRM 8.4.1
-- It is an error if the sequence of new transactions is not
-- in ascending order with repect to time.
-- GHDL: this must be checked at run-time, but this is also
-- checked now for static expressions.
Expr := Eval_Static_Expr (Expr);
Time := Get_Value (Expr);
if Time < 0 then
Error_Msg_Sem
("waveform time expression must be >= 0", Expr);
elsif Time <= Last_Time then
Error_Msg_Sem
("time must be greather than previous transaction",
Expr);
else
Last_Time := Time;
end if;
end if;
Set_Time (We, Expr);
end if;
else
if We /= Waveform_Chain then
-- Time expression must be in ascending order.
Error_Msg_Sem ("time expression required here", We);
end if;
-- LRM93 12.6.4
-- It is an error if the execution of any postponed process causes
-- a delta cycle to occur immediatly after the current simulation
-- cycle.
-- GHDL: try to warn for such an error; note the context may be
-- a procedure body.
if Current_Concurrent_Statement /= Null_Iir then
case Get_Kind (Current_Concurrent_Statement) is
when Iir_Kind_Sensitized_Process_Statement
| Iir_Kind_Process_Statement
| Iir_Kind_Concurrent_Conditional_Signal_Assignment
| Iir_Kind_Concurrent_Selected_Signal_Assignment =>
if Get_Postponed_Flag (Current_Concurrent_Statement) then
Warning_Msg_Sem
("waveform may cause a delta cycle in a " &
"postponed process", We);
end if;
when others =>
-- Context is a subprogram.
null;
end case;
end if;
Last_Time := 0;
end if;
We := Get_Chain (We);
end loop;
return;
end Sem_Waveform_Chain;
-- Semantize a waveform chain WAVEFORM_CHAIN that is assigned via statement
-- ASSIGN_STMT to a subelement or a slice of a signal SIGNAL_DECL.
procedure Sem_Check_Waveform_Chain
(Assign_Stmt: Iir; Waveform_Chain: Iir_Waveform_Element)
is
We: Iir_Waveform_Element;
Expr : Iir;
Targ_Type : Iir;
begin
if Waveform_Chain = Null_Iir then
return;
end if;
Targ_Type := Get_Type (Get_Target (Assign_Stmt));
We := Waveform_Chain;
while We /= Null_Iir loop
Expr := Get_We_Value (We);
if Get_Kind (Expr) = Iir_Kind_Null_Literal then
-- This is a null waveform element.
-- LRM93 8.4.1
-- It is an error if the target of a signal assignment statement
-- containing a null waveform is not a guarded signal or an
-- aggregate of guarded signals.
if Get_Guarded_Target_State (Assign_Stmt) = False then
Error_Msg_Sem
("null transactions can be assigned only to guarded signals",
Assign_Stmt);
end if;
else
if not Check_Implicit_Conversion (Targ_Type, Expr) then
Error_Msg_Sem
("length of value does not match length of target", We);
end if;
end if;
We := Get_Chain (We);
end loop;
end Sem_Check_Waveform_Chain;
procedure Sem_Signal_Assignment (Stmt: Iir)
is
Target : Iir;
Waveform_Type : Iir;
begin
Target := Get_Target (Stmt);
if Get_Kind (Target) /= Iir_Kind_Aggregate then
if not Sem_Signal_Assignment_Target_And_Option (Stmt, Null_Iir) then
return;
end if;
-- check the expression.
Waveform_Type := Get_Type (Get_Target (Stmt));
if Waveform_Type /= Null_Iir then
Sem_Waveform_Chain
(Stmt, Get_Waveform_Chain (Stmt), Waveform_Type);
Sem_Check_Waveform_Chain (Stmt, Get_Waveform_Chain (Stmt));
end if;
else
Waveform_Type := Null_Iir;
Sem_Waveform_Chain (Stmt, Get_Waveform_Chain (Stmt), Waveform_Type);
if Waveform_Type = Null_Iir
or else
not Sem_Signal_Assignment_Target_And_Option (Stmt, Waveform_Type)
then
return;
end if;
Sem_Check_Waveform_Chain (Stmt, Get_Waveform_Chain (Stmt));
end if;
end Sem_Signal_Assignment;
procedure Sem_Variable_Assignment (Stmt: Iir) is
Target: Iir;
Expr: Iir;
Target_Type : Iir;
begin
-- Find the variable.
Target := Get_Target (Stmt);
Expr := Get_Expression (Stmt);
if Get_Kind (Target) = Iir_Kind_Aggregate then
if Get_Kind (Expr) = Iir_Kind_Aggregate then
Error_Msg_Sem ("can't determine type, use type qualifier", Expr);
return;
end if;
Expr := Sem_Expression (Get_Expression (Stmt), Null_Iir);
if Expr = Null_Iir then
return;
end if;
Check_Read (Expr);
Set_Expression (Stmt, Expr);
Target_Type := Get_Type (Expr);
else
Target_Type := Null_Iir;
end if;
Target := Sem_Expression (Target, Target_Type);
if Target = Null_Iir then
return;
end if;
Set_Target (Stmt, Target);
Check_Target (Stmt, Target);
if Get_Kind (Target) /= Iir_Kind_Aggregate then
Expr := Sem_Expression (Expr, Get_Type (Target));
if Expr /= Null_Iir then
Check_Read (Expr);
Expr := Eval_Expr_If_Static (Expr);
Set_Expression (Stmt, Expr);
end if;
end if;
if not Check_Implicit_Conversion (Get_Type (Target), Expr) then
Error_Msg_Sem
("expression length does not match target length", Stmt);
end if;
end Sem_Variable_Assignment;
procedure Sem_Return_Statement (Stmt: Iir_Return_Statement) is
Expr: Iir;
begin
if Current_Subprogram = Null_Iir then
Error_Msg_Sem ("return statement not in a subprogram body", Stmt);
return;
end if;
Expr := Get_Expression (Stmt);
case Get_Kind (Current_Subprogram) is
when Iir_Kind_Procedure_Declaration =>
if Expr /= Null_Iir then
Error_Msg_Sem
("return in a procedure can't have an expression", Stmt);
end if;
return;
when Iir_Kind_Function_Declaration =>
if Expr = Null_Iir then
Error_Msg_Sem
("return in a function must have an expression", Stmt);
return;
end if;
when Iir_Kinds_Process_Statement =>
Error_Msg_Sem ("return statement not allowed in a process", Stmt);
return;
when others =>
Error_Kind ("sem_return_statement", Stmt);
end case;
Set_Type (Stmt, Get_Return_Type (Current_Subprogram));
Expr := Sem_Expression (Expr, Get_Return_Type (Current_Subprogram));
if Expr /= Null_Iir then
Check_Read (Expr);
Set_Expression (Stmt, Eval_Expr_If_Static (Expr));
end if;
end Sem_Return_Statement;
-- Sem for concurrent and sequential assertion statements.
procedure Sem_Report_Statement (Stmt : Iir)
is
Expr : Iir;
begin
Expr := Get_Report_Expression (Stmt);
if Expr /= Null_Iir then
Expr := Sem_Expression (Expr, String_Type_Definition);
Check_Read (Expr);
Set_Report_Expression (Stmt, Expr);
end if;
Expr := Get_Severity_Expression (Stmt);
if Expr /= Null_Iir then
Expr := Sem_Expression (Expr, Severity_Level_Type_Definition);
Check_Read (Expr);
Set_Severity_Expression (Stmt, Expr);
end if;
end Sem_Report_Statement;
procedure Sem_Assertion_Statement (Stmt: Iir)
is
Expr : Iir;
begin
Expr := Get_Assertion_Condition (Stmt);
Expr := Sem_Expression (Expr, Boolean_Type_Definition);
Check_Read (Expr);
Expr := Eval_Expr_If_Static (Expr);
Set_Assertion_Condition (Stmt, Expr);
Sem_Report_Statement (Stmt);
end Sem_Assertion_Statement;
-- Semantize a list of case choice LIST, and check for correct CHOICE type.
procedure Sem_Case_Choices
(Choice : Iir; Chain : in out Iir; Loc : Location_Type)
is
-- Check restrictions on the expression of a One-Dimensional Character
-- Array Type (ODCAT) given by LRM 8.8
-- Return FALSE in case of violation.
function Check_Odcat_Expression (Expr : Iir) return Boolean
is
Expr_Type : Iir := Get_Type (Expr);
begin
-- LRM 8.8 Case Statement
-- If the expression is of a one-dimensional character array type,
-- then the expression must be one of the following:
case Get_Kind (Expr) is
when Iir_Kinds_Object_Declaration
| Iir_Kind_Selected_Element =>
-- FIXME: complete the list.
-- * the name of an object whose subtype is locally static.
if Get_Type_Staticness (Expr_Type) /= Locally then
Error_Msg_Sem ("object subtype is not locally static",
Choice);
return False;
end if;
when Iir_Kind_Indexed_Name =>
-- LRM93
-- * an indexed name whose prefix is one of the members of
-- this list and whose indexing expressions are locally
-- static expression.
if Flags.Vhdl_Std = Vhdl_87 then
Error_Msg_Sem ("indexed name not allowed here in vhdl87",
Expr);
return False;
end if;
if not Check_Odcat_Expression (Get_Prefix (Expr)) then
return False;
end if;
-- GHDL: I don't understand why the indexsing expressions
-- must be locally static. So I don't check this in 93c.
if Flags.Vhdl_Std /= Vhdl_93c
and then
Get_Expr_Staticness (Get_First_Element
(Get_Index_List (Expr))) /= Locally
then
Error_Msg_Sem ("indexing expression must be locally static",
Expr);
return False;
end if;
when Iir_Kind_Slice_Name =>
-- LRM93
-- * a slice name whose prefix is one of the members of this
-- list and whose discrete range is a locally static
-- discrete range.
-- LRM87/INT1991 IR96
-- then the expression must be either a slice name whose
-- discrete range is locally static, or ..
if False and Flags.Vhdl_Std = Vhdl_87 then
Error_Msg_Sem
("slice not allowed as case expression in vhdl87", Expr);
return False;
end if;
if not Check_Odcat_Expression (Get_Prefix (Expr)) then
return False;
end if;
if Get_Type_Staticness (Expr_Type) /= Locally then
Error_Msg_Sem ("slice discrete range must be locally static",
Expr);
return False;
end if;
when Iir_Kind_Function_Call =>
-- LRM93
-- * a function call whose return type mark denotes a
-- locally static subtype.
if Flags.Vhdl_Std = Vhdl_87 then
Error_Msg_Sem ("function call not allowed here in vhdl87",
Expr);
return False;
end if;
if Get_Type_Staticness (Expr_Type) /= Locally then
Error_Msg_Sem ("function call type is not locally static",
Expr);
end if;
when Iir_Kind_Qualified_Expression
| Iir_Kind_Type_Conversion =>
-- * a qualified expression or type conversion whose type mark
-- denotes a locally static subtype.
if Get_Type_Staticness (Expr_Type) /= Locally then
Error_Msg_Sem ("type mark is not a locally static subtype",
Expr);
return False;
end if;
when Iir_Kind_Simple_Name
| Iir_Kind_Selected_Name =>
return Check_Odcat_Expression (Get_Named_Entity (Expr));
when others =>
Error_Msg_Sem ("bad form of case expression (refer to LRM 8.8)",
Choice);
return False;
end case;
return True;
end Check_Odcat_Expression;
Choice_Type : Iir;
Low, High : Iir;
El_Type : Iir;
begin
-- LRM 8.8 Case Statement
-- The expression must be of a discrete type, or of a one-dimensional
-- array type whose element base type is a character type.
Choice_Type := Get_Type (Choice);
case Get_Kind (Choice_Type) is
when Iir_Kinds_Discrete_Type_Definition =>
Sem_Choices_Range (Chain, Choice_Type, False, Loc, Low, High);
when Iir_Kind_Array_Subtype_Definition
| Iir_Kind_Array_Type_Definition
| Iir_Kind_Unconstrained_Array_Subtype_Definition =>
if not Is_Unidim_Array_Type (Choice_Type) then
Error_Msg_Sem
("expression must be of a one-dimensional array type",
Choice);
return;
end if;
El_Type := Get_Base_Type (Get_Element_Subtype (Choice_Type));
if Get_Kind (El_Type) /= Iir_Kind_Enumeration_Type_Definition then
-- FIXME: check character.
Error_Msg_Sem
("element type of the expression must be a character type",
Choice);
return;
end if;
if not Check_Odcat_Expression (Choice) then
return;
end if;
Sem_String_Choices_Range (Chain, Choice);
when others =>
Error_Msg_Sem ("type of expression must be discrete", Choice);
end case;
end Sem_Case_Choices;
procedure Sem_Case_Statement (Stmt: Iir_Case_Statement)
is
Expr: Iir;
Chain : Iir;
El: Iir;
Loc : Location_Type;
begin
Expr := Get_Expression (Stmt);
Loc := Get_Location (Expr);
-- FIXME: overload.
Expr := Sem_Expression (Expr, Null_Iir);
if Expr = Null_Iir then
return;
end if;
Check_Read (Expr);
Set_Expression (Stmt, Expr);
Chain := Get_Case_Statement_Alternative_Chain (Stmt);
Sem_Case_Choices (Expr, Chain, Get_Location (Stmt));
Set_Case_Statement_Alternative_Chain (Stmt, Chain);
-- Sem on associated.
El := Chain;
while El /= Null_Iir loop
Sem_Sequential_Statements_Internal (Get_Associated (El));
El := Get_Chain (El);
end loop;
end Sem_Case_Statement;
-- Sem the sensitivity list LIST.
procedure Sem_Sensitivity_List (List: Iir_Designator_List)
is
El: Iir;
Res: Iir;
Prefix : Iir;
begin
for I in Natural loop
-- El is an iir_identifier.
El := Get_Nth_Element (List, I);
exit when El = Null_Iir;
Sem_Name (El, False);
Res := Get_Named_Entity (El);
if Res = Error_Mark then
null;
elsif Is_Overload_List (Res) or else not Is_Object_Name (Res) then
Error_Msg_Sem ("a sensitivity element must be a signal name", El);
else
Prefix := Get_Base_Name (Res);
case Get_Kind (Prefix) is
when Iir_Kind_Signal_Declaration
| Iir_Kind_Guard_Signal_Declaration
| Iir_Kinds_Signal_Attribute =>
Xref_Name (El);
when Iir_Kind_Signal_Interface_Declaration =>
if not Iir_Mode_Readable (Get_Mode (Prefix)) then
Error_Msg_Sem
(Disp_Node (Res) & " of mode out"
& " can't be in a sensivity list", El);
end if;
Xref_Name (El);
when others =>
Error_Msg_Sem (Disp_Node (Res)
& " is neither a signal nor a port", El);
end case;
-- LRM 9.2
-- Only static signal names (see section 6.1) for which reading
-- is permitted may appear in the sensitivity list of a process
-- statement.
-- LRM 8.1 Wait statement
-- Each signal name in the sensitivity list must be a static
-- signal name, and each name must denote a signal for which
-- reading is permitted.
if Get_Name_Staticness (Res) < Globally then
Error_Msg_Sem ("sensitivity element " & Disp_Node (El)
& " must be a static name", El);
end if;
Replace_Nth_Element (List, I, Res);
end if;
end loop;
end Sem_Sensitivity_List;
procedure Sem_Wait_Statement (Stmt: Iir_Wait_Statement)
is
Expr: Iir;
Sensitivity_List : Iir_List;
begin
-- Check validity.
case Get_Kind (Current_Subprogram) is
when Iir_Kind_Process_Statement =>
null;
when Iir_Kinds_Function_Declaration =>
-- LRM93 §8.2
-- It is an error if a wait statement appears in a function
-- subprogram [...]
Error_Msg_Sem
("wait statement not allowed in a function subprogram", Stmt);
return;
when Iir_Kinds_Procedure_Declaration =>
-- LRM93 §8.2
-- [It is an error ...] or in a procedure that has a parent that
-- is a function subprogram.
-- LRM93 §8.2
-- [...] or in a procedure that has a parent that is such a
-- process statement.
-- GHDL: this is checked at the end of analysis or during
-- elaboration.
Set_Wait_State (Current_Subprogram, True);
when Iir_Kind_Sensitized_Process_Statement =>
-- LRM93 §8.2
-- Furthermore, it is an error if a wait statement appears in an
-- explicit process statement that includes a sensitivity list,
-- [...]
Error_Msg_Sem
("wait statement not allowed in a sensitized process", Stmt);
return;
when others =>
raise Internal_Error;
end case;
Sensitivity_List := Get_Sensitivity_List (Stmt);
if Sensitivity_List /= Null_Iir_List then
Sem_Sensitivity_List (Sensitivity_List);
end if;
Expr := Get_Condition_Clause (Stmt);
if Expr /= Null_Iir then
Expr := Sem_Expression (Expr, Boolean_Type_Definition);
Check_Read (Expr);
Set_Condition_Clause (Stmt, Expr);
end if;
Expr := Get_Timeout_Clause (Stmt);
if Expr /= Null_Iir then
Expr := Sem_Expression (Expr, Time_Type_Definition);
if Expr /= Null_Iir then
Check_Read (Expr);
Expr := Eval_Expr_If_Static (Expr);
Set_Timeout_Clause (Stmt, Expr);
if Get_Expr_Staticness (Expr) = Locally
and then Get_Value (Expr) < 0
then
Error_Msg_Sem ("timeout value must be positive", Stmt);
end if;
end if;
end if;
end Sem_Wait_Statement;
procedure Sem_Exit_Next_Statement (Stmt : Iir)
is
Cond: Iir;
Label: Iir;
P : Iir;
begin
Cond := Get_Condition (Stmt);
if Cond /= Null_Iir then
Cond := Sem_Expression (Cond, Boolean_Type_Definition);
Check_Read (Cond);
Set_Condition (Stmt, Cond);
end if;
Label := Get_Loop (Stmt);
if Label /= Null_Iir then
Label := Find_Declaration (Label, Decl_Label);
end if;
if Label /= Null_Iir then
case Get_Kind (Label) is
when Iir_Kind_While_Loop_Statement
| Iir_Kind_For_Loop_Statement =>
Set_Loop (Stmt, Label);
when others =>
Error_Msg_Sem ("loop label expected", Stmt);
Label := Null_Iir;
end case;
end if;
-- Check the current statement is inside the labeled loop.
P := Stmt;
loop
P := Get_Parent (P);
case Get_Kind (P) is
when Iir_Kind_While_Loop_Statement
| Iir_Kind_For_Loop_Statement =>
if Label = Null_Iir or else Label = P then
exit;
end if;
when Iir_Kind_If_Statement
| Iir_Kind_Elsif
| Iir_Kind_Case_Statement =>
null;
when others =>
-- FIXME: should emit a message for label mismatch.
Error_Msg_Sem ("exit/next must be inside a loop", Stmt);
exit;
end case;
end loop;
end Sem_Exit_Next_Statement;
-- Process is the scope, this is also the process for which drivers can
-- be created.
procedure Sem_Sequential_Statements_Internal (First_Stmt : Iir)
is
Stmt: Iir;
begin
Stmt := First_Stmt;
while Stmt /= Null_Iir loop
case Get_Kind (Stmt) is
when Iir_Kind_Null_Statement =>
null;
when Iir_Kind_If_Statement =>
declare
Clause: Iir := Stmt;
Cond: Iir;
begin
while Clause /= Null_Iir loop
Cond := Get_Condition (Clause);
if Cond /= Null_Iir then
Cond := Sem_Expression (Cond, Boolean_Type_Definition);
Check_Read (Cond);
Set_Condition (Clause, Cond);
end if;
Sem_Sequential_Statements_Internal
(Get_Sequential_Statement_Chain (Clause));
Clause := Get_Else_Clause (Clause);
end loop;
end;
when Iir_Kind_For_Loop_Statement =>
declare
Iterator: Iir;
begin
-- LRM 10.1 Declarative region
-- 9. A loop statement.
Open_Declarative_Region;
Set_Is_Within_Flag (Stmt, True);
Iterator := Get_Iterator_Scheme (Stmt);
Sem_Scopes.Add_Name (Iterator);
Sem_Iterator (Iterator, None);
Set_Visible_Flag (Iterator, True);
Sem_Sequential_Statements_Internal
(Get_Sequential_Statement_Chain (Stmt));
Set_Is_Within_Flag (Stmt, False);
Close_Declarative_Region;
end;
when Iir_Kind_While_Loop_Statement =>
declare
Cond: Iir;
begin
Cond := Get_Condition (Stmt);
if Cond /= Null_Iir then
Cond := Sem_Expression (Cond, Boolean_Type_Definition);
Check_Read (Cond);
Set_Condition (Stmt, Cond);
end if;
Sem_Sequential_Statements_Internal
(Get_Sequential_Statement_Chain (Stmt));
end;
when Iir_Kind_Signal_Assignment_Statement =>
Sem_Signal_Assignment (Stmt);
if Current_Concurrent_Statement /= Null_Iir and then
Get_Kind (Current_Concurrent_Statement)
in Iir_Kinds_Process_Statement
and then Get_Passive_Flag (Current_Concurrent_Statement)
then
Error_Msg_Sem
("signal statement forbidden in passive process", Stmt);
end if;
when Iir_Kind_Variable_Assignment_Statement =>
Sem_Variable_Assignment (Stmt);
when Iir_Kind_Return_Statement =>
Sem_Return_Statement (Stmt);
when Iir_Kind_Assertion_Statement =>
Sem_Assertion_Statement (Stmt);
when Iir_Kind_Report_Statement =>
Sem_Report_Statement (Stmt);
when Iir_Kind_Case_Statement =>
Sem_Case_Statement (Stmt);
when Iir_Kind_Wait_Statement =>
Sem_Wait_Statement (Stmt);
when Iir_Kind_Procedure_Call_Statement =>
Sem_Procedure_Call (Get_Procedure_Call (Stmt), Stmt);
when Iir_Kind_Next_Statement
| Iir_Kind_Exit_Statement =>
Sem_Exit_Next_Statement (Stmt);
when others =>
Error_Kind ("sem_sequential_statements_Internal", Stmt);
end case;
Stmt := Get_Chain (Stmt);
end loop;
end Sem_Sequential_Statements_Internal;
procedure Sem_Sequential_Statements (Decl : Iir; Body_Parent : Iir)
is
Outer_Subprogram: Iir;
begin
Outer_Subprogram := Current_Subprogram;
Current_Subprogram := Decl;
-- Sem declarations
Sem_Sequential_Labels (Get_Sequential_Statement_Chain (Body_Parent));
Sem_Declaration_Chain (Body_Parent, False);
Sem_Specification_Chain (Body_Parent, Null_Iir);
-- Sem statements.
Sem_Sequential_Statements_Internal
(Get_Sequential_Statement_Chain (Body_Parent));
Check_Full_Declaration (Body_Parent, Body_Parent);
Current_Subprogram := Outer_Subprogram;
end Sem_Sequential_Statements;
-- Sem the instantiated unit of STMT and return the node constaining
-- ports and generics (either a entity_declaration or a component
-- declaration).
function Sem_Instantiated_Unit
(Stmt : Iir_Component_Instantiation_Statement)
return Iir
is
Inst : Iir;
begin
Inst := Get_Instantiated_Unit (Stmt);
if Get_Kind (Inst) = Iir_Kind_Component_Declaration then
-- Already semantized before, while trying to separate
-- concurrent procedure calls from instantiation stmts.
return Inst;
elsif Get_Kind (Inst) in Iir_Kinds_Name then
-- The component may be an entity or a configuration.
Inst := Find_Declaration (Inst, Decl_Component);
if Inst = Null_Iir then
return Null_Iir;
end if;
Set_Instantiated_Unit (Stmt, Inst);
return Inst;
else
return Sem_Entity_Aspect (Inst);
end if;
end Sem_Instantiated_Unit;
procedure Sem_Component_Instantiation_Statement
(Stmt: Iir_Component_Instantiation_Statement; Is_Passive : Boolean)
is
Decl : Iir;
Entity_Unit : Iir_Design_Unit;
Bind : Iir_Binding_Indication;
begin
-- FIXME: move this check in parse ?
if Is_Passive then
Error_Msg_Sem ("component instantiation forbidden in entity", Stmt);
end if;
-- Check for label.
-- This cannot be moved in parse since a procedure_call may be revert
-- into a component instantiation.
if Get_Label (Stmt) = Null_Identifier then
Error_Msg_Sem ("component instantiation requires a label", Stmt);
end if;
-- Look for the component.
Decl := Sem_Instantiated_Unit (Stmt);
if Decl = Null_Iir then
return;
end if;
-- The association
Sem_Generic_Port_Association_Chain (Decl, Stmt);
-- FIXME: add sources for signals, in order to detect multiple sources
-- to unresolved signals.
-- What happen if the component is not bound ?
-- Create a default binding indication if necessary.
if Get_Component_Configuration (Stmt) = Null_Iir
and then Get_Kind (Decl) = Iir_Kind_Component_Declaration
then
Entity_Unit := Get_Visible_Entity_Declaration (Decl);
if Entity_Unit = Null_Iir then
if Flags.Warn_Default_Binding
and then not Flags.Flag_Elaborate
then
Warning_Msg_Sem ("no default binding for instantiation of "
& Disp_Node (Decl), Stmt);
Explain_No_Visible_Entity (Decl);
end if;
elsif Flags.Flag_Elaborate
and then (Flags.Flag_Elaborate_With_Outdated
or else Get_Date (Entity_Unit) in Date_Valid)
then
Bind := Sem_Create_Default_Binding_Indication
(Decl, Entity_Unit, Stmt, False);
Set_Default_Binding_Indication (Stmt, Bind);
end if;
end if;
end Sem_Component_Instantiation_Statement;
-- Note: a statement such as
-- label1: name;
-- can be parsed as a procedure call statement or as a
-- component instantiation statement.
-- Check now and revert in case of error.
function Sem_Concurrent_Procedure_Call_Statement
(Stmt : Iir; Is_Passive : Boolean) return Iir
is
Call : Iir_Procedure_Call;
Decl : Iir;
Label : Name_Id;
N_Stmt : Iir_Component_Instantiation_Statement;
Imp : Iir;
begin
Call := Get_Procedure_Call (Stmt);
if Get_Parameter_Association_Chain (Call) = Null_Iir then
Imp := Get_Implementation (Call);
Sem_Name (Imp, False);
Decl := Get_Named_Entity (Imp);
if Get_Kind (Decl) = Iir_Kind_Component_Declaration then
N_Stmt := Create_Iir (Iir_Kind_Component_Instantiation_Statement);
Label := Get_Label (Stmt);
Set_Label (N_Stmt, Label);
Set_Parent (N_Stmt, Get_Parent (Stmt));
Set_Instantiated_Unit (N_Stmt, Decl);
Location_Copy (N_Stmt, Stmt);
Xref_Name (Imp);
if Label /= Null_Identifier then
-- A component instantiation statement must have
-- a label, this condition is checked during the
-- sem of the statement.
Sem_Scopes.Replace_Name (Label, Stmt, N_Stmt);
end if;
Free_Iir (Stmt);
Free_Iir (Call);
Sem_Component_Instantiation_Statement (N_Stmt, Is_Passive);
return N_Stmt;
end if;
end if;
Sem_Procedure_Call (Call, Stmt);
if Is_Passive then
Imp := Get_Implementation (Call);
if Get_Kind (Imp) = Iir_Kind_Procedure_Declaration then
Decl := Get_Interface_Declaration_Chain (Imp);
while Decl /= Null_Iir loop
if Get_Mode (Decl) in Iir_Out_Modes then
Error_Msg_Sem (Disp_Node (Imp) & " is not passive", Stmt);
exit;
end if;
Decl := Get_Chain (Decl);
end loop;
end if;
end if;
return Stmt;
end Sem_Concurrent_Procedure_Call_Statement;
procedure Sem_Block_Statement (Stmt: Iir_Block_Statement)
is
Expr: Iir;
Guard : Iir_Guard_Signal_Declaration;
Header : Iir_Block_Header;
Generic_Chain : Iir;
Port_Chain : Iir;
begin
-- LRM 10.1 Declarative region.
-- 7. A block statement.
Open_Declarative_Region;
Set_Is_Within_Flag (Stmt, True);
Header := Get_Block_Header (Stmt);
if Header /= Null_Iir then
Generic_Chain := Get_Generic_Chain (Header);
Sem_Interface_Chain (Generic_Chain, Interface_Generic);
Port_Chain := Get_Port_Chain (Header);
Sem_Interface_Chain (Port_Chain, Interface_Port);
-- LRM 9.1
-- Such actuals are evaluated in the context of the enclosing
-- declarative region.
-- GHDL: close the declarative region...
Set_Is_Within_Flag (Stmt, False);
Close_Declarative_Region;
Sem_Generic_Port_Association_Chain (Header, Header);
-- ... and reopen-it.
Open_Declarative_Region;
Set_Is_Within_Flag (Stmt, True);
Add_Declarations_From_Interface_Chain (Generic_Chain);
Add_Declarations_From_Interface_Chain (Port_Chain);
end if;
-- LRM93 9.1
-- If a guard expression appears after the reserved word BLOCK, then a
-- signal with the simple name GUARD of predefined type BOOLEAN is
-- implicitly declared at the beginning of the declarative part of the
-- block, and the guard expression defined the value of that signal at
-- any given time.
Guard := Get_Guard_Decl (Stmt);
if Guard /= Null_Iir then
-- LRM93 9.1
-- The type of the guard expression must be type BOOLEAN.
-- GHDL: guard expression must be semantized before creating the
-- implicit GUARD signal, since the expression may reference GUARD.
Set_Expr_Staticness (Guard, None);
Set_Name_Staticness (Guard, Locally);
Expr := Get_Guard_Expression (Guard);
Expr := Sem_Expression (Expr, Boolean_Type_Definition);
if Expr /= Null_Iir then
Check_Read (Expr);
Set_Guard_Expression (Guard, Expr);
end if;
-- FIXME: should extract sensivity now and set the has_active flag
-- on signals, since the guard expression is evaluated when one of
-- its signal is active. However, how can a bug be introduced by
-- evaluating only when signals have events ?
-- the guard expression is an implicit definition of a signal named
-- GUARD. Create this definition. This is necessary for the type.
Set_Base_Name (Guard, Guard);
Set_Identifier (Guard, Std_Names.Name_Guard);
Set_Type (Guard, Boolean_Type_Definition);
Set_Block_Statement (Guard, Stmt);
Sem_Scopes.Add_Name (Guard);
Set_Visible_Flag (Guard, True);
end if;
Sem_Block (Stmt, True);
Set_Is_Within_Flag (Stmt, False);
Close_Declarative_Region;
end Sem_Block_Statement;
procedure Sem_Generate_Statement (Stmt : Iir_Generate_Statement)
is
Scheme : Iir;
begin
-- LRM93 10.1 Declarative region.
-- 12. A generate statement.
Open_Declarative_Region;
Scheme := Get_Generation_Scheme (Stmt);
if Get_Kind (Scheme) = Iir_Kind_Iterator_Declaration then
Sem_Scopes.Add_Name (Scheme);
-- LRM93 §7.4.2 (Globally Static Primaries)
-- 4. a generate parameter;
Sem_Iterator (Scheme, Globally);
Set_Visible_Flag (Scheme, True);
-- LRM93 §9.7
-- The discrete range in a generation scheme of the first form must
-- be a static discrete range;
if Get_Type (Scheme) /= Null_Iir
and then Get_Type_Staticness (Get_Type (Scheme)) < Globally
then
Error_Msg_Sem ("range must be a static discrete range", Stmt);
end if;
else
Scheme := Sem_Expression (Scheme, Boolean_Type_Definition);
Check_Read (Scheme);
-- LRM93 §9.7
-- the condition in a generation scheme of the second form must be
-- a static expression.
if Scheme /= Null_Iir
and then Get_Expr_Staticness (Scheme) < Globally
then
Error_Msg_Sem ("condition must be a static expression", Stmt);
else
Set_Generation_Scheme (Stmt, Scheme);
end if;
end if;
Sem_Block (Stmt, True); -- Flags.Vhdl_Std /= Vhdl_87);
Close_Declarative_Region;
end Sem_Generate_Statement;
procedure Sem_Process_Statement (Proc: Iir) is
begin
Set_Is_Within_Flag (Proc, True);
-- LRM 10.1
-- 8. A process statement
Open_Declarative_Region;
-- Sem declarations
Sem_Sequential_Statements (Proc, Proc);
Close_Declarative_Region;
Set_Is_Within_Flag (Proc, False);
if Get_Kind (Proc) = Iir_Kind_Sensitized_Process_Statement
and then Get_Callees_List (Proc) /= Null_Iir_List
then
Sem.Add_Analysis_Checks_List (Proc);
end if;
end Sem_Process_Statement;
procedure Sem_Sensitized_Process_Statement
(Proc: Iir_Sensitized_Process_Statement) is
begin
Sem_Sensitivity_List (Get_Sensitivity_List (Proc));
Sem_Process_Statement (Proc);
end Sem_Sensitized_Process_Statement;
procedure Sem_Guard (Stmt: Iir)
is
Guard: Iir;
Guard_Interpretation : Name_Interpretation_Type;
begin
Guard := Get_Guard (Stmt);
if Guard = Null_Iir then
-- This assignment is not guarded.
-- LRM93 9.5
-- It is an error if a concurrent signal assignment is not a guarded
-- assignment, and the target of the concurrent signal assignment
-- is a guarded target.
if Get_Guarded_Target_State (Stmt) = True then
Error_Msg_Sem
("not a guarded assignment for a guarded target", Stmt);
end if;
return;
end if;
if Guard /= Stmt then
-- if set, guard must be equal to stmt here.
raise Internal_Error;
end if;
Guard_Interpretation := Get_Interpretation (Std_Names.Name_Guard);
if not Valid_Interpretation (Guard_Interpretation) then
Error_Msg_Sem ("no guard signals for this guarded assignment", Stmt);
return;
end if;
Guard := Get_Declaration (Guard_Interpretation);
-- LRM93 9.5:
-- The signal GUARD [...] an explicitly declared signal of type
-- BOOLEAN that is visible at the point of the concurrent signal
-- assignment statement
-- FIXME.
case Get_Kind (Guard) is
when Iir_Kind_Signal_Declaration
| Iir_Kind_Signal_Interface_Declaration
| Iir_Kind_Guard_Signal_Declaration =>
null;
when others =>
Error_Msg_Sem ("visible GUARD object is not a signal", Stmt);
Error_Msg_Sem ("GUARD object is " & Disp_Node (Guard), Stmt);
return;
end case;
if Get_Type (Guard) /= Boolean_Type_Definition then
Error_Msg_Sem ("GUARD is not of boolean type", Guard);
end if;
Set_Guard (Stmt, Guard);
end Sem_Guard;
procedure Sem_Concurrent_Conditional_Signal_Assignment
(Stmt: Iir_Concurrent_Conditional_Signal_Assignment)
is
Cond_Wf : Iir_Conditional_Waveform;
Expr : Iir;
Wf_Chain : Iir_Waveform_Element;
Target_Type : Iir;
Target : Iir;
begin
Target := Get_Target (Stmt);
if Get_Kind (Target) /= Iir_Kind_Aggregate then
if not Sem_Signal_Assignment_Target_And_Option (Stmt, Null_Iir) then
return;
end if;
Target := Get_Target (Stmt);
Target_Type := Get_Type (Target);
else
Target_Type := Null_Iir;
end if;
Cond_Wf := Get_Conditional_Waveform_Chain (Stmt);
while Cond_Wf /= Null_Iir loop
Wf_Chain := Get_Waveform_Chain (Cond_Wf);
Sem_Waveform_Chain (Stmt, Wf_Chain, Target_Type);
Sem_Check_Waveform_Chain (Stmt, Wf_Chain);
Expr := Get_Condition (Cond_Wf);
if Expr /= Null_Iir then
Expr := Sem_Expression (Expr, Boolean_Type_Definition);
if Expr /= Null_Iir then
Check_Read (Expr);
Set_Condition (Cond_Wf, Expr);
end if;
end if;
Cond_Wf := Get_Chain (Cond_Wf);
end loop;
Sem_Guard (Stmt);
if Get_Kind (Target) = Iir_Kind_Aggregate then
if not Sem_Signal_Assignment_Target_And_Option (Stmt, Target_Type)
then
return;
end if;
end if;
end Sem_Concurrent_Conditional_Signal_Assignment;
procedure Sem_Concurrent_Selected_Signal_Assignment (Stmt: Iir)
is
Expr: Iir;
Chain : Iir;
El: Iir;
Waveform_Type : Iir;
Target : Iir;
Assoc_El : Iir;
begin
Target := Get_Target (Stmt);
Chain := Get_Selected_Waveform_Chain (Stmt);
Waveform_Type := Null_Iir;
if Get_Kind (Target) = Iir_Kind_Aggregate then
-- LRM 9.5 Concurrent Signal Assgnment Statements.
-- The process statement equivalent to a concurrent signal assignment
-- statement [...] is constructed as follows: [...]
--
-- LRM 9.5.2 Selected Signa Assignment
-- The characteristics of the selected expression, the waveforms and
-- the choices in the selected assignment statement must be such that
-- the case statement in the equivalent statement is a legal
-- statement
-- Find the first waveform that will appear in the equivalent
-- process statement, and extract type from it.
Assoc_El := Null_Iir;
El := Chain;
while El /= Null_Iir loop
Assoc_El := Get_Associated (El);
exit when Assoc_El /= Null_Iir;
El := Get_Chain (El);
end loop;
if Assoc_El = Null_Iir then
Error_Msg_Sem
("cannot determine type of the aggregate target", Target);
else
Sem_Waveform_Chain (Stmt, Assoc_El, Waveform_Type);
end if;
if Waveform_Type = Null_Iir then
-- Type of target still unknown.
-- Since the target is an aggregate, we won't be able to
-- semantize it.
-- Avoid a crash.
return;
end if;
end if;
if not Sem_Signal_Assignment_Target_And_Option (Stmt, Waveform_Type) then
return;
end if;
Waveform_Type := Get_Type (Get_Target (Stmt));
-- Sem on associated.
if Waveform_Type /= Null_Iir then
El := Chain;
while El /= Null_Iir loop
Sem_Waveform_Chain (Stmt, Get_Associated (El), Waveform_Type);
Sem_Check_Waveform_Chain (Stmt, Get_Associated (El));
El := Get_Chain (El);
end loop;
end if;
-- The choices.
Expr := Sem_Expression (Get_Expression (Stmt), Null_Iir);
if Expr = Null_Iir then
return;
end if;
Check_Read (Expr);
Set_Expression (Stmt, Expr);
Sem_Case_Choices (Expr, Chain, Get_Location (Stmt));
Set_Selected_Waveform_Chain (Stmt, Chain);
Sem_Guard (Stmt);
end Sem_Concurrent_Selected_Signal_Assignment;
procedure Sem_Concurrent_Statement_Chain
(Parent : Iir; Is_Passive : Boolean)
is
El: Iir;
Prev_El : Iir;
Prev_Concurrent_Statement : Iir;
begin
Prev_Concurrent_Statement := Current_Concurrent_Statement;
El := Get_Concurrent_Statement_Chain (Parent);
Prev_El := Null_Iir;
while El /= Null_Iir loop
Current_Concurrent_Statement := El;
case Get_Kind (El) is
when Iir_Kind_Concurrent_Conditional_Signal_Assignment =>
if Is_Passive then
Error_Msg_Sem ("signal assignment forbidden in entity", El);
end if;
Sem_Concurrent_Conditional_Signal_Assignment (El);
when Iir_Kind_Concurrent_Selected_Signal_Assignment =>
if Is_Passive then
Error_Msg_Sem ("signal assignment forbidden in entity", El);
end if;
Sem_Concurrent_Selected_Signal_Assignment (El);
when Iir_Kind_Sensitized_Process_Statement =>
Set_Passive_Flag (El, Is_Passive);
Sem_Sensitized_Process_Statement (El);
when Iir_Kind_Process_Statement =>
Set_Passive_Flag (El, Is_Passive);
Sem_Process_Statement (El);
when Iir_Kind_Component_Instantiation_Statement =>
Sem_Component_Instantiation_Statement (El, Is_Passive);
when Iir_Kind_Concurrent_Assertion_Statement =>
-- FIXME: must check assertion expressions does not contain
-- non-passive subprograms ??
Sem_Assertion_Statement (El);
when Iir_Kind_Block_Statement =>
if Is_Passive then
Error_Msg_Sem ("block forbidden in entity", El);
end if;
Sem_Block_Statement (El);
when Iir_Kind_Generate_Statement =>
if Is_Passive then
Error_Msg_Sem ("generate statement forbidden in entity", El);
end if;
Sem_Generate_Statement (El);
when Iir_Kind_Concurrent_Procedure_Call_Statement =>
declare
Next_El : Iir;
N_Stmt : Iir;
begin
Next_El := Get_Chain (El);
N_Stmt := Sem_Concurrent_Procedure_Call_Statement
(El, Is_Passive);
if N_Stmt /= El then
-- Replace this node.
El := N_Stmt;
if Prev_El = Null_Iir then
Set_Concurrent_Statement_Chain (Parent, El);
else
Set_Chain (Prev_El, El);
end if;
Set_Chain (El, Next_El);
end if;
end;
when others =>
Error_Kind ("sem_concurrent_statement", El);
end case;
Prev_El := El;
El := Get_Chain (El);
end loop;
Current_Concurrent_Statement := Prev_Concurrent_Statement;
end Sem_Concurrent_Statement_Chain;
-- Put labels in declarative region.
procedure Sem_Labels_Chain (Parent : Iir)
is
Stmt: Iir;
Label: Name_Id;
begin
Stmt := Get_Concurrent_Statement_Chain (Parent);
while Stmt /= Null_Iir loop
Label := Get_Label (Stmt);
if Label /= Null_Identifier then
Sem_Scopes.Add_Name (Stmt);
Name_Visible (Stmt);
Xref_Decl (Stmt);
end if;
-- INT-1991/issue report 27
-- Generate statements represent declarative region and have
-- implicit declarative part.
if False
and then Flags.Vhdl_Std = Vhdl_87
and then Get_Kind (Stmt) = Iir_Kind_Generate_Statement
then
Sem_Labels_Chain (Stmt);
end if;
Stmt := Get_Chain (Stmt);
end loop;
end Sem_Labels_Chain;
-- Semantize declarations and concurrent statements of ARCH, which is
-- either an architecture_declaration or a block_statement.
procedure Sem_Block (Blk: Iir; Sem_Decls : Boolean)
is
Implicit : Implicit_Signal_Declaration_Type;
begin
Push_Signals_Declarative_Part (Implicit, Blk);
if Sem_Decls then
Sem_Labels_Chain (Blk);
Sem_Declaration_Chain (Blk, False);
end if;
Sem_Concurrent_Statement_Chain (Blk, False);
if Sem_Decls then
-- FIXME: do it only if there is conf. spec. in the declarative
-- part.
Sem_Specification_Chain (Blk, Blk);
Check_Full_Declaration (Blk, Blk);
end if;
Pop_Signals_Declarative_Part (Implicit);
end Sem_Block;
-- Add a driver for SIG.
-- STMT is used in case of error (it is the statement that creates the
-- driver).
-- Do nothing if:
-- The current statement list does not belong to a process,
-- SIG is a formal signal interface.
procedure Sem_Add_Driver (Sig : Iir; Stmt : Iir)
is
Sig_Object : Iir;
Sig_Object_Type : Iir;
Parent : Iir;
Driver_List : Iir_List;
Driver : Iir;
begin
if Sig = Null_Iir then
return;
end if;
Sig_Object := Get_Base_Name (Sig);
Sig_Object_Type := Get_Type (Sig_Object);
-- LRM 4.3.1.2 Signal Declaration
-- It is an error if, after the elaboration of a description, a
-- signal has multiple sources and it is not a resolved signal.
-- Check for multiple driver for a unresolved signal declaration.
-- Do this only if the object is a non-composite signal declaration.
-- NOTE: THIS IS DISABLED, since the assignment may be within a
-- generate statement.
if False
and then Get_Kind (Sig_Object) = Iir_Kind_Signal_Declaration
and then Get_Kind (Sig_Object_Type)
not in Iir_Kinds_Composite_Type_Definition
and then not Get_Resolved_Flag (Sig_Object_Type)
then
if Get_Signal_Driver (Sig_Object) /= Null_Iir and then
Get_Signal_Driver (Sig_Object) /= Current_Concurrent_Statement
then
Error_Msg_Sem ("unresolved " & Disp_Node (Sig_Object)
& " has already a driver at "
& Disp_Location (Get_Signal_Driver (Sig_Object)),
Stmt);
else
Set_Signal_Driver (Sig_Object, Current_Concurrent_Statement);
end if;
end if;
-- LRM 8.4.1
-- If a given procedure is declared by a declarative item that is not
-- contained within a process statement, and if a signal assignment
-- statement appears in that procedure, then the target of the
-- assignment statement must be a formal parameter of the given
-- procedure or of a parent of that procedure, or an aggregate of such
-- formal parameters.
-- Similarly, if a given procedure is declared by a declarative item
-- that is not contained within a process statement and if a signal is
-- associated with an INOUT or OUT mode signal parameter in a
-- subprogram call within that procedure, then the signal so associated
-- must be a formal parameter of the given procedure or of a parent of
-- that procedure.
if Current_Concurrent_Statement = Null_Iir
or else (Get_Kind (Current_Concurrent_Statement)
not in Iir_Kinds_Process_Statement)
then
-- Not within a process statement.
if Current_Subprogram /= Null_Iir then
-- Within a procedure.
if Get_Kind (Sig_Object) = Iir_Kind_Signal_Declaration
or else (Get_Kind (Get_Parent (Sig_Object))
/= Iir_Kind_Procedure_Declaration)
then
Error_Msg_Sem
(Disp_Node (Sig_Object) & " is not a formal parameter", Stmt);
return;
end if;
end if;
end if;
-- The driver is attached to the current process (if any), or to
-- the current subprogram (if any) or to nothing.
if Current_Concurrent_Statement /= Null_Iir
and then (Get_Kind (Current_Concurrent_Statement)
in Iir_Kinds_Process_Statement)
then
Driver := Current_Concurrent_Statement;
elsif Current_Subprogram /= Null_Iir then
Driver := Current_Subprogram;
else
return;
end if;
case Get_Kind (Sig_Object) is
when Iir_Kind_Signal_Interface_Declaration =>
Parent := Get_Parent (Sig_Object);
case Get_Kind (Parent) is
when Iir_Kind_Block_Statement
| Iir_Kind_Entity_Declaration
| Iir_Kind_Block_Header =>
null;
when Iir_Kind_Procedure_Declaration =>
return;
when others =>
Error_Kind ("sem_add_driver", Parent);
end case;
when Iir_Kind_Signal_Declaration =>
null;
when others =>
Error_Kind ("sem_add_driver(2)", Sig_Object);
end case;
Driver_List := Get_Driver_List (Driver);
if Driver_List = Null_Iir_List then
Driver_List := Create_Iir_List;
Set_Driver_List (Driver, Driver_List);
end if;
Add_Element (Driver_List, Get_Longuest_Static_Prefix (Sig));
end Sem_Add_Driver;
end Sem_Stmts;
|