0

Cadence Virtuoso 是否具有获取当前设计中使用的主子布局单元列表的技能功能?

我试过和

ddGetObjChildren

但是此函数返回我的顶部单元格的数据类型的子级:原理图、抽象等。我需要此顶部单元格中使用的布局子级主控列表。

4

1 回答 1

0

我从 Cadence 支持团队得到了解决方案!

procedure( TrHierTraversal( cellView cellList )
    foreach( master cellView~>instances~>master 
        let( ( nextCellView )
            nextCellView =  master
            cond(
                ( !nextCellView nil )
                ( member( nextCellView cellList ) nil )
                ( t 
                  cellList = TrHierTraversal( nextCellView cons( nextCellView cellList ) )
                ) ; t
                ) ; cond
           ) ; let
        ) ; foreach 
    cellList ;;; return value - list of all master cells in hierarchy
) ; procedure

expansion = TrHierTraversal( dbOpenCellViewByType( "MAIN_LIB" "mux" "layout" ) nil )

foreach( item expansion printf("%L" item~>cellName))  
于 2018-03-26T08:58:42.833 回答