• 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 open two layouts, copy them into a third and sav...

Stats

  • Locked Locked
  • Replies 9
  • Subscribers 143
  • Views 16980
  • 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 open two layouts, copy them into a third and save

LostInRTN
LostInRTN over 16 years ago

I'm writing a script that will run automatically using icfb -nograph -replay script.il. I need it to open three layouts, and copy all the contents of two of the layouts into the third, then save it, close and exit.

I was originally going to use (procedure and let's omitted):
      window1 = dbOpenCellViewByType(Dir Name1 "layout" "" "w")
      window2 = dbOpenCellViewByType(Dir Name2 "layout" "" "r")
      geSelectAll()
      geCopySelSet()
      hiSetCurrentWindow(window1)
      mouseAddPt()
      dbClose(window2)
      window3 = dbOpenCellViewByType(Dir Name3 "layout" "" "r")
      geSelectAll()
      geCopySelSet()
      hiSetCurrentWindow(window1)
      mouseAddPt()  ;
      dbClose(window3)
      dbSave(window1)
      dbClose(window1)
However, dbOpenCellViewByType opens it in memory but doesn't open a window, so the geSelectAll() won't work. geOpen() just opens a design, but not a window- should I use hiOpenWindow + geOpen?

Also, the object returned by dbOpenCellViewByType doesn't match what hiSetCurrentWindow wants. And, I'm not sure how to end the geCopySelSet command- it wants a location to put the copied objects and there's no user to click the mouse.

 Thanks for any help

Tom Spargo

  • Cancel
Parents
  • skillUser
    skillUser over 16 years ago

    Hi Tom,

    Yes, this is an alternative to the dbOpenCellViewByType followed by dbCreateInst , however this method would allow you to check to ensure that the cellview exists (i.e. the function does not return 'nil') beforehand.  You can achieve the same by using ddGetObj to check if a cellview exists before trying to instantiate it.

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • skillUser
    skillUser over 16 years ago

    Hi Tom,

    Yes, this is an alternative to the dbOpenCellViewByType followed by dbCreateInst , however this method would allow you to check to ensure that the cellview exists (i.e. the function does not return 'nil') beforehand.  You can achieve the same by using ddGetObj to check if a cellview exists before trying to instantiate it.

    Regards,

    Lawrence.

    • 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