Altera_Forum
Honored Contributor
14 years agoTraverse netlist with TimeQuest
I am trying to disable a particular timing arc (set_disable_timing) on a LUT, but the input pin whose timing arc needs to be disabled is determined by the driver. In other words I need to disable only the arc on this LUT (LUT1) from the pin driven by the output of another known LUT (LUT2). While both LUTs exist for each synthesis run, the input pin on LUT1 that is driven from LUT2 is not consistent. I need a script that can traverse the netlist, determine which pin of LUT1 should be disabled, and then add the exception.
Unfortunately get_fanouts seems to only return timing endpoints (ports and sequential cells). I can use get_pin_info -nets to get the net driven from LUT2, but get_net_info -pin seems to only return the driver of the net. Any suggestions for finding the pin on LUT1 that is driven from LUT2? By comparison this is rather straightforward in PrimeTime: get_pins -of [get_nets -of [get_pins LUT2/outpin] -filter "direction == IN"] Unfortunately there is no -of argument in TimeQuest's API for get_*.