-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexgraph.v
More file actions
executable file
·3295 lines (3243 loc) · 132 KB
/
Copy pathflexgraph.v
File metadata and controls
executable file
·3295 lines (3243 loc) · 132 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module ch_llqueue(
input wire clk,
input wire reset,
input wire[511:0] io_enq_data,
input wire io_enq_valid,
output wire io_enq_ready,
output wire[511:0] io_deq_data,
output wire io_deq_valid,
input wire io_deq_ready,
output wire[1:0] io_size
);
wire andl185; // /home/blaise/dev/cash/include/htl/queue.h(102:0)
wire andl188; // /home/blaise/dev/cash/include/htl/queue.h(103:0)
reg[1:0] reg195; // /home/blaise/dev/cash/include/htl/queue.h(124:0)
reg[2:0] reg205; // /home/blaise/dev/cash/include/htl/queue.h(125:0)
wire notl208; // /home/blaise/dev/cash/include/htl/queue.h(130:0)
wire andl211; // /home/blaise/dev/cash/include/htl/queue.h(130:1)
wire notl214; // /home/blaise/dev/cash/include/htl/queue.h(127:1)
wire andl217; // /home/blaise/dev/cash/include/htl/queue.h(127:2)
wire[1:0] add222; // /home/blaise/dev/cash/include/htl/queue.h(128:1)
wire[2:0] proxy227; // /home/blaise/dev/cash/include/htl/queue.h(129:0)
wire[1:0] sub233; // /home/blaise/dev/cash/include/htl/queue.h(131:1)
wire[2:0] proxy238; // /home/blaise/dev/cash/include/htl/queue.h(132:0)
reg[2:0] sel241; // /home/blaise/dev/cash/include/htl/queue.h(127:0)
reg[1:0] sel242; // /home/blaise/dev/cash/include/htl/queue.h(127:0)
wire andb250; // /home/blaise/dev/cash/include/htl/queue.h(137:1)
wire orb253; // /home/blaise/dev/cash/include/htl/queue.h(137:2)
wire orb261; // /home/blaise/dev/cash/include/htl/queue.h(138:1)
wire andb267; // /home/blaise/dev/cash/include/htl/queue.h(137:5)
wire orb270; // /home/blaise/dev/cash/include/htl/queue.h(137:6)
reg[511:0] reg284; // /usr/include/c++/7/array(94:1)
reg[511:0] reg289; // /usr/include/c++/7/array(94:2)
wire[511:0] sel292; // /home/blaise/dev/cash/include/htl/queue.h(143:1)
wire[511:0] sel295; // /home/blaise/dev/cash/include/htl/queue.h(143:0)
wire[511:0] sel298; // /home/blaise/dev/cash/include/htl/queue.h(145:0)
wire notl302; // /home/blaise/dev/cash/include/htl/queue.h(148:0)
wire notl306; // /home/blaise/dev/cash/include/htl/queue.h(149:0)
assign andl185 = io_deq_ready && notl302;
assign andl188 = io_enq_valid && notl306;
always @ (posedge clk) begin
if (reset)
reg195 <= 2'h0;
else
reg195 <= sel242;
end
always @ (posedge clk) begin
if (reset)
reg205 <= 3'h1;
else
reg205 <= sel241;
end
assign notl208 = !andl188;
assign andl211 = andl185 && notl208;
assign notl214 = !andl185;
assign andl217 = andl188 && notl214;
assign add222 = reg195 + 2'h1;
assign proxy227 = {reg205[1:0], 1'h0};
assign sub233 = reg195 - 2'h1;
assign proxy238 = {1'h0, reg205[2:1]};
always @(*) begin
if (andl217)
sel241 = proxy227;
else if (andl211)
sel241 = proxy238;
else
sel241 = reg205;
end
always @(*) begin
if (andl217)
sel242 = add222;
else if (andl211)
sel242 = sub233;
else
sel242 = reg195;
end
assign andb250 = andl188 & reg205[0];
assign orb253 = andl185 | andb250;
assign orb261 = notl214 | reg205[1];
assign andb267 = andl188 & reg205[1];
assign orb270 = andl185 | andb267;
always @ (posedge clk) begin
reg284 <= sel295;
end
always @ (posedge clk) begin
reg289 <= sel298;
end
assign sel292 = orb261 ? io_enq_data : reg289;
assign sel295 = orb253 ? sel292 : reg284;
assign sel298 = orb270 ? io_enq_data : reg289;
assign notl302 = !reg205[0];
assign notl306 = !reg205[2];
assign io_enq_ready = notl306;
assign io_deq_data = reg284;
assign io_deq_valid = notl302;
assign io_size = reg195;
endmodule
module ch_queue(
input wire clk,
input wire reset,
input wire[511:0] io_enq_data,
input wire io_enq_valid,
output wire io_enq_ready,
output wire[511:0] io_deq_data,
output wire io_deq_valid,
input wire io_deq_ready,
output wire[5:0] io_size
);
wire andl511; // /home/blaise/dev/cash/include/htl/queue.h(25:0)
wire andl514; // /home/blaise/dev/cash/include/htl/queue.h(26:0)
reg[5:0] reg521; // /home/blaise/dev/cash/include/htl/queue.h(28:0)
wire notl527; // /home/blaise/dev/cash/include/htl/queue.h(31:0)
wire andl530; // /home/blaise/dev/cash/include/htl/queue.h(31:1)
wire notl533; // /home/blaise/dev/cash/include/htl/queue.h(29:1)
wire andl536; // /home/blaise/dev/cash/include/htl/queue.h(29:2)
wire[5:0] add541; // /home/blaise/dev/cash/include/htl/queue.h(30:1)
wire[5:0] sub545; // /home/blaise/dev/cash/include/htl/queue.h(32:1)
reg[5:0] sel547; // /home/blaise/dev/cash/include/htl/queue.h(29:0)
reg reg553; // /home/blaise/dev/cash/include/htl/queue.h(35:0)
wire eq566; // /home/blaise/dev/cash/include/htl/queue.h(36:3)
wire andl568; // /home/blaise/dev/cash/include/htl/queue.h(36:3)
wire andl570; // /home/blaise/dev/cash/include/htl/queue.h(36:3)
reg sel575; // /home/blaise/dev/cash/include/htl/queue.h(36:0)
reg reg580; // /home/blaise/dev/cash/include/htl/queue.h(42:0)
wire eq594; // /home/blaise/dev/cash/include/htl/queue.h(43:3)
wire andl596; // /home/blaise/dev/cash/include/htl/queue.h(43:3)
wire andl598; // /home/blaise/dev/cash/include/htl/queue.h(43:3)
reg sel602; // /home/blaise/dev/cash/include/htl/queue.h(43:0)
reg[4:0] reg608; // /home/blaise/dev/cash/include/htl/queue.h(49:0)
wire[4:0] add613; // /home/blaise/dev/cash/include/htl/queue.h(51:1)
wire[4:0] sel615; // /home/blaise/dev/cash/include/htl/queue.h(50:0)
reg[511:0] mem616 [0:31]; // /home/blaise/dev/cash/include/htl/queue.h(54:0)
reg[4:0] reg624; // /home/blaise/dev/cash/include/htl/queue.h(65:0)
reg[4:0] reg630; // /home/blaise/dev/cash/include/htl/queue.h(65:1)
wire[4:0] add635; // /home/blaise/dev/cash/include/htl/queue.h(69:1)
wire[4:0] sel637; // /home/blaise/dev/cash/include/htl/queue.h(66:0)
wire[4:0] sel638; // /home/blaise/dev/cash/include/htl/queue.h(66:0)
wire eq640; // /home/blaise/dev/cash/include/htl/queue.h(76:1)
wire andl642; // /home/blaise/dev/cash/include/htl/queue.h(76:1)
wire orl645; // /home/blaise/dev/cash/include/htl/queue.h(76:2)
wire andl648; // /home/blaise/dev/cash/include/htl/queue.h(76:3)
reg reg652; // /home/blaise/dev/cash/include/htl/queue.h(76:0)
reg[511:0] reg655; // /home/blaise/dev/cash/include/htl/queue.h(77:0)
wire[511:0] marport659; // /home/blaise/dev/cash/include/htl/queue.h(78:1)
reg[511:0] reg662; // /home/blaise/dev/cash/include/htl/queue.h(78:0)
wire[511:0] sel664; // /home/blaise/dev/cash/include/htl/queue.h(79:0)
wire notl667; // /home/blaise/dev/cash/include/htl/queue.h(83:0)
wire notl670; // /home/blaise/dev/cash/include/htl/queue.h(84:0)
assign andl511 = io_deq_ready && notl667;
assign andl514 = io_enq_valid && notl670;
always @ (posedge clk) begin
if (reset)
reg521 <= 6'h0;
else
reg521 <= sel547;
end
assign notl527 = !andl514;
assign andl530 = andl511 && notl527;
assign notl533 = !andl511;
assign andl536 = andl514 && notl533;
assign add541 = reg521 + 6'h1;
assign sub545 = reg521 - 6'h1;
always @(*) begin
if (andl536)
sel547 = add541;
else if (andl530)
sel547 = sub545;
else
sel547 = reg521;
end
always @ (posedge clk) begin
if (reset)
reg553 <= 1'h1;
else
reg553 <= sel575;
end
assign eq566 = reg521 == 6'h1;
assign andl568 = eq566 && andl511;
assign andl570 = andl568 && notl527;
always @(*) begin
if (andl570)
sel575 = 1'h1;
else if (andl536)
sel575 = 1'h0;
else
sel575 = reg553;
end
always @ (posedge clk) begin
if (reset)
reg580 <= 1'h0;
else
reg580 <= sel602;
end
assign eq594 = reg521 == 6'h1f;
assign andl596 = eq594 && andl514;
assign andl598 = andl596 && notl533;
always @(*) begin
if (andl598)
sel602 = 1'h1;
else if (andl530)
sel602 = 1'h0;
else
sel602 = reg580;
end
always @ (posedge clk) begin
if (reset)
reg608 <= 5'h0;
else
reg608 <= sel615;
end
assign add613 = reg608 + 5'h1;
assign sel615 = andl514 ? add613 : reg608;
assign marport659 = mem616[sel638];
always @ (posedge clk) begin
if (andl514) begin
mem616[reg608] <= io_enq_data;
end
end
always @ (posedge clk) begin
if (reset)
reg624 <= 5'h0;
else
reg624 <= sel638;
end
always @ (posedge clk) begin
if (reset)
reg630 <= 5'h1;
else
reg630 <= sel637;
end
assign add635 = reg624 + 5'h2;
assign sel637 = andl511 ? add635 : reg630;
assign sel638 = andl511 ? reg630 : reg624;
assign eq640 = 6'h1 == reg521;
assign andl642 = eq640 && andl511;
assign orl645 = reg553 || andl642;
assign andl648 = andl514 && orl645;
always @ (posedge clk) begin
if (reset)
reg652 <= 1'h0;
else
reg652 <= andl648;
end
always @ (posedge clk) begin
reg655 <= io_enq_data;
end
always @ (posedge clk) begin
reg662 <= marport659;
end
assign sel664 = reg652 ? reg655 : reg662;
assign notl667 = !reg553;
assign notl670 = !reg580;
assign io_enq_ready = notl670;
assign io_deq_data = sel664;
assign io_deq_valid = notl667;
assign io_size = reg521;
endmodule
module spmv_dcsc_walk(
input wire clk,
input wire reset,
input wire[63:0] io_ctrl_start_data,
input wire io_ctrl_start_valid,
output wire io_ctrl_start_ready,
input wire[63:0] io_ctrl_timer,
output wire[351:0] io_ctrl_stats,
output wire[22:0] io_lsu_rd_req_data,
output wire io_lsu_rd_req_valid,
input wire io_lsu_rd_req_ready,
input wire[514:0] io_lsu_rd_rsp_data,
input wire io_lsu_rd_rsp_valid,
output wire[84:0] io_pe_data,
output wire io_pe_valid,
input wire io_pe_ready
);
wire[351:0] lit1290 = 352'h0;
wire[22:0] io_lsu_rd_req_data75; // dcsc_walk.cpp(41:0)
reg[19:0] reg101; // dcsc_walk.cpp(41:1)
reg[19:0] reg108; // dcsc_walk.cpp(41:2)
reg[19:0] reg113; // dcsc_walk.cpp(41:3)
reg[19:0] reg118; // dcsc_walk.cpp(41:4)
reg[19:0] reg123; // dcsc_walk.cpp(41:5)
reg[19:0] reg128; // dcsc_walk.cpp(41:6)
reg[19:0] reg135; // dcsc_walk.cpp(41:7)
reg[19:0] reg142; // dcsc_walk.cpp(41:8)
reg[19:0] reg147; // dcsc_walk.cpp(41:9)
reg[19:0] reg152; // dcsc_walk.cpp(41:10)
reg[19:0] reg157; // dcsc_walk.cpp(41:11)
reg[5:0] reg162; // dcsc_walk.cpp(41:12)
reg[31:0] reg167; // dcsc_walk.cpp(41:13)
wire ch_llqueue310_clk; // dcsc_walk.cpp(41:14)
wire ch_llqueue310_reset; // dcsc_walk.cpp(41:14)
wire[511:0] ch_llqueue310_io_enq_data; // dcsc_walk.cpp(41:14)
wire ch_llqueue310_io_enq_valid; // dcsc_walk.cpp(41:14)
wire[511:0] ch_llqueue310_io_deq_data; // dcsc_walk.cpp(41:14)
wire ch_llqueue310_io_deq_valid; // dcsc_walk.cpp(41:14)
wire ch_llqueue310_io_deq_ready; // dcsc_walk.cpp(41:14)
wire ch_llqueue473_clk; // dcsc_walk.cpp(41:15)
wire ch_llqueue473_reset; // dcsc_walk.cpp(41:15)
wire[511:0] ch_llqueue473_io_enq_data; // dcsc_walk.cpp(41:15)
wire ch_llqueue473_io_enq_valid; // dcsc_walk.cpp(41:15)
wire[511:0] ch_llqueue473_io_deq_data; // dcsc_walk.cpp(41:15)
wire ch_llqueue473_io_deq_valid; // dcsc_walk.cpp(41:15)
wire ch_llqueue473_io_deq_ready; // dcsc_walk.cpp(41:15)
wire ch_queue674_clk; // dcsc_walk.cpp(41:16)
wire ch_queue674_reset; // dcsc_walk.cpp(41:16)
wire[511:0] ch_queue674_io_enq_data; // dcsc_walk.cpp(41:16)
wire ch_queue674_io_enq_valid; // dcsc_walk.cpp(41:16)
wire[511:0] ch_queue674_io_deq_data; // dcsc_walk.cpp(41:16)
wire ch_queue674_io_deq_ready; // dcsc_walk.cpp(41:16)
wire ch_queue875_clk; // dcsc_walk.cpp(41:17)
wire ch_queue875_reset; // dcsc_walk.cpp(41:17)
wire[511:0] ch_queue875_io_enq_data; // dcsc_walk.cpp(41:17)
wire ch_queue875_io_enq_valid; // dcsc_walk.cpp(41:17)
wire[511:0] ch_queue875_io_deq_data; // dcsc_walk.cpp(41:17)
wire ch_queue875_io_deq_ready; // dcsc_walk.cpp(41:17)
wire[5:0] ch_queue875_io_size; // dcsc_walk.cpp(41:17)
wire ch_llqueue1038_clk; // dcsc_walk.cpp(41:18)
wire ch_llqueue1038_reset; // dcsc_walk.cpp(41:18)
wire[511:0] ch_llqueue1038_io_enq_data; // dcsc_walk.cpp(41:18)
wire ch_llqueue1038_io_enq_valid; // dcsc_walk.cpp(41:18)
wire[511:0] ch_llqueue1038_io_deq_data; // dcsc_walk.cpp(41:18)
wire ch_llqueue1038_io_deq_valid; // dcsc_walk.cpp(41:18)
wire ch_llqueue1038_io_deq_ready; // dcsc_walk.cpp(41:18)
wire ch_llqueue1201_clk; // dcsc_walk.cpp(41:19)
wire ch_llqueue1201_reset; // dcsc_walk.cpp(41:19)
wire[511:0] ch_llqueue1201_io_enq_data; // dcsc_walk.cpp(41:19)
wire ch_llqueue1201_io_enq_valid; // dcsc_walk.cpp(41:19)
wire[511:0] ch_llqueue1201_io_deq_data; // dcsc_walk.cpp(41:19)
wire ch_llqueue1201_io_deq_valid; // dcsc_walk.cpp(41:19)
wire ch_llqueue1201_io_deq_ready; // dcsc_walk.cpp(41:19)
reg[7:0] reg1228; // dcsc_walk.cpp(41:20)
reg[7:0] reg1234; // dcsc_walk.cpp(41:21)
reg[7:0] reg1240; // dcsc_walk.cpp(41:22)
reg[7:0] reg1246; // dcsc_walk.cpp(41:23)
reg[7:0] reg1252; // dcsc_walk.cpp(41:24)
reg[7:0] reg1258; // dcsc_walk.cpp(41:25)
reg[511:0] reg1263; // dcsc_walk.cpp(41:26)
reg[511:0] reg1268; // dcsc_walk.cpp(41:27)
reg[511:0] reg1273; // dcsc_walk.cpp(41:28)
reg[511:0] reg1278; // dcsc_walk.cpp(41:29)
reg[31:0] reg1283; // dcsc_walk.cpp(41:30)
reg[63:0] reg1288; // dcsc_walk.cpp(41:31)
wire[351:0] proxy1305; // dcsc_walk.cpp(41:32)
reg[351:0] reg1306; // dcsc_walk.cpp(41:32)
wire eq1333; // lsu.h(23:0)
wire andl1336; // dcsc_walk.cpp(59:1)
wire eq1341; // lsu.h(23:1)
wire andl1344; // dcsc_walk.cpp(60:1)
wire eq1349; // lsu.h(23:2)
wire andl1352; // dcsc_walk.cpp(61:1)
wire eq1357; // lsu.h(23:3)
wire andl1360; // dcsc_walk.cpp(62:1)
wire eq1365; // lsu.h(23:4)
wire andl1368; // dcsc_walk.cpp(63:1)
wire eq1373; // lsu.h(23:5)
wire andl1376; // dcsc_walk.cpp(64:1)
reg[22:0] reg1383; // dcsc_walk.cpp(71:0)
wire eq1387; // dcsc_walk.cpp(6:0)
wire eq1391; // lsu.h(23:6)
wire andl1394; // dcsc_walk.cpp(78:1)
wire andl1396; // dcsc_walk.cpp(78:1)
wire notl1399; // dcsc_walk.cpp(82:0)
wire andl1401; // dcsc_walk.cpp(82:0)
wire notl1404; // dcsc_walk.cpp(79:1)
wire andl1407; // dcsc_walk.cpp(79:2)
wire[7:0] add1412; // dcsc_walk.cpp(80:1)
wire[7:0] sub1416; // dcsc_walk.cpp(83:1)
reg[7:0] sel1418; // dcsc_walk.cpp(79:0)
wire eq1421; // lsu.h(23:7)
wire andl1426; // dcsc_walk.cpp(78:3)
wire notl1429; // dcsc_walk.cpp(82:1)
wire andl1431; // dcsc_walk.cpp(82:1)
wire notl1434; // dcsc_walk.cpp(79:4)
wire andl1437; // dcsc_walk.cpp(79:5)
wire[7:0] add1441; // dcsc_walk.cpp(80:3)
wire[7:0] sub1445; // dcsc_walk.cpp(83:3)
reg[7:0] sel1447; // dcsc_walk.cpp(79:3)
wire eq1450; // lsu.h(23:8)
wire andl1455; // dcsc_walk.cpp(78:5)
wire notl1458; // dcsc_walk.cpp(82:2)
wire andl1460; // dcsc_walk.cpp(82:2)
wire notl1463; // dcsc_walk.cpp(79:7)
wire andl1466; // dcsc_walk.cpp(79:8)
wire[7:0] add1470; // dcsc_walk.cpp(80:5)
wire[7:0] sub1474; // dcsc_walk.cpp(83:5)
reg[7:0] sel1476; // dcsc_walk.cpp(79:6)
wire eq1479; // lsu.h(23:9)
wire andl1484; // dcsc_walk.cpp(78:7)
wire notl1487; // dcsc_walk.cpp(82:3)
wire andl1489; // dcsc_walk.cpp(82:3)
wire andl1495; // dcsc_walk.cpp(79:11)
wire[7:0] add1499; // dcsc_walk.cpp(80:7)
wire[7:0] sub1503; // dcsc_walk.cpp(83:7)
reg[7:0] sel1505; // dcsc_walk.cpp(79:9)
wire eq1508; // lsu.h(23:10)
wire andl1513; // dcsc_walk.cpp(78:9)
wire notl1516; // dcsc_walk.cpp(82:4)
wire andl1518; // dcsc_walk.cpp(82:4)
wire notl1521; // dcsc_walk.cpp(79:13)
wire andl1524; // dcsc_walk.cpp(79:14)
wire[7:0] add1528; // dcsc_walk.cpp(80:9)
wire[7:0] sub1532; // dcsc_walk.cpp(83:9)
reg[7:0] sel1534; // dcsc_walk.cpp(79:12)
wire eq1537; // lsu.h(23:11)
wire andl1542; // dcsc_walk.cpp(78:11)
wire notl1545; // dcsc_walk.cpp(82:5)
wire andl1547; // dcsc_walk.cpp(82:5)
wire notl1550; // dcsc_walk.cpp(79:16)
wire andl1553; // dcsc_walk.cpp(79:17)
wire[7:0] add1557; // dcsc_walk.cpp(80:11)
wire[7:0] sub1561; // dcsc_walk.cpp(83:11)
reg[7:0] sel1563; // dcsc_walk.cpp(79:15)
reg reg1570; // dcsc_walk.cpp(110:0)
reg reg1577; // dcsc_walk.cpp(111:0)
reg reg1584; // dcsc_walk.cpp(112:0)
reg reg1598; // dcsc_walk.cpp(114:0)
reg reg1605; // dcsc_walk.cpp(115:0)
wire[84:0] proxy1609; // dcsc_walk.cpp(118:0)
reg[84:0] reg1610; // dcsc_walk.cpp(118:0)
reg reg1625; // dcsc_walk.cpp(121:0)
wire[19:0] sub1645; // dcsc_walk.cpp(144:1)
wire[19:0] shl1653; // dcsc_walk.cpp(156:0)
wire[19:0] shr1657; // dcsc_walk.cpp(156:0)
wire ne1662; // dcsc_walk.cpp(157:2)
wire[31:0] add1671; // dcsc_walk.cpp(164:1)
wire ne1687; // dcsc_walk.cpp(175:2)
wire[31:0] add1694; // dcsc_walk.cpp(183:1)
wire andl1701; // dcsc_walk.cpp(192:1)
wire[19:0] andb1707; // dcsc_walk.cpp(195:3)
wire[19:0] shl1711; // dcsc_walk.cpp(195:3)
wire[511:0] shr1713; // dcsc_walk.cpp(195:1)
wire[511:0] shr1726; // dcsc_walk.cpp(200:1)
wire ne1736; // dcsc_walk.cpp(204:3)
wire[19:0] add1746; // dcsc_walk.cpp(214:4)
wire[19:0] andb1748; // dcsc_walk.cpp(214:4)
wire[19:0] shl1751; // dcsc_walk.cpp(214:4)
wire[511:0] shr1753; // dcsc_walk.cpp(214:1)
wire[19:0] shl1765; // dcsc_walk.cpp(221:1)
wire[19:0] shr1768; // dcsc_walk.cpp(221:1)
wire[19:0] sub1795; // dcsc_walk.cpp(253:1)
wire[19:0] shr1799; // dcsc_walk.cpp(255:0)
wire[19:0] shl1803; // dcsc_walk.cpp(256:0)
wire[19:0] shr1806; // dcsc_walk.cpp(256:0)
wire eq1809; // dcsc_walk.cpp(257:1)
wire[19:0] andb1814; // dcsc_walk.cpp(259:4)
wire[19:0] shl1817; // dcsc_walk.cpp(259:4)
wire[511:0] shr1819; // dcsc_walk.cpp(259:2)
wire[19:0] andb1830; // dcsc_walk.cpp(260:4)
wire[31:0] shl1832; // dcsc_walk.cpp(260:2)
wire[31:0] andb1835; // dcsc_walk.cpp(260:5)
wire ne1837; // dcsc_walk.cpp(260:5)
wire[19:0] shl1847; // dcsc_walk.cpp(276:0)
wire[19:0] shr1850; // dcsc_walk.cpp(276:0)
wire eq1853; // dcsc_walk.cpp(277:1)
wire ne1862; // dcsc_walk.cpp(291:2)
wire[31:0] add1869; // dcsc_walk.cpp(299:1)
wire[511:0] shr1888; // dcsc_walk.cpp(314:2)
wire[31:0] andb1902; // dcsc_walk.cpp(315:5)
wire ne1904; // dcsc_walk.cpp(315:5)
wire ne1922; // dcsc_walk.cpp(331:2)
wire[31:0] add1928; // dcsc_walk.cpp(339:1)
wire[19:0] shl1936; // dcsc_walk.cpp(348:0)
wire[19:0] shr1939; // dcsc_walk.cpp(348:0)
wire[19:0] shl1945; // dcsc_walk.cpp(349:1)
wire[19:0] add1947; // dcsc_walk.cpp(349:1)
wire[19:0] shr1950; // dcsc_walk.cpp(349:1)
wire[19:0] sub1955; // dcsc_walk.cpp(355:1)
wire[19:0] sub1961; // dcsc_walk.cpp(357:1)
wire ne1969; // dcsc_walk.cpp(365:2)
wire[31:0] add1976; // dcsc_walk.cpp(373:1)
wire ne1985; // dcsc_walk.cpp(384:2)
wire[19:0] add1990; // dcsc_walk.cpp(388:1)
wire ne1993; // dcsc_walk.cpp(389:1)
wire[31:0] add2000; // dcsc_walk.cpp(398:1)
wire eq2007; // dcsc_walk.cpp(409:1)
wire[19:0] andb2013; // dcsc_walk.cpp(414:3)
wire[19:0] shl2016; // dcsc_walk.cpp(414:3)
wire[511:0] shr2018; // dcsc_walk.cpp(414:1)
wire[511:0] shr2030; // dcsc_walk.cpp(417:1)
wire[19:0] andb2043; // dcsc_walk.cpp(428:3)
wire[19:0] shl2046; // dcsc_walk.cpp(428:3)
wire[511:0] shr2048; // dcsc_walk.cpp(428:1)
wire[511:0] shr2060; // dcsc_walk.cpp(429:1)
wire[19:0] add2068; // dcsc_walk.cpp(437:1)
wire ne2071; // dcsc_walk.cpp(439:1)
wire eq2078; // dcsc_walk.cpp(441:3)
wire[31:0] add2089; // dcsc_walk.cpp(457:1)
wire ne2097; // dcsc_walk.cpp(468:1)
wire[511:0] shr2119; // dcsc_walk.cpp(484:1)
wire[511:0] shr2131; // dcsc_walk.cpp(486:1)
wire[63:0] sub2145; // dcsc_walk.cpp(498:0)
wire lt2154; // /home/blaise/dev/cash/include/select.h(132:0)
wire[31:0] sel2156; // dcsc_walk.cpp(509:1)
wire eq2160; // dcsc_walk.cpp(509:3)
wire[31:0] sel2162; // dcsc_walk.cpp(509:0)
wire gt2165; // /home/blaise/dev/cash/include/select.h(137:0)
wire[31:0] sel2167; // dcsc_walk.cpp(510:0)
wire[31:0] add2170; // dcsc_walk.cpp(511:0)
wire[31:0] add2174; // dcsc_walk.cpp(512:1)
wire sel2181; // dcsc_walk.cpp(441:0)
wire sel2182; // dcsc_walk.cpp(439:0)
wire sel2183; // dcsc_walk.cpp(435:0)
wire eq2184; // dcsc_walk.cpp(138:0)
wire andb2185; // dcsc_walk.cpp(138:0)
reg sel2186; // dcsc_walk.cpp(138:0)
wire[19:0] sel2188; // dcsc_walk.cpp(138:0)
wire[31:0] sel2190; // dcsc_walk.cpp(138:0)
wire[31:0] sel2192; // dcsc_walk.cpp(138:0)
reg sel2194; // dcsc_walk.cpp(138:0)
wire[31:0] sel2195; // dcsc_walk.cpp(410:0)
wire[31:0] sel2196; // dcsc_walk.cpp(409:0)
wire eq2197; // dcsc_walk.cpp(138:0)
wire andb2198; // dcsc_walk.cpp(138:0)
wire sel2199; // dcsc_walk.cpp(410:0)
wire andb2200; // dcsc_walk.cpp(138:0)
wire andb2202; // dcsc_walk.cpp(138:0)
wire[5:0] sel2203; // dcsc_walk.cpp(138:0)
wire[19:0] sel2209; // dcsc_walk.cpp(138:0)
wire[19:0] sel2210; // dcsc_walk.cpp(387:0)
wire andb2211; // dcsc_walk.cpp(138:0)
reg[19:0] sel2212; // dcsc_walk.cpp(138:0)
wire sel2213; // dcsc_walk.cpp(308:0)
wire eq2214; // dcsc_walk.cpp(138:0)
wire andb2215; // dcsc_walk.cpp(138:0)
wire[511:0] sel2216; // dcsc_walk.cpp(308:0)
wire[19:0] sel2219; // dcsc_walk.cpp(277:0)
wire[19:0] sel2220; // dcsc_walk.cpp(138:0)
wire sel2221; // dcsc_walk.cpp(157:0)
wire sel2222; // dcsc_walk.cpp(175:0)
wire sel2224; // dcsc_walk.cpp(291:0)
wire sel2225; // dcsc_walk.cpp(331:0)
wire sel2226; // dcsc_walk.cpp(365:0)
wire sel2227; // dcsc_walk.cpp(384:0)
reg sel2228; // dcsc_walk.cpp(138:0)
wire[511:0] sel2229; // dcsc_walk.cpp(192:0)
wire eq2230; // dcsc_walk.cpp(138:0)
wire andb2231; // dcsc_walk.cpp(138:0)
reg[2:0] sel2232; // dcsc_walk.cpp(138:0)
reg[19:0] sel2233; // dcsc_walk.cpp(138:0)
wire[19:0] sel2234; // dcsc_walk.cpp(192:0)
reg[19:0] sel2235; // dcsc_walk.cpp(138:0)
wire[19:0] sel2236; // dcsc_walk.cpp(240:0)
reg[19:0] sel2237; // dcsc_walk.cpp(138:0)
wire[19:0] sel2238; // dcsc_walk.cpp(138:0)
wire[31:0] sel2239; // dcsc_walk.cpp(138:0)
wire[19:0] sel2240; // dcsc_walk.cpp(257:0)
wire[19:0] sel2241; // dcsc_walk.cpp(138:0)
wire[22:0] sel2242; // dcsc_walk.cpp(141:0)
wire[22:0] sel2243; // dcsc_walk.cpp(160:0)
wire andb2244; // dcsc_walk.cpp(138:0)
wire[22:0] sel2245; // dcsc_walk.cpp(178:0)
wire andb2246; // dcsc_walk.cpp(138:0)
wire[22:0] sel2247; // dcsc_walk.cpp(204:0)
wire[22:0] sel2248; // dcsc_walk.cpp(192:0)
wire[22:0] sel2249; // dcsc_walk.cpp(226:0)
wire[22:0] sel2251; // dcsc_walk.cpp(240:0)
wire[22:0] sel2252; // dcsc_walk.cpp(260:0)
wire[22:0] sel2253; // dcsc_walk.cpp(257:0)
wire[22:0] sel2254; // dcsc_walk.cpp(277:0)
wire[22:0] sel2255; // dcsc_walk.cpp(294:0)
wire andb2256; // dcsc_walk.cpp(138:0)
wire[22:0] sel2257; // dcsc_walk.cpp(315:0)
wire[22:0] sel2258; // dcsc_walk.cpp(308:0)
wire[22:0] sel2259; // dcsc_walk.cpp(334:0)
wire andb2260; // dcsc_walk.cpp(138:0)
wire[22:0] sel2261; // dcsc_walk.cpp(368:0)
wire andb2262; // dcsc_walk.cpp(138:0)
wire[22:0] sel2263; // dcsc_walk.cpp(389:0)
wire[22:0] sel2264; // dcsc_walk.cpp(387:0)
wire[22:0] sel2266; // dcsc_walk.cpp(409:0)
wire[22:0] sel2267; // dcsc_walk.cpp(441:0)
wire[22:0] sel2268; // dcsc_walk.cpp(439:0)
wire[22:0] sel2269; // dcsc_walk.cpp(435:0)
wire[22:0] sel2270; // dcsc_walk.cpp(470:0)
wire[22:0] sel2271; // dcsc_walk.cpp(468:0)
wire[22:0] sel2273; // dcsc_walk.cpp(507:0)
reg[22:0] sel2274; // dcsc_walk.cpp(138:0)
wire[19:0] sel2275; // dcsc_walk.cpp(138:0)
wire[19:0] sel2276; // dcsc_walk.cpp(141:0)
reg[19:0] sel2277; // dcsc_walk.cpp(138:0)
wire[63:0] sel2278; // dcsc_walk.cpp(141:0)
wire andb2280; // dcsc_walk.cpp(138:0)
wire[31:0] sel2282; // dcsc_walk.cpp(507:0)
wire eq2283; // dcsc_walk.cpp(138:0)
wire andb2284; // dcsc_walk.cpp(138:0)
wire[31:0] sel2286; // dcsc_walk.cpp(507:0)
wire[31:0] sel2290; // dcsc_walk.cpp(507:0)
wire[31:0] sel2294; // dcsc_walk.cpp(507:0)
wire[31:0] sel2298; // dcsc_walk.cpp(160:0)
wire[31:0] sel2299; // dcsc_walk.cpp(157:0)
wire[31:0] sel2300; // dcsc_walk.cpp(138:0)
wire[31:0] sel2302; // dcsc_walk.cpp(178:0)
wire[31:0] sel2303; // dcsc_walk.cpp(175:0)
wire[31:0] sel2306; // dcsc_walk.cpp(240:0)
reg[31:0] sel2307; // dcsc_walk.cpp(138:0)
wire[31:0] sel2309; // dcsc_walk.cpp(368:0)
wire[31:0] sel2310; // dcsc_walk.cpp(365:0)
wire[31:0] sel2311; // dcsc_walk.cpp(138:0)
wire[31:0] sel2313; // dcsc_walk.cpp(387:0)
wire[31:0] sel2314; // dcsc_walk.cpp(384:0)
wire[31:0] sel2315; // dcsc_walk.cpp(409:0)
reg[31:0] sel2316; // dcsc_walk.cpp(138:0)
wire[31:0] sel2318; // dcsc_walk.cpp(334:0)
wire[31:0] sel2319; // dcsc_walk.cpp(331:0)
wire[31:0] sel2320; // dcsc_walk.cpp(138:0)
wire[31:0] sel2322; // dcsc_walk.cpp(294:0)
wire[31:0] sel2323; // dcsc_walk.cpp(291:0)
wire[31:0] sel2324; // dcsc_walk.cpp(308:0)
reg[31:0] sel2325; // dcsc_walk.cpp(138:0)
wire[31:0] sel2327; // dcsc_walk.cpp(435:0)
reg[31:0] sel2329; // dcsc_walk.cpp(138:0)
wire[511:0] sel2330; // dcsc_walk.cpp(410:0)
wire[19:0] sel2334; // dcsc_walk.cpp(141:0)
wire sel2337; // dcsc_walk.cpp(192:0)
wire sel2340; // dcsc_walk.cpp(192:0)
wire sel2341; // dcsc_walk.cpp(240:0)
reg sel2342; // dcsc_walk.cpp(138:0)
wire[19:0] sel2343; // dcsc_walk.cpp(192:0)
wire[19:0] sel2344; // dcsc_walk.cpp(435:0)
reg[19:0] sel2345; // dcsc_walk.cpp(138:0)
wire[511:0] sel2346; // dcsc_walk.cpp(192:0)
assign io_lsu_rd_req_data75 = {sel2233, sel2232};
always @ (posedge clk) begin
reg101 <= sel2277;
end
always @ (posedge clk) begin
reg108 <= sel2334;
end
always @ (posedge clk) begin
reg113 <= sel2235;
end
always @ (posedge clk) begin
reg118 <= sel2345;
end
always @ (posedge clk) begin
reg123 <= sel2237;
end
always @ (posedge clk) begin
reg128 <= sel2238;
end
always @ (posedge clk) begin
if (reset)
reg135 <= 20'hfffff;
else
reg135 <= sel2241;
end
always @ (posedge clk) begin
if (reset)
reg142 <= 20'hfffff;
else
reg142 <= sel2220;
end
always @ (posedge clk) begin
reg147 <= sel2212;
end
always @ (posedge clk) begin
reg152 <= sel2209;
end
always @ (posedge clk) begin
reg157 <= sel2275;
end
always @ (posedge clk) begin
reg162 <= sel2203;
end
always @ (posedge clk) begin
reg167 <= sel2196;
end
assign ch_llqueue310_clk = clk;
assign ch_llqueue310_reset = reset;
ch_llqueue ch_llqueue310(.clk(ch_llqueue310_clk), .reset(ch_llqueue310_reset), .io_enq_data(ch_llqueue310_io_enq_data), .io_enq_valid(ch_llqueue310_io_enq_valid), .io_deq_ready(ch_llqueue310_io_deq_ready), .io_deq_data(ch_llqueue310_io_deq_data), .io_deq_valid(ch_llqueue310_io_deq_valid));
assign ch_llqueue310_io_enq_data = io_lsu_rd_rsp_data[514:3];
assign ch_llqueue310_io_enq_valid = andl1336;
assign ch_llqueue310_io_deq_ready = reg1570;
assign ch_llqueue473_clk = clk;
assign ch_llqueue473_reset = reset;
ch_llqueue ch_llqueue473(.clk(ch_llqueue473_clk), .reset(ch_llqueue473_reset), .io_enq_data(ch_llqueue473_io_enq_data), .io_enq_valid(ch_llqueue473_io_enq_valid), .io_deq_ready(ch_llqueue473_io_deq_ready), .io_deq_data(ch_llqueue473_io_deq_data), .io_deq_valid(ch_llqueue473_io_deq_valid));
assign ch_llqueue473_io_enq_data = io_lsu_rd_rsp_data[514:3];
assign ch_llqueue473_io_enq_valid = andl1344;
assign ch_llqueue473_io_deq_ready = reg1577;
assign ch_queue674_clk = clk;
assign ch_queue674_reset = reset;
ch_queue ch_queue674(.clk(ch_queue674_clk), .reset(ch_queue674_reset), .io_enq_data(ch_queue674_io_enq_data), .io_enq_valid(ch_queue674_io_enq_valid), .io_deq_ready(ch_queue674_io_deq_ready), .io_deq_data(ch_queue674_io_deq_data));
assign ch_queue674_io_enq_data = io_lsu_rd_rsp_data[514:3];
assign ch_queue674_io_enq_valid = andl1352;
assign ch_queue674_io_deq_ready = reg1584;
assign ch_queue875_clk = clk;
assign ch_queue875_reset = reset;
ch_queue ch_queue875(.clk(ch_queue875_clk), .reset(ch_queue875_reset), .io_enq_data(ch_queue875_io_enq_data), .io_enq_valid(ch_queue875_io_enq_valid), .io_deq_ready(ch_queue875_io_deq_ready), .io_deq_data(ch_queue875_io_deq_data), .io_size(ch_queue875_io_size));
assign ch_queue875_io_enq_data = io_lsu_rd_rsp_data[514:3];
assign ch_queue875_io_enq_valid = andl1360;
assign ch_queue875_io_deq_ready = reg1584;
assign ch_llqueue1038_clk = clk;
assign ch_llqueue1038_reset = reset;
ch_llqueue ch_llqueue1038(.clk(ch_llqueue1038_clk), .reset(ch_llqueue1038_reset), .io_enq_data(ch_llqueue1038_io_enq_data), .io_enq_valid(ch_llqueue1038_io_enq_valid), .io_deq_ready(ch_llqueue1038_io_deq_ready), .io_deq_data(ch_llqueue1038_io_deq_data), .io_deq_valid(ch_llqueue1038_io_deq_valid));
assign ch_llqueue1038_io_enq_data = io_lsu_rd_rsp_data[514:3];
assign ch_llqueue1038_io_enq_valid = andl1368;
assign ch_llqueue1038_io_deq_ready = reg1598;
assign ch_llqueue1201_clk = clk;
assign ch_llqueue1201_reset = reset;
ch_llqueue ch_llqueue1201(.clk(ch_llqueue1201_clk), .reset(ch_llqueue1201_reset), .io_enq_data(ch_llqueue1201_io_enq_data), .io_enq_valid(ch_llqueue1201_io_enq_valid), .io_deq_ready(ch_llqueue1201_io_deq_ready), .io_deq_data(ch_llqueue1201_io_deq_data), .io_deq_valid(ch_llqueue1201_io_deq_valid));
assign ch_llqueue1201_io_enq_data = io_lsu_rd_rsp_data[514:3];
assign ch_llqueue1201_io_enq_valid = andl1376;
assign ch_llqueue1201_io_deq_ready = reg1605;
always @ (posedge clk) begin
if (reset)
reg1228 <= 8'h0;
else
reg1228 <= sel1418;
end
always @ (posedge clk) begin
if (reset)
reg1234 <= 8'h0;
else
reg1234 <= sel1447;
end
always @ (posedge clk) begin
if (reset)
reg1240 <= 8'h0;
else
reg1240 <= sel1476;
end
always @ (posedge clk) begin
if (reset)
reg1246 <= 8'h0;
else
reg1246 <= sel1505;
end
always @ (posedge clk) begin
if (reset)
reg1252 <= 8'h0;
else
reg1252 <= sel1534;
end
always @ (posedge clk) begin
if (reset)
reg1258 <= 8'h0;
else
reg1258 <= sel1563;
end
always @ (posedge clk) begin
reg1263 <= sel2229;
end
always @ (posedge clk) begin
reg1268 <= sel2346;
end
always @ (posedge clk) begin
reg1273 <= sel2216;
end
always @ (posedge clk) begin
reg1278 <= sel2330;
end
always @ (posedge clk) begin
reg1283 <= sel2239;
end
always @ (posedge clk) begin
reg1288 <= sel2278;
end
assign proxy1305 = {sel2329, sel2325, sel2320, sel2316, sel2311, sel2307, sel2300, sel2294, sel2290, sel2286, sel2282};
always @ (posedge clk) begin
if (reset)
reg1306 <= lit1290;
else
reg1306 <= proxy1305;
end
assign eq1333 = io_lsu_rd_rsp_data[2:0] == 3'h1;
assign andl1336 = io_lsu_rd_rsp_valid && eq1333;
assign eq1341 = io_lsu_rd_rsp_data[2:0] == 3'h2;
assign andl1344 = io_lsu_rd_rsp_valid && eq1341;
assign eq1349 = io_lsu_rd_rsp_data[2:0] == 3'h3;
assign andl1352 = io_lsu_rd_rsp_valid && eq1349;
assign eq1357 = io_lsu_rd_rsp_data[2:0] == 3'h4;
assign andl1360 = io_lsu_rd_rsp_valid && eq1357;
assign eq1365 = io_lsu_rd_rsp_data[2:0] == 3'h5;
assign andl1368 = io_lsu_rd_rsp_valid && eq1365;
assign eq1373 = io_lsu_rd_rsp_data[2:0] == 3'h6;
assign andl1376 = io_lsu_rd_rsp_valid && eq1373;
always @ (posedge clk) begin
if (reset)
reg1383 <= 23'h1;
else
reg1383 <= sel2274;
end
assign eq1387 = reg1383 == 23'h1;
assign eq1391 = sel2232 == 3'h1;
assign andl1394 = sel2228 && io_lsu_rd_req_ready;
assign andl1396 = andl1394 && eq1391;
assign notl1399 = !andl1396;
assign andl1401 = notl1399 && reg1570;
assign notl1404 = !reg1570;
assign andl1407 = andl1396 && notl1404;
assign add1412 = reg1228 + 8'h1;
assign sub1416 = reg1228 - 8'h1;
always @(*) begin
if (andl1407)
sel1418 = add1412;
else if (andl1401)
sel1418 = sub1416;
else
sel1418 = reg1228;
end
assign eq1421 = sel2232 == 3'h2;
assign andl1426 = andl1394 && eq1421;
assign notl1429 = !andl1426;
assign andl1431 = notl1429 && reg1577;
assign notl1434 = !reg1577;
assign andl1437 = andl1426 && notl1434;
assign add1441 = reg1234 + 8'h1;
assign sub1445 = reg1234 - 8'h1;
always @(*) begin
if (andl1437)
sel1447 = add1441;
else if (andl1431)
sel1447 = sub1445;
else
sel1447 = reg1234;
end
assign eq1450 = sel2232 == 3'h3;
assign andl1455 = andl1394 && eq1450;
assign notl1458 = !andl1455;
assign andl1460 = notl1458 && reg1584;
assign notl1463 = !reg1584;
assign andl1466 = andl1455 && notl1463;
assign add1470 = reg1240 + 8'h1;
assign sub1474 = reg1240 - 8'h1;
always @(*) begin
if (andl1466)
sel1476 = add1470;
else if (andl1460)
sel1476 = sub1474;
else
sel1476 = reg1240;
end
assign eq1479 = sel2232 == 3'h4;
assign andl1484 = andl1394 && eq1479;
assign notl1487 = !andl1484;
assign andl1489 = notl1487 && reg1584;
assign andl1495 = andl1484 && notl1463;
assign add1499 = reg1246 + 8'h1;
assign sub1503 = reg1246 - 8'h1;
always @(*) begin
if (andl1495)
sel1505 = add1499;
else if (andl1489)
sel1505 = sub1503;
else
sel1505 = reg1246;
end
assign eq1508 = sel2232 == 3'h5;
assign andl1513 = andl1394 && eq1508;
assign notl1516 = !andl1513;
assign andl1518 = notl1516 && reg1598;
assign notl1521 = !reg1598;
assign andl1524 = andl1513 && notl1521;
assign add1528 = reg1252 + 8'h1;
assign sub1532 = reg1252 - 8'h1;
always @(*) begin
if (andl1524)
sel1534 = add1528;
else if (andl1518)
sel1534 = sub1532;
else
sel1534 = reg1252;
end
assign eq1537 = sel2232 == 3'h6;
assign andl1542 = andl1394 && eq1537;
assign notl1545 = !andl1542;
assign andl1547 = notl1545 && reg1605;
assign notl1550 = !reg1605;
assign andl1553 = andl1542 && notl1550;
assign add1557 = reg1258 + 8'h1;
assign sub1561 = reg1258 - 8'h1;
always @(*) begin
if (andl1553)
sel1563 = add1557;
else if (andl1547)
sel1563 = sub1561;
else
sel1563 = reg1258;
end
always @ (posedge clk) begin
if (reset)
reg1570 <= 1'h0;
else
reg1570 <= sel2337;
end
always @ (posedge clk) begin
if (reset)
reg1577 <= 1'h0;
else
reg1577 <= sel2342;
end
always @ (posedge clk) begin
if (reset)
reg1584 <= 1'h0;
else
reg1584 <= sel2183;
end
always @ (posedge clk) begin
if (reset)
reg1598 <= 1'h0;
else
reg1598 <= sel2199;
end
always @ (posedge clk) begin
if (reset)
reg1605 <= 1'h0;
else
reg1605 <= sel2213;
end
assign proxy1609 = {sel2194, sel2192, sel2190, sel2188};
always @ (posedge clk) begin
reg1610 <= proxy1609;
end
always @ (posedge clk) begin
if (reset)
reg1625 <= 1'h0;
else
reg1625 <= sel2186;
end
assign sub1645 = io_ctrl_start_data[51:32] - 20'h1;
assign shl1653 = reg101 << 32'h2;
assign shr1657 = shl1653 >> 32'h6;
assign ne1662 = reg1228 != 8'h2;
assign add1671 = reg1306[159:128] + 32'h1;
assign ne1687 = reg1234 != 8'h2;
assign add1694 = reg1306[191:160] + 32'h1;
assign andl1701 = ch_llqueue310_io_deq_valid && ch_llqueue473_io_deq_valid;
assign andb1707 = reg101 & 20'hf;
assign shl1711 = andb1707 << 32'h5;
assign shr1713 = ch_llqueue310_io_deq_data >> shl1711;
assign shr1726 = ch_llqueue473_io_deq_data >> shl1711;
assign ne1736 = andb1707 != 20'hf;
assign add1746 = reg101 + 20'h1;
assign andb1748 = add1746 & 20'hf;
assign shl1751 = andb1748 << 32'h5;
assign shr1753 = reg1268 >> shl1751;
assign shl1765 = add1746 << 32'h2;
assign shr1768 = shl1765 >> 32'h6;
assign sub1795 = reg123 - 20'h1;
assign shr1799 = reg113 >> 32'h5;
assign shl1803 = shr1799 << 32'h2;
assign shr1806 = shl1803 >> 32'h6;
assign eq1809 = shr1806 == reg135;
assign andb1814 = shr1799 & 20'hf;
assign shl1817 = andb1814 << 32'h5;
assign shr1819 = reg1273 >> shl1817;
assign andb1830 = reg113 & 20'h1f;
assign shl1832 = 32'h1 << andb1830;
assign andb1835 = shr1819[31:0] & shl1832;
assign ne1837 = andb1835 != 32'h0;
assign shl1847 = reg113 << 32'h2;
assign shr1850 = shl1847 >> 32'h6;
assign eq1853 = shr1850 == reg142;
assign ne1862 = reg1258 != 8'h2;
assign add1869 = reg1306[319:288] + 32'h1;
assign shr1888 = ch_llqueue1201_io_deq_data >> shl1817;
assign andb1902 = shr1888[31:0] & shl1832;
assign ne1904 = andb1902 != 32'h0;
assign ne1922 = reg1252 != 8'h2;
assign add1928 = reg1306[287:256] + 32'h1;
assign shl1936 = reg118 << 32'h2;
assign shr1939 = shl1936 >> 32'h6;
assign shl1945 = reg123 << 32'h2;
assign add1947 = shl1945 + 20'h3f;
assign shr1950 = add1947 >> 32'h6;
assign sub1955 = reg152 - reg147;
assign sub1961 = reg152 - 20'h1;
assign ne1969 = reg1240 != 8'h20;
assign add1976 = reg1306[223:192] + 32'h1;
assign ne1985 = reg1246 != 8'h20;
assign add1990 = reg147 + 20'h1;
assign ne1993 = reg147 != reg157;
assign add2000 = reg1306[255:224] + 32'h1;
assign eq2007 = ch_queue875_io_size == reg162;
assign andb2013 = reg113 & 20'hf;
assign shl2016 = andb2013 << 32'h5;
assign shr2018 = ch_llqueue1038_io_deq_data >> shl2016;
assign shr2030 = reg1278 >> shl2016;
assign andb2043 = reg118 & 20'hf;
assign shl2046 = andb2043 << 32'h5;
assign shr2048 = ch_queue674_io_deq_data >> shl2046;
assign shr2060 = ch_queue875_io_deq_data >> shl2046;
assign add2068 = reg118 + 20'h1;
assign ne2071 = reg118 != reg128;
assign eq2078 = andb2043 == 20'hf;
assign add2089 = reg1306[351:320] + 32'h1;
assign ne2097 = reg101 != reg108;
assign shr2119 = reg1263 >> shl1711;