forked from m-labs/VexRiscv-verilog
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathVexRiscv_SlimCfuDebug.v
6308 lines (6108 loc) · 250 KB
/
VexRiscv_SlimCfuDebug.v
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
// Generator : SpinalHDL v1.4.3 git head : adf552d8f500e7419fff395b7049228e4bc5de26
// Component : VexRiscv
// Git hash : 6db4891bfe4078a7b5fdad5e4653428f87060c21
`define Input2Kind_defaultEncoding_type [0:0]
`define Input2Kind_defaultEncoding_RS 1'b0
`define Input2Kind_defaultEncoding_IMM_I 1'b1
`define EnvCtrlEnum_defaultEncoding_type [1:0]
`define EnvCtrlEnum_defaultEncoding_NONE 2'b00
`define EnvCtrlEnum_defaultEncoding_XRET 2'b01
`define EnvCtrlEnum_defaultEncoding_WFI 2'b10
`define EnvCtrlEnum_defaultEncoding_ECALL 2'b11
`define BranchCtrlEnum_defaultEncoding_type [1:0]
`define BranchCtrlEnum_defaultEncoding_INC 2'b00
`define BranchCtrlEnum_defaultEncoding_B 2'b01
`define BranchCtrlEnum_defaultEncoding_JAL 2'b10
`define BranchCtrlEnum_defaultEncoding_JALR 2'b11
`define ShiftCtrlEnum_defaultEncoding_type [1:0]
`define ShiftCtrlEnum_defaultEncoding_DISABLE_1 2'b00
`define ShiftCtrlEnum_defaultEncoding_SLL_1 2'b01
`define ShiftCtrlEnum_defaultEncoding_SRL_1 2'b10
`define ShiftCtrlEnum_defaultEncoding_SRA_1 2'b11
`define AluBitwiseCtrlEnum_defaultEncoding_type [1:0]
`define AluBitwiseCtrlEnum_defaultEncoding_XOR_1 2'b00
`define AluBitwiseCtrlEnum_defaultEncoding_OR_1 2'b01
`define AluBitwiseCtrlEnum_defaultEncoding_AND_1 2'b10
`define Src2CtrlEnum_defaultEncoding_type [1:0]
`define Src2CtrlEnum_defaultEncoding_RS 2'b00
`define Src2CtrlEnum_defaultEncoding_IMI 2'b01
`define Src2CtrlEnum_defaultEncoding_IMS 2'b10
`define Src2CtrlEnum_defaultEncoding_PC 2'b11
`define AluCtrlEnum_defaultEncoding_type [1:0]
`define AluCtrlEnum_defaultEncoding_ADD_SUB 2'b00
`define AluCtrlEnum_defaultEncoding_SLT_SLTU 2'b01
`define AluCtrlEnum_defaultEncoding_BITWISE 2'b10
`define Src1CtrlEnum_defaultEncoding_type [1:0]
`define Src1CtrlEnum_defaultEncoding_RS 2'b00
`define Src1CtrlEnum_defaultEncoding_IMU 2'b01
`define Src1CtrlEnum_defaultEncoding_PC_INCREMENT 2'b10
`define Src1CtrlEnum_defaultEncoding_URS1 2'b11
module VexRiscv_inner (
input [31:0] externalResetVector,
input timerInterrupt,
input softwareInterrupt,
output CfuPlugin_bus_cmd_valid,
input CfuPlugin_bus_cmd_ready,
output [9:0] CfuPlugin_bus_cmd_payload_function_id,
output [31:0] CfuPlugin_bus_cmd_payload_inputs_0,
output [31:0] CfuPlugin_bus_cmd_payload_inputs_1,
input CfuPlugin_bus_rsp_valid,
output CfuPlugin_bus_rsp_ready,
input CfuPlugin_bus_rsp_payload_response_ok,
input [31:0] CfuPlugin_bus_rsp_payload_outputs_0,
input [31:0] externalInterruptArray,
input debug_bus_cmd_valid,
output reg debug_bus_cmd_ready,
input debug_bus_cmd_payload_wr,
input [7:0] debug_bus_cmd_payload_address,
input [31:0] debug_bus_cmd_payload_data,
output reg [31:0] debug_bus_rsp_data,
output debug_resetOut,
output reg iBusWishbone_CYC,
output reg iBusWishbone_STB,
input iBusWishbone_ACK,
output iBusWishbone_WE,
output [29:0] iBusWishbone_ADR,
input [31:0] iBusWishbone_DAT_MISO,
output [31:0] iBusWishbone_DAT_MOSI,
output [3:0] iBusWishbone_SEL,
input iBusWishbone_ERR,
output [2:0] iBusWishbone_CTI,
output [1:0] iBusWishbone_BTE,
output dBusWishbone_CYC,
output dBusWishbone_STB,
input dBusWishbone_ACK,
output dBusWishbone_WE,
output [29:0] dBusWishbone_ADR,
input [31:0] dBusWishbone_DAT_MISO,
output [31:0] dBusWishbone_DAT_MOSI,
output reg [3:0] dBusWishbone_SEL,
input dBusWishbone_ERR,
output [2:0] dBusWishbone_CTI,
output [1:0] dBusWishbone_BTE,
input clk,
input reset,
input debugReset
);
wire _zz_216;
wire _zz_217;
wire _zz_218;
wire _zz_219;
wire _zz_220;
wire _zz_221;
wire _zz_222;
wire _zz_223;
reg _zz_224;
reg [31:0] _zz_225;
reg [31:0] _zz_226;
reg [31:0] _zz_227;
wire IBusCachedPlugin_cache_io_cpu_prefetch_haltIt;
wire [31:0] IBusCachedPlugin_cache_io_cpu_fetch_data;
wire [31:0] IBusCachedPlugin_cache_io_cpu_fetch_physicalAddress;
wire IBusCachedPlugin_cache_io_cpu_decode_error;
wire IBusCachedPlugin_cache_io_cpu_decode_mmuRefilling;
wire IBusCachedPlugin_cache_io_cpu_decode_mmuException;
wire [31:0] IBusCachedPlugin_cache_io_cpu_decode_data;
wire IBusCachedPlugin_cache_io_cpu_decode_cacheMiss;
wire [31:0] IBusCachedPlugin_cache_io_cpu_decode_physicalAddress;
wire IBusCachedPlugin_cache_io_mem_cmd_valid;
wire [31:0] IBusCachedPlugin_cache_io_mem_cmd_payload_address;
wire [2:0] IBusCachedPlugin_cache_io_mem_cmd_payload_size;
wire _zz_228;
wire _zz_229;
wire _zz_230;
wire _zz_231;
wire _zz_232;
wire _zz_233;
wire _zz_234;
wire _zz_235;
wire _zz_236;
wire _zz_237;
wire _zz_238;
wire _zz_239;
wire _zz_240;
wire _zz_241;
wire _zz_242;
wire _zz_243;
wire _zz_244;
wire _zz_245;
wire _zz_246;
wire [1:0] _zz_247;
wire _zz_248;
wire _zz_249;
wire _zz_250;
wire _zz_251;
wire _zz_252;
wire _zz_253;
wire _zz_254;
wire _zz_255;
wire _zz_256;
wire _zz_257;
wire _zz_258;
wire [1:0] _zz_259;
wire _zz_260;
wire _zz_261;
wire [5:0] _zz_262;
wire _zz_263;
wire _zz_264;
wire _zz_265;
wire _zz_266;
wire _zz_267;
wire _zz_268;
wire _zz_269;
wire [1:0] _zz_270;
wire _zz_271;
wire [1:0] _zz_272;
wire [51:0] _zz_273;
wire [51:0] _zz_274;
wire [51:0] _zz_275;
wire [32:0] _zz_276;
wire [51:0] _zz_277;
wire [49:0] _zz_278;
wire [51:0] _zz_279;
wire [49:0] _zz_280;
wire [51:0] _zz_281;
wire [32:0] _zz_282;
wire [31:0] _zz_283;
wire [32:0] _zz_284;
wire [0:0] _zz_285;
wire [0:0] _zz_286;
wire [0:0] _zz_287;
wire [0:0] _zz_288;
wire [0:0] _zz_289;
wire [0:0] _zz_290;
wire [0:0] _zz_291;
wire [0:0] _zz_292;
wire [0:0] _zz_293;
wire [0:0] _zz_294;
wire [0:0] _zz_295;
wire [0:0] _zz_296;
wire [0:0] _zz_297;
wire [0:0] _zz_298;
wire [0:0] _zz_299;
wire [0:0] _zz_300;
wire [0:0] _zz_301;
wire [0:0] _zz_302;
wire [3:0] _zz_303;
wire [2:0] _zz_304;
wire [31:0] _zz_305;
wire [11:0] _zz_306;
wire [31:0] _zz_307;
wire [19:0] _zz_308;
wire [11:0] _zz_309;
wire [31:0] _zz_310;
wire [31:0] _zz_311;
wire [19:0] _zz_312;
wire [11:0] _zz_313;
wire [2:0] _zz_314;
wire [0:0] _zz_315;
wire [2:0] _zz_316;
wire [4:0] _zz_317;
wire [11:0] _zz_318;
wire [11:0] _zz_319;
wire [31:0] _zz_320;
wire [31:0] _zz_321;
wire [31:0] _zz_322;
wire [31:0] _zz_323;
wire [31:0] _zz_324;
wire [31:0] _zz_325;
wire [31:0] _zz_326;
wire [11:0] _zz_327;
wire [19:0] _zz_328;
wire [11:0] _zz_329;
wire [31:0] _zz_330;
wire [31:0] _zz_331;
wire [31:0] _zz_332;
wire [11:0] _zz_333;
wire [19:0] _zz_334;
wire [11:0] _zz_335;
wire [2:0] _zz_336;
wire [1:0] _zz_337;
wire [1:0] _zz_338;
wire [1:0] _zz_339;
wire [1:0] _zz_340;
wire [1:0] _zz_341;
wire [1:0] _zz_342;
wire [9:0] _zz_343;
wire [7:0] _zz_344;
wire [65:0] _zz_345;
wire [65:0] _zz_346;
wire [31:0] _zz_347;
wire [31:0] _zz_348;
wire [0:0] _zz_349;
wire [5:0] _zz_350;
wire [32:0] _zz_351;
wire [31:0] _zz_352;
wire [31:0] _zz_353;
wire [32:0] _zz_354;
wire [32:0] _zz_355;
wire [32:0] _zz_356;
wire [32:0] _zz_357;
wire [0:0] _zz_358;
wire [32:0] _zz_359;
wire [0:0] _zz_360;
wire [32:0] _zz_361;
wire [0:0] _zz_362;
wire [31:0] _zz_363;
wire [0:0] _zz_364;
wire [0:0] _zz_365;
wire [0:0] _zz_366;
wire [0:0] _zz_367;
wire [0:0] _zz_368;
wire [0:0] _zz_369;
wire [0:0] _zz_370;
wire [26:0] _zz_371;
wire _zz_372;
wire _zz_373;
wire [1:0] _zz_374;
wire [31:0] _zz_375;
wire [31:0] _zz_376;
wire [31:0] _zz_377;
wire _zz_378;
wire [0:0] _zz_379;
wire [13:0] _zz_380;
wire [31:0] _zz_381;
wire [31:0] _zz_382;
wire [31:0] _zz_383;
wire _zz_384;
wire [0:0] _zz_385;
wire [7:0] _zz_386;
wire [31:0] _zz_387;
wire [31:0] _zz_388;
wire [31:0] _zz_389;
wire _zz_390;
wire [0:0] _zz_391;
wire [1:0] _zz_392;
wire _zz_393;
wire _zz_394;
wire _zz_395;
wire [31:0] _zz_396;
wire [0:0] _zz_397;
wire [0:0] _zz_398;
wire _zz_399;
wire [0:0] _zz_400;
wire [27:0] _zz_401;
wire [0:0] _zz_402;
wire [0:0] _zz_403;
wire [0:0] _zz_404;
wire [0:0] _zz_405;
wire _zz_406;
wire [0:0] _zz_407;
wire [22:0] _zz_408;
wire [31:0] _zz_409;
wire [31:0] _zz_410;
wire [31:0] _zz_411;
wire _zz_412;
wire _zz_413;
wire [0:0] _zz_414;
wire [0:0] _zz_415;
wire [0:0] _zz_416;
wire [0:0] _zz_417;
wire _zz_418;
wire [0:0] _zz_419;
wire [19:0] _zz_420;
wire [31:0] _zz_421;
wire [31:0] _zz_422;
wire _zz_423;
wire _zz_424;
wire [0:0] _zz_425;
wire [1:0] _zz_426;
wire [0:0] _zz_427;
wire [0:0] _zz_428;
wire _zz_429;
wire [0:0] _zz_430;
wire [16:0] _zz_431;
wire [31:0] _zz_432;
wire [31:0] _zz_433;
wire [31:0] _zz_434;
wire [31:0] _zz_435;
wire [31:0] _zz_436;
wire [31:0] _zz_437;
wire [31:0] _zz_438;
wire [31:0] _zz_439;
wire _zz_440;
wire [1:0] _zz_441;
wire [1:0] _zz_442;
wire _zz_443;
wire [0:0] _zz_444;
wire [13:0] _zz_445;
wire [31:0] _zz_446;
wire [31:0] _zz_447;
wire [31:0] _zz_448;
wire [31:0] _zz_449;
wire [0:0] _zz_450;
wire [0:0] _zz_451;
wire [0:0] _zz_452;
wire [3:0] _zz_453;
wire [0:0] _zz_454;
wire [0:0] _zz_455;
wire _zz_456;
wire [0:0] _zz_457;
wire [10:0] _zz_458;
wire [31:0] _zz_459;
wire [31:0] _zz_460;
wire [31:0] _zz_461;
wire [31:0] _zz_462;
wire [31:0] _zz_463;
wire _zz_464;
wire [0:0] _zz_465;
wire [0:0] _zz_466;
wire [31:0] _zz_467;
wire _zz_468;
wire [0:0] _zz_469;
wire [3:0] _zz_470;
wire [0:0] _zz_471;
wire [3:0] _zz_472;
wire [5:0] _zz_473;
wire [5:0] _zz_474;
wire _zz_475;
wire [0:0] _zz_476;
wire [7:0] _zz_477;
wire [31:0] _zz_478;
wire [31:0] _zz_479;
wire [31:0] _zz_480;
wire [31:0] _zz_481;
wire [31:0] _zz_482;
wire [31:0] _zz_483;
wire [31:0] _zz_484;
wire [31:0] _zz_485;
wire [0:0] _zz_486;
wire [1:0] _zz_487;
wire _zz_488;
wire [0:0] _zz_489;
wire [1:0] _zz_490;
wire [0:0] _zz_491;
wire [3:0] _zz_492;
wire [0:0] _zz_493;
wire [0:0] _zz_494;
wire [1:0] _zz_495;
wire [1:0] _zz_496;
wire _zz_497;
wire [0:0] _zz_498;
wire [5:0] _zz_499;
wire [31:0] _zz_500;
wire [31:0] _zz_501;
wire _zz_502;
wire _zz_503;
wire [31:0] _zz_504;
wire [31:0] _zz_505;
wire [31:0] _zz_506;
wire _zz_507;
wire _zz_508;
wire [31:0] _zz_509;
wire [31:0] _zz_510;
wire _zz_511;
wire [0:0] _zz_512;
wire [1:0] _zz_513;
wire [31:0] _zz_514;
wire [31:0] _zz_515;
wire _zz_516;
wire _zz_517;
wire [0:0] _zz_518;
wire [0:0] _zz_519;
wire _zz_520;
wire [0:0] _zz_521;
wire [3:0] _zz_522;
wire [31:0] _zz_523;
wire [31:0] _zz_524;
wire [31:0] _zz_525;
wire [31:0] _zz_526;
wire [31:0] _zz_527;
wire [31:0] _zz_528;
wire [31:0] _zz_529;
wire _zz_530;
wire _zz_531;
wire [31:0] _zz_532;
wire [31:0] _zz_533;
wire [31:0] _zz_534;
wire [31:0] _zz_535;
wire [0:0] _zz_536;
wire [2:0] _zz_537;
wire [0:0] _zz_538;
wire [0:0] _zz_539;
wire _zz_540;
wire [0:0] _zz_541;
wire [1:0] _zz_542;
wire [31:0] _zz_543;
wire [31:0] _zz_544;
wire [31:0] _zz_545;
wire _zz_546;
wire _zz_547;
wire [31:0] _zz_548;
wire _zz_549;
wire [0:0] _zz_550;
wire [0:0] _zz_551;
wire [0:0] _zz_552;
wire [0:0] _zz_553;
wire [1:0] _zz_554;
wire [1:0] _zz_555;
wire [0:0] _zz_556;
wire [0:0] _zz_557;
wire [31:0] _zz_558;
wire [31:0] _zz_559;
wire [31:0] _zz_560;
wire [31:0] _zz_561;
wire [31:0] _zz_562;
wire [31:0] _zz_563;
wire _zz_564;
wire _zz_565;
wire _zz_566;
wire [31:0] _zz_567;
wire [51:0] memory_MUL_LOW;
wire [31:0] memory_MEMORY_READ_DATA;
wire [33:0] memory_MUL_HH;
wire [33:0] execute_MUL_HH;
wire [33:0] execute_MUL_HL;
wire [33:0] execute_MUL_LH;
wire [31:0] execute_MUL_LL;
wire writeBack_CfuPlugin_CFU_IN_FLIGHT;
wire execute_CfuPlugin_CFU_IN_FLIGHT;
wire [31:0] execute_SHIFT_RIGHT;
wire [31:0] writeBack_REGFILE_WRITE_DATA;
wire [31:0] execute_REGFILE_WRITE_DATA;
wire [1:0] memory_MEMORY_ADDRESS_LOW;
wire [1:0] execute_MEMORY_ADDRESS_LOW;
wire decode_DO_EBREAK;
wire decode_CSR_READ_OPCODE;
wire decode_CSR_WRITE_OPCODE;
wire decode_PREDICTION_HAD_BRANCHED2;
wire decode_SRC2_FORCE_ZERO;
wire decode_IS_RS2_SIGNED;
wire decode_IS_RS1_SIGNED;
wire decode_IS_DIV;
wire memory_IS_MUL;
wire execute_IS_MUL;
wire decode_IS_MUL;
wire `Input2Kind_defaultEncoding_type decode_CfuPlugin_CFU_INPUT_2_KIND;
wire `Input2Kind_defaultEncoding_type _zz_1;
wire `Input2Kind_defaultEncoding_type _zz_2;
wire `Input2Kind_defaultEncoding_type _zz_3;
wire decode_CfuPlugin_CFU_ENABLE;
wire `EnvCtrlEnum_defaultEncoding_type _zz_4;
wire `EnvCtrlEnum_defaultEncoding_type _zz_5;
wire `EnvCtrlEnum_defaultEncoding_type _zz_6;
wire `EnvCtrlEnum_defaultEncoding_type _zz_7;
wire `EnvCtrlEnum_defaultEncoding_type decode_ENV_CTRL;
wire `EnvCtrlEnum_defaultEncoding_type _zz_8;
wire `EnvCtrlEnum_defaultEncoding_type _zz_9;
wire `EnvCtrlEnum_defaultEncoding_type _zz_10;
wire decode_IS_CSR;
wire `BranchCtrlEnum_defaultEncoding_type _zz_11;
wire `BranchCtrlEnum_defaultEncoding_type _zz_12;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_13;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_14;
wire `ShiftCtrlEnum_defaultEncoding_type decode_SHIFT_CTRL;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_15;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_16;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_17;
wire `AluBitwiseCtrlEnum_defaultEncoding_type decode_ALU_BITWISE_CTRL;
wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_18;
wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_19;
wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_20;
wire decode_SRC_LESS_UNSIGNED;
wire decode_MEMORY_STORE;
wire execute_BYPASSABLE_MEMORY_STAGE;
wire decode_BYPASSABLE_MEMORY_STAGE;
wire decode_BYPASSABLE_EXECUTE_STAGE;
wire `Src2CtrlEnum_defaultEncoding_type decode_SRC2_CTRL;
wire `Src2CtrlEnum_defaultEncoding_type _zz_21;
wire `Src2CtrlEnum_defaultEncoding_type _zz_22;
wire `Src2CtrlEnum_defaultEncoding_type _zz_23;
wire `AluCtrlEnum_defaultEncoding_type decode_ALU_CTRL;
wire `AluCtrlEnum_defaultEncoding_type _zz_24;
wire `AluCtrlEnum_defaultEncoding_type _zz_25;
wire `AluCtrlEnum_defaultEncoding_type _zz_26;
wire `Src1CtrlEnum_defaultEncoding_type decode_SRC1_CTRL;
wire `Src1CtrlEnum_defaultEncoding_type _zz_27;
wire `Src1CtrlEnum_defaultEncoding_type _zz_28;
wire `Src1CtrlEnum_defaultEncoding_type _zz_29;
wire [31:0] writeBack_FORMAL_PC_NEXT;
wire [31:0] memory_FORMAL_PC_NEXT;
wire [31:0] execute_FORMAL_PC_NEXT;
wire [31:0] decode_FORMAL_PC_NEXT;
wire execute_DO_EBREAK;
wire decode_IS_EBREAK;
wire execute_IS_RS1_SIGNED;
wire execute_IS_DIV;
wire execute_IS_RS2_SIGNED;
wire memory_IS_DIV;
wire writeBack_IS_MUL;
wire [33:0] writeBack_MUL_HH;
wire [51:0] writeBack_MUL_LOW;
wire [33:0] memory_MUL_HL;
wire [33:0] memory_MUL_LH;
wire [31:0] memory_MUL_LL;
reg _zz_30;
reg _zz_31;
wire memory_CfuPlugin_CFU_IN_FLIGHT;
wire `Input2Kind_defaultEncoding_type execute_CfuPlugin_CFU_INPUT_2_KIND;
wire `Input2Kind_defaultEncoding_type _zz_32;
wire execute_CfuPlugin_CFU_ENABLE;
wire execute_CSR_READ_OPCODE;
wire execute_CSR_WRITE_OPCODE;
wire execute_IS_CSR;
wire `EnvCtrlEnum_defaultEncoding_type memory_ENV_CTRL;
wire `EnvCtrlEnum_defaultEncoding_type _zz_33;
wire `EnvCtrlEnum_defaultEncoding_type execute_ENV_CTRL;
wire `EnvCtrlEnum_defaultEncoding_type _zz_34;
wire `EnvCtrlEnum_defaultEncoding_type writeBack_ENV_CTRL;
wire `EnvCtrlEnum_defaultEncoding_type _zz_35;
wire [31:0] execute_BRANCH_CALC;
wire execute_BRANCH_DO;
wire [31:0] execute_PC;
wire execute_PREDICTION_HAD_BRANCHED2;
(* keep , syn_keep *) wire [31:0] execute_RS1 /* synthesis syn_keep = 1 */ ;
wire execute_BRANCH_COND_RESULT;
wire `BranchCtrlEnum_defaultEncoding_type execute_BRANCH_CTRL;
wire `BranchCtrlEnum_defaultEncoding_type _zz_36;
wire decode_RS2_USE;
wire decode_RS1_USE;
reg [31:0] _zz_37;
wire execute_REGFILE_WRITE_VALID;
wire execute_BYPASSABLE_EXECUTE_STAGE;
wire memory_REGFILE_WRITE_VALID;
wire [31:0] memory_INSTRUCTION;
wire memory_BYPASSABLE_MEMORY_STAGE;
wire writeBack_REGFILE_WRITE_VALID;
reg [31:0] decode_RS2;
reg [31:0] decode_RS1;
wire [31:0] memory_SHIFT_RIGHT;
reg [31:0] _zz_38;
wire `ShiftCtrlEnum_defaultEncoding_type memory_SHIFT_CTRL;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_39;
wire `ShiftCtrlEnum_defaultEncoding_type execute_SHIFT_CTRL;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_40;
wire execute_SRC_LESS_UNSIGNED;
wire execute_SRC2_FORCE_ZERO;
wire execute_SRC_USE_SUB_LESS;
wire [31:0] _zz_41;
wire `Src2CtrlEnum_defaultEncoding_type execute_SRC2_CTRL;
wire `Src2CtrlEnum_defaultEncoding_type _zz_42;
wire `Src1CtrlEnum_defaultEncoding_type execute_SRC1_CTRL;
wire `Src1CtrlEnum_defaultEncoding_type _zz_43;
wire decode_SRC_USE_SUB_LESS;
wire decode_SRC_ADD_ZERO;
wire [31:0] execute_SRC_ADD_SUB;
wire execute_SRC_LESS;
wire `AluCtrlEnum_defaultEncoding_type execute_ALU_CTRL;
wire `AluCtrlEnum_defaultEncoding_type _zz_44;
wire [31:0] execute_SRC2;
wire [31:0] execute_SRC1;
wire `AluBitwiseCtrlEnum_defaultEncoding_type execute_ALU_BITWISE_CTRL;
wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_45;
wire [31:0] _zz_46;
wire _zz_47;
reg _zz_48;
wire [31:0] decode_INSTRUCTION_ANTICIPATED;
reg decode_REGFILE_WRITE_VALID;
wire decode_LEGAL_INSTRUCTION;
wire `Input2Kind_defaultEncoding_type _zz_49;
wire `EnvCtrlEnum_defaultEncoding_type _zz_50;
wire `BranchCtrlEnum_defaultEncoding_type _zz_51;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_52;
wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_53;
wire `Src2CtrlEnum_defaultEncoding_type _zz_54;
wire `AluCtrlEnum_defaultEncoding_type _zz_55;
wire `Src1CtrlEnum_defaultEncoding_type _zz_56;
wire writeBack_MEMORY_STORE;
reg [31:0] _zz_57;
wire writeBack_MEMORY_ENABLE;
wire [1:0] writeBack_MEMORY_ADDRESS_LOW;
wire [31:0] writeBack_MEMORY_READ_DATA;
wire memory_MMU_FAULT;
wire [31:0] memory_MMU_RSP2_physicalAddress;
wire memory_MMU_RSP2_isIoAccess;
wire memory_MMU_RSP2_isPaging;
wire memory_MMU_RSP2_allowRead;
wire memory_MMU_RSP2_allowWrite;
wire memory_MMU_RSP2_allowExecute;
wire memory_MMU_RSP2_exception;
wire memory_MMU_RSP2_refilling;
wire memory_MMU_RSP2_bypassTranslation;
wire [31:0] memory_PC;
wire memory_ALIGNEMENT_FAULT;
wire [31:0] memory_REGFILE_WRITE_DATA;
wire memory_MEMORY_STORE;
wire memory_MEMORY_ENABLE;
wire execute_MMU_FAULT;
wire [31:0] execute_MMU_RSP2_physicalAddress;
wire execute_MMU_RSP2_isIoAccess;
wire execute_MMU_RSP2_isPaging;
wire execute_MMU_RSP2_allowRead;
wire execute_MMU_RSP2_allowWrite;
wire execute_MMU_RSP2_allowExecute;
wire execute_MMU_RSP2_exception;
wire execute_MMU_RSP2_refilling;
wire execute_MMU_RSP2_bypassTranslation;
wire [31:0] execute_SRC_ADD;
(* keep , syn_keep *) wire [31:0] execute_RS2 /* synthesis syn_keep = 1 */ ;
wire [31:0] execute_INSTRUCTION;
wire execute_MEMORY_STORE;
wire execute_MEMORY_ENABLE;
wire execute_ALIGNEMENT_FAULT;
wire decode_MEMORY_ENABLE;
wire decode_FLUSH_ALL;
reg IBusCachedPlugin_rsp_issueDetected_4;
reg IBusCachedPlugin_rsp_issueDetected_3;
reg IBusCachedPlugin_rsp_issueDetected_2;
reg IBusCachedPlugin_rsp_issueDetected_1;
wire `BranchCtrlEnum_defaultEncoding_type decode_BRANCH_CTRL;
wire `BranchCtrlEnum_defaultEncoding_type _zz_58;
wire [31:0] decode_INSTRUCTION;
reg [31:0] _zz_59;
reg [31:0] _zz_60;
reg [31:0] _zz_61;
wire [31:0] decode_PC;
wire [31:0] writeBack_PC;
wire [31:0] writeBack_INSTRUCTION;
reg decode_arbitration_haltItself;
reg decode_arbitration_haltByOther;
reg decode_arbitration_removeIt;
wire decode_arbitration_flushIt;
reg decode_arbitration_flushNext;
reg decode_arbitration_isValid;
wire decode_arbitration_isStuck;
wire decode_arbitration_isStuckByOthers;
wire decode_arbitration_isFlushed;
wire decode_arbitration_isMoving;
wire decode_arbitration_isFiring;
reg execute_arbitration_haltItself;
reg execute_arbitration_haltByOther;
reg execute_arbitration_removeIt;
reg execute_arbitration_flushIt;
reg execute_arbitration_flushNext;
reg execute_arbitration_isValid;
wire execute_arbitration_isStuck;
wire execute_arbitration_isStuckByOthers;
wire execute_arbitration_isFlushed;
wire execute_arbitration_isMoving;
wire execute_arbitration_isFiring;
reg memory_arbitration_haltItself;
wire memory_arbitration_haltByOther;
reg memory_arbitration_removeIt;
reg memory_arbitration_flushIt;
reg memory_arbitration_flushNext;
reg memory_arbitration_isValid;
wire memory_arbitration_isStuck;
wire memory_arbitration_isStuckByOthers;
wire memory_arbitration_isFlushed;
wire memory_arbitration_isMoving;
wire memory_arbitration_isFiring;
wire writeBack_arbitration_haltItself;
wire writeBack_arbitration_haltByOther;
reg writeBack_arbitration_removeIt;
wire writeBack_arbitration_flushIt;
reg writeBack_arbitration_flushNext;
reg writeBack_arbitration_isValid;
wire writeBack_arbitration_isStuck;
wire writeBack_arbitration_isStuckByOthers;
wire writeBack_arbitration_isFlushed;
wire writeBack_arbitration_isMoving;
wire writeBack_arbitration_isFiring;
wire [31:0] lastStageInstruction /* verilator public */ ;
wire [31:0] lastStagePc /* verilator public */ ;
wire lastStageIsValid /* verilator public */ ;
wire lastStageIsFiring /* verilator public */ ;
reg IBusCachedPlugin_fetcherHalt;
reg IBusCachedPlugin_incomingInstruction;
wire IBusCachedPlugin_predictionJumpInterface_valid;
(* keep , syn_keep *) wire [31:0] IBusCachedPlugin_predictionJumpInterface_payload /* synthesis syn_keep = 1 */ ;
reg IBusCachedPlugin_decodePrediction_cmd_hadBranch;
wire IBusCachedPlugin_decodePrediction_rsp_wasWrong;
wire IBusCachedPlugin_pcValids_0;
wire IBusCachedPlugin_pcValids_1;
wire IBusCachedPlugin_pcValids_2;
wire IBusCachedPlugin_pcValids_3;
reg IBusCachedPlugin_decodeExceptionPort_valid;
reg [3:0] IBusCachedPlugin_decodeExceptionPort_payload_code;
wire [31:0] IBusCachedPlugin_decodeExceptionPort_payload_badAddr;
wire IBusCachedPlugin_mmuBus_cmd_0_isValid;
wire IBusCachedPlugin_mmuBus_cmd_0_isStuck;
wire [31:0] IBusCachedPlugin_mmuBus_cmd_0_virtualAddress;
wire IBusCachedPlugin_mmuBus_cmd_0_bypassTranslation;
wire [31:0] IBusCachedPlugin_mmuBus_rsp_physicalAddress;
wire IBusCachedPlugin_mmuBus_rsp_isIoAccess;
wire IBusCachedPlugin_mmuBus_rsp_isPaging;
wire IBusCachedPlugin_mmuBus_rsp_allowRead;
wire IBusCachedPlugin_mmuBus_rsp_allowWrite;
wire IBusCachedPlugin_mmuBus_rsp_allowExecute;
wire IBusCachedPlugin_mmuBus_rsp_exception;
wire IBusCachedPlugin_mmuBus_rsp_refilling;
wire IBusCachedPlugin_mmuBus_rsp_bypassTranslation;
wire IBusCachedPlugin_mmuBus_end;
wire IBusCachedPlugin_mmuBus_busy;
reg DBusSimplePlugin_memoryExceptionPort_valid;
reg [3:0] DBusSimplePlugin_memoryExceptionPort_payload_code;
wire [31:0] DBusSimplePlugin_memoryExceptionPort_payload_badAddr;
wire DBusSimplePlugin_mmuBus_cmd_0_isValid;
wire DBusSimplePlugin_mmuBus_cmd_0_isStuck;
wire [31:0] DBusSimplePlugin_mmuBus_cmd_0_virtualAddress;
wire DBusSimplePlugin_mmuBus_cmd_0_bypassTranslation;
wire [31:0] DBusSimplePlugin_mmuBus_rsp_physicalAddress;
wire DBusSimplePlugin_mmuBus_rsp_isIoAccess;
wire DBusSimplePlugin_mmuBus_rsp_isPaging;
wire DBusSimplePlugin_mmuBus_rsp_allowRead;
wire DBusSimplePlugin_mmuBus_rsp_allowWrite;
wire DBusSimplePlugin_mmuBus_rsp_allowExecute;
wire DBusSimplePlugin_mmuBus_rsp_exception;
wire DBusSimplePlugin_mmuBus_rsp_refilling;
wire DBusSimplePlugin_mmuBus_rsp_bypassTranslation;
wire DBusSimplePlugin_mmuBus_end;
wire DBusSimplePlugin_mmuBus_busy;
reg DBusSimplePlugin_redoBranch_valid;
wire [31:0] DBusSimplePlugin_redoBranch_payload;
wire decodeExceptionPort_valid;
wire [3:0] decodeExceptionPort_payload_code;
wire [31:0] decodeExceptionPort_payload_badAddr;
wire BranchPlugin_jumpInterface_valid;
wire [31:0] BranchPlugin_jumpInterface_payload;
reg BranchPlugin_branchExceptionPort_valid;
wire [3:0] BranchPlugin_branchExceptionPort_payload_code;
wire [31:0] BranchPlugin_branchExceptionPort_payload_badAddr;
reg CsrPlugin_inWfi /* verilator public */ ;
reg CsrPlugin_thirdPartyWake;
reg CsrPlugin_jumpInterface_valid;
reg [31:0] CsrPlugin_jumpInterface_payload;
wire CsrPlugin_exceptionPendings_0;
wire CsrPlugin_exceptionPendings_1;
wire CsrPlugin_exceptionPendings_2;
wire CsrPlugin_exceptionPendings_3;
wire externalInterrupt;
wire contextSwitching;
reg [1:0] CsrPlugin_privilege;
reg CsrPlugin_forceMachineWire;
reg CsrPlugin_selfException_valid;
reg [3:0] CsrPlugin_selfException_payload_code;
wire [31:0] CsrPlugin_selfException_payload_badAddr;
reg CsrPlugin_allowInterrupts;
reg CsrPlugin_allowException;
reg CfuPlugin_joinException_valid;
wire [3:0] CfuPlugin_joinException_payload_code;
wire [31:0] CfuPlugin_joinException_payload_badAddr;
reg IBusCachedPlugin_injectionPort_valid;
reg IBusCachedPlugin_injectionPort_ready;
wire [31:0] IBusCachedPlugin_injectionPort_payload;
wire IBusCachedPlugin_externalFlush;
wire IBusCachedPlugin_jump_pcLoad_valid;
wire [31:0] IBusCachedPlugin_jump_pcLoad_payload;
wire [3:0] _zz_62;
wire [3:0] _zz_63;
wire _zz_64;
wire _zz_65;
wire _zz_66;
wire IBusCachedPlugin_fetchPc_output_valid;
wire IBusCachedPlugin_fetchPc_output_ready;
wire [31:0] IBusCachedPlugin_fetchPc_output_payload;
reg [31:0] IBusCachedPlugin_fetchPc_pcReg /* verilator public */ ;
reg IBusCachedPlugin_fetchPc_correction;
reg IBusCachedPlugin_fetchPc_correctionReg;
wire IBusCachedPlugin_fetchPc_corrected;
reg IBusCachedPlugin_fetchPc_pcRegPropagate;
reg IBusCachedPlugin_fetchPc_booted;
reg IBusCachedPlugin_fetchPc_inc;
reg [31:0] IBusCachedPlugin_fetchPc_pc;
wire IBusCachedPlugin_fetchPc_redo_valid;
wire [31:0] IBusCachedPlugin_fetchPc_redo_payload;
reg IBusCachedPlugin_fetchPc_flushed;
reg IBusCachedPlugin_iBusRsp_redoFetch;
wire IBusCachedPlugin_iBusRsp_stages_0_input_valid;
wire IBusCachedPlugin_iBusRsp_stages_0_input_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_stages_0_input_payload;
wire IBusCachedPlugin_iBusRsp_stages_0_output_valid;
wire IBusCachedPlugin_iBusRsp_stages_0_output_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_stages_0_output_payload;
reg IBusCachedPlugin_iBusRsp_stages_0_halt;
wire IBusCachedPlugin_iBusRsp_stages_1_input_valid;
wire IBusCachedPlugin_iBusRsp_stages_1_input_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_stages_1_input_payload;
wire IBusCachedPlugin_iBusRsp_stages_1_output_valid;
wire IBusCachedPlugin_iBusRsp_stages_1_output_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_stages_1_output_payload;
reg IBusCachedPlugin_iBusRsp_stages_1_halt;
wire IBusCachedPlugin_iBusRsp_stages_2_input_valid;
wire IBusCachedPlugin_iBusRsp_stages_2_input_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_stages_2_input_payload;
wire IBusCachedPlugin_iBusRsp_stages_2_output_valid;
wire IBusCachedPlugin_iBusRsp_stages_2_output_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_stages_2_output_payload;
reg IBusCachedPlugin_iBusRsp_stages_2_halt;
wire _zz_67;
wire _zz_68;
wire _zz_69;
wire IBusCachedPlugin_iBusRsp_flush;
wire _zz_70;
wire _zz_71;
reg _zz_72;
wire _zz_73;
reg _zz_74;
reg [31:0] _zz_75;
reg IBusCachedPlugin_iBusRsp_readyForError;
wire IBusCachedPlugin_iBusRsp_output_valid;
wire IBusCachedPlugin_iBusRsp_output_ready;
wire [31:0] IBusCachedPlugin_iBusRsp_output_payload_pc;
wire IBusCachedPlugin_iBusRsp_output_payload_rsp_error;
wire [31:0] IBusCachedPlugin_iBusRsp_output_payload_rsp_inst;
wire IBusCachedPlugin_iBusRsp_output_payload_isRvc;
reg IBusCachedPlugin_injector_nextPcCalc_valids_0;
reg IBusCachedPlugin_injector_nextPcCalc_valids_1;
reg IBusCachedPlugin_injector_nextPcCalc_valids_2;
reg IBusCachedPlugin_injector_nextPcCalc_valids_3;
reg IBusCachedPlugin_injector_nextPcCalc_valids_4;
wire _zz_76;
reg [18:0] _zz_77;
wire _zz_78;
reg [10:0] _zz_79;
wire _zz_80;
reg [18:0] _zz_81;
reg _zz_82;
wire _zz_83;
reg [10:0] _zz_84;
wire _zz_85;
reg [18:0] _zz_86;
wire iBus_cmd_valid;
wire iBus_cmd_ready;
reg [31:0] iBus_cmd_payload_address;
wire [2:0] iBus_cmd_payload_size;
wire iBus_rsp_valid;
wire [31:0] iBus_rsp_payload_data;
wire iBus_rsp_payload_error;
wire [31:0] _zz_87;
reg [31:0] IBusCachedPlugin_rspCounter;
wire IBusCachedPlugin_s0_tightlyCoupledHit;
reg IBusCachedPlugin_s1_tightlyCoupledHit;
reg IBusCachedPlugin_s2_tightlyCoupledHit;
wire IBusCachedPlugin_rsp_iBusRspOutputHalt;
wire IBusCachedPlugin_rsp_issueDetected;
reg IBusCachedPlugin_rsp_redoFetch;
wire dBus_cmd_valid;
wire dBus_cmd_ready;
wire dBus_cmd_payload_wr;
wire [31:0] dBus_cmd_payload_address;
wire [31:0] dBus_cmd_payload_data;
wire [1:0] dBus_cmd_payload_size;
wire dBus_rsp_ready;
wire dBus_rsp_error;
wire [31:0] dBus_rsp_data;
wire _zz_88;
reg execute_DBusSimplePlugin_skipCmd;
reg [31:0] _zz_89;
reg [3:0] _zz_90;
wire [3:0] execute_DBusSimplePlugin_formalMask;
reg [31:0] writeBack_DBusSimplePlugin_rspShifted;
wire _zz_91;
reg [31:0] _zz_92;
wire _zz_93;
reg [31:0] _zz_94;
reg [31:0] writeBack_DBusSimplePlugin_rspFormated;
wire [33:0] _zz_95;
wire _zz_96;
wire _zz_97;
wire _zz_98;
wire _zz_99;
wire _zz_100;
wire `Src1CtrlEnum_defaultEncoding_type _zz_101;
wire `AluCtrlEnum_defaultEncoding_type _zz_102;
wire `Src2CtrlEnum_defaultEncoding_type _zz_103;
wire `AluBitwiseCtrlEnum_defaultEncoding_type _zz_104;
wire `ShiftCtrlEnum_defaultEncoding_type _zz_105;
wire `BranchCtrlEnum_defaultEncoding_type _zz_106;
wire `EnvCtrlEnum_defaultEncoding_type _zz_107;
wire `Input2Kind_defaultEncoding_type _zz_108;
wire [4:0] decode_RegFilePlugin_regFileReadAddress1;
wire [4:0] decode_RegFilePlugin_regFileReadAddress2;
wire [31:0] decode_RegFilePlugin_rs1Data;
wire [31:0] decode_RegFilePlugin_rs2Data;
reg lastStageRegFileWrite_valid /* verilator public */ ;
reg [4:0] lastStageRegFileWrite_payload_address /* verilator public */ ;
reg [31:0] lastStageRegFileWrite_payload_data /* verilator public */ ;
reg _zz_109;
reg [31:0] execute_IntAluPlugin_bitwise;
reg [31:0] _zz_110;
reg [31:0] _zz_111;
wire _zz_112;
reg [19:0] _zz_113;
wire _zz_114;
reg [19:0] _zz_115;
reg [31:0] _zz_116;
reg [31:0] execute_SrcPlugin_addSub;
wire execute_SrcPlugin_less;
wire [4:0] execute_FullBarrelShifterPlugin_amplitude;
reg [31:0] _zz_117;
wire [31:0] execute_FullBarrelShifterPlugin_reversed;
reg [31:0] _zz_118;
reg _zz_119;
reg _zz_120;
reg _zz_121;
reg [4:0] _zz_122;
reg [31:0] _zz_123;
wire _zz_124;
wire _zz_125;
wire _zz_126;
wire _zz_127;
wire _zz_128;
wire _zz_129;
wire execute_BranchPlugin_eq;
wire [2:0] _zz_130;
reg _zz_131;
reg _zz_132;
wire _zz_133;
reg [19:0] _zz_134;
wire _zz_135;
reg [10:0] _zz_136;
wire _zz_137;
reg [18:0] _zz_138;
reg _zz_139;
wire execute_BranchPlugin_missAlignedTarget;
reg [31:0] execute_BranchPlugin_branch_src1;
reg [31:0] execute_BranchPlugin_branch_src2;
wire _zz_140;
reg [19:0] _zz_141;
wire _zz_142;
reg [10:0] _zz_143;
wire _zz_144;
reg [18:0] _zz_145;
wire [31:0] execute_BranchPlugin_branchAdder;
reg [1:0] CsrPlugin_misa_base;
reg [25:0] CsrPlugin_misa_extensions;
reg [1:0] CsrPlugin_mtvec_mode;
reg [29:0] CsrPlugin_mtvec_base;
reg [31:0] CsrPlugin_mepc;
reg CsrPlugin_mstatus_MIE;
reg CsrPlugin_mstatus_MPIE;
reg [1:0] CsrPlugin_mstatus_MPP;
reg CsrPlugin_mip_MEIP;
reg CsrPlugin_mip_MTIP;
reg CsrPlugin_mip_MSIP;
reg CsrPlugin_mie_MEIE;
reg CsrPlugin_mie_MTIE;
reg CsrPlugin_mie_MSIE;
reg [31:0] CsrPlugin_mscratch;
reg CsrPlugin_mcause_interrupt;
reg [3:0] CsrPlugin_mcause_exceptionCode;
reg [31:0] CsrPlugin_mtval;
reg [63:0] CsrPlugin_mcycle = 64'b0000000000000000000000000000000000000000000000000000000000000000;
reg [63:0] CsrPlugin_minstret = 64'b0000000000000000000000000000000000000000000000000000000000000000;
wire _zz_146;
wire _zz_147;
wire _zz_148;
reg CsrPlugin_exceptionPortCtrl_exceptionValids_decode;
reg CsrPlugin_exceptionPortCtrl_exceptionValids_execute;