Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Preserve design (signal, instance, etc) in synopsys DC

Status
Not open for further replies.

rybackguo

Newbie level 3
Joined
Mar 26, 2009
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,322
I have a design that contains redundant structures and I do not want synopsys DC to optimize my design logic away, but the tool remove the circuits by default.

How can I ask DC not to remove my logic? Also how to reduce the optimization effort? (I have very relaxed requirements for other constraints.)



Thank you!
 

It depends on what kind of optimization it is applying to these design elements.
Not sure at what stage you wish to apply this and if your startpoint is RTL or netlist.

If netlist youc an use "set_dont_touch" constraints to preserve these elements. IF RTL depending on the opto you will need to disable the settings that lead to this redundancy removal - for eg, constants, unloaded flops etc
 

Hi rybackguo,
As englishdogg mentioned you can apply the dont_touch attribute at various levels. You can do it at the RTL/netlist level or at the SDC constraints level and also at the DC script level.

Embedded in the RTL/Netlist, have a synopsys dc_script_begin attribute
// synopsys dc_script_begin,
// dont_touch -cell {te0 te1 te2 te3}
// synopsys dc_script_end

The following is a way to do this by the script and apply dont_touch to the various hierarchical blocks
dc_shell> current_design top
dc_shell> set_dont_touch {BLOCK2/ALU3 BLOCK2/CPU4}
dc_shell> compile

You can also do a report_design to see which parts of the design are under preserve state . .

Cheers!
Mike
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top