• 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 a list of variables in a given expression

Stats

  • Locked Locked
  • Replies 6
  • Subscribers 142
  • Views 16339
  • 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 a list of variables in a given expression

cessej
cessej over 13 years ago

Anyone who have idea on how to get a list of variables in a given expression?

The expression is a string data type.

Thank you very much.

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

    This code should work if the expression only contains lambda forms. If you use any syntax forms or macros, it may misinterpret symbols which are implicitly quoted as variables. For normal arithmetic expressions it will work fine though - it's only if you include things like ->,~> let, procedure, ' and so on that it will give the wrong result (it would add quite a bit of complexity to handle all of those).

     

    /* abVarsUsed.il
    
    Author     A.D.Beckett
    Group      Custom IC (UK), Cadence Design Systems Ltd.
    Language   SKILL
    Date       Dec 09, 2011 
    Modified   
    By         
    
    Examples of usage:
    
    > abVarsUsed("1+2*(a+3*b)")
    (b a)
    > abVarsUsed("a+b+c+d*e+expt(f g)")
    (g f e d c b a)
    
    ***************************************************
    
    SCCS Info: @(#) abVarsUsed.il 12/09/11.09:10:28 1.1
    
    */
    
    /***************************************************************
    *                                                              *
    *              abVarsUsed(expression [varsUsed])               *
    *                                                              *
    * When called with an expression in a string or list, returns  *
    *  a list of the variable names used in the expression. Makes  *
    *    the assumption that all functions are lambda functions    *
    *                                                              *
    ***************************************************************/
    
    procedure(abVarsUsed(expression @optional varsUsed)
        case(type(expression) 
            (string
                foreach(subExpr linereadstring(expression)
                    varsUsed=abVarsUsed(subExpr varsUsed)
                )
            )
            (list
                ;------------------------------------------------------------
                ; ignore the car of the list because that's the
                ; function name
                ;------------------------------------------------------------
                foreach(elem cdr(expression)
                    case(type(elem)
                        (symbol
                            unless(member(elem varsUsed)
                                varsUsed=cons(elem varsUsed)
                            )
                        )
                        (list
                            varsUsed=abVarsUsed(elem varsUsed)
                        )
                    )
                )
            )
            (t
                (error "abVarsUsed: expecting string or list: %L\n" expression)
            )
        )
        varsUsed
    )
    
    

     

    Regards,

    Andrew

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

    This code should work if the expression only contains lambda forms. If you use any syntax forms or macros, it may misinterpret symbols which are implicitly quoted as variables. For normal arithmetic expressions it will work fine though - it's only if you include things like ->,~> let, procedure, ' and so on that it will give the wrong result (it would add quite a bit of complexity to handle all of those).

     

    /* abVarsUsed.il
    
    Author     A.D.Beckett
    Group      Custom IC (UK), Cadence Design Systems Ltd.
    Language   SKILL
    Date       Dec 09, 2011 
    Modified   
    By         
    
    Examples of usage:
    
    > abVarsUsed("1+2*(a+3*b)")
    (b a)
    > abVarsUsed("a+b+c+d*e+expt(f g)")
    (g f e d c b a)
    
    ***************************************************
    
    SCCS Info: @(#) abVarsUsed.il 12/09/11.09:10:28 1.1
    
    */
    
    /***************************************************************
    *                                                              *
    *              abVarsUsed(expression [varsUsed])               *
    *                                                              *
    * When called with an expression in a string or list, returns  *
    *  a list of the variable names used in the expression. Makes  *
    *    the assumption that all functions are lambda functions    *
    *                                                              *
    ***************************************************************/
    
    procedure(abVarsUsed(expression @optional varsUsed)
        case(type(expression) 
            (string
                foreach(subExpr linereadstring(expression)
                    varsUsed=abVarsUsed(subExpr varsUsed)
                )
            )
            (list
                ;------------------------------------------------------------
                ; ignore the car of the list because that's the
                ; function name
                ;------------------------------------------------------------
                foreach(elem cdr(expression)
                    case(type(elem)
                        (symbol
                            unless(member(elem varsUsed)
                                varsUsed=cons(elem varsUsed)
                            )
                        )
                        (list
                            varsUsed=abVarsUsed(elem varsUsed)
                        )
                    )
                )
            )
            (t
                (error "abVarsUsed: expecting string or list: %L\n" expression)
            )
        )
        varsUsed
    )
    
    

     

    Regards,

    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