• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Get schematic to layout bound stdcells for array

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 143
  • Views 13470
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Get schematic to layout bound stdcells for array

psill000
psill000 over 5 years ago

I can get the bound stdcells using bndGetBoundObjects, but not get what each individual stdcell corresponds in layout.

Is there a way to get the layout bound stdcells of an array schematic symbol if the layout stdcell name do or do not match the symbol naming?

Once the schematic array stdcells are bound to the layout stdcells, how to get the correct terminal term~>name and net~>name?

Example of a schematic symbol and layout stdcell:

Schematic

INV<0:2>    instTerms~>terms~>name = ("vss" "vdd" "A" "Y")

                   instTerms~>net~>name = ("<*3>vss" "<*3>vdd" "in<0:2>" "nand2A,nand3B,nor2B")

Layout ( I know it is bad practice, but it happens )

stdcell1 instTerms~>terms~>name = ("vss" "vdd" "A" "Y")

             instTerms~>net~>name = ("vss" "vdd" "in<0>" "nand2A")

I23        instTerms~>terms~>name = ("vss" "vdd" "A" "Y")

             instTerms~>net~>name = ("vss" "vdd" "in<1>" "nand3B")

INV(2) instTerms~>terms~>name = ("vss" "vdd" "A" "Y")

             instTerms~>net~>name = ("vss" "vdd" "in<2>" "nor2B")

Paul

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 5 years ago

    Hi Paul,

    This should work:

    schInst=car(geGetSelSet())
    for(i 0 schInst~>numInst-1
      schName=dbGetMemName(schInst~>name i)
      boundLay=bndGetBoundObjects(list(list(schInst i)))
      layName=caaar(boundLay)~>name
      printf("Schematic %L corresponds to %L\n" schName layName)
    )

    which produces:

    Schematic "INV<0>" corresponds to "stdcell1"
    Schematic "INV<1>" corresponds to "I23"
    Schematic "INV<2>" corresponds to "INV(2)"

    I think you've answered your own question on how to get the terminal to net connections? For a given instance, you can do just:

    termNetList=foreach(mapcar instTerm inst~>instTerms list(instTerm~>name instTerm~>net~>name))

    which produces (for one of the layout instances):

    (("a" "in<2>")
    ("y" "nor2B")
    ("vdd" "vdd")
    ("vss" "vss")
    )

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 5 years ago

    Hi Paul,

    This should work:

    schInst=car(geGetSelSet())
    for(i 0 schInst~>numInst-1
      schName=dbGetMemName(schInst~>name i)
      boundLay=bndGetBoundObjects(list(list(schInst i)))
      layName=caaar(boundLay)~>name
      printf("Schematic %L corresponds to %L\n" schName layName)
    )

    which produces:

    Schematic "INV<0>" corresponds to "stdcell1"
    Schematic "INV<1>" corresponds to "I23"
    Schematic "INV<2>" corresponds to "INV(2)"

    I think you've answered your own question on how to get the terminal to net connections? For a given instance, you can do just:

    termNetList=foreach(mapcar instTerm inst~>instTerms list(instTerm~>name instTerm~>net~>name))

    which produces (for one of the layout instances):

    (("a" "in<2>")
    ("y" "nor2B")
    ("vdd" "vdd")
    ("vss" "vss")
    )

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information