Report details of Unisim primitive transformations.
Syntax
report_transformed_primitives [‑file <arg>] [‑append] [‑return_string]
[‑quiet] [‑verbose]
Usage
Name | Description |
---|---|
[-file]
|
Output file |
[-append]
|
Append the results to file |
[-return_string]
|
Return report as string |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
Categories
Description
Report the transformed primitives in the current design.
As part of the process of opening the Synthesized design, and loading it into memory, the tool will transform legacy netlist primitives to the supported subset of Unisim primitives.
As a default this report will be written to the standard output. However, the report can also be written to a file or returned to a Tcl string variable for further processing.
Arguments
-file <arg>
- (Optional) Write the transformed primitives report into the specified file. The specified file will be overwritten if one already exists, unless -append
is also specified.
-append
- (Optional) Append the output of the command to the specified file rather than overwriting it.
-append
option can only be used with the -file
option.
-return_string
- (Optional) Directs the output to a Tcl string. The Tcl string can be captured by a variable definition and parsed or otherwise processed.
-file
option.-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.Examples
The following example reports the transformed primitives in the current design, and returns the result to the specified Tcl variable:
set transPrim [ report_transformed_primitives -return_string ]