21.8.49 report
(Ask a Question)Description
Specifies the type of reports to be generated and the type of Analysis (Max Delay or Min Delay) performed to generate the reports. Using this command, you can generate the following types of reports:
- Timer report—This report displays the timing information organized by clock domain.
- Timing Violations report—This flat slack report provides information about constraint violations.
- Bottleneck report—This report displays the points in the design that contribute to the most timing violations.
- Datasheet report—This report describes the characteristics of the pins, I/O technologies, and timing properties in the design.
- Constraints Coverage report—This report displays the overall coverage of the timing constraints set on the current design.
- Combinational Loop report—This report displays loops found during initialization.
- Clock Domain Crossing report—This report analyzes timing paths that cross from one clock domain (the source clock) to another clock domain (the destination clock).
If the specified parameter/value is not correct, this command fails.
report -type (timing | violations | datasheet | bottleneck | constraints_coverage | combinational_loops | cdc) \ -analysis <max|min> \ -format (csv|text) \ <filename> \ timing options \ -max_parallel_paths <number> \ -max_paths <number> \ -print summary (yes|no) \ -use_slack_threshold (yes|no) \ -slack threshold <double> \ -print_paths (yes|no) \ -max_expanded_paths <number> \ -include_user_sets (yes|no) \ -include_clock_domains (yes|no) \ -select_clock_domains <clock name list> \ -limit_max_paths (yes|no) \ -include_pin_to_pin (yes|no) \ bottleneck options \ -cost_type (path_count|path_cost) \ -max_instances <number> \ -from <port/pin pattern> \ -to <port/pin pattern> \ -set_type <set_type> \ -set_name <set name> \ -clock <clock name> \ -from_clock <clock name> \ -to_clock <clock name> \ -in_to_out \
Arguments
Parameter | Type | Description |
---|---|---|
type | string | Specifies the type of the report to be generated. It is mandatory.
|
analysis | string | Specifies the type of Analysis (Max Delay or Min Delay) Performed to generate
the reports. It is optional. Note: This argument
should not be used to generate datasheet reports. The command
may fail if this argument generate datasheet report.
|
format | string | Specifies the format in which the report is generated. It is optional.
Note: CDC type generates report in CSV format only. |
filename | string | Specifies the file name of the generated report. It is mandatory. |
Parameter/Value | Description |
---|---|
| Specifies the max number of parallel paths. Parallel paths are timing paths with the same start and end points. |
| Specifies the max number of paths to display for each set. This value is a positive integer value greater than zero. Default is 100. |
| Yes to include and No to exclude the summary section in the timing report. |
| Yes to include slack threshold and no to exclude threshold in the timing report. The default is to exclude slack threshold. |
| Specifies the threshold value to consider when reporting path slacks. This value is in nanoseconds (ns). By default, there is no threshold (all slacks reported). |
| Specifies whether the path section (clock domains and in-to-out paths) will be printed in the timing report. Yes to include path sections (default) and no to exclude path sections from the timing report. |
| Specifies the max number of paths to expand per set. This value is a positive integer value greater than zero. Default is 100. |
| If yes, the user set is included in the timing report. If no, the user set is excluded in the timing report. |
| Yes to include and no to exclude clock domains in the timing report. |
or
| Defines the clock domain to be considered in the clock domain section. The
domain list is a series of strings with domain names separated by
spaces. Both the summary and the path sections in the timing report
display only the listed clock domains in the
clock_name_list . |
| Yes to limit the number of paths to report. No to specify that there is no limit to the number of paths to report (default). |
| Yes to include and no to exclude pin-to-pin paths in the timing report. |
| Specifies the cost_type as either path_count or path_cost. For path_count, instances with the greatest number of path violations will have the highest bottleneck cost. For path_cost, instances with the largest combined timing violations will have the highest bottleneck cost. |
| Specifies the maximum number of instances to be reported. Default is 10. |
| Reports only instances that lie on violating paths that start at locations specified by this option. |
| Reports only instances that lie on violating paths that end at locations specified by this option. |
| This option allows pruning based on a given clock domain. Only instances that lie on these violating paths are reported. |
| Displays the bottleneck information for the named set. You can either use this option or use both -clock and -type. This option allows pruning based on a given set. Only paths that lie within the named set will be considered towards bottleneck. |
| This option can only be used in combination with the -clock option, and not by itself. The options allows you to filter which type of paths should be considered towards the bottleneck:
|
| Reports only bottleneck instances that lie on violating timing paths of the inter-clock domain that starts at the source clock specified by this option. This option can only be used in combination with to_clock. |
| Reports only instances that lie on violating paths that end at locations specified by this option. |
| Reports only instances that lie on violating paths that begin at input ports and end at output ports. |
Return Type | Description |
---|---|
| Generates SmartTime report file with the specified format. |
Error Codes
Error Code | Description |
---|---|
None | Parameter -type has illegal value |
None | Required parameter -type is missing |
None | Required parameter _AtclParam0_ is missing |
Supported Families
PolarFire® |
PolarFire SoC |
SmartFusion® 2 |
IGLOO® 2 |
RTG4™ |
Example
The following example generates a timing violation report named timing_viol.txt
. The report considers an analysis using maximum delays and does not filter paths based on slack threshold. It reports two paths per section and one expanded path per section:
report \ -type violations \ -analysis max \ -use_slack_threshold no \ -limit_max_paths yes \ -max_paths 2 \ -max_expanded_paths 1 \ timing_viol.txt
The following example generates a datasheet report named datasheet.csv
in CSV format:
report -type datasheet -format csv datasheet.csv
You can use any one of the following examples to report inter-clock domain timing paths:
report -type timing -select_clock_domains yes -clock_domain { clk1 clk2 } report1.txt
or
report -type timing -select_clock_domains { clk1 clk2 } report2.txt