forked from The-OpenROAD-Project/OpenROAD
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request The-OpenROAD-Project#6336 from gadfort/report-dont
rsz: add report_dont_* commands
- Loading branch information
Showing
11 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells | ||
[INFO ODB-0128] Design: gcd | ||
[INFO ODB-0130] Created 54 pins. | ||
[INFO ODB-0131] Created 571 components and 2554 component-terminals. | ||
[INFO ODB-0132] Created 5 special nets and 1142 connections. | ||
[INFO ODB-0133] Created 528 nets and 1412 connections. | ||
Don't Touch Instances: | ||
none | ||
Don't Touch Nets: | ||
none | ||
Don't Touch Instances: | ||
_505_ | ||
Don't Touch Nets: | ||
_050_ | ||
_051_ | ||
_052_ | ||
_053_ | ||
_054_ | ||
_055_ | ||
_056_ | ||
_057_ | ||
_058_ | ||
_059_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# check for report_dont_touch | ||
|
||
source "helpers.tcl" | ||
|
||
read_liberty Nangate45/Nangate45_typ.lib | ||
read_lef Nangate45/Nangate45.lef | ||
read_def "gcd_nangate45_placed.def" | ||
|
||
report_dont_touch | ||
|
||
set_dont_touch "_505_" | ||
set_dont_touch "_05*_" | ||
|
||
report_dont_touch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[INFO ODB-0227] LEF file: Nangate45/Nangate45.lef, created 22 layers, 27 vias, 135 library cells | ||
[INFO ODB-0128] Design: gcd | ||
[INFO ODB-0130] Created 54 pins. | ||
[INFO ODB-0131] Created 571 components and 2554 component-terminals. | ||
[INFO ODB-0132] Created 5 special nets and 1142 connections. | ||
[INFO ODB-0133] Created 528 nets and 1412 connections. | ||
Don't Use Cells: | ||
none | ||
Don't Use Cells: | ||
CLKBUF_X1 | ||
CLKBUF_X2 | ||
CLKBUF_X3 | ||
INV_X1 | ||
INV_X2 | ||
INV_X4 | ||
INV_X8 | ||
INV_X16 | ||
INV_X32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# check for report_dont_use | ||
|
||
source "helpers.tcl" | ||
|
||
read_liberty Nangate45/Nangate45_typ.lib | ||
read_lef Nangate45/Nangate45.lef | ||
read_def "gcd_nangate45_placed.def" | ||
|
||
report_dont_use | ||
|
||
set_dont_use "CLKBUF*" | ||
set_dont_use "INV*" | ||
|
||
report_dont_use |