aboutsummaryrefslogtreecommitdiffstats
path: root/awlsim/core/cpu.py
blob: 31cbbc569c4f03716119eaf1852af5c7aaeb943a (plain)
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
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
# -*- coding: utf-8 -*-
#
# AWL simulator - CPU
#
# Copyright 2012-2019 Michael Buesch <m@bues.ch>
#
# This program 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 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#

from __future__ import division, absolute_import, print_function, unicode_literals
#from awlsim.common.cython_support cimport * #@cy
from awlsim.common.compat import *

#cimport cython #@cy

import time
import datetime
import random

from awlsim.common.util import *
from awlsim.common.cpuspecs import * #+cimport
from awlsim.common.cpuconfig import *
from awlsim.common.blockinfo import *
from awlsim.common.datatypehelpers import * #+cimport
from awlsim.common.exceptions import *
from awlsim.common.env import *
from awlsim.common.version import *
from awlsim.common.monotonic import * #+cimport
from awlsim.common.movingavg import * #+cimport

from awlsim.library.libentry import *

from awlsim.core.symbolparser import *
from awlsim.core.memory import * #+cimport
from awlsim.core.instructions.all_insns import * #+cimport
from awlsim.core.instructions.types import * #+cimport
from awlsim.core.systemblocks.systemblocks import * #+cimport
from awlsim.core.systemblocks.tables import *
from awlsim.core.operatortypes import * #+cimport
from awlsim.core.operators import * #+cimport
from awlsim.core.blocks import * #+cimport
from awlsim.core.datablocks import * #+cimport
from awlsim.core.userdefinedtypes import * #+cimport
from awlsim.core.statusword import * #+cimport
from awlsim.core.labels import * #+cimport
from awlsim.core.timers import * #+cimport
from awlsim.core.counters import * #+cimport
from awlsim.core.callstack import * #+cimport
from awlsim.core.lstack import * #+cimport
from awlsim.core.offset import * #+cimport
from awlsim.core.obtemp import * #+cimport
from awlsim.core.util import *
from awlsim.core.insnmeas import * #+cimport

from awlsim.awlcompiler.tokenizer import *
from awlsim.awlcompiler.translator import *
from awlsim.awlcompiler.insntrans import *
from awlsim.awlcompiler.optrans import *

#from libc.string cimport memcpy #@cy


class S7Prog(object):
	"S7 CPU program management"

	def __init__(self, cpu):
		self.cpu = cpu

		self.pendingRawDBs = []
		self.pendingRawFBs = []
		self.pendingRawFCs = []
		self.pendingRawOBs = []
		self.pendingRawUDTs = []
		self.pendingLibSelections = []
		self.symbolTable = SymbolTable()

		self.reset()

	def reset(self):
		self.sfcsInitialized = False
		self.sfbsInitialized = False
		for rawBlock in itertools.chain(self.pendingRawDBs,
						self.pendingRawFBs,
						self.pendingRawFCs,
						self.pendingRawOBs,
						self.pendingRawUDTs):
			rawBlock.destroySourceRef()
		self.pendingRawDBs = []
		self.pendingRawFBs = []
		self.pendingRawFCs = []
		self.pendingRawOBs = []
		self.pendingRawUDTs = []
		self.pendingLibSelections = []
		self.symbolTable.clear()

	def addRawDB(self, rawDB):
		assert(isinstance(rawDB, RawAwlDB))
		self.pendingRawDBs.append(rawDB)

	def addRawFB(self, rawFB):
		assert(isinstance(rawFB, RawAwlFB))
		self.pendingRawFBs.append(rawFB)

	def addRawFC(self, rawFC):
		assert(isinstance(rawFC, RawAwlFC))
		self.pendingRawFCs.append(rawFC)

	def addRawOB(self, rawOB):
		assert(isinstance(rawOB, RawAwlOB))
		self.pendingRawOBs.append(rawOB)

	def addRawUDT(self, rawUDT):
		assert(isinstance(rawUDT, RawAwlUDT))
		self.pendingRawUDTs.append(rawUDT)

	def addLibrarySelection(self, libSelection):
		assert(isinstance(libSelection, AwlLibEntrySelection))
		self.pendingLibSelections.append(libSelection)

	def loadSymbolTable(self, symbolTable):
		self.symbolTable.merge(symbolTable)

	def __detectMnemonics(self):
		conf = self.cpu.getConf()
		if conf.getConfiguredMnemonics() != S7CPUConfig.MNEMONICS_AUTO:
			return

		detected = None
		errorCounts = {}
		rawBlocks = list(itertools.chain(self.pendingRawOBs,
						 self.pendingRawFBs,
						 self.pendingRawFCs))
		if not rawBlocks:
			if conf.getMnemonics() != S7CPUConfig.MNEMONICS_AUTO:
				# It was already set. We are Ok.
				return
			# There are no blocks and we didn't detect anything, yet.
			# Just set it to EN.
			detected = S7CPUConfig.MNEMONICS_EN
		if detected is None:
			for mnemonics in (S7CPUConfig.MNEMONICS_EN,
					  S7CPUConfig.MNEMONICS_DE):
				errorCount = 0
				for rawBlock in rawBlocks:
					for rawInsn in rawBlock.insns:
						ret = AwlInsnTranslator.name2type(rawInsn.getName(),
										  mnemonics)
						if ret is None:
							errorCount += 1
						try:
							optrans = AwlOpTranslator(mnemonics=mnemonics)
							optrans.translateFromRawInsn(rawInsn)
						except AwlSimError:
							errorCount += 1
				if errorCount == 0:
					# No error. Use these mnemonics.
					detected = mnemonics
					break
				errorCounts[mnemonics] = errorCount
		if detected is None:
			# Select the mnemonics with the lower error count.
			if errorCounts[S7CPUConfig.MNEMONICS_EN] <= errorCounts[S7CPUConfig.MNEMONICS_DE]:
				detected = S7CPUConfig.MNEMONICS_EN
			else:
				detected = S7CPUConfig.MNEMONICS_DE
		if conf.getMnemonics() not in {S7CPUConfig.MNEMONICS_AUTO, detected}:
			# Autodetected mnemonics were already set before
			# to something different.
			raise AwlSimError("Cannot mix multiple AWL files with "\
				"distinct mnemonics. This error may be caused by "\
				"incorrect autodetection. "\
				"Force mnemonics to EN or DE to avoid this error.")
		conf.setDetectedMnemonics(detected)

	def __loadLibraries(self):
#@cy		cdef S7CPU cpu

		cpu = self.cpu
		for libSelection in self.pendingLibSelections:
			# Get the block class from the library.
			libEntryCls = AwlLib.getEntryBySelection(libSelection)
			assert(not libEntryCls._isSystemBlock)

			# Get the effective block index.
			effIndex = libSelection.getEffectiveEntryIndex()
			if effIndex < 0:
				effIndex = libSelection.getEntryIndex()

			# Create and translate the block
			translator = AwlTranslator(self.cpu)
			if libEntryCls._isFC:
				block = libEntryCls(index=effIndex)
				existingFC = cpu.getFC(block.index)
				if existingFC and existingFC.isLibraryBlock:
					raise AwlSimError("Error while loading library "
						"block FC %d: Block FC %d is already "
						"loaded as user defined block." %\
						(block.index, block.index))
				block = translator.translateLibraryCodeBlock(block)
				cpu.addFC(block)
			elif libEntryCls._isFB:
				block = libEntryCls(index=effIndex)
				existingFB = cpu.getFB(block.index)
				if existingFB and existingFB.isLibraryBlock:
					raise AwlSimError("Error while loading library "
						"block FB %d: Block FB %d is already "
						"loaded as user defined block." %\
						(block.index, block.index))
				block = translator.translateLibraryCodeBlock(block)
				cpu.addFB(block)
			else:
				assert(0)
		self.pendingLibSelections = []

	def __checkCallParamTypeCompat(self, block):
		for insn, calledCodeBlock, calledDataBlock in self.cpu.allCallInsns(block):
			try:
				for param in insn.params:
					# Get the interface field for this variable
					field = calledCodeBlock.interface.getFieldByName(param.lvalueName)
					# Check type compatibility
					param.rvalueOp.checkDataTypeCompat(self.cpu, field.dataType)
			except AwlSimError as e:
				e.setInsn(insn)
				raise e

	# Assign call parameter interface reference.
	def __assignParamInterface(self, block):
		for insn, calledCodeBlock, calledDataBlock in self.cpu.allCallInsns(block):
			try:
				for param in insn.params:
					# Add interface references to the parameter assignment.
					param.setInterface(calledCodeBlock.interface)
			except AwlSimError as e:
				e.setInsn(insn)
				raise e

	# Resolve all symbols (global and local) on all blocks, as far as possible.
	def __resolveSymbols(self):
		resolver = AwlSymResolver(self.cpu)
		for block in self.cpu.allCodeBlocks():
			# Add interface references to the parameter assignment.
			self.__assignParamInterface(block)
			# Check type compatibility between formal and
			# actual parameter of calls.
			self.__checkCallParamTypeCompat(block)
			# Resolve all symbols
			resolver.resolveSymbols_block(block)
			# Check type compatibility between formal and
			# actual parameter of calls again, with resolved symbols.
			self.__checkCallParamTypeCompat(block)

	def __finalizeCodeBlock(self, block):
		translator = AwlTranslator(self.cpu)

		# Finalize call instructions
		for insn, calledCodeBlock, calledDataBlock in self.cpu.allCallInsns(block):
			try:
				for param in insn.params:
					# Final translation of parameter assignment operand.
					translator.translateParamAssignOper(param)
			except AwlSimError as e:
				e.setInsn(insn)
				raise e

		# Run the final setup of all instructions.
		for insn in block.insns:
			insn.finalSetup()

		# Check and account for direct L stack allocations and
		# interface L stack allocations.
		block.accountTempAllocations()

	def __finalizeCodeBlocks(self):
		for block in self.cpu.allUserCodeBlocks():
			self.__finalizeCodeBlock(block)

	# Run static error checks for code block
	def __staticSanityChecks_block(self, block):
		for insn in block.insns:
			insn.staticSanityChecks()

	# Run static error checks
	def staticSanityChecks(self):
#@cy		cdef S7CPU cpu

		cpu = self.cpu

		# The main cycle expects OB 1 to be present.
		if not cpu.getOB(1):
			raise AwlSimError("OB 1 is not present in the CPU.")
		# Run the user code checks.
		for block in cpu.allUserCodeBlocks():
			self.__staticSanityChecks_block(block)

	def build(self):
		"""Translate the loaded sources into their executable forms.
		"""
#@cy		cdef S7CPU cpu

		from awlsim.core.datatypes import AwlDataType

		cpu = self.cpu

		translator = AwlTranslator(cpu)
		resolver = AwlSymResolver(cpu)

		self.__loadLibraries()

		# Mnemonics autodetection
		self.__detectMnemonics()

		# Translate UDTs
		udts = {}
		for rawUDT in self.pendingRawUDTs:
			udtNumber, sym = resolver.resolveBlockName({AwlDataType.TYPE_UDT_X},
								   rawUDT.index)
			if udtNumber in udts:
				raise AwlSimError("Multiple definitions of "\
					"UDT %d." % udtNumber)
			rawUDT.index = udtNumber
			udt = UDT.makeFromRaw(rawUDT)
			existingUDT = cpu.getUDT(udtNumber)
			if existingUDT:
				existingUDT.destroySourceRef()
			udts[udtNumber] = udt
			cpu.addUDT(udt)
		self.pendingRawUDTs = []

		# Build all UDTs (Resolve sizes of all fields)
		for udt in dictValues(udts):
			udt.buildDataStructure(cpu)

		# Translate OBs
		obs = {}
		for rawOB in self.pendingRawOBs:
			obNumber, sym = resolver.resolveBlockName({AwlDataType.TYPE_OB_X},
								  rawOB.index)
			if obNumber in obs:
				raise AwlSimError("Multiple definitions of "\
					"OB %d." % obNumber)
			rawOB.index = obNumber
			ob = translator.translateCodeBlock(rawOB, OB)
			existingOB = cpu.getOB(obNumber)
			if existingOB:
				existingOB.destroySourceRef()
			obs[obNumber] = ob
			cpu.addOB(ob)
			# Create the TEMP-preset handler table
			try:
				presetHandlerClass = OBTempPresets_table[obNumber]
			except KeyError:
				presetHandlerClass = OBTempPresets_dummy
			cpu.obTempPresetHandlers[obNumber] = presetHandlerClass(cpu)
		self.pendingRawOBs = []

		# Translate FBs
		fbs = {}
		for rawFB in self.pendingRawFBs:
			fbNumber, sym = resolver.resolveBlockName({AwlDataType.TYPE_FB_X},
								  rawFB.index)
			if fbNumber in fbs:
				raise AwlSimError("Multiple definitions of "\
					"FB %d." % fbNumber)
			existingFB = cpu.getFB(fbNumber)
			if existingFB and existingFB.isLibraryBlock:
				raise AwlSimError("Multiple definitions of FB %d.\n"
					"FB %d is already defined by an "
					"imported library block (%s)." % (
					fbNumber, fbNumber,
					existingFB.libraryName))
			rawFB.index = fbNumber
			fb = translator.translateCodeBlock(rawFB, FB)
			if existingFB:
				existingFB.destroySourceRef()
			fbs[fbNumber] = fb
			cpu.addFB(fb)
		self.pendingRawFBs = []

		# Translate FCs
		fcs = {}
		for rawFC in self.pendingRawFCs:
			fcNumber, sym = resolver.resolveBlockName({AwlDataType.TYPE_FC_X},
								  rawFC.index)
			if fcNumber in fcs:
				raise AwlSimError("Multiple definitions of "\
					"FC %d." % fcNumber)
			existingFC = cpu.getFC(fcNumber)
			if existingFC and existingFC.isLibraryBlock:
				raise AwlSimError("Multiple definitions of FC %d.\n"
					"FC %d is already defined by an "
					"imported library block (%s)." % (
					fcNumber, fcNumber,
					existingFC.libraryName))
			rawFC.index = fcNumber
			fc = translator.translateCodeBlock(rawFC, FC)
			if existingFC:
				existingFC.destroySourceRef()
			fcs[fcNumber] = fc
			cpu.addFC(fc)
		self.pendingRawFCs = []

		if not self.sfbsInitialized:
			# Create the SFB tables
			for sfbNumber in dictKeys(SFB_table):
				if sfbNumber < 0 and not cpu.extendedInsnsEnabled():
					continue
				sfb = SFB_table[sfbNumber](cpu)
				cpu.addSFB(sfb)
			self.sfbsInitialized = True

		if not self.sfcsInitialized:
			# Create the SFC tables
			for sfcNumber in dictKeys(SFC_table):
				if sfcNumber < 0 and not cpu.extendedInsnsEnabled():
					continue
				sfc = SFC_table[sfcNumber](cpu)
				cpu.addSFC(sfc)
			self.sfcsInitialized = True

		# Build the data structures of code blocks.
		for block in cpu.allCodeBlocks():
			block.interface.buildDataStructure(cpu)

		# Translate DBs
		dbs = {}
		for rawDB in self.pendingRawDBs:
			dbNumber, sym = resolver.resolveBlockName({AwlDataType.TYPE_DB_X,
								   AwlDataType.TYPE_FB_X,
								   AwlDataType.TYPE_SFB_X},
								  rawDB.index)
			if dbNumber in dbs:
				raise AwlSimError("Multiple definitions of "\
					"DB %d." % dbNumber)
			rawDB.index = dbNumber
			db = translator.translateDB(rawDB)
			existingDB = cpu.getDB(dbNumber)
			if existingDB:
				existingDB.destroySourceRef()
			dbs[dbNumber] = db
			cpu.addDB(db)
		self.pendingRawDBs = []

		# Resolve symbolic instructions and operators
		self.__resolveSymbols()

		# Do some finalizations
		self.__finalizeCodeBlocks()

		# Run some static sanity checks on the code
		self.staticSanityChecks()

	def getBlockInfos(self,
			  getOBInfo=False,
			  getFCInfo=False,
			  getFBInfo=False,
			  getDBInfo=False,
			  getUDTInfo=False):
		"""Returns a list of BlockInfo().
		"""
		blkInfos = []
		for block in itertools.chain(
				sorted(self.cpu.allOBs() if getOBInfo else [],
				       key=lambda blk: blk.index),
				sorted(self.cpu.allFCs() if getFCInfo else [],
				       key=lambda blk: blk.index),
				sorted(self.cpu.allFBs() if getFBInfo else [],
				       key=lambda blk: blk.index),
				sorted(self.cpu.allDBs() if getDBInfo else [],
				       key=lambda blk: blk.index),
				sorted(self.cpu.allUDTs() if getUDTInfo else [],
				       key=lambda blk: blk.index)):
			blkInfo = block.getBlockInfo()
			assert(blkInfo)
			blkInfos.append(blkInfo)
		return blkInfos

	def removeBlock(self, blockInfo, sanityChecks = True):
		"""Remove a block from the CPU.
		"""
		if blockInfo.blockType == BlockInfo.TYPE_OB:
			block = self.cpu.removeOB(blockInfo.blockIndex)
			self.cpu.obTempPresetHandlers.pop(blockInfo.blockIndex)
		elif blockInfo.blockType == BlockInfo.TYPE_FC:
			block = self.cpu.removeFC(blockInfo.blockIndex)
		elif blockInfo.blockType == BlockInfo.TYPE_FB:
			block = self.cpu.removeFB(blockInfo.blockIndex)
		elif blockInfo.blockType == BlockInfo.TYPE_DB:
			block = self.cpu.getDB(blockInfo.blockIndex)
			if block and (block.permissions & DB.PERM_WRITE) == 0:
				raise AwlSimError("Remove block: Cannot delete "
					"write protected %s." % \
					blockInfo.blockName)
			block = self.cpu.removeDB(blockInfo.blockIndex)
		elif blockInfo.blockType == BlockInfo.TYPE_UDT:
			block = self.cpu.removeUDT(blockInfo.blockIndex)
		else:
			raise AwlSimError("Remove block: Unknown bock type %d." % \
				blockInfo.blockType)
		if not block:
			raise AwlSimError("Remove block: Block %s not found." % \
				blockInfo.blockName)
		block.destroySourceRef()
		if sanityChecks:
			# Re-run sanity checks to detect missing blocks.
			self.staticSanityChecks()

class S7CPU(object): #+cdef
	"STEP 7 CPU"

	def __init__(self):
		from awlsim.core.datatypes import AwlDataType

		self.__fetchTypeMethods = self.__fetchTypeMethodsDict	#@nocy
		self.__storeTypeMethods = self.__storeTypeMethodsDict	#@nocy

		self.__insnMeas = None
		self.__clockMemByteOffset = None
		self.specs = S7CPUSpecs(self)
		self.conf = S7CPUConfig(self)
		self.prog = S7Prog(self)
		self.setCycleTimeLimit(1.0)
		self.setCycleExitCallback(None)
		self.setBlockExitCallback(None)
		self.setPostInsnCallback(None)
		self.setPeripheralReadCallback(None)
		self.setPeripheralWriteCallback(None)
		self.setScreenUpdateCallback(None)
		self.activeLStack = None
		self.__resetBlockAllocs()
		self.reset()
		self.enableExtendedInsns(False)
		self.enableObTempPresets(False)
		self.__dateAndTimeWeekdayMap = AwlDataType.dateAndTimeWeekdayMap

	@classmethod
	def __addBlock(cls, blockList, block):
		index = block.index
		if index < 0 or index > 0xFFFF:
			raise AwlSimError("Invalid block index. "
					  "Cannot load %s %d to CPU." % (
					  block.BLOCKTYPESTR, index))
		if index >= len(blockList):
			# Re-allocate block list.
			newLen = getMSB(index) << 1
			blockList.extend([None] * (newLen - len(blockList)))
			assert(len(blockList) == newLen)
		blockList[index] = block
		return len(blockList)

	def addUDT(self, udt):
		"""Add a UDT block to the CPU.
		"""
		self.__udtsAlloc = self.__addBlock(self.__udts, udt)

	def addDB(self, db):
		"""Add a DB block to the CPU.
		"""
		self.__dbsAlloc = self.__addBlock(self.__dbs, db)

	def addOB(self, ob):
		"""Add an OB block to the CPU.
		"""
		self.__obsAlloc = self.__addBlock(self.__obs, ob)
		if ob.index == 1:
			self.__ob1 = ob

	def addFC(self, fc):
		"""Add an FC block to the CPU.
		"""
		self.__fcsAlloc = self.__addBlock(self.__fcs, fc)

	def addFB(self, fb):
		"""Add an FB block to the CPU.
		"""
		self.__fbsAlloc = self.__addBlock(self.__fbs, fb)

	def addSFC(self, sfc):
		"""Add an SFC block to the CPU.
		"""
		if sfc.index >= 0:
			self.__sfcsAlloc = self.__addBlock(self.__sfcs, sfc)
		else:
			self.__sfcsExtended[sfc.index] = sfc

	def addSFB(self, sfb):
		"""Add an SFB block to the CPU.
		"""
		if sfb.index >= 0:
			self.__sfbsAlloc = self.__addBlock(self.__sfbs, sfb)
		else:
			self.__sfbsExtended[sfb.index] = sfb

	def getUDT(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef UDT getUDT(self, uint16_t index):
		"""Get a UDT block.
		"""
		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		if index < self.__udtsAlloc: #+likely
			return self.__udts[index]
		return None

	def getDB(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef DB getDB(self, uint16_t index):
		"""Get a DB block.
		"""
		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		if index < self.__dbsAlloc: #+likely
			return self.__dbs[index]
		return None

	def getOB(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef CodeBlock getOB(self, uint16_t index):
		"""Get an OB block.
		"""
		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		if index < self.__obsAlloc: #+likely
			return self.__obs[index]
		return None

	def getFC(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef CodeBlock getFC(self, uint16_t index):
		"""Get an FC block.
		"""
		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		if index < self.__fcsAlloc: #+likely
			return self.__fcs[index]
		return None

	def getFB(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef CodeBlock getFB(self, uint16_t index):
		"""Get an FB block.
		"""
		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		if index < self.__fbsAlloc: #+likely
			return self.__fbs[index]
		return None

	def getSFC(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef CodeBlock getSFC(self, int32_t index):
		"""Get an SFC block.
		"""
#@cy		cdef int32_t sfcsAlloc
#@cy		cdef uint16_t indexU16

		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		sfcsAlloc = self.__sfcsAlloc
		if index >= 0 and index < sfcsAlloc: #+likely
			indexU16 = index
			return self.__sfcs[indexU16]
		if index < 0:
			return self.__sfcsExtended.get(index, None)
		return None

	def getSFB(self, index): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef CodeBlock getSFB(self, int32_t index):
		"""Get an SFC block.
		"""
#@cy		cdef int32_t sfbsAlloc
#@cy		cdef uint16_t indexU16

		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		sfbsAlloc = self.__sfbsAlloc
		if index >= 0 and index < sfbsAlloc: #+likely
			indexU16 = index
			return self.__sfbs[indexU16]
		if index < 0:
			return self.__sfbsExtended.get(index, None)
		return None

	def removeUDT(self, index):
		"""Remove a UDT block from the CPU.
		"""
		udt = self.getUDT(index)
		if udt:
			self.__udts[index] = None
		return udt

	def removeDB(self, index):
		"""Remove a DB block from the CPU.
		"""
		db = self.getDB(index)
		if db:
			self.__dbs[index] = None
		return db

	def removeOB(self, index):
		"""Remove an OB block from the CPU.
		"""
		ob = self.getOB(index)
		if ob:
			self.__obs[index] = None
		return ob

	def removeFC(self, index):
		"""Remove an FC block from the CPU.
		"""
		fc = self.getFC(index)
		if fc:
			self.__fcs[index] = None
		return fc

	def removeFB(self, index):
		"""Remove an FB block from the CPU.
		"""
		fb = self.getFB(index)
		if fb:
			self.__fbs[index] = None
		return fb

	def removeSFC(self, index):
		"""Remove an SFC block from the CPU.
		"""
		sfc = self.getSFC(index)
		if sfc:
			if index >= 0:
				self.__sfcs[index] = None
			else:
				self.__sfcsExtended.pop(index, None)
		return sfc

	def removeSFB(self, index):
		"""Remove an SFB block from the CPU.
		"""
		sfb = self.getSFB(index)
		if sfb:
			if index >= 0:
				self.__sfbs[index] = None
			else:
				self.__sfbsExtended.pop(index, None)
		return sfb

	def getMnemonics(self):
		return self.conf.getMnemonics()

	def enableObTempPresets(self, en=True):
		self.__obTempPresetsEnabled = bool(en)

	def obTempPresetsEnabled(self):
		return self.__obTempPresetsEnabled

	def enableExtendedInsns(self, en=True):
		self.__extendedInsnsEnabled = bool(en)

	def extendedInsnsEnabled(self):
		return self.__extendedInsnsEnabled

	def setCycleTimeLimit(self, newLimit):
		self.cycleTimeLimit = float(newLimit)

	def setRunTimeLimit(self, timeoutSeconds=-1.0):
		self.__runtimeLimit = timeoutSeconds if timeoutSeconds >= 0.0 else -1.0

	# Returns all OBs.
	def allOBs(self):
		for ob in self.__obs:
			if ob:
				yield ob

	# Returns all FBs.
	def allFBs(self):
		for fb in self.__fbs:
			if fb:
				yield fb

	# Returns all SFBs.
	def allSFBs(self):
		for sfb in itertools.chain(self.__sfbs,
					   dictValues(self.__sfbsExtended)):
			if sfb:
				yield sfb

	# Returns all FCs.
	def allFCs(self):
		for fc in self.__fcs:
			if fc:
				yield fc

	# Returns all SFCs.
	def allSFCs(self):
		for sfc in itertools.chain(self.__sfcs,
					   dictValues(self.__sfcsExtended)):
			if sfc:
				yield sfc

	# Returns all DBs.
	def allDBs(self):
		for db in self.__dbs:
			if db:
				yield db

	# Returns all UDTs.
	def allUDTs(self):
		for udt in self.__udts:
			if udt:
				yield udt

	# Returns all user defined code blocks (OBs, FBs, FCs)
	def allUserCodeBlocks(self):
		for block in itertools.chain(self.allOBs(),
					     self.allFBs(),
					     self.allFCs()):
			yield block

	# Returns all system code blocks (SFBs, SFCs)
	def allSystemCodeBlocks(self):
		for block in itertools.chain(self.allSFBs(),
					     self.allSFCs()):
			yield block

	# Returns all user defined code blocks (OBs, FBs, FCs, SFBs, SFCs)
	def allCodeBlocks(self):
		for block in itertools.chain(self.allUserCodeBlocks(),
					     self.allSystemCodeBlocks()):
			yield block

	def allCallInsns(self, block):
		from awlsim.core.datatypes import AwlDataType

		resolver = AwlSymResolver(self)

		for insn in block.insns:
			if insn.insnType != AwlInsnTypes.TYPE_CALL:
				continue

			# Get the DB block, if any.
			if len(insn.ops) == 1:
				dataBlock = None
			elif len(insn.ops) == 2:
				dataBlockOp = insn.ops[1]
				if dataBlockOp.operType == AwlOperatorTypes.SYMBOLIC:
					blockIndex, symbol = resolver.resolveBlockName(
							{AwlDataType.TYPE_FB_X,
							 AwlDataType.TYPE_SFB_X},
							dataBlockOp.offset.identChain.getString())
					dataBlockOp = symbol.operator.dup()
				dataBlockIndex = dataBlockOp.offset.byteOffset
				if dataBlockOp.operType == AwlOperatorTypes.BLKREF_DB:
					dataBlock = self.getDB(dataBlockIndex)
				else:
					raise AwlSimError("Data block operand "
						"in CALL is not a DB.",
						insn=insn)
				if not dataBlock:
					raise AwlSimError("Data block '%s' referenced "
						"in CALL does not exist." %\
						str(dataBlockOp),
						insn=insn)

			# Get the code block, if any.
			codeBlockOp = insn.ops[0]
			if codeBlockOp.operType == AwlOperatorTypes.SYMBOLIC:
				blockIndex, symbol = resolver.resolveBlockName(
						{AwlDataType.TYPE_FC_X,
						 AwlDataType.TYPE_FB_X,
						 AwlDataType.TYPE_SFC_X,
						 AwlDataType.TYPE_SFB_X},
						codeBlockOp.offset.identChain.getString())
				codeBlockOp = symbol.operator.dup()
			elif codeBlockOp.operType == AwlOperatorTypes.NAMED_LOCAL:
				codeBlockOp = resolver.resolveNamedLocal(block, insn, codeBlockOp)

			if codeBlockOp.operType in {AwlOperatorTypes.MULTI_FB,
						    AwlOperatorTypes.MULTI_SFB}:
				codeBlockIndex = codeBlockOp.offset.fbNumber
			else:
				codeBlockIndex = codeBlockOp.offset.byteOffset

			if codeBlockOp.operType == AwlOperatorTypes.BLKREF_FC:
				codeBlock = self.getFC(codeBlockIndex)
			elif codeBlockOp.operType in {AwlOperatorTypes.BLKREF_FB,
						      AwlOperatorTypes.MULTI_FB}:
				codeBlock = self.getFB(codeBlockIndex)
			elif codeBlockOp.operType == AwlOperatorTypes.BLKREF_SFC:
				codeBlock = self.getSFC(codeBlockIndex)
			elif codeBlockOp.operType in {AwlOperatorTypes.BLKREF_SFB,
						      AwlOperatorTypes.MULTI_SFB}:
				codeBlock = self.getSFB(codeBlockIndex)
			else:
				raise AwlSimError("Code block operand "
					"in CALL is not a valid code block "
					"(FB, FC, SFB or SFC).",
					insn=insn)
			if not codeBlock:
				raise AwlSimError("Code block '%s' referenced in "
					"CALL does not exist." %\
					str(codeBlockOp),
					insn=insn)

			yield insn, codeBlock, dataBlock

	def build(self):
		"""Translate the loaded sources into their executable forms.
		"""
		self.prog.build()
		self.reallocate()

	def load(self, parseTree, rebuild = False, sourceManager = None):
		for rawDB in dictValues(parseTree.dbs):
			rawDB.setSourceRef(sourceManager)
			self.prog.addRawDB(rawDB)
		for rawFB in dictValues(parseTree.fbs):
			rawFB.setSourceRef(sourceManager)
			self.prog.addRawFB(rawFB)
		for rawFC in dictValues(parseTree.fcs):
			rawFC.setSourceRef(sourceManager)
			self.prog.addRawFC(rawFC)
		for rawOB in dictValues(parseTree.obs):
			rawOB.setSourceRef(sourceManager)
			self.prog.addRawOB(rawOB)
		for rawUDT in dictValues(parseTree.udts):
			rawUDT.setSourceRef(sourceManager)
			self.prog.addRawUDT(rawUDT)
		if rebuild:
			self.build()

	def loadLibraryBlock(self, libSelection, rebuild = False):
		self.prog.addLibrarySelection(libSelection)
		if rebuild:
			self.build()

	@property
	def symbolTable(self):
		return self.prog.symbolTable

	def loadSymbolTable(self, symbolTable, rebuild = False):
		self.prog.loadSymbolTable(symbolTable)
		if rebuild:
			self.build()

	def getBlockInfos(self,
			  getOBInfo=False,
			  getFCInfo=False,
			  getFBInfo=False,
			  getDBInfo=False,
			  getUDTInfo=False):
		"""Returns a list of BlockInfo()."""
		return self.prog.getBlockInfos(getOBInfo=getOBInfo,
					       getFCInfo=getFCInfo,
					       getFBInfo=getFBInfo,
					       getDBInfo=getDBInfo,
					       getUDTInfo=getUDTInfo)

	def staticSanityChecks(self):
		"""Run static error checks."""
		self.prog.staticSanityChecks()

	def removeBlock(self, blockInfo, sanityChecks = True):
		"""Remove a block from the CPU."""
		self.prog.removeBlock(blockInfo, sanityChecks)

	def reallocate(self, force=False):
#@cy		cdef OB ob

		if force or (self.specs.nrAccus == 4) != self.is4accu:
			self.accu1, self.accu2, self.accu3, self.accu4 =\
				Accu(), Accu(), Accu(), Accu()
			self.is4accu = (self.specs.nrAccus == 4)
		if force or self.specs.nrTimers != len(self.timers):
			self.timers = [ Timer(self, i)
					for i in range(self.specs.nrTimers) ]
		if force or self.specs.nrCounters != len(self.counters):
			self.counters = [ Counter(self, i)
					  for i in range(self.specs.nrCounters) ]
		if force or self.specs.nrFlags != len(self.flags):
			self.flags = AwlMemory(self.specs.nrFlags)
		if force or self.specs.nrInputs != len(self.inputs):
			self.inputs = AwlMemory(self.specs.nrInputs)
		if force or self.specs.nrOutputs != len(self.outputs):
			self.outputs = AwlMemory(self.specs.nrOutputs)
		for ob in self.allOBs():
			if force or self.specs.nrLocalbytes * 8 != ob.lstack.maxAllocBits:
				ob.lstack.resize(self.specs.nrLocalbytes)

	def __resetBlockAllocs(self):
		defaultAlloc = 0x100
		self.__udtsAlloc = defaultAlloc
		self.__dbsAlloc = defaultAlloc
		self.__obsAlloc = defaultAlloc
		self.__fcsAlloc = defaultAlloc
		self.__fbsAlloc = defaultAlloc
		self.__sfcsAlloc = defaultAlloc
		self.__sfbsAlloc = defaultAlloc
		self.__udts = [None] * self.__udtsAlloc
		self.__dbs = [None] * self.__dbsAlloc
		self.__obs = [None] * self.__obsAlloc
		self.__fcs = [None] * self.__fcsAlloc
		self.__fbs = [None] * self.__fbsAlloc
		self.__sfcs = [None] * self.__sfcsAlloc
		self.__sfbs = [None] * self.__sfbsAlloc
		self.__sfcsExtended = {}
		self.__sfbsExtended = {}

	def reset(self):
		self.prog.reset()
		for block in itertools.chain(self.__udts,
					     self.__dbs,
					     self.__obs,
					     self.__fcs,
					     self.__fbs):
			if block:
				block.destroySourceRef()
		self.__resetBlockAllocs()

		self.addDB(DB(0, permissions = 0)) # read/write-protected system-DB
		self.addOB(OB([], 1)) # Empty OB1

		self.obTempPresetHandlers = {
			# OB TEMP-preset handlers
			1 : OBTempPresets_table[1](self), # Default OB1 handler
			# This table is extended as OBs are loaded.
		}

		self.is4accu = False
		self.reallocate(force=True)
		self.ar1 = Addressregister()
		self.ar2 = Addressregister()
		self.db0 = self.getDB(0)
		self.dbRegister = self.db0
		self.diRegister = self.db0
		self.callStackTop = None
		self.callStackDepth = 0
		self.setMcrActive(False)
		self.mcrStack = [ ]
		self.statusWord = S7StatusWord()
		self.__clockMemByteOffset = None
		self.setRunTimeLimit()

		self.relativeJump = 1

		# Stats
		self.__insnCount = 0
		self.__cycleCount = 0
		self.insnPerSecond = 0.0
		self.avgInsnPerCycle = 0.0
		self.cycleStartTime = 0.0
		self.minCycleTime = 86400.0
		self.maxCycleTime = 0.0
		self.avgCycleTime = 0.0
		self.__cycleTimeMovAvg = MovingAvg(9)
		self.__speedMeasureStartTime = 0
		self.__speedMeasureStartInsnCount = 0
		self.__speedMeasureStartCycleCount = 0

		self.initializeTimestamp()

	def setupInsnMeas(self, enable=True):
		if enable:
			if not self.__insnMeas:
				self.__insnMeas = InsnMeas()
			insnMeas = self.__insnMeas
		else:
			insnMeas = self.__insnMeas
			self.__insnMeas = None
		return insnMeas

	def setCycleExitCallback(self, cb, data=None):
		self.cbCycleExit = cb
		self.cbCycleExitData = data

	def setBlockExitCallback(self, cb, data=None):
		self.cbBlockExit = cb
		self.cbBlockExitData = data

	def setPostInsnCallback(self, cb, data=None):
		self.cbPostInsn = cb
		self.cbPostInsnData = data

	def setPeripheralReadCallback(self, cb, data=None):
		if cb:
			self.cbPeripheralRead = cb
			self.cbPeripheralReadData = data
		else:
			self.cbPeripheralRead =\
				lambda data, bitWidth, byteOffset: bytearray()
			self.cbPeripheralReadData = None

	def setPeripheralWriteCallback(self, cb, data=None):
		if cb:
			self.cbPeripheralWrite = cb
			self.cbPeripheralWriteData = data
		else:
			self.cbPeripheralWrite =\
				lambda data, bitWidth, byteOffset, value: False
			self.cbPeripheralWriteData = None

	def setScreenUpdateCallback(self, cb, data=None):
		self.cbScreenUpdate = cb
		self.cbScreenUpdateData = data

	def requestScreenUpdate(self):
		if self.cbScreenUpdate is not None:
			self.cbScreenUpdate(self.cbScreenUpdateData)

	def __runOB(self, block): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef __runOB(self, OB block):
#@cy		cdef AwlInsn insn
#@cy		cdef CallStackElem cse
#@cy		cdef CallStackElem exitCse
#@cy		cdef LStackAllocator activeLStack
#@cy		cdef uint32_t insnCount
#@cy		cdef OBTempPresets presetHandler
#@cy		cdef _Bool insnMeasEnabled
#@cy		cdef _Bool postInsnCbEnabled
#@cy		cdef _Bool blockExitCbEnabled

		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		# Update timekeeping
		self.updateTimestamp()
		self.cycleStartTime = self.now

		# Initialize the L-stack. A previous block execution might
		# have exited with an exception and left allocation behind.
		# Clear all allocated bits.
		self.activeLStack = activeLStack = block.lstack
		activeLStack.reset()

		# Initialize CPU state
		self.dbRegister = self.diRegister = self.db0
		self.accu1.reset()
		self.accu2.reset()
		self.accu3.reset()
		self.accu4.reset()
		self.ar1.reset()
		self.ar2.reset()
		self.statusWord.reset()

		self.callStackTop, self.callStackDepth = None, 1
		cse = self.callStackTop = make_CallStackElem(self, block, None, None, (), True)

		if self.__obTempPresetsEnabled:
			# Populate the TEMP region
			presetHandler = self.obTempPresetHandlers[block.index]
			presetHandler.generate(activeLStack.memory.getRawDataBytes())

		insnMeasEnabled = self.__insnMeas is not None
		postInsnCbEnabled = self.cbPostInsn is not None
		blockExitCbEnabled = self.cbBlockExit is not None

		# Run the user program cycle
		while cse is not None:
			while cse.ip < cse.nrInsns:
				# Fetch the next instruction.
				insn = cse.insns[cse.ip]
				self.relativeJump = 1

				# Execute the instruction.
				if insnMeasEnabled: #+unlikely
					self.__insnMeas.meas(True, insn.insnType)
					insn.run()
					self.__insnMeas.meas(False, insn.insnType)
				else:
					insn.run()
				if postInsnCbEnabled: #+unlikely
					self.cbPostInsn(cse, self.cbPostInsnData)

				cse.ip += self.relativeJump
				cse = self.callStackTop
				self.__insnCount = insnCount = (self.__insnCount + 1) & 0x3FFFFFFF #+suffix-u

				# Check if a timekeeping update is required.
				if not (insnCount & self.__timestampUpdInterMask):
					self.updateTimestamp()

					# Check if the cycle time is exceeded.
					if self.now - self.cycleStartTime > self.cycleTimeLimit:
						self.__cycleTimeExceed()

					# Check if the runtime limit is enabled and exceeded.
					if self.__runtimeLimit >= 0.0:
						self.__checkRunTimeLimit()

			if blockExitCbEnabled: #+unlikely
				self.cbBlockExit(self.cbBlockExitData)
			cse, exitCse = cse.prevCse, cse
			self.callStackTop = cse
			self.callStackDepth -= 1
			exitCse.handleBlockExit()
		assert(self.callStackDepth == 0) #@nocy

		# Check if the runtime limit is enabled and exceeded.
		if self.__runtimeLimit >= 0.0:
			self.__checkRunTimeLimit()

	def initClockMemState(self, force=False):
		"""Reset/initialize the clock memory byte state.
		"""
		if self.conf.clockMemByte >= 0:
			clockMemByteOffset = make_AwlOffset(self.conf.clockMemByte, 0)
		else:
			clockMemByteOffset = None
		if force:
			resetCount = True
		else:
			resetCount = clockMemByteOffset != self.__clockMemByteOffset

		self.__clockMemByteOffset = None
		self.updateTimestamp()
		self.__clockMemByteOffset = clockMemByteOffset

		if resetCount:
			self.__nextClockMemTime = self.now + 0.05
			self.__clockMemCount = 0
			self.__clockMemCountLCM = math_lcm(2, 4, 5, 8, 10, 16, 20)
			if self.__clockMemByteOffset is not None:
				self.flags.store(self.__clockMemByteOffset,
						 constMemObj_8bit_0)

	# Run startup code
	def startup(self):
		# Build (translate) the blocks, if not already done so.
		self.build()

		self.updateTimestamp()
		self.startupTime = self.now
		self.__speedMeasureStartTime = self.now
		self.__speedMeasureStartInsnCount = 0
		self.__speedMeasureStartCycleCount = 0

		self.initClockMemState(force=True)

		# Run startup OB
		ob102 = self.getOB(102)
		ob100 = self.getOB(100)
		if ob102 and self.is4accu:
			# Cold start.
			# This is only done on 4xx-series CPUs.
			self.__runOB(ob102)
		elif ob100:
			# Warm start.
			# This really is a cold start, because remanent
			# resources were reset. However we could not execute
			# OB 102, so this is a fallback.
			# This is not 100% compliant with real CPUs, but it probably
			# is sane behavior.
			self.__runOB(ob100)

	# Run one cycle of the user program
#@cy	@cython.cdivision(True)
	def runCycle(self): #+cdef
#@cy		cdef double elapsedTime
#@cy		cdef double cycleTime
#@cy		cdef double avgInsnPerCycle
#@cy		cdef double avgTimePerInsn
#@cy		cdef double insnPerSecond
#@cy		cdef uint32_t cycleCount
#@cy		cdef uint32_t insnCount
#@cy		cdef double newTimestampUpdInter

		# Run the actual OB1 code
		self.__runOB(self.__ob1)

		# Update timekeeping and statistics
		self.updateTimestamp()
		self.__cycleCount = (self.__cycleCount + 1) & 0x3FFFFFFF #+suffix-u

		# Evaluate speed measurement
		elapsedTime = self.now - self.__speedMeasureStartTime
		if elapsedTime >= 1.0:
			# Calculate instruction and cycle counts.
			cycleCount = ((self.__cycleCount - self.__speedMeasureStartCycleCount) &
				      0x3FFFFFFF) #+suffix-u
			insnCount = ((self.__insnCount - self.__speedMeasureStartInsnCount) &
				     0x3FFFFFFF) #+suffix-u

			if cycleCount > 0: #+likely
				# Get the average cycle time over the measurement period.
				cycleTime = elapsedTime / cycleCount

				# Calculate and store maximum and minimum cycle time.
				self.maxCycleTime = max(self.maxCycleTime, cycleTime)
				self.minCycleTime = min(self.minCycleTime, cycleTime)

				# Calculate and store moving average cycle time.
				self.avgCycleTime = self.__cycleTimeMovAvg.calculate(cycleTime)

				# Calculate instruction statistics.
				self.avgInsnPerCycle = avgInsnPerCycle = insnCount / cycleCount
				if avgInsnPerCycle > 0.0:
					avgTimePerInsn = self.avgCycleTime / avgInsnPerCycle
					if avgTimePerInsn > 0.0:
						self.insnPerSecond = insnPerSecond = 1.0 / avgTimePerInsn
					else:
						self.insnPerSecond = insnPerSecond = 0.0
				else:
					self.insnPerSecond = insnPerSecond = 0.0

				# Re-calculate the timestamp update interval.
				if insnPerSecond > 0.0:
					# The desired timestamp update interval is at least once per millisecond.
					# Reduce the calculated value by 10% to compensate for jitter.
					newTimestampUpdInter = (insnPerSecond / 1000.0) * 0.9
					# Get the average of the current and the new update interval
					newTimestampUpdInter = self.__timestampUpdMovAvg.calculate(newTimestampUpdInter)
					# Limit the update interval
					newTimestampUpdInter = min(max(newTimestampUpdInter, 32.0), 65536.0)
					self.__timestampUpdInter = newTimestampUpdInter
					# Calculate the instruction counter mask that triggers
					# the call to updateTimestamp()
					self.__timestampUpdInterMask = getMSB(int(newTimestampUpdInter)) - 1

				# Reset the counters
				self.__speedMeasureStartTime = self.now
				self.__speedMeasureStartInsnCount = self.__insnCount
				self.__speedMeasureStartCycleCount = self.__cycleCount

		# Call the cycle exit callback, if any.
		if self.cbCycleExit is not None:
			self.cbCycleExit(self.cbCycleExitData)

	# Returns 'self.now' as 31 bit millisecond representation.
	# That is data type 'TIME'.
	# The returned value will always be positive and wrap
	# from 0x7FFFFFFF to 0.
	@property
	def now_TIME(self):
		return int(self.now * 1000.0) & 0x7FFFFFFF

	# Initialize time stamp.
	def initializeTimestamp(self):
		# Initialize the timestamp update interval to a small constant.
		self.__timestampUpdMovAvg = MovingAvg(9)
		self.__timestampUpdInter = 64
		self.__timestampUpdInterMask = getMSB(int(self.__timestampUpdInter)) - 1

		# Initialize the time stamp so that it will
		# overflow 31 bit millisecond count within
		# 100 milliseconds after startup.
		# An 31 bit overflow happens after 0x7FFFFFFF ms,
		# which is 2147483647 ms, which is 2147483.647 s.
		# Create an offset to 'self.now' that is added every
		# time 'self.now' is updated.
		now = monotonic_time()
		self.__nowOffset = -(now) + (2147483.647 - 0.1)
		self.now = now = now + self.__nowOffset
		self.startupTime = now
		self.updateTimestamp()

	# updateTimestamp() updates self.now, which is a
	# floating point count of seconds.
	def updateTimestamp(self, _getTime=monotonic_time): #@nocy
#@cy	cdef updateTimestamp(self):
#@cy		cdef uint32_t value
#@cy		cdef uint32_t count
#@cy		cdef double now

		# Update the system time
		now = _getTime() #@nocy
#@cy		now = monotonic_time()
		self.now = now = now + self.__nowOffset

		# Update the clock memory byte
		if self.__clockMemByteOffset is not None and\
		   now >= self.__nextClockMemTime:
			try:
				self.__nextClockMemTime += 0.05
				value = AwlMemoryObject_asScalar(
					self.flags.fetch(self.__clockMemByteOffset, 8))
				value ^= 0x01 # 0.1s period
				count = self.__clockMemCount + 1
				self.__clockMemCount = count
				if not count % 2:
					value ^= 0x02 # 0.2s period
				if not count % 4:
					value ^= 0x04 # 0.4s period
				if not count % 5:
					value ^= 0x08 # 0.5s period
				if not count % 8:
					value ^= 0x10 # 0.8s period
				if not count % 10:
					value ^= 0x20 # 1.0s period
				if not count % 16:
					value ^= 0x40 # 1.6s period
				if not count % 20:
					value ^= 0x80 # 2.0s period
				if count >= self.__clockMemCountLCM:
					self.__clockMemCount = 0
				self.flags.store(self.__clockMemByteOffset,
						 make_AwlMemoryObject_fromScalar8(value))
			except AwlSimError as e:
				raise AwlSimError("Failed to generate clock "
					"memory signal:\n" + str(e) +\
					"\n\nThe configured clock memory byte "
					"address might be invalid." )

	def __cycleTimeExceed(self): #+cdef
		raise AwlSimError("Cycle time exceed %.3f seconds" % (
				  self.cycleTimeLimit))

	def __checkRunTimeLimit(self): #+cdef
		if (self.__runtimeLimit >= 0.0 and
		    self.now - self.startupTime >= self.__runtimeLimit):
			raise MaintenanceRequest(MaintenanceRequest.TYPE_RTTIMEOUT,
						 "CPU runtime timeout")

	# Make a DATE_AND_TIME for the current wall-time and
	# store it in byteArray, which is a bytearray or compatible.
	# If byteArray is smaller than 8 bytes, an IndexError is raised.
	def makeCurrentDateAndTime(self, byteArray, offset): #@nocy
#@cy	cdef makeCurrentDateAndTime(self, uint8_t *byteArray, uint32_t offset):
#@cy		cdef uint32_t year
#@cy		cdef uint32_t month
#@cy		cdef uint32_t day
#@cy		cdef uint32_t hour
#@cy		cdef uint32_t minute
#@cy		cdef uint32_t second
#@cy		cdef uint32_t msec

		dt = datetime.datetime.now()
		year, month, day, hour, minute, second, msec =\
			dt.year, dt.month, dt.day, dt.hour, \
			dt.minute, dt.second, dt.microsecond // 1000
		byteArray[offset] = (year % 10) | (((year // 10) % 10) << 4)
		byteArray[offset + 1] = (month % 10) | (((month // 10) % 10) << 4)
		byteArray[offset + 2] = (day % 10) | (((day // 10) % 10) << 4)
		byteArray[offset + 3] = (hour % 10) | (((hour // 10) % 10) << 4)
		byteArray[offset + 4] = (minute % 10) | (((minute // 10) % 10) << 4)
		byteArray[offset + 5] = (second % 10) | (((second // 10) % 10) << 4)
		byteArray[offset + 6] = ((msec // 10) % 10) | (((msec // 100) % 10) << 4)
		byteArray[offset + 7] = ((msec % 10) << 4) |\
					self.__dateAndTimeWeekdayMap[dt.weekday()]

	def getCurrentIP(self):
		cse = self.callStackTop
		if cse is None:
			return None #@nocov
		return cse.ip

	def getCurrentInsn(self):
		try:
			cse = self.callStackTop
			if not cse:
				return None #@nocov
			return cse.insns[cse.ip]
		except IndexError as e: #@nocov
			return None

	# Translate a label index into a relative jump.
	# labelIndex must be within the bounds of self.callStackTop.block.labels
	def labelIdxToRelJump(self, labelIndex): #@nocy
#@cy	@cython.boundscheck(False)
#@cy	cdef int32_t labelIdxToRelJump(self, uint32_t labelIndex):
#@cy		cdef CallStackElem cse
#@cy		cdef AwlLabel label

		# Note: Bounds checking of the indexing operator [] is disabled
		#       by @cython.boundscheck(False) in this method.

		# Translate a label index into a relative IP offset.
		cse = self.callStackTop
		if labelIndex < cse.block.nrLabels: #+likely
			label = cse.block.labels[labelIndex]
			return label.insn.ip - cse.ip

		# labelIndex is invalid.
		# This is an error that must never happen.
		raise AwlSimBug("labelIdxToRelJump: labelIndex out of range.") #@nocy
#@cy		return 1

	# Jump to a label.
	# labelIndex must be within the bounds of self.callStackTop.block.labels
	def jumpToLabel(self, labelIndex): #@nocy
#@cy	cdef void jumpToLabel(self, uint32_t labelIndex):
		self.relativeJump = self.labelIdxToRelJump(labelIndex)

	def jumpRelative(self, insnOffset): #@nocy
#@cy	cdef void jumpRelative(self, int32_t insnOffset):
		self.relativeJump = insnOffset

	def __call_FC(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_FC(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CodeBlock fc
#@cy		cdef uint16_t fcNumber

		fcNumber = blockOper.offset.byteOffset
		fc = self.getFC(fcNumber)
		if fc is None: #+unlikely
			return None

		return make_CallStackElem(self, fc, None, None, parameters, False)

	def __call_RAW_FC(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_RAW_FC(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CodeBlock fc
#@cy		cdef uint16_t fcNumber

		fcNumber = blockOper.offset.byteOffset
		fc = self.getFC(fcNumber)
		if fc is None: #+unlikely
			return None

		return make_CallStackElem(self, fc, None, None, (), True)

	def __call_FB(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_FB(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CallStackElem cse
#@cy		cdef CodeBlock fb
#@cy		cdef DB db
#@cy		cdef uint16_t fbNumber
#@cy		cdef uint16_t dbNumber

		fbNumber = blockOper.offset.byteOffset
		fb = self.getFB(fbNumber)
		if fb is None: #+unlikely
			return None
		dbNumber = dbOper.offset.byteOffset
		db = self.getDB(dbNumber)
		if db is None: #+unlikely
			return None

		cse = make_CallStackElem(self, fb, db, make_AwlOffset(0, 0), parameters, False)
		self.dbRegister, self.diRegister = self.diRegister, db

		return cse

	def __call_RAW_FB(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_RAW_FB(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CodeBlock fb
#@cy		cdef uint16_t fbNumber

		fbNumber = blockOper.offset.byteOffset
		fb = self.getFB(fbNumber)
		if fb is None: #+unlikely
			return None

		return make_CallStackElem(self, fb, self.diRegister, None, (), True)

	def __call_SFC(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_SFC(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CodeBlock sfc
#@cy		cdef int32_t sfcNumber

		sfcNumber = blockOper.offset.byteOffset
		sfc = self.getSFC(sfcNumber)
		if sfc is None: #+unlikely
			return None

		return make_CallStackElem(self, sfc, None, None, parameters, False)

	def __call_RAW_SFC(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_RAW_SFC(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CodeBlock sfc
#@cy		cdef int32_t sfcNumber

		sfcNumber = blockOper.offset.byteOffset
		sfc = self.getSFC(sfcNumber)
		if sfc is None: #+unlikely
			return None

		return make_CallStackElem(self, sfc, None, None, (), True)

	def __call_SFB(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_SFB(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CallStackElem cse
#@cy		cdef CodeBlock sfb
#@cy		cdef DB db
#@cy		cdef int32_t sfbNumber
#@cy		cdef uint16_t dbNumber

		sfbNumber = blockOper.offset.byteOffset
		sfb = self.getSFB(sfbNumber)
		if sfb is None: #+unlikely
			return None
		dbNumber = dbOper.offset.byteOffset
		db = self.getDB(dbNumber)
		if db is None: #+unlikely
			return None

		cse = make_CallStackElem(self, sfb, db, make_AwlOffset(0, 0), parameters, False)
		self.dbRegister, self.diRegister = self.diRegister, db

		return cse

	def __call_RAW_SFB(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_RAW_SFB(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CodeBlock sfb
#@cy		cdef int32_t sfbNumber

		sfbNumber = blockOper.offset.byteOffset
		sfb = self.getSFB(sfbNumber)
		if sfb is None: #+unlikely
			return None

		return make_CallStackElem(self, sfb, self.diRegister, None, (), True)

	def __call_INDIRECT(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_INDIRECT(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef CallStackElem cse
#@cy		cdef uint32_t operType

		blockOper = blockOper.resolve(True)
		operType = blockOper.operType

		if operType == AwlOperatorTypes.BLKREF_FC:
			cse = self.__call_RAW_FC(blockOper, dbOper, parameters)
		elif operType == AwlOperatorTypes.BLKREF_FB:
			cse = self.__call_RAW_FB(blockOper, dbOper, parameters)
		elif operType == AwlOperatorTypes.BLKREF_SFC:
			cse = self.__call_RAW_SFC(blockOper, dbOper, parameters)
		elif operType == AwlOperatorTypes.BLKREF_SFB:
			cse = self.__call_RAW_SFB(blockOper, dbOper, parameters)
		else:
			raise AwlSimError("Invalid CALL operand")
		if cse is None:
			raise AwlSimError("Code block %d not found in indirect call" % (
					  blockOper.offset.byteOffset))
		return cse

	def __call_MULTI_FB(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_MULTI_FB(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef AwlOffset base
#@cy		cdef CallStackElem cse
#@cy		cdef CodeBlock fb
#@cy		cdef uint16_t fbNumber

		fbNumber = blockOper.offset.fbNumber
		fb = self.getFB(fbNumber)
		if fb is None: #+unlikely
			return None

		base = make_AwlOffset_fromPointerValue(self.ar2.get())
		base.iadd(blockOper.offset)
		cse = make_CallStackElem(self, fb, self.diRegister, base, parameters, False)
		self.dbRegister = self.diRegister

		return cse

	def __call_MULTI_SFB(self, blockOper, dbOper, parameters): #@nocy
#@cy	cdef CallStackElem __call_MULTI_SFB(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters):
#@cy		cdef AwlOffset base
#@cy		cdef CallStackElem cse
#@cy		cdef CodeBlock sfb
#@cy		cdef int32_t sfbNumber

		sfbNumber = blockOper.offset.fbNumber
		sfb = self.getSFB(sfbNumber)
		if sfb is None: #+unlikely
			return None

		base = make_AwlOffset_fromPointerValue(self.ar2.get())
		base.iadd(blockOper.offset)
		cse = make_CallStackElem(self, sfb, self.diRegister, base, parameters, False)
		self.dbRegister = self.diRegister

		return cse

	def run_CALL(self, blockOper, dbOper, parameters, raw): #@nocy
#@cy	cdef run_CALL(self, AwlOperator blockOper, AwlOperator dbOper, tuple parameters, _Bool raw):
#@cy		cdef CallStackElem newCse
#@cy		cdef uint32_t callStackDepth
#@cy		cdef uint32_t operType

		callStackDepth = self.callStackDepth
		if callStackDepth >= self.specs.callStackSize:
			raise AwlSimError("Maximum CALL stack depth of %d CALLs exceed." % (
				self.specs.callStackSize))

		operType = blockOper.operType
		if raw: #+unlikely
			if operType == AwlOperatorTypes.BLKREF_FC:
				newCse = self.__call_RAW_FC(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.BLKREF_FB:
				newCse = self.__call_RAW_FB(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.BLKREF_SFC:
				newCse = self.__call_RAW_SFC(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.BLKREF_SFB:
				newCse = self.__call_RAW_SFB(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.INDIRECT:
				newCse = self.__call_INDIRECT(blockOper, dbOper, parameters)
			else:
				raise AwlSimError("Invalid CALL operand")
		else:
			if operType == AwlOperatorTypes.BLKREF_FC:
				newCse = self.__call_FC(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.BLKREF_FB:
				newCse = self.__call_FB(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.BLKREF_SFC:
				newCse = self.__call_SFC(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.BLKREF_SFB:
				newCse = self.__call_SFB(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.MULTI_FB:
				newCse = self.__call_MULTI_FB(blockOper, dbOper, parameters)
			elif operType == AwlOperatorTypes.MULTI_SFB:
				newCse = self.__call_MULTI_SFB(blockOper, dbOper, parameters)
			else:
				raise AwlSimError("Invalid CALL operand")
		if newCse is None:
			# This shall never happen.
			raise AwlSimBug("CALL failed to construct call stack element.")

		newCse.prevCse = self.callStackTop
		self.callStackTop = newCse
		self.callStackDepth = callStackDepth + 1 #+suffix-u

	def run_BE(self): #@nocy
#@cy	cdef void run_BE(self):
#@cy		cdef S7StatusWord s

		# This method is declared void and thus must not raise an exception.

		s = self.statusWord
		s.OS, s.OR, s.STA, s.NER = 0, 0, 1, 0
		# Jump beyond end of block
		self.relativeJump = self.callStackTop.nrInsns - self.callStackTop.ip

	def openDB(self, dbNumber, openDI): #@nocy
#@cy	cdef openDB(self, int32_t dbNumber, _Bool openDI):
#@cy		cdef DB db

		if dbNumber <= 0:
			if openDI:
				self.diRegister = self.db0
			else:
				self.dbRegister = self.db0
		else:
			db = self.getDB(dbNumber)
			if db is None:
				raise AwlSimError("Datablock %i does not exist" % dbNumber)
			if openDI:
				self.diRegister = db
			else:
				self.dbRegister = db

	def run_AUF(self, dbOper): #@nocy
#@cy	cdef run_AUF(self, AwlOperator dbOper):
#@cy		cdef _Bool openDI
#@cy		cdef uint32_t operType

		dbOper = dbOper.resolve(True)

		operType = dbOper.operType
		if operType == AwlOperatorTypes.BLKREF_DB:
			openDI = False
		elif operType == AwlOperatorTypes.BLKREF_DI:
			openDI = True
		else:
			raise AwlSimError("Invalid DB reference in AUF")

		self.openDB(dbOper.offset.byteOffset, openDI)

	def run_TDB(self): #@nocy
#@cy	cdef void run_TDB(self):
		# Swap global and instance DB.
		# This method is declared void and thus must not raise an exception.
		self.diRegister, self.dbRegister = self.dbRegister, self.diRegister

	def getAccu(self, index): #@nocy
#@cy	cdef Accu getAccu(self, uint32_t index):
		if index == 1:
			return self.accu1
		elif index == 2:
			return self.accu2
		if self.specs.nrAccus > 2:
			if index == 3:
				return self.accu3
			elif index == 4:
				return self.accu4
		raise AwlSimError("Invalid ACCU offset") #@nocov

	def getAR(self, index): #@nocy
#@cy	cdef Addressregister getAR(self, uint32_t index):
		if index == 1:
			return self.ar1
		elif index == 2:
			return self.ar2
		raise AwlSimError("Invalid AR offset") #@nocov

	def getTimer(self, index): #@nocy
#@cy	cdef Timer getTimer(self, uint32_t index):
		if index >= len(self.timers):
			raise AwlSimError("Fetched invalid timer %d" % index) #@nocov
		return self.timers[index]

	def getCounter(self, index): #@nocy
#@cy	cdef Counter getCounter(self, uint32_t index):
		if index >= len(self.counters):
			raise AwlSimError("Fetched invalid counter %d" % index) #@nocov
		return self.counters[index]

	def getSpecs(self):
		return self.specs

	def getConf(self):
		return self.conf

	def setMcrActive(self, active): #@nocy
#@cy	cdef void setMcrActive(self, _Bool active):
		self.mcrActive = active

	def mcrIsOn(self): #@nocy
#@cy	cdef _Bool mcrIsOn(self):
		return (not self.mcrActive or all(self.mcrStack))

	def mcrStackAppend(self, statusWord): #@nocy
#@cy	cdef mcrStackAppend(self, S7StatusWord statusWord):
		self.mcrStack.append(statusWord.VKE)
		if len(self.mcrStack) > 8:
			raise AwlSimError("MCR stack overflow")

	def mcrStackPop(self): #+cdef
		if not self.mcrStack:
			raise AwlSimError("MCR stack underflow")
		self.mcrStack.pop()

	def __translateFCNamedLocalOper(self, operator, store): #@nocy
#@cy	cdef AwlOperator __translateFCNamedLocalOper(self, AwlOperator operator, _Bool store):
#@cy		cdef uint32_t pointer
#@cy		cdef int32_t opType
#@cy		cdef uint32_t dbNr
#@cy		cdef AwlOperator interfOp
#@cy		cdef AwlOperator dbPtrOp
#@cy		cdef AwlOperator finalOp
#@cy		cdef AwlOffset subOffset

		# Translate an 'operator' to a named local FC parameter.
		# The returned operator is an operator to the actual data.
		interfOp = self.callStackTop.getInterfIdxOper(operator.interfaceIndex).resolve(store)
		if operator.compound:
			# This is a named local variable with compound data type.
			# The operator (interfOp) points to a DB-pointer in VL.
			# First fetch the DB pointer values from VL.
			dbPtrOp = interfOp.dup()
			dbPtrOp.width = 16
			dbNr = AwlMemoryObject_asScalar(
					self.fetch(dbPtrOp,
						   AwlOperatorWidths.WIDTH_MASK_16))
			dbPtrOp.offset.byteOffset += 2
			dbPtrOp.width = 32
			pointer = AwlMemoryObject_asScalar(
					self.fetch(dbPtrOp,
						   AwlOperatorWidths.WIDTH_MASK_32))
			# Open the DB pointed to by the DB-ptr.
			# (This is ok, if dbNr is 0, too)
			self.openDB(dbNr, False)
			# Make an operator from the DB-ptr.
			opType = AwlIndirectOpConst.area2optype(
					(pointer & PointerConst.AREA_MASK_S),
					False)
			if opType < 0: #+unlikely
				raise AwlSimError("Corrupt DB pointer in compound "
					"data type FC variable detected "
					"(invalid area).", insn = operator.insn)
			finalOp = make_AwlOperator(opType, operator.width,
					      make_AwlOffset_fromPointerValue(pointer),
					      operator.insn)
		else:
			# Not a compound data type.
			# The translated operand already points to the variable.
			finalOp = interfOp.dup()
			finalOp.width = operator.width
		# Add possible sub-offsets (ARRAY, STRUCT) to the offset.
		subOffset = operator.offset.subOffset
		if subOffset is not None:
			finalOp.offset.iadd(subOffset)
		# Reparent the operator to the originating instruction.
		# This is especially important for T and Z fetches due
		# to their semantic dependency on the instruction being used.
		finalOp.insn = operator.insn
		return finalOp

	# Fetch a range in the 'output' memory area.
	# 'byteOffset' is the byte offset into the output area.
	# 'byteCount' is the number if bytes to fetch.
	# Returns a bytearray.
	# This raises an AwlSimError, if the access if out of range.
	def fetchOutputRange(self, byteOffset, byteCount): #@nocy
#@cy	cdef bytearray fetchOutputRange(self, uint32_t byteOffset, uint32_t byteCount):
		if byteOffset + byteCount > self.specs.nrOutputs: #@nocy
#@cy		if <uint64_t>byteOffset + <uint64_t>byteCount > <uint64_t>self.specs.nrOutputs:
			raise AwlSimError("Fetch from output process image region "
				"is out of range "
				"(imageSize=%d, fetchOffset=%d, fetchSize=%d)." % (
				self.specs.nrOutputs, byteOffset, byteCount))
		return self.outputs.getRawDataBytes()[byteOffset : byteOffset + byteCount]

	# Same as fetchOutputRange(), but fetches only a single byte.
	def fetchOutputByte(self, byteOffset): #@nocy
#@cy	cdef uint8_t fetchOutputByte(self, uint32_t byteOffset):
		if byteOffset >= self.specs.nrOutputs:
			raise AwlSimError("Fetch of output process image byte "
				"is out of range "
				"(imageSize=%d, fetchOffset=%d)." % (
				self.specs.nrOutputs, byteOffset))
		return self.outputs.getRawDataBytes()[byteOffset]

	# Fetch a range in the 'input' memory area.
	# 'byteOffset' is the byte offset into the input area.
	# 'byteCount' is the number if bytes to fetch.
	# Returns a bytearray.
	# This raises an AwlSimError, if the access if out of range.
	def fetchInputRange(self, byteOffset, byteCount): #@nocy
#@cy	cdef bytearray fetchInputRange(self, uint32_t byteOffset, uint32_t byteCount):
		if byteOffset + byteCount > self.specs.nrInputs: #@nocy
#@cy		if <uint64_t>byteOffset + <uint64_t>byteCount > <uint64_t>self.specs.nrInputs:
			raise AwlSimError("Fetch from input process image region "
				"is out of range "
				"(imageSize=%d, fetchOffset=%d, fetchSize=%d)." % (
				self.specs.nrInputs, byteOffset, byteCount))
		return self.inputs.getRawDataBytes()[byteOffset : byteOffset + byteCount]

	# Same as fetchInputRange(), but fetches only a single byte.
	def fetchInputByte(self, byteOffset): #@nocy
#@cy	cdef uint8_t fetchInputByte(self, uint32_t byteOffset):
		if byteOffset >= self.specs.nrInputs:
			raise AwlSimError("Fetch of input process image byte "
				"is out of range "
				"(imageSize=%d, fetchOffset=%d)." % (
				self.specs.nrInputs, byteOffset))
		return self.inputs.getRawDataBytes()[byteOffset]

	# Store a range in the 'input' memory area.
	# 'byteOffset' is the byte offset into the input area.
	# 'data' is a bytearray.
	# This raises an AwlSimError, if the access if out of range.
	def storeInputRange(self, byteOffset, data): #@nocy
#@cy	cdef storeInputRange(self, uint32_t byteOffset, bytearray data):
#@cy		cdef uint32_t dataLen
#@cy		cdef uint8_t *dataBytes

		dataLen = len(data)
		if byteOffset + dataLen > self.specs.nrInputs: #@nocy
#@cy		if <uint64_t>byteOffset + <uint64_t>dataLen > <uint64_t>self.specs.nrInputs:
			raise AwlSimError("Store to input process image region "
				"is out of range "
				"(imageSize=%d, storeOffset=%d, storeSize=%d)." % (
				self.specs.nrInputs, byteOffset, dataLen))
		dataBytes = self.inputs.getRawDataBytes()
		dataBytes[byteOffset : byteOffset + dataLen] = data #@nocy
#@cy		memcpy(&dataBytes[byteOffset], <const char *>data, dataLen)

	# Same as storeInputRange(), but stores only a single byte.
	def storeInputByte(self, byteOffset, data): #@nocy
#@cy	cdef storeInputByte(self, uint32_t byteOffset, uint8_t data):
		if byteOffset >= self.specs.nrInputs:
			raise AwlSimError("Store to input process image byte "
				"is out of range "
				"(imageSize=%d, storeOffset=%d)." % (
				self.specs.nrInputs, byteOffset))
		dataBytes = self.inputs.getRawDataBytes()[byteOffset] = data

	def fetch(self, operator, allowedWidths):					#@nocy
		try:									#@nocy
			fetchMethod = self.__fetchTypeMethods[operator.operType]	#@nocy
		except KeyError:							#@nocy #@nocov
			self.__invalidFetch(operator)					#@nocy
		return fetchMethod(self, operator, allowedWidths)			#@nocy

#@cy	cdef AwlMemoryObject fetch(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef uint32_t operType
#@cy
#@cy		operType = operator.operType
#@cy		if operType == AwlOperatorTypes.IMM:
#@cy			return self.__fetchIMM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_REAL:
#@cy			return self.__fetchIMM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_S5T:
#@cy			return self.__fetchIMM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_TIME:
#@cy			return self.__fetchIMM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_DATE:
#@cy			return self.__fetchIMM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_DT:
#@cy			return self.__fetchIMM_DT(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_TOD:
#@cy			return self.__fetchIMM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_PTR:
#@cy			return self.__fetchIMM_PTR(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.IMM_STR:
#@cy			return self.__fetchIMM_STR(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_E:
#@cy			return self.__fetchE(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_A:
#@cy			return self.__fetchA(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_M:
#@cy			return self.__fetchM(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_L:
#@cy			return self.__fetchL(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_VL:
#@cy			return self.__fetchVL(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DB:
#@cy			return self.__fetchDB(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DI:
#@cy			return self.__fetchDI(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_T:
#@cy			return self.__fetchT(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_Z:
#@cy			return self.__fetchZ(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_PE:
#@cy			return self.__fetchPE(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DBLG:
#@cy			return self.__fetchDBLG(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DBNO:
#@cy			return self.__fetchDBNO(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DILG:
#@cy			return self.__fetchDILG(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DINO:
#@cy			return self.__fetchDINO(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_AR2:
#@cy			return self.__fetchAR2(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW:
#@cy			return self.__fetchSTW(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_Z:
#@cy			return self.__fetchSTW_Z(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_NZ:
#@cy			return self.__fetchSTW_NZ(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_POS:
#@cy			return self.__fetchSTW_POS(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_NEG:
#@cy			return self.__fetchSTW_NEG(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_POSZ:
#@cy			return self.__fetchSTW_POSZ(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_NEGZ:
#@cy			return self.__fetchSTW_NEGZ(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW_UO:
#@cy			return self.__fetchSTW_UO(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.NAMED_LOCAL:
#@cy			return self.__fetchNAMED_LOCAL(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.NAMED_LOCAL_PTR:
#@cy			return self.__fetchNAMED_LOCAL_PTR(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.NAMED_DBVAR:
#@cy			return self.__fetchNAMED_DBVAR(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.INDIRECT:
#@cy			return self.__fetchINDIRECT(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.VIRT_ACCU:
#@cy			return self.__fetchVirtACCU(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.VIRT_AR:
#@cy			return self.__fetchVirtAR(operator, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.VIRT_DBR:
#@cy			return self.__fetchVirtDBR(operator, allowedWidths)
#@cy		self.__invalidFetch(operator)

	def __invalidFetch(self, operator): #@nocov
		raise AwlSimError("Invalid fetch request: %s" % str(operator))

	def __fetchWidthError(self, operator, allowedWidths):
		raise AwlSimError("Data fetch of %d bits, "
			"but only %s bits are allowed." %\
			(operator.width,
			 listToHumanStr(AwlOperatorWidths.maskToList(allowedWidths))))

	def __fetchIMM(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchIMM(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(operator.immediate,
						       operator.width)

	def __fetchIMM_DT(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchIMM_DT(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromBytes(operator.immediateBytes,
						      operator.width)

	def __fetchIMM_PTR(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchIMM_PTR(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromGeneric(
			operator.pointer.toNativePointerValue(),
			operator.pointer.width)

	def __fetchIMM_STR(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchIMM_STR(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef uint32_t insnType

		if operator.width <= 48 and operator.insn is not None:
			insnType = operator.insn.insnType
			if insnType == AwlInsnTypes.TYPE_L or\
			   insnType >= AwlInsnTypes.TYPE_EXTENDED:
				# This is a special 0-4 character fetch (L) that
				# is transparently translated into an integer.
				if operator.width <= 16:
					return constMemObj_8bit_0
				return make_AwlMemoryObject_fromBytes(operator.immediateBytes[2:],
								      operator.width - 16)

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromBytes(operator.immediateBytes,
						      operator.width)

	def __fetchDBLG(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchDBLG(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			self.dbRegister.struct.getSize(),
			operator.width)

	def __fetchDBNO(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchDBNO(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(self.dbRegister.index,
						       operator.width)

	def __fetchDILG(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchDILG(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			self.diRegister.struct.getSize(),
			operator.width)

	def __fetchDINO(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchDINO(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(self.diRegister.index,
						       operator.width)

	def __fetchAR2(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchAR2(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(self.getAR(2).get(),
						       operator.width)

	def __fetchSTW(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		if operator.width == 1:
			return make_AwlMemoryObject_fromScalar1(
				self.statusWord.getByBitNumber(operator.offset.bitOffset))
		elif operator.width == 16:
			return make_AwlMemoryObject_fromScalar16(
				self.statusWord.getWord())
		else:
			assert(0)

	def __fetchSTW_Z(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_Z(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			((self.statusWord.A0 ^ 1) & (self.statusWord.A1 ^ 1)),
			operator.width)

	def __fetchSTW_NZ(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_NZ(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			(self.statusWord.A0 | self.statusWord.A1),
			operator.width)

	def __fetchSTW_POS(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_POS(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			((self.statusWord.A0 ^ 1) & self.statusWord.A1),
			operator.width)

	def __fetchSTW_NEG(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_NEG(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			(self.statusWord.A0 & (self.statusWord.A1 ^ 1)),
			operator.width)

	def __fetchSTW_POSZ(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_POSZ(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			(self.statusWord.A0 ^ 1),
			operator.width)

	def __fetchSTW_NEGZ(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_NEGZ(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			(self.statusWord.A1 ^ 1),
			operator.width)

	def __fetchSTW_UO(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchSTW_UO(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			(self.statusWord.A0 & self.statusWord.A1),
			operator.width)

	def __fetchE(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchE(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return self.inputs.fetch(operator.offset, operator.width)

	def __fetchA(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchA(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return self.outputs.fetch(operator.offset, operator.width)

	def __fetchM(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchM(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return self.flags.fetch(operator.offset, operator.width)

	def __fetchL(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchL(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef LStackAllocator lstack

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		lstack = self.activeLStack
		return lstack.memory.fetch(lstack.topFrameOffset.add(operator.offset),
					   operator.width)

	def __fetchVL(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchVL(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef CallStackElem cse
#@cy		cdef LStackAllocator lstack
#@cy		cdef LStackFrame *prevFrame

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		lstack = self.activeLStack
		prevFrame = lstack.topFrame.prevFrame
		if not prevFrame:
			raise AwlSimError("Fetch of parent localstack, "
				"but no parent present.")
		return lstack.memory.fetch(operator.offset.addInt(prevFrame.byteOffset, 0),
					   operator.width)

	def __fetchDB(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchDB(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef int32_t dbNumber

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		dbNumber = operator.offset.dbNumber
		if dbNumber >= 0:
			# This is a fully qualified access (DBx.DBx X)
			# Open the data block first.
			self.openDB(dbNumber, False)
		return self.dbRegister.fetch(operator, None)

	def __fetchDI(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchDI(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		if self.callStackTop.block.isFB:
			# Fetch the data using the multi-instance base offset from AR2.
			return self.diRegister.fetch(operator,
						     make_AwlOffset_fromPointerValue(self.ar2.get()))
		# Fetch without base offset.
		return self.diRegister.fetch(operator, None)

	def __fetchPE(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchPE(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef bytearray readBytes
#@cy		cdef uint32_t bitWidth
#@cy		cdef AwlOffset operatorOffset
#@cy		cdef _Bool isInProcImg
#@cy		cdef AwlMemoryObject memObj

		bitWidth = operator.width
		if not (makeAwlOperatorWidthMask(bitWidth) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)
		operatorOffset = operator.offset

		isInProcImg = operatorOffset.toLongBitOffset() + bitWidth < self.specs.nrInputs * 8

		# Fetch the data from the peripheral device.
		readBytes = self.cbPeripheralRead(self.cbPeripheralReadData,
						  bitWidth,
						  operatorOffset.byteOffset)
		if not readBytes:
			printError("There is no hardware to handle "
				"the direct peripheral fetch. "
				"(width=%d, offset=%d)" %\
				(bitWidth, operatorOffset.byteOffset))
			# Read the value from the current process image instead,
			# if it is within the range of the process image.
			# Otherwise return all-zeros.
			if isInProcImg:
				readBytes = self.fetchInputRange(operatorOffset.byteOffset,
								 bitWidth // 8)
			else:
				readBytes = bytearray(bitWidth // 8)
		memObj = make_AwlMemoryObject_fromBytes(readBytes, bitWidth)

		# Store the data to the process image, if it is within the inputs range.
		if isInProcImg:
			self.inputs.store(operatorOffset, memObj)

		return memObj

	def __fetchT(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchT(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef uint32_t insnType
#@cy		cdef uint32_t width

		insnType = operator.insn.insnType
		if insnType == AwlInsnTypes.TYPE_L or\
		   insnType == AwlInsnTypes.TYPE_LC:
			width = 32
		else:
			width = 1
		if not (makeAwlOperatorWidthMask(width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		timer = self.getTimer(operator.offset.byteOffset)
		if insnType == AwlInsnTypes.TYPE_L:
			return make_AwlMemoryObject_fromScalar16(timer.getTimevalBin())
		elif insnType == AwlInsnTypes.TYPE_LC:
			return make_AwlMemoryObject_fromScalar16(timer.getTimevalS5T())
		return make_AwlMemoryObject_fromScalar1(timer.get())

	def __fetchZ(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchZ(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
#@cy		cdef uint32_t insnType
#@cy		cdef uint32_t width

		insnType = operator.insn.insnType
		if insnType == AwlInsnTypes.TYPE_L or\
		   insnType == AwlInsnTypes.TYPE_LC:
			width = 32
		else:
			width = 1
		if not (makeAwlOperatorWidthMask(width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		counter = self.getCounter(operator.offset.byteOffset)
		if insnType == AwlInsnTypes.TYPE_L:
			return make_AwlMemoryObject_fromScalar16(counter.getValueBin())
		elif insnType == AwlInsnTypes.TYPE_LC:
			return make_AwlMemoryObject_fromScalar16(counter.getValueBCD())
		return make_AwlMemoryObject_fromScalar1(counter.get())

	def __fetchNAMED_LOCAL(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchNAMED_LOCAL(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		# load from an FC interface field.
		return self.fetch(self.__translateFCNamedLocalOper(operator, False),
				  allowedWidths)

	def __fetchNAMED_LOCAL_PTR(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchNAMED_LOCAL_PTR(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		assert(operator.offset.subOffset is None) #@nocy
		return make_AwlMemoryObject_fromScalar32(
			self.callStackTop.getInterfIdxOper(operator.interfaceIndex).resolve(False).makePointerValue())

	def __fetchNAMED_DBVAR(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchNAMED_DBVAR(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		# All legit accesses will have been translated to absolute addressing already
		raise AwlSimError("Fully qualified load from DB variable "	#@nocov
			"is not supported in this place.")			#@nocov

	def __fetchINDIRECT(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchINDIRECT(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		return self.fetch(operator.resolve(False), allowedWidths)

	def __fetchVirtACCU(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchVirtACCU(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			self.getAccu(operator.offset.byteOffset).get(),
			operator.width)

	def __fetchVirtAR(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchVirtAR(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		return make_AwlMemoryObject_fromScalar(
			self.getAR(operator.offset.byteOffset).get(),
			operator.width)

	def __fetchVirtDBR(self, operator, allowedWidths): #@nocy
#@cy	cdef AwlMemoryObject __fetchVirtDBR(self, AwlOperator operator, uint32_t allowedWidths) except NULL:
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__fetchWidthError(operator, allowedWidths)

		if operator.offset.byteOffset == 1:
			if self.dbRegister:
				return make_AwlMemoryObject_fromScalar(
					self.dbRegister.index,
					operator.width)
		elif operator.offset.byteOffset == 2:
			if self.diRegister:
				return make_AwlMemoryObject_fromScalar(
					self.diRegister.index,
					operator.width)
		else:
			raise AwlSimError("Invalid __DBR %d. "
				"Must be 1 for DB-register or "
				"2 for DI-register." %\
				operator.offset.byteOffset)
		return constMemObj_16bit_0

	__fetchTypeMethodsDict = {							#@nocy
		AwlOperatorTypes.IMM			: __fetchIMM,			#@nocy
		AwlOperatorTypes.IMM_REAL		: __fetchIMM,			#@nocy
		AwlOperatorTypes.IMM_S5T		: __fetchIMM,			#@nocy
		AwlOperatorTypes.IMM_TIME		: __fetchIMM,			#@nocy
		AwlOperatorTypes.IMM_DATE		: __fetchIMM,			#@nocy
		AwlOperatorTypes.IMM_DT			: __fetchIMM_DT,		#@nocy
		AwlOperatorTypes.IMM_TOD		: __fetchIMM,			#@nocy
		AwlOperatorTypes.IMM_PTR		: __fetchIMM_PTR,		#@nocy
		AwlOperatorTypes.IMM_STR		: __fetchIMM_STR,		#@nocy
		AwlOperatorTypes.MEM_E			: __fetchE,			#@nocy
		AwlOperatorTypes.MEM_A			: __fetchA,			#@nocy
		AwlOperatorTypes.MEM_M			: __fetchM,			#@nocy
		AwlOperatorTypes.MEM_L			: __fetchL,			#@nocy
		AwlOperatorTypes.MEM_VL			: __fetchVL,			#@nocy
		AwlOperatorTypes.MEM_DB			: __fetchDB,			#@nocy
		AwlOperatorTypes.MEM_DI			: __fetchDI,			#@nocy
		AwlOperatorTypes.MEM_T			: __fetchT,			#@nocy
		AwlOperatorTypes.MEM_Z			: __fetchZ,			#@nocy
		AwlOperatorTypes.MEM_PE			: __fetchPE,			#@nocy
		AwlOperatorTypes.MEM_DBLG		: __fetchDBLG,			#@nocy
		AwlOperatorTypes.MEM_DBNO		: __fetchDBNO,			#@nocy
		AwlOperatorTypes.MEM_DILG		: __fetchDILG,			#@nocy
		AwlOperatorTypes.MEM_DINO		: __fetchDINO,			#@nocy
		AwlOperatorTypes.MEM_AR2		: __fetchAR2,			#@nocy
		AwlOperatorTypes.MEM_STW		: __fetchSTW,			#@nocy
		AwlOperatorTypes.MEM_STW_Z		: __fetchSTW_Z,			#@nocy
		AwlOperatorTypes.MEM_STW_NZ		: __fetchSTW_NZ,		#@nocy
		AwlOperatorTypes.MEM_STW_POS		: __fetchSTW_POS,		#@nocy
		AwlOperatorTypes.MEM_STW_NEG		: __fetchSTW_NEG,		#@nocy
		AwlOperatorTypes.MEM_STW_POSZ		: __fetchSTW_POSZ,		#@nocy
		AwlOperatorTypes.MEM_STW_NEGZ		: __fetchSTW_NEGZ,		#@nocy
		AwlOperatorTypes.MEM_STW_UO		: __fetchSTW_UO,		#@nocy
		AwlOperatorTypes.NAMED_LOCAL		: __fetchNAMED_LOCAL,		#@nocy
		AwlOperatorTypes.NAMED_LOCAL_PTR	: __fetchNAMED_LOCAL_PTR,	#@nocy
		AwlOperatorTypes.NAMED_DBVAR		: __fetchNAMED_DBVAR,		#@nocy
		AwlOperatorTypes.INDIRECT		: __fetchINDIRECT,		#@nocy
		AwlOperatorTypes.VIRT_ACCU		: __fetchVirtACCU,		#@nocy
		AwlOperatorTypes.VIRT_AR		: __fetchVirtAR,		#@nocy
		AwlOperatorTypes.VIRT_DBR		: __fetchVirtDBR,		#@nocy
	}										#@nocy

	def store(self, operator, memObj, allowedWidths):				#@nocy
		try:									#@nocy
			storeMethod = self.__storeTypeMethods[operator.operType]	#@nocy
		except KeyError:							#@nocy #@nocov
			self.__invalidStore(operator)					#@nocy
		storeMethod(self, operator, memObj, allowedWidths)			#@nocy

#@cy	cdef store(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
#@cy		cdef uint32_t operType
#@cy
#@cy		operType = operator.operType
#@cy		if operType == AwlOperatorTypes.MEM_E:
#@cy			self.__storeE(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_A:
#@cy			self.__storeA(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_M:
#@cy			self.__storeM(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_L:
#@cy			self.__storeL(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_VL:
#@cy			self.__storeVL(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DB:
#@cy			self.__storeDB(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_DI:
#@cy			self.__storeDI(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_PA:
#@cy			self.__storePA(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_AR2:
#@cy			self.__storeAR2(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.MEM_STW:
#@cy			self.__storeSTW(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.NAMED_LOCAL:
#@cy			self.__storeNAMED_LOCAL(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.NAMED_DBVAR:
#@cy			self.__storeNAMED_DBVAR(operator, memObj, allowedWidths)
#@cy		elif operType == AwlOperatorTypes.INDIRECT:
#@cy			self.__storeINDIRECT(operator, memObj, allowedWidths)
#@cy		else:
#@cy			self.__invalidStore(operator)

	def __invalidStore(self, operator): #@nocov
		raise AwlSimError("Invalid store request: %s" % str(operator))

	def __storeWidthError(self, operator, allowedWidths):
		raise AwlSimError("Data store of %d bits, "
			"but only %s bits are allowed." %\
			(operator.width,
			 listToHumanStr(AwlOperatorWidths.maskToList(allowedWidths))))

	def __storeE(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeE(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		AwlMemoryObject_assertWidth(memObj, operator.width)
		self.inputs.store(operator.offset, memObj)

	def __storeA(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeA(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		AwlMemoryObject_assertWidth(memObj, operator.width)
		self.outputs.store(operator.offset, memObj)

	def __storeM(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeM(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		AwlMemoryObject_assertWidth(memObj, operator.width)
		self.flags.store(operator.offset, memObj)

	def __storeL(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeL(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
#@cy		cdef LStackAllocator lstack

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		AwlMemoryObject_assertWidth(memObj, operator.width)
		lstack = self.activeLStack
		lstack.memory.store(lstack.topFrameOffset.add(operator.offset),
				    memObj)

	def __storeVL(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeVL(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
#@cy		cdef CallStackElem cse
#@cy		cdef LStackFrame *prevFrame

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		AwlMemoryObject_assertWidth(memObj, operator.width)
		lstack = self.activeLStack
		prevFrame = lstack.topFrame.prevFrame
		if not prevFrame:
			raise AwlSimError("Store to parent localstack, "
				"but no parent present.")
		lstack.memory.store(operator.offset.addInt(prevFrame.byteOffset, 0),
				    memObj)

	def __storeDB(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeDB(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
#@cy		cdef DB db
#@cy		cdef int32_t dbNumber

		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		dbNumber = operator.offset.dbNumber
		if dbNumber < 0:
			db = self.dbRegister
		else:
			db = self.getDB(dbNumber)
			if db is None:
				raise AwlSimError("Store to DB %d, but DB "
					"does not exist" % dbNumber)
		db.store(operator, memObj, None)

	def __storeDI(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeDI(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		if self.callStackTop.block.isFB:
			# Store the data using the multi-instance base offset from AR2.
			self.diRegister.store(operator, memObj,
					      make_AwlOffset_fromPointerValue(self.ar2.get()))
		else:
			# Store without base offset.
			self.diRegister.store(operator, memObj, None)

	def __storePA(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storePA(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
#@cy		cdef _Bool ok
#@cy		cdef uint32_t bitWidth
#@cy		cdef AwlOffset operatorOffset

		bitWidth = operator.width
		if not (makeAwlOperatorWidthMask(bitWidth) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)
		operatorOffset = operator.offset

		# Store the data to the process image, if it is within the outputs range.
		if operatorOffset.toLongBitOffset() + bitWidth < self.specs.nrOutputs * 8:
			self.outputs.store(operatorOffset, memObj)

		# Store the data to the peripheral device.
		ok = self.cbPeripheralWrite(self.cbPeripheralWriteData,
					    bitWidth,
					    operatorOffset.byteOffset,
					    AwlMemoryObject_asBytes(memObj))
		if not ok:
			printError("There is no hardware to handle "
				"the direct peripheral store. "
				"(width=%d, offset=%d)" %\
				(bitWidth, operatorOffset.byteOffset))

	def __storeAR2(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeAR2(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		self.getAR(2).set(AwlMemoryObject_asScalar(memObj))

	def __storeSTW(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeSTW(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		if not (makeAwlOperatorWidthMask(operator.width) & allowedWidths):
			self.__storeWidthError(operator, allowedWidths)

		if operator.width == 1:
			raise AwlSimError("Cannot store to individual STW bits")
		elif operator.width == 16:
			self.statusWord.setWord(AwlMemoryObject_asScalar(memObj))
		else:
			assert(0)

	def __storeNAMED_LOCAL(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeNAMED_LOCAL(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		# store to an FC interface field.
		self.store(self.__translateFCNamedLocalOper(operator, True),
			   memObj, allowedWidths)

	def __storeNAMED_DBVAR(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeNAMED_DBVAR(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		# All legit accesses will have been translated to absolute addressing already
		raise AwlSimError("Fully qualified store to DB variable "	#@nocov
			"is not supported in this place.")			#@nocov

	def __storeINDIRECT(self, operator, memObj, allowedWidths): #@nocy
#@cy	cdef __storeINDIRECT(self, AwlOperator operator, AwlMemoryObject memObj, uint32_t allowedWidths):
		self.store(operator.resolve(True), memObj, allowedWidths)

	__storeTypeMethodsDict = {						#@nocy
		AwlOperatorTypes.MEM_E			: __storeE,		#@nocy
		AwlOperatorTypes.MEM_A			: __storeA,		#@nocy
		AwlOperatorTypes.MEM_M			: __storeM,		#@nocy
		AwlOperatorTypes.MEM_L			: __storeL,		#@nocy
		AwlOperatorTypes.MEM_VL			: __storeVL,		#@nocy
		AwlOperatorTypes.MEM_DB			: __storeDB,		#@nocy
		AwlOperatorTypes.MEM_DI			: __storeDI,		#@nocy
		AwlOperatorTypes.MEM_PA			: __storePA,		#@nocy
		AwlOperatorTypes.MEM_AR2		: __storeAR2,		#@nocy
		AwlOperatorTypes.MEM_STW		: __storeSTW,		#@nocy
		AwlOperatorTypes.NAMED_LOCAL		: __storeNAMED_LOCAL,	#@nocy
		AwlOperatorTypes.NAMED_DBVAR		: __storeNAMED_DBVAR,	#@nocy
		AwlOperatorTypes.INDIRECT		: __storeINDIRECT,	#@nocy
	}									#@nocy

	def __dumpMem(self, prefix, memory, byteOffset, maxLen):
		if not memory or maxLen <= 0:
			return [ prefix + "--" ]
		memArray = memory.getDataBytes()
		ret, line, first, count, i = [], [], True, 0, byteOffset
		def append(line):
			ret.append((prefix if first else (' ' * len(prefix))) +\
				   ' '.join(line))
		try:
			end = maxLen + byteOffset
			while i < end:
				line.append("%02X" % memArray[i])
				count += 1
				if count >= 16:
					append(line)
					line, count, first = [], 0, False
				i += 1
		except IndexError as e: #@nocov
			pass # memArray out of bounds access.
		if count:
			append(line)
		return ret

	def __dumpLStackFrame(self, prefix, frame): #@nocy
#@cy	cdef __dumpLStackFrame(self, prefix, LStackFrame *frame):
		if frame:
			memory = self.activeLStack.memory
			byteOffset = frame.byteOffset
			allocBits = frame.allocBits
		else: #@nocov
			memory, byteOffset, allocBits = None, 0, 0
		lines = self.__dumpMem(prefix,
				       memory,
				       byteOffset,
				       min(64, intDivRoundUp(allocBits, 8)))
		lines.extend( [ (" " * len(prefix)) + "--" ] * (4 - len(lines)) )
		return lines

	def dump(self, withTime=True): #@nocov
#@cy		cdef LStackFrame *frame

		callStackTop = self.callStackTop
		if not callStackTop:
			return ""
		mnemonics = self.getMnemonics()
		isEnglish = (mnemonics == S7CPUConfig.MNEMONICS_EN)
		specs = self.specs
		self.updateTimestamp()
		ret = []
		ret.append("[S7-CPU]  t: %.01fs  %s / py%d / %s / v%s" %\
			   ((self.now - self.startupTime) if withTime else 0.0,
			    pythonInterpreter,
			    3 if isPy3Compat else 2,
			    "Win" if osIsWindows else ("Posix" if osIsPosix else "unknown"),
			    VERSION_STRING))
		ret.append("    STW:  " + self.statusWord.getString(mnemonics))
		if self.is4accu:
			accus = ( accu.toHex()
				  for accu in (self.accu1, self.accu2,
					       self.accu3, self.accu4) )
		else:
			accus = ( accu.toHex()
				  for accu in (self.accu1, self.accu2) )
		ret.append("   Accu:  " + "  ".join(accus))
		ars = ( "%s (%s)" % (ar.toHex(), ar.toPointerString())
			for ar in (self.ar1, self.ar2) )
		ret.append("     AR:  " + "  ".join(ars))
		ret.extend(self.__dumpMem("      M:  ",
					  self.flags, 0,
					  min(64, specs.nrFlags)))
		prefix = "      I:  " if isEnglish else "      E:  "
		ret.extend(self.__dumpMem(prefix,
					  self.inputs, 0,
					  min(64, specs.nrInputs)))
		prefix = "      Q:  " if isEnglish else "      A:  "
		ret.extend(self.__dumpMem(prefix,
					  self.outputs, 0,
					  min(64, specs.nrOutputs)))
		pstack = str(callStackTop.parenStack) if callStackTop.parenStack else "--"
		ret.append(" PStack:  " + pstack)
		ret.append("  DBreg:  %s  %s" % (str(self.dbRegister),
						 str(self.diRegister).replace("DB", "DI")))
		if callStackTop:
			elemsMax, elemsCount, elems, cse =\
				8, 0, [], callStackTop
			while cse is not None:
				elemsCount += 1
				elems.insert(0, cse.block)
				cse = cse.prevCse
			assert(elemsCount == self.callStackDepth)
			ret.append("  Calls:  (%d)  %s%s" %\
				   (elemsCount, " -> ".join(str(e) for e in elems[:elemsMax]),
				    " -> ..." if len(elems) > elemsMax else ""))
			frame = self.activeLStack.topFrame
			ret.extend(self.__dumpLStackFrame("      L:  ", frame))
			frame = frame.prevFrame if frame else None #+NoneToNULL
			ret.extend(self.__dumpLStackFrame("     VL:  ", frame))
		else:
			ret.append("  Calls:  None")
		curInsn = self.getCurrentInsn()
		ret.append("   Stmt:  IP:%s   %s" %\
			   (str(self.getCurrentIP()),
			    str(curInsn) if curInsn else "none"))
		ret.append("  Speed:  %s stmt/s (= %s us/stmt)  %.01f stmt/cycle" % (
			   self.insnPerSecondHR,
			   self.usPerInsnHR,
			   self.avgInsnPerCycle))
		if Logging.loglevel >= Logging.LOG_VERBOSE:
			ret.append("   time:  update-interval: %.01f/0x%X" % (
				   self.__timestampUpdInter,
				   self.__timestampUpdInterMask))
		avgCycleTime = self.avgCycleTime
		minCycleTime = self.minCycleTime
		maxCycleTime = self.maxCycleTime
		if maxCycleTime == 0.0:
			avgCycleTimeStr = minCycleTimeStr = maxCycleTimeStr = "-/-"
		else:
			if avgCycleTime == 0.0:
				avgCycleTimeStr = "-/-"
			else:
				avgCycleTimeStr = "%.03f" % (self.avgCycleTime * 1000.0)
			minCycleTimeStr = "%.03f" % (self.minCycleTime * 1000.0)
			maxCycleTimeStr = "%.03f" % (self.maxCycleTime * 1000.0)
		ret.append("    OB1:  avg: %s ms  min: %s ms  max: %s ms" % (
			   avgCycleTimeStr, minCycleTimeStr, maxCycleTimeStr))
		return '\n'.join(ret)

	@property
	def insnPerSecondHR(self): #@nocov
		"""Get a human readable instructions per seconds string.
		"""
		insnPerSecond = self.insnPerSecond
		if insnPerSecond > 0.0:
			return floatToHumanReadable(insnPerSecond)
		return "-/-"

	@property
	def usPerInsnHR(self): #@nocov
		"""Get a human readable microseconds per instructions string.
		"""
		insnPerSecond = self.insnPerSecond
		if insnPerSecond > 0.0:
			usPerInsnStr = "%.03f" % ((1.0 / insnPerSecond) * 1000000)
		else:
			usPerInsnStr = "-/-"
		return usPerInsnStr

	def __repr__(self): #@nocov
		return self.dump()
bues.ch cgit interface