• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
        • Svex-decomposition-methodology
        • Sv-versus-esim
        • Svex-decomp
        • Svex-compose-dfs
        • Svex-compilation
        • Moddb
        • Svmods
        • Svstmt
        • Sv-tutorial
        • Expressions
          • Rewriting
          • Svex
          • Bit-blasting
          • Functions
          • 4vmask
          • Why-infinite-width
          • Svex-vars
            • Svex-alist-vars
            • Svex-collect-vars
            • Svexlist-collect-vars
            • Svexlist-vars
              • Svexlist-vars-basics
            • Svex-vars-basics
          • Evaluation
          • Values
        • Symbolic-test-vector
        • Vl-to-svex
      • Fgl
      • Vwsim
      • Vl
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • Svex-vars

Svexlist-vars

Collect all of the variables from an svexlist.

Signature
(svexlist-vars x) → vars
Arguments
x — Expression list to collect variables from.
    Guard (svexlist-p x).
Returns
vars — An ordered set of all variables used in any expression in x.
    Type (and (svarlist-p vars) (setp vars)).

See svex-vars. This just unions together the svex-vars of all of the expressions in x.

Like svex-vars, this is logically nice but can be very memory intensive. It is often better to use svexlist-collect-vars instead.

Subtopics

Svexlist-vars-basics
Basic theorems about svexlist-vars.