Disable timing arcs
Syntax
set_disable_timing [‑from <arg>] [‑to <arg>] [‑quiet] [‑verbose] <objects>
Usage
Name | Description |
---|---|
[-from]
|
From pin on cell |
[-to]
|
To pin on cell |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
<objects>
|
List of cells or pins, ports, lib-cells, lib-pins, libcell/cell timing-arcs |
Description
Disables timing arcs within a specified cell or cells that lead to the output pins of the cell. Only the I/O paths between the clock port and the outputs of the cell are disabled.
The purpose of disabling a timing arc is to prevent timing analysis through the arc.
If a <cell>
is specified, then all timing arcs in that cell are disabled. If the optional -from
and -to
arguments are specified, then the timing arcs are defined by the from/to pins. If only -from
is speified then all timing arcs from that pin are disabled. If only -to
is specified then all timing paths to that pin are disabled.
If a <port>
is specified, then all timing paths from a specified input port are disabled, or timing paths to a specified output port are disabled.
Arguments
-from
<pin_name> - (Optional) Specifies the source pin of an object cell. The pin_name is specified by name only, without the need for the hierarchical cell name, which is defined by the <object>
.
-to
<pin_name> - (Optional) Specifies the destination pin of an object cell. The pin_name is specified by name only, without the need for the hierarchical cell name, which is defined by the <object>
.
-quiet
- (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
-verbose
- (Optional) Temporarily override any message limits and return all messages from this command.
set_msg_config
command.
<objects>
- (Required) A list of one or more objects on which to disable the timing arcs. Must be specified as Vivado® objects returned by get_cells
or other appropriate Tcl commands. Can be any of the following types of objects: cells, ports, pins, lib-cells, lib-pins, lib-cell/cell timing arcs.
Examples
div_dec_ff_i/U0/count_i_1
to break a combinational loop:
set_disable_timing -from I0 -to O [get_cells div_dec_ff_i/U0/count_i_1]
set_disable_timing -from WEBWE[3] -to CLKMEM [get_cells \
ldpc_dout360_channel/U_AP_FIFO_ldpc_dout360_channel_ram/mem_reg_0]
set arcs [get_timing_arcs -of_objects [get_cells \
ldpc_dout360_channel/U_AP_FIFO_ldpc_dout360_channel_ram/mem_reg_0]]
set_disable_timing $arcs