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
|
# ==================================================================================================================== #
# __ ___ _ ____ _ __ __ _ _ #
# _ __ _ \ \ / / | | | _ \| | | \/ | ___ __| | ___| | #
# | '_ \| | | \ \ / /| |_| | | | | | | |\/| |/ _ \ / _` |/ _ \ | #
# | |_) | |_| |\ V / | _ | |_| | |___| | | | (_) | (_| | __/ | #
# | .__/ \__, | \_/ |_| |_|____/|_____|_| |_|\___/ \__,_|\___|_| #
# |_| |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2017-2026 Patrick Lehmann - Boetzingen, Germany #
# Copyright 2016-2017 Patrick Lehmann - Dresden, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""
This module contains parts of an abstract document language model for VHDL.
Declarations for sequential statements.
"""
from typing import List, Iterable, Optional as Nullable
from pyTooling.Decorators import export, readonly
from pyTooling.MetaClasses import ExtendedType
from pyVHDLModel.Base import ModelEntity, ExpressionUnion, Range, BaseChoice, BaseCase, ConditionalMixin, IfBranchMixin, ElsifBranchMixin
from pyVHDLModel.Base import ElseBranchMixin, ReportStatementMixin, AssertStatementMixin, WaveformElement, ChoicesMixin
from pyVHDLModel.Symbol import Symbol, SignalSymbol, VariableSymbol
from pyVHDLModel.Common import Statement, ProcedureCallMixin
from pyVHDLModel.Common import AssignmentMixin, SignalAssignmentMixin, VariableAssignmentMixin
from pyVHDLModel.Common import ConditionalWaveform, ConditionalExpression
from pyVHDLModel.Common import ConditionalWaveformsMixin, WaveformMixin
from pyVHDLModel.Common import ExpressionMixin, SelectedWaveformsMixin, SelectedExpressionsMixin
from pyVHDLModel.Common import SelectedWaveform, OthersSelectedWaveform
from pyVHDLModel.Common import SelectedExpression, OthersSelectedExpression
from pyVHDLModel.Association import ParameterAssociationItem
@export
class SequentialStatement(Statement):
"""
Represents the base-class of all sequential statements.
Sequential statements appear in a process or a subprogram body.
"""
@export
class SequentialStatementsMixin(metaclass=ExtendedType, mixin=True):
"""
A mixin-class for language constructs containing sequential statements.
The statements are available in declaration order as :data:`Statements`.
.. seealso::
* :class:`Process statement <pyVHDLModel.Concurrent.ProcessStatement>`
* :class:`Branch <pyVHDLModel.Sequential.Branch>`
* :class:`Sequential case <pyVHDLModel.Sequential.SequentialCase>`
* :class:`Loop statement <pyVHDLModel.Sequential.LoopStatement>`
"""
_statements: List[SequentialStatement] #: List of all sequential statements in this construct.
def __init__(self, statements: Nullable[Iterable[SequentialStatement]] = None) -> None:
# TODO: extract to mixin
"""
Initializes sequential statements.
:param statements: List of all sequential statements in this construct.
"""
self._statements = []
if statements is not None:
for item in statements:
self._statements.append(item)
item.Parent = self
@readonly
def Statements(self) -> List[SequentialStatement]:
"""
Read-only property to access the list of sequential statements (:attr:`_statements`).
:returns: A list of sequential statements.
"""
return self._statements
@export
class SequentialProcedureCall(SequentialStatement, ProcedureCallMixin):
"""
Represents a procedure call as a sequential statement.
Like every sequential statement, it can carry an optional label (:data:`Label`).
.. admonition:: Example
.. code-block:: VHDL
lbl : log("hello");
--^^^ <- optional Label
-- ^^^^^^^^^^^^ <- the call
.. seealso::
* :class:`Concurrent counterpart <pyVHDLModel.Concurrent.ConcurrentProcedureCall>`
"""
def __init__(
self,
procedureName: Symbol,
parameterAssociationItems: Nullable[Iterable[ParameterAssociationItem]] = None,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a procedure call as a sequential statement.
:param procedureName: Reference to the called procedure.
:param parameterAssociationItems: List of all parameter associations of the call.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
ProcedureCallMixin.__init__(self, procedureName, parameterAssociationItems)
@export
class SequentialSignalAssignment(SequentialStatement, SignalAssignmentMixin):
"""
Represents the base-class of all sequential signal assignments.
.. seealso::
* :class:`Sequential simple signal assignment <pyVHDLModel.Sequential.SequentialSimpleSignalAssignment>`
"""
def __init__(self, target: SignalSymbol, label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a sequential signal assignment.
:param target: Reference to the assignment's destination.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
SignalAssignmentMixin.__init__(self, target)
@export
class SequentialSimpleSignalAssignment(SequentialSignalAssignment, WaveformMixin):
"""
Represents a simple sequential signal assignment.
The assignment's destination is available as :data:`Target`, its value as :data:`Waveform`.
.. admonition:: Example
.. code-block:: VHDL
lbl : s <= '1';
--^^^ <- optional Label
-- ^ <- Target
-- ^^^ <- Waveform
.. seealso::
* :class:`Concurrent counterpart <pyVHDLModel.Concurrent.ConcurrentSimpleSignalAssignment>`
"""
def __init__(self, target: SignalSymbol, waveform: Iterable[WaveformElement], label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a simple sequential signal assignment.
:param target: Reference to the assignment's destination.
:param waveform: List of all waveform elements, in the order they were written.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(target, label, parent)
WaveformMixin.__init__(self, waveform)
@export
class SequentialVariableAssignment(SequentialStatement, VariableAssignmentMixin):
"""
Represents a simple sequential variable assignment.
The assignment's destination is available as :data:`Target`, its value as :data:`Expression`.
.. admonition:: Example
.. code-block:: VHDL
lbl : v := '1';
--^^^ <- optional Label
-- ^ <- Target
-- ^^^ <- Expression
"""
def __init__(self, target: VariableSymbol, expression: ExpressionUnion, label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a simple sequential variable assignment.
:param target: Reference to the assignment's destination.
:param expression: The assigned expression.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
VariableAssignmentMixin.__init__(self, target, expression)
@export
class SequentialConditionalVariableAssignment(SequentialStatement, AssignmentMixin):
"""
Represents a conditional sequential variable assignment.
The alternatives are available as :data:`ConditionalExpressions`, a list of
:class:`~pyVHDLModel.Common.ConditionalExpression`. The model holds them in a list and has no
distinct field per alternative, so the markers below name list elements.
.. admonition:: Example
.. code-block:: VHDL
lbl : v := '1' when sel = '0' else '0';
--^^^ <- optional Label
-- ^ <- Target
-- ^^^^^^^^^^^^^^^^^^ <- ConditionalExpressions[0]
-- ^^^ <- ConditionalExpressions[1]
.. seealso::
* :class:`Conditional expression <pyVHDLModel.Common.ConditionalExpression>`
"""
_conditionalExpressions: List[ConditionalExpression] #: List of all alternatives, in the order they were written.
def __init__(
self,
target: VariableSymbol,
conditionalExpressions: Iterable[ConditionalExpression],
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a conditional sequential variable assignment.
:param target: Reference to the assignment's destination.
:param conditionalExpressions: List of all alternatives, in the order they were written.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
AssignmentMixin.__init__(self, target)
self._conditionalExpressions = []
for conditionalExpression in conditionalExpressions:
self._conditionalExpressions.append(conditionalExpression)
conditionalExpression.Parent = self
@readonly
def ConditionalExpressions(self) -> List[ConditionalExpression]:
"""
Read-only property to access the conditional expressions (:attr:`_conditionalExpressions`).
:returns: List of conditional expressions.
"""
return self._conditionalExpressions
@export
class SequentialConditionalSignalAssignment(SequentialStatement, SignalAssignmentMixin, ConditionalWaveformsMixin):
"""
Represents a conditional sequential signal assignment.
The alternatives are available as :data:`ConditionalWaveforms`, a list of
:class:`~pyVHDLModel.Common.ConditionalWaveform`. The model holds them in a list and has no
distinct field per alternative, so the markers below name list elements.
.. admonition:: Example
.. code-block:: VHDL
lbl : s <= '1' when sel = '0' else '0';
--^^^ <- optional Label
-- ^ <- Target
-- ^^^^^^^^^^^^^^^^^^ <- ConditionalWaveforms[0]
-- ^^^ <- ConditionalWaveforms[1]
.. seealso::
* :class:`Concurrent counterpart <pyVHDLModel.Concurrent.ConcurrentConditionalSignalAssignment>`
* :class:`Conditional waveform <pyVHDLModel.Common.ConditionalWaveform>`
"""
def __init__(
self,
target: SignalSymbol,
conditionalWaveforms: Iterable[ConditionalWaveform],
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a conditional sequential signal assignment.
:param target: Reference to the assignment's destination.
:param conditionalWaveforms: All alternatives, in order.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
SignalAssignmentMixin.__init__(self, target)
ConditionalWaveformsMixin.__init__(self, conditionalWaveforms)
@export
class SequentialSelectedVariableAssignment(SequentialStatement, AssignmentMixin, ExpressionMixin, SelectedExpressionsMixin):
"""
Represents a selected sequential variable assignment.
The selector is available as :data:`Expression`, the alternatives as :data:`SelectedExpressions`,
a list of :class:`~pyVHDLModel.Common.SelectedExpression`. The model holds them in a list and has
no distinct field per alternative, so the markers below name list elements.
.. admonition:: Example
.. code-block:: VHDL
lbl : with sel select v := '1' when '0', '0' when others;
--^^^ <- optional Label
-- ^^^ <- Expression
-- ^ <- Target
-- ^^^^^^^^^^^^ <- SelectedExpressions[0]
-- ^^^^^^^^^^^^^^^ <- SelectedExpressions[1]
.. seealso::
* :class:`Selected expression <pyVHDLModel.Common.SelectedExpression>`
"""
def __init__(
self,
target: VariableSymbol,
expression: ExpressionUnion,
selectedExpressions: Iterable[SelectedExpression],
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a selected sequential variable assignment.
:param target: Reference to the assignment's destination.
:param expression: The selector expression.
:param selectedExpressions: All alternatives, in order.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
AssignmentMixin.__init__(self, target)
ExpressionMixin.__init__(self, expression)
SelectedExpressionsMixin.__init__(self, selectedExpressions)
@export
class SequentialSelectedSignalAssignment(SequentialStatement, SignalAssignmentMixin, ExpressionMixin, SelectedWaveformsMixin):
"""
Represents a selected sequential signal assignment.
The selector is available as :data:`Expression`, the alternatives as :data:`SelectedWaveforms`,
a list of :class:`~pyVHDLModel.Common.SelectedWaveform`. The model holds them in a list and has
no distinct field per alternative, so the markers below name list elements.
.. admonition:: Example
.. code-block:: VHDL
lbl : with sel select s <= '1' when '0', '0' when others;
--^^^ <- optional Label
-- ^^^ <- Expression
-- ^ <- Target
-- ^^^^^^^^^^^^ <- SelectedWaveforms[0]
-- ^^^^^^^^^^^^^^^ <- SelectedWaveforms[1]
.. seealso::
* :class:`Concurrent counterpart <pyVHDLModel.Concurrent.ConcurrentSelectedSignalAssignment>`
* :class:`Selected waveform <pyVHDLModel.Common.SelectedWaveform>`
"""
def __init__(
self,
target: SignalSymbol,
expression: ExpressionUnion,
selectedWaveforms: Iterable[SelectedWaveform],
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a selected sequential signal assignment.
:param target: Reference to the assignment's destination.
:param expression: The selector expression.
:param selectedWaveforms: All alternatives, in order.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
SignalAssignmentMixin.__init__(self, target)
ExpressionMixin.__init__(self, expression)
SelectedWaveformsMixin.__init__(self, selectedWaveforms)
@export
class SignalForceAssignment(SequentialStatement, SignalAssignmentMixin, ExpressionMixin):
"""
Represents a signal force assignment.
A force assignment overrides a signal's driver until it is released.
.. admonition:: Example
.. code-block:: VHDL
lbl : s <= force '1';
--^^^ <- optional Label
-- ^ <- Target
-- ^^^ <- Expression
"""
def __init__(
self,
target: SignalSymbol,
expression: ExpressionUnion,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a signal force assignment.
:param target: Reference to the assignment's destination.
:param expression: The value forced onto the signal.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
SignalAssignmentMixin.__init__(self, target)
ExpressionMixin.__init__(self, expression)
@export
class SignalReleaseAssignment(SequentialStatement, SignalAssignmentMixin):
"""
Represents a signal release assignment.
A release assignment ends a previously applied force.
.. admonition:: Example
.. code-block:: VHDL
lbl : s <= release;
--^^^ <- optional Label
-- ^ <- Target
"""
def __init__(self, target: SignalSymbol, label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a signal release assignment.
:param target: Reference to the assignment's destination.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
SignalAssignmentMixin.__init__(self, target)
@export
class SequentialReportStatement(SequentialStatement, ReportStatementMixin):
"""
Represents a sequential report statement.
The report string is available as :data:`Message`, the optional severity as :data:`Severity`.
.. admonition:: Example
.. code-block:: VHDL
lbl : report "message" severity note;
--^^^ <- optional Label
-- ^^^^^^^^^ <- Message
-- ^^^^ <- optional Severity
"""
def __init__(self, message: ExpressionUnion, severity: Nullable[ExpressionUnion] = None, label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a sequential report statement.
:param message: The reported message, or ``None`` if none was given.
:param severity: The reported severity level, or ``None`` if none was given.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
ReportStatementMixin.__init__(self, message, severity)
@export
class SequentialAssertStatement(SequentialStatement, AssertStatementMixin):
"""
Represents a sequential assertion statement.
The checked condition is available as :data:`Condition`, the optional report string as
:data:`Message` and the optional severity as :data:`Severity`.
.. admonition:: Example
.. code-block:: VHDL
lbl : assert sel = '0' report "bad" severity error;
--^^^ <- optional Label
-- ^^^^^^^^^ <- Condition
-- ^^^^^ <- optional Message
-- ^^^^^ <- optional Severity
.. seealso::
* :class:`Concurrent counterpart <pyVHDLModel.Concurrent.ConcurrentAssertStatement>`
"""
def __init__(
self,
condition: ExpressionUnion,
message: Nullable[ExpressionUnion] = None,
severity: Nullable[ExpressionUnion] = None,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a sequential assertion statement.
:param condition: The condition guarding this statement.
:param message: The reported message, or ``None`` if none was given.
:param severity: The reported severity level, or ``None`` if none was given.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
AssertStatementMixin.__init__(self, condition, message, severity)
@export
class CompoundStatement(SequentialStatement):
"""
Represents the base-class of all compound statements.
A compound statement contains further sequential statements: if, case and loop statements.
.. seealso::
* :class:`If statement <pyVHDLModel.Sequential.IfStatement>`
* :class:`Case statement <pyVHDLModel.Sequential.CaseStatement>`
* :class:`Loop statement <pyVHDLModel.Sequential.LoopStatement>`
"""
@export
class Branch(ModelEntity, SequentialStatementsMixin):
"""
Represents the base-class of all branches of an if statement.
.. seealso::
* :class:`If branch <pyVHDLModel.Sequential.IfBranch>`
* :class:`Elsif branch <pyVHDLModel.Sequential.ElsifBranch>`
* :class:`Else branch <pyVHDLModel.Sequential.ElseBranch>`
"""
def __init__(self, statements: Nullable[Iterable[SequentialStatement]] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a branch.
:param statements: List of all sequential statements in this construct.
:param parent: The parent model entity of this entity.
"""
super().__init__(parent)
SequentialStatementsMixin.__init__(self, statements)
@export
class IfBranch(Branch, IfBranchMixin):
"""
Represents the ``if`` branch of an if statement.
The branch's condition is available as :data:`Condition`, its body as :data:`Statements`.
.. admonition:: Example
The whole if statement is shown; the bracket marks the part this class represents.
.. code-block:: VHDL
if sel = '0' then -- ┐ IfBranch
-- ^^^^^^^^^ -- │ <- Condition
s <= '0'; -- │
--^^^^^^^^^ -- ┘ <- Statements
elsif sel = '1' then
s <= '1';
else
s <= '0';
end if;
"""
def __init__(self, condition: ExpressionUnion, statements: Nullable[Iterable[SequentialStatement]] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes an if branch.
:param condition: The condition guarding this statement.
:param statements: List of all sequential statements in this construct.
:param parent: The parent model entity of this entity.
"""
super().__init__(statements, parent)
IfBranchMixin.__init__(self, condition)
@export
class ElsifBranch(Branch, ElsifBranchMixin):
"""
Represents an ``elsif`` branch of an if statement.
The branch's condition is available as :data:`Condition`, its body as :data:`Statements`.
An if statement may have any number of them.
.. admonition:: Example
The whole if statement is shown; the bracket marks the part this class represents.
.. code-block:: VHDL
if sel = '0' then
s <= '0';
elsif sel = '1' then -- ┐ ElsifBranch
-- ^^^^^^^^^ -- │ <- Condition
s <= '1'; -- │
--^^^^^^^^^ -- ┘ <- Statements
else
s <= '0';
end if;
"""
def __init__(self, condition: ExpressionUnion, statements: Nullable[Iterable[SequentialStatement]] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes an ``elsif`` branch of an if statement.
:param condition: The condition guarding this statement.
:param statements: List of all sequential statements in this construct.
:param parent: The parent model entity of this entity.
"""
super().__init__(statements, parent)
ElsifBranchMixin.__init__(self, condition)
@export
class ElseBranch(Branch, ElseBranchMixin):
"""
Represents the ``else`` branch of an if statement.
Unlike the other branches, an else branch has no condition; it only has a body
(:data:`Statements`). An if statement has at most one.
.. admonition:: Example
The whole if statement is shown; the bracket marks the part this class represents.
.. code-block:: VHDL
if sel = '0' then
s <= '0';
elsif sel = '1' then
s <= '1';
else -- ┐ ElseBranch
s <= '0'; -- │
--^^^^^^^^^ -- ┘ <- Statements
end if;
"""
def __init__(self, statements: Nullable[Iterable[SequentialStatement]] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes an else branch.
:param statements: List of all sequential statements in this construct.
:param parent: The parent model entity of this entity.
"""
super().__init__(statements, parent)
ElseBranchMixin.__init__(self)
@export
class IfStatement(CompoundStatement):
"""
Represents an if statement.
An if statement has one ``if`` branch (:data:`IfBranch`), any number of ``elsif`` branches
(:data:`ElsIfBranches`) and an optional ``else`` branch (:data:`ElseBranch`).
.. admonition:: Example
Only an ``if`` branch:
.. code-block:: VHDL
lbl : if sel = '0' then
--^^^ <- optional Label
s <= '0';
end if;
With ``elsif`` and ``else`` branches:
.. code-block:: VHDL
lbl : if sel = '0' then
--^^^ <- optional Label
-- ^^^^^^^^^^^^^^^^^ <- IfBranch
s <= '0';
elsif sel = '1' then
--^^^^^^^^^^^^^^^^^^^^ <- ElsIfBranches[0]
s <= '1';
else
--^^^^ <- ElseBranch
s <= '0';
end if;
.. seealso::
* :class:`If-generate statement <pyVHDLModel.Concurrent.IfGenerateStatement>`
"""
_ifBranch: IfBranch #: The mandatory ``if`` branch.
_elsifBranches: List['ElsifBranch'] #: List of all ``elsif`` branches, in the order they were written.
_elseBranch: Nullable[ElseBranch] #: The optional ``else`` branch, or ``None`` if none was given.
def __init__(
self,
ifBranch: IfBranch,
elsifBranches: Nullable[Iterable[ElsifBranch]] = None,
elseBranch: Nullable[ElseBranch] = None,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes an if statement.
:param ifBranch: The mandatory ``if`` branch.
:param elsifBranches: List of all ``elsif`` branches, in the order they were written.
:param elseBranch: The optional ``else`` branch, or ``None`` if none was given.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
self._ifBranch = ifBranch
ifBranch.Parent = self
self._elsifBranches = []
if elsifBranches is not None:
for branch in elsifBranches:
self._elsifBranches.append(branch)
branch.Parent = self
if elseBranch is not None:
self._elseBranch = elseBranch
elseBranch.Parent = self
else:
self._elseBranch = None
@readonly
def IfBranch(self) -> IfBranch:
"""
Read-only property to access the if-branch of the if-statement (:attr:`_ifBranch`).
:returns: The if-branch.
"""
return self._ifBranch
@readonly
def ElsIfBranches(self) -> List['ElsifBranch']:
"""
Read-only property to access the elsif-branch of the if-statement (:attr:`_elsifBranch`).
:returns: The elsif-branch.
"""
return self._elsifBranches
@readonly
def ElseBranch(self) -> Nullable[ElseBranch]:
"""
Read-only property to access the else-branch of the if-statement (:attr:`_elseBranch`).
:returns: The else-branch.
"""
return self._elseBranch
@export
class SequentialChoice(BaseChoice):
"""
Represents the base-class of all choices in a sequential case statement.
.. seealso::
* :class:`Indexed choice <pyVHDLModel.Sequential.IndexedChoice>`
* :class:`Ranged choice <pyVHDLModel.Sequential.RangedChoice>`
"""
@export
class IndexedChoice(SequentialChoice):
"""
Represents a case choice given by a single value.
The value is available as :data:`Expression`.
.. admonition:: Example
.. code-block:: VHDL
when 0 => v := '1';
-- ^ <- Expression
"""
_expression: ExpressionUnion #: The expression this choice selects on.
def __init__(self, expression: ExpressionUnion, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a case choice given by a single value.
:param expression: The expression this choice selects on.
:param parent: The parent model entity of this entity.
"""
super().__init__(parent)
self._expression = expression
expression.Parent = self
@readonly
def Expression(self) -> ExpressionUnion:
"""
Read-only property to access the expression (:attr:`_expression`).
:returns: The expression.
"""
return self._expression
def __str__(self) -> str:
"""
Formats the indexed case choice.
**Format:** ``0``
:returns: Formatted indexed case choice.
"""
return str(self._expression)
@export
class RangedChoice(SequentialChoice):
"""
Represents a case choice given by a range.
The range is available as :data:`Range`.
.. admonition:: Example
.. code-block:: VHDL
when 1 to 2 => v := '0';
-- ^^^^^^ <- Range
"""
_range: 'Range' #: The range this choice selects on.
def __init__(self, rng: 'Range', parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a case choice given by a range.
:param rng: The range this choice selects on.
:param parent: The parent model entity of this entity.
"""
super().__init__(parent)
self._range = rng
rng.Parent = self
@readonly
def Range(self) -> 'Range':
"""
Read-only property to access the range (:attr:`_range`).
:returns: The range.
"""
return self._range
def __str__(self) -> str:
"""
Formats the ranged case choice.
**Format:** ``0 to 3``
:returns: Formatted ranged case choice.
"""
return str(self._range)
@export
class SequentialCase(BaseCase, SequentialStatementsMixin, ChoicesMixin):
"""
Represents the base-class of all alternatives of a sequential case statement.
.. seealso::
* :class:`Case <pyVHDLModel.Sequential.Case>`
* :class:`Others case <pyVHDLModel.Sequential.OthersCase>`
"""
def __init__(
self,
statements: Nullable[Iterable[SequentialStatement]] = None,
choices: Nullable[Iterable[BaseChoice]] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a sequential case.
:param statements: List of all sequential statements in this construct.
:param choices: List of all choices selecting this alternative.
:param parent: The parent model entity of this entity.
"""
super().__init__(parent)
SequentialStatementsMixin.__init__(self, statements)
ChoicesMixin.__init__(self, choices)
@export
class Case(SequentialCase):
"""
Represents one alternative of a case statement, selected by its choices.
.. admonition:: Example
.. code-block:: VHDL
when 1 to 2 => v := '0';
-- ^^^^^^ <- Choices
-- ^^^^^^^^^ <- the statements
"""
def __init__(self, choices: Iterable[SequentialChoice], statements: Nullable[Iterable[SequentialStatement]] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a case.
:param choices: List of all choices selecting this alternative.
:param statements: List of all sequential statements in this construct.
:param parent: The parent model entity of this entity.
"""
super().__init__(statements, choices, parent)
def __str__(self) -> str:
"""
Formats the case alternative.
**Format:** ``when 0 | 1 =>``
:returns: Formatted case alternative.
"""
return "when {choices} =>".format(choices=" | ".join(str(c) for c in self._choices))
@export
class OthersCase(SequentialCase):
"""
Represents the ``others`` alternative of a case statement.
It covers every choice not named explicitly.
.. admonition:: Example
.. code-block:: VHDL
when others => null;
-- ^^^^^^ <- the choice
"""
def __str__(self) -> str:
"""
Formats the ``others`` case alternative.
**Format:** ``when others =>``
:returns: Formatted ``others`` case alternative.
"""
return "when others =>"
@export
class CaseStatement(CompoundStatement):
"""
Represents a case statement.
The expression being tested is available as :data:`SelectExpression`, the alternatives as
:data:`Cases`.
.. admonition:: Example
.. code-block:: VHDL
lbl : case sel is
--^^^ <- optional Label
-- ^^^ <- SelectExpression
when '0' => s <= '1';
-- ^^^^^^^^^^^^^^^^^^^^^^^^ <- Cases[0]
when others => null;
-- ^^^^^^^^^^^^^^^^^^^^ <- Cases[1]
end case;
.. seealso::
* :class:`Case-generate statement <pyVHDLModel.Concurrent.CaseGenerateStatement>`
"""
_expression: ExpressionUnion #: The expression being tested.
_cases: List[SequentialCase] #: List of all alternatives, in the order they were written.
def __init__(self, expression: ExpressionUnion, cases: Iterable[SequentialCase], label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a case statement.
:param expression: The expression being tested.
:param cases: List of all alternatives, in the order they were written.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
self._expression = expression
expression.Parent = self
self._cases = []
if cases is not None:
for case in cases:
self._cases.append(case)
case.Parent = self
@readonly
def SelectExpression(self) -> ExpressionUnion:
"""
Read-only property to access the select expression (:attr:`_expression`).
:returns: The select expression.
"""
return self._expression
@readonly
def Cases(self) -> List[SequentialCase]:
"""
Read-only property to access the cases (:attr:`_cases`).
:returns: List of cases.
"""
return self._cases
@export
class LoopStatement(CompoundStatement, SequentialStatementsMixin):
"""
Represents the base-class of all loop statements.
.. seealso::
* :class:`Endless loop statement <pyVHDLModel.Sequential.EndlessLoopStatement>`
* :class:`For loop statement <pyVHDLModel.Sequential.ForLoopStatement>`
* :class:`While loop statement <pyVHDLModel.Sequential.WhileLoopStatement>`
"""
def __init__(self, statements: Nullable[Iterable[SequentialStatement]] = None, label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a loop statement.
:param statements: List of all sequential statements in this construct.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
SequentialStatementsMixin.__init__(self, statements)
@export
class EndlessLoopStatement(LoopStatement):
"""
Represents an endless loop statement.
The loop body is available as :data:`Statements`. The loop has no iteration scheme, so it is
left with an exit or return statement.
.. admonition:: Example
.. code-block:: VHDL
lbl : loop
--^^^ <- optional Label
exit;
-- ^^^^^ <- Statements
end loop;
.. seealso::
* :class:`For loop statement <pyVHDLModel.Sequential.ForLoopStatement>`
* :class:`While loop statement <pyVHDLModel.Sequential.WhileLoopStatement>`
"""
pass
@export
class ForLoopStatement(LoopStatement):
"""
Represents a for-loop statement.
The loop index is available as :data:`LoopIndex`, the iteration range as :data:`Range` and the
loop body as :data:`Statements`.
.. admonition:: Example
.. code-block:: VHDL
lbl : for k in 0 to 3 loop
--^^^ <- optional Label
-- ^ <- LoopIndex
-- ^^^^^^ <- Range
null;
-- ^^^^^ <- Statements
end loop;
.. seealso::
* :class:`Endless loop statement <pyVHDLModel.Sequential.EndlessLoopStatement>`
* :class:`While loop statement <pyVHDLModel.Sequential.WhileLoopStatement>`
* :class:`For-generate statement <pyVHDLModel.Concurrent.ForGenerateStatement>`
"""
_loopIndex: str #: The name of the loop's index.
_range: Range #: The range the loop iterates over.
def __init__(self, loopIndex: str, rng: Range, statements: Nullable[Iterable[SequentialStatement]] = None, label: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None:
"""
Initializes a for-loop statement.
:param loopIndex: The name of the loop's index.
:param rng: The range the loop iterates over.
:param statements: List of all sequential statements in this construct.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(statements, label, parent)
self._loopIndex = loopIndex
self._range = rng
rng.Parent = self
@readonly
def LoopIndex(self) -> str:
"""
Read-only property to access the loop index (:attr:`_loopIndex`).
:returns: The loop index.
"""
return self._loopIndex
@readonly
def Range(self) -> Range:
"""
Read-only property to access the range (:attr:`_range`).
:returns: The range.
"""
return self._range
@export
class WhileLoopStatement(LoopStatement, ConditionalMixin):
"""
Represents a while-loop statement.
The loop condition is available as :data:`Condition`, the loop body as :data:`Statements`.
.. admonition:: Example
.. code-block:: VHDL
lbl : while i < 4 loop
--^^^ <- optional Label
-- ^^^^^ <- Condition
null;
-- ^^^^^ <- Statements
end loop;
.. seealso::
* :class:`Endless loop statement <pyVHDLModel.Sequential.EndlessLoopStatement>`
* :class:`For loop statement <pyVHDLModel.Sequential.ForLoopStatement>`
"""
def __init__(
self,
condition: ExpressionUnion,
statements: Nullable[Iterable[SequentialStatement]] = None,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a while-loop statement.
:param condition: The condition guarding this statement.
:param statements: List of all sequential statements in this construct.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(statements, label, parent)
ConditionalMixin.__init__(self, condition)
@export
class LoopControlStatement(SequentialStatement, ConditionalMixin):
"""
Represents the base-class of the loop control statements ``next`` and ``exit``.
An optional loop label (:data:`LoopReference`) selects which enclosing loop is affected.
.. seealso::
* :class:`Next statement <pyVHDLModel.Sequential.NextStatement>`
* :class:`Exit statement <pyVHDLModel.Sequential.ExitStatement>`
"""
_loopReference: LoopStatement #: Reference to the loop this statement controls.
def __init__(self, condition: Nullable[ExpressionUnion] = None, loopLabel: Nullable[str] = None, parent: Nullable[ModelEntity] = None) -> None: # TODO: is this label (currently str) a Name or a Label class?
"""
Initializes a loop control statement.
:param condition: The condition guarding this statement.
:param loopLabel: The label of the controlled loop, or ``None`` for the innermost loop.
:param parent: The parent model entity of this entity.
"""
super().__init__(parent)
ConditionalMixin.__init__(self, condition)
self._loopReference = None
# TODO: loopLabel
# TODO: loop reference -> is it a symbol?
@readonly
def LoopReference(self) -> LoopStatement:
"""
Read-only property to access the loop reference (:attr:`_loopReference`).
:returns: The loop reference.
"""
return self._loopReference
@export
class NextStatement(LoopControlStatement):
"""
Represents a next statement.
A next statement skips to the next iteration of the named loop (:data:`LoopReference`),
optionally only when a condition (:data:`Condition`) holds.
.. admonition:: Example
.. code-block:: VHDL
lbl : next outer when k = 1;
--^^^ <- optional Label
-- ^^^^^ <- optional LoopReference
-- ^^^^^ <- optional Condition
"""
pass
@export
class ExitStatement(LoopControlStatement):
"""
Represents an exit statement.
An exit statement leaves the named loop (:data:`LoopReference`), optionally only when a
condition (:data:`Condition`) holds.
.. admonition:: Example
.. code-block:: VHDL
lbl : exit outer when k = 1;
--^^^ <- optional Label
-- ^^^^^ <- optional LoopReference
-- ^^^^^ <- optional Condition
"""
pass
@export
class NullStatement(SequentialStatement):
"""
Represents a null statement.
A null statement does nothing. Like every sequential statement, it can carry an optional label
(:data:`Label`).
.. admonition:: Example
.. code-block:: VHDL
lbl : null;
--^^^ <- optional Label
-- ^^^^ <- the statement
"""
pass
@export
class ReturnStatement(SequentialStatement):
"""
Represents a return statement.
The optionally returned value is available as :data:`ReturnValue`; a procedure returns nothing.
.. admonition:: Example
.. code-block:: VHDL
lbl : return x;
--^^^ <- optional Label
-- ^ <- optional ReturnValue
"""
_returnValue: Nullable[ExpressionUnion] #: The returned expression, or ``None`` for a procedure.
def __init__(
self,
returnValue: Nullable[ExpressionUnion] = None,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a return statement.
:param returnValue: The returned expression, or ``None`` for a procedure.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
self._returnValue = returnValue
if returnValue is not None:
returnValue.Parent = self
@readonly
def ReturnValue(self) -> Nullable[ExpressionUnion]:
"""
Read-only property to access the return value (:attr:`_returnValue`).
:returns: The return value, or ``None`` if not set.
"""
return self._returnValue
@export
class WaitStatement(SequentialStatement, ConditionalMixin):
"""
Represents a wait statement.
A wait statement may name a sensitivity list (:data:`SensitivityList`), a condition
(:data:`Condition`) and a timeout (:data:`Timeout`); all three are optional.
.. admonition:: Example
.. code-block:: VHDL
lbl : wait until clock = '1' for 10 ns;
--^^^ <- optional Label
-- ^^^^^^^^^^^ <- optional Condition
-- ^^^^^ <- optional Timeout
"""
_sensitivityList: Nullable[List[Symbol]] #: List of all signal names to wait on, or ``None`` if none was given.
_timeout: ExpressionUnion #: The timeout expression, or ``None`` if none was given.
def __init__(
self,
sensitivityList: Nullable[Iterable[Symbol]] = None,
condition: Nullable[ExpressionUnion] = None,
timeout: Nullable[ExpressionUnion] = None,
label: Nullable[str] = None,
parent: Nullable[ModelEntity] = None
) -> None:
"""
Initializes a wait statement.
:param sensitivityList: List of all signal names to wait on, or ``None`` if none was given.
:param condition: The condition guarding this statement.
:param timeout: The timeout expression, or ``None`` if none was given.
:param label: The label of a model entity.
:param parent: The parent model entity of this entity.
"""
super().__init__(label, parent)
ConditionalMixin.__init__(self, condition)
if sensitivityList is None:
self._sensitivityList = None
else:
self._sensitivityList = [] # TODO: convert to dict
for signalSymbol in sensitivityList:
self._sensitivityList.append(signalSymbol)
signalSymbol.Parent = self
self._timeout = timeout
if timeout is not None:
timeout.Parent = self
@readonly
def SensitivityList(self) -> List[Symbol]:
"""
Read-only property to access the sensitivity list (:attr:`_sensitivityList`).
:returns: List of sensitivity list.
"""
return self._sensitivityList
@readonly
def Timeout(self) -> ExpressionUnion:
"""
Read-only property to access the timeout (:attr:`_timeout`).
:returns: The timeout.
"""
return self._timeout
|