-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog
2042 lines (1919 loc) · 126 KB
/
log
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
Design Compiler Graphical
DC Ultra (TM)
DFTMAX (TM)
Power Compiler (TM)
DesignWare (R)
DC Expert (TM)
Design Vision (TM)
HDL Compiler (TM)
VHDL Compiler (TM)
DFT Compiler
Library Compiler (TM)
Design Compiler(R)
Version H-2013.03-SP2 for RHEL64 -- Jun 03, 2013
Copyright (c) 1988-2013 Synopsys, Inc.
This software and the associated documentation are confidential and
proprietary to Synopsys, Inc. Your use or disclosure of this software
is subject to the terms and conditions of a written license agreement
between you, or your company, and Synopsys, Inc.
Initializing...
set search_path [concat "/usr/local/lib/hit18-lib/kyoto_lib/synopsys/" $search_path]
/usr/local/lib/hit18-lib/kyoto_lib/synopsys/ . /usr/synopsys/H-2013.03-SP2/libraries/syn /usr/synopsys/H-2013.03-SP2/minpower/syn /usr/synopsys/H-2013.03-SP2/dw/syn_ver /usr/synopsys/H-2013.03-SP2/dw/sim_ver
set LIB_MAX_FILE {HIT018.db}
HIT018.db
set link_library $LIB_MAX_FILE
HIT018.db
set target_library $LIB_MAX_FILE
HIT018.db
##read_verilog module
read_verilog regfile.v
Loading db file '/usr/local/lib/hit18-lib/kyoto_lib/synopsys/HIT018.db'
Loading db file '/usr/synopsys/H-2013.03-SP2/libraries/syn/gtech.db'
Loading db file '/usr/synopsys/H-2013.03-SP2/libraries/syn/standard.sldb'
Loading link library 'HIT018'
Loading link library 'gtech'
Loading verilog file '/home/mclyu/test/t2/regfile.v'
Detecting input file type automatically (-rtl or -netlist).
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/regfile.v
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/Regfile.db:Regfile'
Loaded 1 design.
Current design is 'Regfile'.
Regfile
read_verilog decoder.v
Loading verilog file '/home/mclyu/test/t2/decoder.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/decoder.v
Opening include file defines.v
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/Decoder.db:Decoder'
Loaded 1 design.
Current design is 'Decoder'.
Decoder
read_verilog defines.v
Loading verilog file '/home/mclyu/test/t2/defines.v'
Detecting input file type automatically (-rtl or -netlist).
Running DC verilog reader
Performing 'read' command.
Compiling source file /home/mclyu/test/t2/defines.v
Reading with netlist reader (equivalent to -netlist option).
Verilog netlist reader completed successfully.
No designs were read
read_verilog ex2mem.v
Loading verilog file '/home/mclyu/test/t2/ex2mem.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/ex2mem.v
Opening include file defines.v
Inferred memory devices in process
in routine EX2MEM line 47 in file
'/home/mclyu/test/t2/ex2mem.v'.
==================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
==================================================================================
| mem_write_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| fcC_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| wr_width_o_reg | Flip-flop | 3 | Y | N | Y | N | N | N | N |
| alu_dataCaddress_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| w_data_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| mem_read_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
==================================================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/EX2MEM.db:EX2MEM'
Loaded 1 design.
Current design is 'EX2MEM'.
EX2MEM
read_verilog ex_alu.v
Loading verilog file '/home/mclyu/test/t2/ex_alu.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Opening include file calcu.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/ex_alu.v
Opening include file defines.v
Opening include file calcu.v
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PA4.db:PA4'
Loaded 5 designs.
Current design is 'PA4'.
PA4 adder32 Ex_alu Shifter Adder
read_verilog calcu.v
Loading verilog file '/home/mclyu/test/t2/calcu.v'
Detecting input file type automatically (-rtl or -netlist).
Warning: Overwriting design file '/home/mclyu/test/t2/PA4'. (DDB-24)
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/calcu.v
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PA4.db:PA4'
Warning: Overwriting design file '/home/mclyu/test/t2/adder32.db'. (DDB-24)
Loaded 2 designs.
Current design is 'PA4'.
PA4 adder32
read_verilog calcu2.v
Loading verilog file '/home/mclyu/test/t2/calcu2.v'
Detecting input file type automatically (-rtl or -netlist).
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/calcu2.v
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PA42.db:PA42'
Loaded 2 designs.
Current design is 'PA42'.
PA42 adder322
read_verilog id2ex.v
Loading verilog file '/home/mclyu/test/t2/id2ex.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/id2ex.v
Opening include file defines.v
Inferred memory devices in process
in routine ID2EX line 158 in file
'/home/mclyu/test/t2/id2ex.v'.
=================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
=================================================================================
| typeb_pc_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| pc_wb_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| b_flag_cache_or_reg | Flip-flop | 6 | Y | N | N | N | N | N | N |
| wr_width_or_reg | Flip-flop | 3 | Y | N | N | N | N | N | N |
| regalu_dataA_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| reg_dataB_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| imm_exten_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| rd_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs1_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs2_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| jjruF_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_data_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_read_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_write_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| alu_ctrl_or_reg | Flip-flop | 4 | Y | N | N | N | N | N | N |
| alu_dataB_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| load_bneq_sig_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| bneqFlag_or_reg | Flip-flop | 2 | Y | N | N | N | N | N | N |
| fcDbneq_o_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
=================================================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/ID2EX.db:ID2EX'
Loaded 1 design.
Current design is 'ID2EX'.
ID2EX
read_verilog if2id.v
Loading verilog file '/home/mclyu/test/t2/if2id.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/if2id.v
Opening include file defines.v
Inferred memory devices in process
in routine IF2IDWithStall line 81 in file
'/home/mclyu/test/t2/if2id.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| fcD_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| b2_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| pc_out_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| inst_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| is_jjru_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/IF2IDWithStall.db:IF2IDWithStall'
Loaded 1 design.
Current design is 'IF2IDWithStall'.
IF2IDWithStall
read_verilog mem2wb.v
Loading verilog file '/home/mclyu/test/t2/mem2wb.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/mem2wb.v
Opening include file defines.v
Inferred memory devices in process
in routine MEM2WB line 35 in file
'/home/mclyu/test/t2/mem2wb.v'.
===================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===================================================================================
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| r_data_o_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| r_data_o_tri_enable_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| alu_dataC_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
===================================================================================
Inferred tri-state devices in process
in routine MEM2WB line 35 in file
'/home/mclyu/test/t2/mem2wb.v'.
=================================================
| Register Name | Type | Width | MB |
=================================================
| r_data_o_tri | Tri-State Buffer | 32 | N |
=================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/MEM2WB.db:MEM2WB'
Loaded 1 design.
Current design is 'MEM2WB'.
MEM2WB
read_verilog other_modules.v
Loading verilog file '/home/mclyu/test/t2/other_modules.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file calcu2.v
Warning: Overwriting design file '/home/mclyu/test/t2/PA42'. (DDB-24)
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/other_modules.v
Opening include file calcu2.v
Inferred memory devices in process
in routine IRS line 13 in file
'/home/mclyu/test/t2/other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| in_dly_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine RegCondRster line 358 in file
'/home/mclyu/test/t2/other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| times_r_reg | Flip-flop | 2 | Y | N | Y | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 511 in file
'/home/mclyu/test/t2/other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| num_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| num_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 521 in file
'/home/mclyu/test/t2/other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pulse2_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PA42.db:PA42'
Warning: Overwriting design file '/home/mclyu/test/t2/adder322.db'. (DDB-24)
Loaded 18 designs.
Current design is 'PA42'.
PA42 adder322 IRS Mux Mux5 Mux1 Mux31 Add Judger I_mem D_mem JJrUJudger BranchJudger RegCondRster FwdCtrler EqJduger JBHandler EdgeDetector
read_verilog pc_reg.v
Loading verilog file '/home/mclyu/test/t2/pc_reg.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/pc_reg.v
Opening include file defines.v
Inferred memory devices in process
in routine PcRegWithStall line 66 in file
'/home/mclyu/test/t2/pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out_T_reg | Flip-flop | 31 | Y | N | Y | N | N | N | N |
| pc_out_T_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine PcRegWithStall line 80 in file
'/home/mclyu/test/t2/pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out__reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
===============================================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PcRegWithStall.db:PcRegWithStall'
Loaded 2 designs.
Current design is 'PcRegWithStall'.
PcRegWithStall StallMux
read_verilog rf32x32.v
Loading verilog file '/home/mclyu/test/t2/rf32x32.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file regfile.v
Warning: Overwriting design file '/home/mclyu/test/t2/Regfile'. (DDB-24)
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/rf32x32.v
Opening include file regfile.v
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/Regfile.db:Regfile'
Loaded 2 designs.
Current design is 'Regfile'.
Regfile rf32x32
read_verilog ppl_datapath_test.v
Loading verilog file '/home/mclyu/test/t2/ppl_datapath_test.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file pc_reg.v
Opening include file defines.v
Warning: Overwriting design file '/home/mclyu/test/t2/PcRegWithStall'. (DDB-24)
Opening include file decoder.v
Opening include file defines.v
Opening include file other_modules.v
Opening include file calcu2.v
Opening include file if2id.v
Opening include file defines.v
Opening include file id2ex.v
Opening include file defines.v
Opening include file ex2mem.v
Opening include file defines.v
Opening include file mem2wb.v
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/ppl_datapath_test.v
Opening include file pc_reg.v
Opening include file defines.v
Opening include file decoder.v
Opening include file defines.v
Opening include file other_modules.v
Opening include file calcu2.v
Opening include file if2id.v
Opening include file defines.v
Opening include file id2ex.v
Opening include file defines.v
Opening include file ex2mem.v
Opening include file defines.v
Opening include file mem2wb.v
Opening include file defines.v
Opening include file rf32x32.v
Opening include file regfile.v
Opening include file ex_alu.v
Opening include file defines.v
Opening include file calcu.v
Inferred memory devices in process
in routine PcRegWithStall line 66 in file
'pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out_T_reg | Flip-flop | 31 | Y | N | Y | N | N | N | N |
| pc_out_T_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine PcRegWithStall line 80 in file
'pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out__reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine IRS line 13 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| in_dly_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine RegCondRster line 358 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| times_r_reg | Flip-flop | 2 | Y | N | Y | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 511 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| num_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| num_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 521 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pulse2_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine IF2IDWithStall line 81 in file
'if2id.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| fcD_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| b2_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| pc_out_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| inst_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| is_jjru_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine ID2EX line 158 in file
'id2ex.v'.
=================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
=================================================================================
| typeb_pc_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| pc_wb_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| b_flag_cache_or_reg | Flip-flop | 6 | Y | N | N | N | N | N | N |
| wr_width_or_reg | Flip-flop | 3 | Y | N | N | N | N | N | N |
| regalu_dataA_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| reg_dataB_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| imm_exten_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| rd_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs1_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs2_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| jjruF_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_data_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_read_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_write_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| alu_ctrl_or_reg | Flip-flop | 4 | Y | N | N | N | N | N | N |
| alu_dataB_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| load_bneq_sig_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| bneqFlag_or_reg | Flip-flop | 2 | Y | N | N | N | N | N | N |
| fcDbneq_o_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
=================================================================================
Inferred memory devices in process
in routine EX2MEM line 47 in file
'ex2mem.v'.
==================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
==================================================================================
| mem_write_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| fcC_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| wr_width_o_reg | Flip-flop | 3 | Y | N | Y | N | N | N | N |
| alu_dataCaddress_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| w_data_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| mem_read_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
==================================================================================
Inferred memory devices in process
in routine MEM2WB line 35 in file
'mem2wb.v'.
===================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===================================================================================
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| r_data_o_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| r_data_o_tri_enable_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| alu_dataC_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
===================================================================================
Inferred tri-state devices in process
in routine MEM2WB line 35 in file
'mem2wb.v'.
=================================================
| Register Name | Type | Width | MB |
=================================================
| r_data_o_tri | Tri-State Buffer | 32 | N |
=================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PcRegWithStall.db:PcRegWithStall'
Warning: Overwriting design file '/home/mclyu/test/t2/StallMux.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Decoder.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PA42.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/adder322.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/IRS.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux5.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux1.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux31.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Add.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Judger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/I_mem.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/D_mem.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/JJrUJudger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/BranchJudger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/RegCondRster.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/FwdCtrler.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EqJduger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/JBHandler.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EdgeDetector.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/IF2IDWithStall.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/ID2EX.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EX2MEM.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/MEM2WB.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Regfile.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/rf32x32.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PA4.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/adder32.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Ex_alu.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Shifter.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Adder.db'. (DDB-24)
Loaded 33 designs.
Current design is 'PcRegWithStall'.
PcRegWithStall StallMux Decoder PA42 adder322 IRS Mux Mux5 Mux1 Mux31 Add Judger I_mem D_mem JJrUJudger BranchJudger RegCondRster FwdCtrler EqJduger JBHandler EdgeDetector IF2IDWithStall ID2EX EX2MEM MEM2WB Regfile rf32x32 PA4 adder32 Ex_alu Shifter Adder PplDatapathTest
read_verilog includes.v
Loading verilog file '/home/mclyu/test/t2/includes.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file pc_reg.v
Opening include file defines.v
Warning: Overwriting design file '/home/mclyu/test/t2/PcRegWithStall'. (DDB-24)
Opening include file decoder.v
Opening include file defines.v
Opening include file other_modules.v
Opening include file calcu2.v
Opening include file if2id.v
Opening include file defines.v
Opening include file id2ex.v
Opening include file defines.v
Opening include file ex2mem.v
Opening include file defines.v
Opening include file mem2wb.v
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/includes.v
Opening include file pc_reg.v
Opening include file defines.v
Opening include file decoder.v
Opening include file defines.v
Opening include file other_modules.v
Opening include file calcu2.v
Opening include file if2id.v
Opening include file defines.v
Opening include file id2ex.v
Opening include file defines.v
Opening include file ex2mem.v
Opening include file defines.v
Opening include file mem2wb.v
Opening include file defines.v
Opening include file rf32x32.v
Opening include file regfile.v
Opening include file ex_alu.v
Opening include file defines.v
Opening include file calcu.v
Inferred memory devices in process
in routine PcRegWithStall line 66 in file
'pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out_T_reg | Flip-flop | 31 | Y | N | Y | N | N | N | N |
| pc_out_T_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine PcRegWithStall line 80 in file
'pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out__reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine IRS line 13 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| in_dly_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine RegCondRster line 358 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| times_r_reg | Flip-flop | 2 | Y | N | Y | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 511 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| num_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| num_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 521 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pulse2_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine IF2IDWithStall line 81 in file
'if2id.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| fcD_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| b2_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| pc_out_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| inst_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| is_jjru_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine ID2EX line 158 in file
'id2ex.v'.
=================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
=================================================================================
| typeb_pc_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| pc_wb_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| b_flag_cache_or_reg | Flip-flop | 6 | Y | N | N | N | N | N | N |
| wr_width_or_reg | Flip-flop | 3 | Y | N | N | N | N | N | N |
| regalu_dataA_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| reg_dataB_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| imm_exten_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| rd_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs1_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs2_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| jjruF_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_data_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_read_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_write_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| alu_ctrl_or_reg | Flip-flop | 4 | Y | N | N | N | N | N | N |
| alu_dataB_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| load_bneq_sig_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| bneqFlag_or_reg | Flip-flop | 2 | Y | N | N | N | N | N | N |
| fcDbneq_o_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
=================================================================================
Inferred memory devices in process
in routine EX2MEM line 47 in file
'ex2mem.v'.
==================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
==================================================================================
| mem_write_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| fcC_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| wr_width_o_reg | Flip-flop | 3 | Y | N | Y | N | N | N | N |
| alu_dataCaddress_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| w_data_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| mem_read_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
==================================================================================
Inferred memory devices in process
in routine MEM2WB line 35 in file
'mem2wb.v'.
===================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===================================================================================
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| r_data_o_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| r_data_o_tri_enable_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| alu_dataC_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
===================================================================================
Inferred tri-state devices in process
in routine MEM2WB line 35 in file
'mem2wb.v'.
=================================================
| Register Name | Type | Width | MB |
=================================================
| r_data_o_tri | Tri-State Buffer | 32 | N |
=================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PcRegWithStall.db:PcRegWithStall'
Warning: Overwriting design file '/home/mclyu/test/t2/StallMux.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Decoder.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PA42.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/adder322.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/IRS.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux5.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux1.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux31.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Add.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Judger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/I_mem.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/D_mem.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/JJrUJudger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/BranchJudger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/RegCondRster.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/FwdCtrler.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EqJduger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/JBHandler.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EdgeDetector.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/IF2IDWithStall.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/ID2EX.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EX2MEM.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/MEM2WB.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Regfile.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/rf32x32.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PA4.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/adder32.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Ex_alu.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Shifter.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Adder.db'. (DDB-24)
Loaded 32 designs.
Current design is 'PcRegWithStall'.
PcRegWithStall StallMux Decoder PA42 adder322 IRS Mux Mux5 Mux1 Mux31 Add Judger I_mem D_mem JJrUJudger BranchJudger RegCondRster FwdCtrler EqJduger JBHandler EdgeDetector IF2IDWithStall ID2EX EX2MEM MEM2WB Regfile rf32x32 PA4 adder32 Ex_alu Shifter Adder
read_verilog top.v
Loading verilog file '/home/mclyu/test/t2/top.v'
Detecting input file type automatically (-rtl or -netlist).
Opening include file ppl_datapath_test.v
Opening include file pc_reg.v
Opening include file defines.v
Warning: Overwriting design file '/home/mclyu/test/t2/PcRegWithStall'. (DDB-24)
Opening include file decoder.v
Opening include file defines.v
Opening include file other_modules.v
Opening include file calcu2.v
Opening include file if2id.v
Opening include file defines.v
Opening include file id2ex.v
Opening include file defines.v
Opening include file ex2mem.v
Opening include file defines.v
Opening include file mem2wb.v
Opening include file defines.v
Reading with Presto HDL Compiler (equivalent to -rtl option).
Running PRESTO HDLC
Compiling source file /home/mclyu/test/t2/top.v
Opening include file ppl_datapath_test.v
Opening include file pc_reg.v
Opening include file defines.v
Opening include file decoder.v
Opening include file defines.v
Opening include file other_modules.v
Opening include file calcu2.v
Opening include file if2id.v
Opening include file defines.v
Opening include file id2ex.v
Opening include file defines.v
Opening include file ex2mem.v
Opening include file defines.v
Opening include file mem2wb.v
Opening include file defines.v
Opening include file rf32x32.v
Opening include file regfile.v
Opening include file ex_alu.v
Opening include file defines.v
Opening include file calcu.v
Opening include file defines.v
Inferred memory devices in process
in routine PcRegWithStall line 66 in file
'pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out_T_reg | Flip-flop | 31 | Y | N | Y | N | N | N | N |
| pc_out_T_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine PcRegWithStall line 80 in file
'pc_reg.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pc_out__reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine IRS line 13 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| in_dly_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine RegCondRster line 358 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| times_r_reg | Flip-flop | 2 | Y | N | Y | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 511 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| num_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| num_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
===============================================================================
Inferred memory devices in process
in routine EdgeDetector line 521 in file
'other_modules.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| pulse2_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine IF2IDWithStall line 81 in file
'if2id.v'.
===============================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===============================================================================
| fcD_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| b2_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| pc_out_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| inst_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| is_jjru_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
===============================================================================
Inferred memory devices in process
in routine ID2EX line 158 in file
'id2ex.v'.
=================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
=================================================================================
| typeb_pc_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| pc_wb_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| b_flag_cache_or_reg | Flip-flop | 6 | Y | N | N | N | N | N | N |
| wr_width_or_reg | Flip-flop | 3 | Y | N | N | N | N | N | N |
| regalu_dataA_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| reg_dataB_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| imm_exten_or_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| rd_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs1_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| rs2_or_reg | Flip-flop | 5 | Y | N | N | N | N | N | N |
| jjruF_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| reg_w_data_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_read_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| mem_write_ctrl_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| alu_ctrl_or_reg | Flip-flop | 4 | Y | N | N | N | N | N | N |
| alu_dataB_sel_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| load_bneq_sig_or_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
| bneqFlag_or_reg | Flip-flop | 2 | Y | N | N | N | N | N | N |
| fcDbneq_o_reg | Flip-flop | 1 | N | N | N | N | N | N | N |
=================================================================================
Inferred memory devices in process
in routine EX2MEM line 47 in file
'ex2mem.v'.
==================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
==================================================================================
| mem_write_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| fcC_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| wr_width_o_reg | Flip-flop | 3 | Y | N | Y | N | N | N | N |
| alu_dataCaddress_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| w_data_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| mem_read_ctrl_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
==================================================================================
Inferred memory devices in process
in routine MEM2WB line 35 in file
'mem2wb.v'.
===================================================================================
| Register Name | Type | Width | Bus | MB | AR | AS | SR | SS | ST |
===================================================================================
| reg_w_ctrl_o_reg | Flip-flop | 1 | N | N | N | Y | N | N | N |
| reg_w_data_sel_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
| pc_wb_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| r_data_o_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| r_data_o_tri_enable_reg | Flip-flop | 32 | Y | N | N | N | N | N | N |
| alu_dataC_o_reg | Flip-flop | 32 | Y | N | Y | N | N | N | N |
| rd_o_reg | Flip-flop | 5 | Y | N | Y | N | N | N | N |
| c_o_reg | Flip-flop | 1 | N | N | Y | N | N | N | N |
===================================================================================
Inferred tri-state devices in process
in routine MEM2WB line 35 in file
'mem2wb.v'.
=================================================
| Register Name | Type | Width | MB |
=================================================
| r_data_o_tri | Tri-State Buffer | 32 | N |
=================================================
Presto compilation completed successfully.
Current design is now '/home/mclyu/test/t2/PcRegWithStall.db:PcRegWithStall'
Warning: Overwriting design file '/home/mclyu/test/t2/StallMux.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Decoder.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PA42.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/adder322.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/IRS.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux5.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux1.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Mux31.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Add.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Judger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/I_mem.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/D_mem.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/JJrUJudger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/BranchJudger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/RegCondRster.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/FwdCtrler.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EqJduger.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/JBHandler.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EdgeDetector.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/IF2IDWithStall.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/ID2EX.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/EX2MEM.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/MEM2WB.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Regfile.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/rf32x32.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PA4.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/adder32.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Ex_alu.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Shifter.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/Adder.db'. (DDB-24)
Warning: Overwriting design file '/home/mclyu/test/t2/PplDatapathTest.db'. (DDB-24)
Loaded 34 designs.
Current design is 'PcRegWithStall'.
PcRegWithStall StallMux Decoder PA42 adder322 IRS Mux Mux5 Mux1 Mux31 Add Judger I_mem D_mem JJrUJudger BranchJudger RegCondRster FwdCtrler EqJduger JBHandler EdgeDetector IF2IDWithStall ID2EX EX2MEM MEM2WB Regfile rf32x32 PA4 adder32 Ex_alu Shifter Adder PplDatapathTest top
current_design "top"