• 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. How to find the VXL binding of a transparent instance in...

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 142
  • Views 10885
  • 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

How to find the VXL binding of a transparent instance in the layout

dmay
dmay over 4 years ago

In recent versions of VXL, you can use leHiMakeCell to create a transparent instance in the layout as an alternative to clone groups. The make cell command creates a new cell and can create clones of that cell with bindings to sets of instances in the schematic.

I am able to run bndGetBoundObjects on instances in the schematic and it will return the hierarchy that includes the transparent instance and the lower level instance. I am not able to do this from the layout side. If I pass in the transparent instances to this command (bndGetBoundObjects), I just get nil in return. Once caveat of this transparent instance is that it is placed into a figGroup. Passing this figGroup id to bndGetBoundObjects also returns nil. 

I'm looking for a way, starting from a transparent instance in the layout, to find the corresponding instances in the schematic. Since I can quickly find them in the layout using dbIsInstTransparent, it makes more sense to work in this direction. I know I can go through every instance in the schematic using bndGetBoundObjects to get to the same result, but most of the time we will not have many of these types of instances and that seems inefficient. 

Thanks,

Derek

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

    Derek,

    You can't pass the transparent instance itself, but you can pass the hierarchical path to all the instances within the transparent instance. So for example (if tinst is the instance id of the transparent instance):

    foreach(inst tinst~>master~>instances
      bound=bndGetBoundObjects(list(tinst inst))
      schInst=caaar(bound)
      printf("Name: %L\n" schInst~>name)
    )

    Andrew

    • Cancel
    • Vote Up +1 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 4 years ago

    Derek,

    You can't pass the transparent instance itself, but you can pass the hierarchical path to all the instances within the transparent instance. So for example (if tinst is the instance id of the transparent instance):

    foreach(inst tinst~>master~>instances
      bound=bndGetBoundObjects(list(tinst inst))
      schInst=caaar(bound)
      printf("Name: %L\n" schInst~>name)
    )

    Andrew

    • Cancel
    • Vote Up +1 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