• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • 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
        • Symbolic-test-vector
        • Vl-to-svex
          • Vl-to-sv
          • Vl-design->sv-design
            • Vl-simpconfig
            • Vl-hierarchy-sv-translation
            • Vl-expr-svex-translation
              • Sv::vl-expr.lisp
              • Vttree
                • Vttree-p
                • Vttree-fix
                • Vttree-count
                • Vttree-equiv
                • Vttree-context
                • Vttree-branch
                • Vttree-warnings
                  • Vttree-warnings->warnings
                  • Make-vttree-warnings
                    • Change-vttree-warnings
                  • Vttree-constraints
                  • Vttree-none
                  • Vttree-kind
                  • Patbind-wvmv
                  • Patbind-vwmv
                  • Patbind-vmv
              • Vl-design->svex-modalist
              • Vl-svstmt
            • Vl-to-sv-main
            • Vl-simplify-sv
            • Vl-user-paramsettings->unparam-names
            • Vl-user-paramsettings->modnames
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vttree-warnings

    Make-vttree-warnings

    Basic constructor macro for vttree-warnings structures.

    Syntax
    (make-vttree-warnings [:warnings <warnings>]) 
    

    This is the usual way to construct vttree-warnings structures. It simply conses together a structure with the specified fields.

    This macro generates a new vttree-warnings structure from scratch. See also change-vttree-warnings, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-vttree-warnings

    (defmacro make-vttree-warnings (&rest args)
      (std::make-aggregate 'vttree-warnings
                           args '((:warnings))
                           'make-vttree-warnings
                           nil))

    Function: vttree-warnings

    (defun vttree-warnings (warnings)
      (declare (xargs :guard (vl-warninglist-p warnings)))
      (declare (xargs :guard t))
      (let ((__function__ 'vttree-warnings))
        (declare (ignorable __function__))
        (b* ((warnings (mbe :logic (vl-warninglist-fix warnings)
                            :exec warnings)))
          (cons :warnings warnings))))