dbFreeze
dbFreeze(d_topCellViewId t_regLibName t_pcellLibName[g_cleanUp] ) =>d_figGroupId/ nil
Description
Freezes a Pcell design hierarchy into a non-Pcell design hierarchy by converting a Pcell instance into a static instance and converting a Pcell customVia into a static customVia. If t_regLibName and t_pcellLibName are different, regular and Pcell frozen instances will be put into two different libraries.
Arguments
Value Returned
|
If the specified library exists, an error is issued and |
Examples
cvId = dbOpenCellView("testlib" "Atop" "layout")
when( !cvId
info("Failed to open design(testlib Atop layout) in 'r' mode.\n")
return(nil)
)
when( !dbFreeze(cvId "fzLib" "pcellLib")
info("Failed to freeze design(testlib Atop layout)
hierarchically by
dbFreeze().\n")
return(nil)
)
Related Topics
Return to top