• 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 16979
  • 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
  • sparksu
    sparksu over 16 years ago

    Some suggestions:

    A: dbOpenCellViewByType() will return a cellView ID not a window.

    So in your code window1 is actually a cellView. It is not a window.

    And I don't think "hiSetCurrentWindow(window1)" could work.

    B: Based on my experiences geOpen() will open a design in a new window.

    What you said "geOpen() just opens a design" is not right.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • kbhow
    kbhow over 16 years ago

    Hi Tom,

    dbOpenCellViewByType will only open the cell view in virtual memory. But if you wish to run your script in virtuoso -nograph mode, dbOpenCellViewByType is the best to use rathen than using geOpen since u doesn't not require to open the window to do the work.

    In the other hand, you should not use interactive function which require any input from user in virtouso -nograph since the function is require an input from user.

    To copy all contents of layout1 and layout2 to layout3, you can try this: 

    Cv_dest = dbOpenCellViewByType(libName cellName viewName "maskLayout" "w")

    Cv_src1 = dbOpenCellViewByType(lib1 cell1 view1 "maskLayout" "r")

    Cv_src2 = dbOpenCellViewByType(lib2 cell2 view2 "maksLayout" "r")

    foreach( fig geSelectAllFig(Cv_src1)

            dbCopyFig(fig Cv_dest list(0:0 "R0" 1.0)))

    );foreach

    foreach( fig geSelectAllFig(Cv_src1)

            dbCopyFig(fig Cv_dest list(0:0 "R0" 1.0)))

    );foreach

    dbSave(Cv_dest)

    dbClose(Cv_dest)

    dbClose(Cv_src1)

    dbClose(Cv_src2)

     

    How

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

     Hi Tom,

    How's suggestion is in the right direction, but I don't think it will work since the ge prefix functions work with graphics editor and the cellviews are being opened in virtual memory only, not in graphical windows.  A more direct way to get all of the shape dbId's for copying would be to use

      Cv_src1~>shapes

    instead of

      geSelectAllFig(Cv_src1)

    in the foreach loop.

    NOTE: I have not tested How's code nor my suggestion.

    I hope that this helps,

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 16 years ago

    Lawrence is right. How's code won't work, because geSelectAllFig does not work unless the cellView is open in a window (I tested this in case this was some behaviour I was unfamiliar with).

    Actually to copy everything would get reasonably complicated relatively quickly. In addition to iterating over the shapes, you'd want to iterate over instances (missing out any mosaicInsts) and mosaics. In IC61 you'd also need to iterate over boundaries, markers, vias, and a few other object types. 

    So what I would probably do (as this keeps it simple) would be to use dbCreateInst() to create an instance of the cell you want to copy the contents of, and then use dbFlattenInst to flatten it. Then you have the choice of preserving pins and ROD objects during the "copy".

    Regards,

    Andrew.

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

    Ah yes, I forgot about instances etc. so Andrew's suggestion is really a better approach, and simpler too.
    Just for a brief reference, the dbFlattenInst() function is shown here:

    dbFlattenInst(
      d_instId
      x_levels
      [ g_flattenPCells ]
      [ g_preservePins ]
      [ g_preserveRODobjs ]
    )

    So the code might look something like this:

    procedure(CCScopyCellsToNew(@key lib1 cell1 (view1 "layout")
       lib2 cell2 (view2 "layout")
       libName cellName (viewName "layout") "ttttttttt")
      let(Cv_dest Cv_src1 Cv_src2 id1 id2)
       if(Cv_dest = dbOpenCellViewByType(libName cellName viewName "maskLayout" "w") then
        Cv_src1 = dbOpenCellViewByType(lib1 cell1 view1 "maskLayout" "r")
        Cv_src2 = dbOpenCellViewByType(lib2 cell2 view2 "maksLayout" "r")
        id1 = dbCreateInst(Cv_dest Cv_src1 "I1" 0:0 "R0")
        id2 = dbCreateInst(Cv_dest Cv_src2 "I2" 0:0 "R0")
        dbFlattenInst(id1 32 t t t)
        dbFlattenInst(id2 32 t t t)
        dbSave(Cv_dest)
        dbClose(Cv_dest)
        dbClose(Cv_src1)
        dbClose(Cv_src2)
       else
        warn("CCScopyCellsToNew: could not open destination cell for writing: %s %s %s" libName cellName viewName)
       ); if
      ); let
    ); procedure CCScopyCellsToNew

     

    This is completely untested, I just typed it in, but I expect it is about right, though it may need some tweaking or debugging.

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • LostInRTN
    LostInRTN over 16 years ago

    Thanks guys for all the quick responses!

    If it makes things any easier, I suppose I don't need to open icfb with -nograph. I just thought it made sense since theres no user interaction, but my only real requirement is that this is done with no user input.

    Additionally, it is not a full layout- it is just one metal layer + vias. It appears to be made of rectangles and polygons only.

    I'll work on both methods and see which gives me the least pain.

    Cheers,

    Tom Spargo

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • kbhow
    kbhow over 16 years ago

    First of all, my apoligies for posting solution in the SKILL forum, where it cuases error somewhere.

    Ya, Adrew suggestion sound the best in Tom's condition, I miss out this too. :)

     

    How 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • LostInRTN
    LostInRTN over 16 years ago

    Turns out the easiest way to do this is to use dbCreateInstByMasterName(). :)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • 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

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