Intel® Quartus® Prime Pro Edition User Guide: Scripting

ID 683432
Date 10/04/2021
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

3.1.29.24. get_object_info (::quartus::sta)

The following table displays information for the get_object_info Tcl command:

Tcl Package and Version

Belongs to ::quartus::sta

Syntax get_object_info [-h | -help] [-long_help] [-name] [-type] <object>
Arguments -h | -help Short help
-long_help Long help with examples and possible return values
-name Return the object name
-type Return the object type
<object> Object
Description

Gets information about the specified object (referenced by object ID). Object IDs can be obtained by Tcl commands such as get_clocks, get_ports, get_cells, and others. The -type option returns "clk", "reg", "port", "cell", "pin", "comb", "net", or "edge". The -name and -type options are mutually exclusive.

Example Usage
project_open chiptrip
create_timing_netlist
set ports [get_ports]
foreach_in_collection port $ports {
    puts [get_object_info $port -name]
}
delete_timing_netlist
project_close
Return Value