• 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. SKILL Variable

Stats

  • Locked Locked
  • Replies 8
  • Subscribers 145
  • Views 18704
  • 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

SKILL Variable

hrishikesh
hrishikesh over 12 years ago

I am new to Cadence SKILL. I am trying to understand a SKILL script file containing many procedures. Many of these procedures use a variable which holds a constant list. But it doesn't seem to be assigned anywhere in the script file. Can you suggest any possible place from where it could be assigned? Is there any way in SKILL to import variables from another file?

  • Cancel
  • marcelpreda
    marcelpreda over 12 years ago

     Hi there,

     By default all the SKILL vars are global.

    To identify where there were defined, may not be an easy task:

    You have to look for calls like load(...) and/or loadi(...) in your code , or in CDS.log file.

    Vars can  also be defined in context ("compiled") files, using loagContext() functions - here it is even more dificult to track.

    After identifimg all those files use "grep"  command  to find the lines where the var was defined.

     

    BR,

    Marcel

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • hrishikesh
    hrishikesh over 12 years ago

     Hi Marcel,

    Thanks for your reply. I checked the log file. It says loading many .il and .cxt files. But some of the files only have their names specified, not the complete path. Any info to locate them would be very helpful.

     BR,

    Hrishikesh

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

    Hrishikesh

    If you use this code:

     procedure(CCFwhereVarSet(varName newValue)
        printf("Variable %s set to %L in %L\n" varName newValue get_filename(piport))
        ; stacktrace()
        newValue
    )

    and then do:

    setguard('theVarYouWantToCheck 'CCFwhereVarSet)

    (replace 'theVarYouWantTo Check with whatever name you're looking for), it will tell you the file where it is set (if a SKILL file; not if set in a context file unfortunately). You could also uncomment the stacktrace() to tell you which function it was in when the variable was set.

    Might help...

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • hrishikesh
    hrishikesh over 12 years ago

     Thanks, Andrew. I figured out that the variable is loaded through a load() function in one of the procedures. Should your method still work?

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

    Yes. The setguard sets a "guard" function which gets called whenever the named variable is set, and that guard function uses get_filename(piport) to see what file is being read at the time the variable is set. So if it is set within a file that is being loaded, it should tell you. If the global variable was instead directly set inside the procedure, it wouldn't tell you - but the stacktrace() would hopefully reveal which function is was being set in.

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • marcelpreda
    marcelpreda over 12 years ago

    Hi Andrew,

    Just testing setguard() procedure; it is really helpfull.

    I had no idea that we have such an usefull "tool".

     

    BR,

    Marcel

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • mtwadeCU
    mtwadeCU over 12 years ago

    I'm having a similar problem, so I thought I'd add on to this thread. I have an existing library that I wanted to copy to a new library and change the reference libraries to the new library. I did this using the "copy wizard," and it seemed to work for the most part. However, I have SKILL scripts where I'm trying to create PCELLs in this new library, and I'm running into problems. 

     I am using an optional input parameter for my script called "dbDelta" which is set at the top of the script (before the "let" statement) using the following syntax: (dbDelta list(1.0 1.0))

     It was causing errors that it's never caused before, so I used the setguard() function mentioned above to see where this variable was being changed. The setguard() function told me:

    Variable dbDelta set to '('('('('((1.0 1.0)))))) in "(path of script I'm working with)" 

    It seems that the error is a result of copying the old library to a new library and using the "update instances" option in the "copy wizard". Nowhere in my script am I setting the value of dbDelta other than the top, and if I change the name of dbDelta to anything else, the problem goes away. Thoughts? 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 12 years ago
    It's virtually impossible to know without seeing your code. Can you post it?
    • 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