• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
          • Svtv-data
          • Defsvtv$
          • Svtv-run
          • Defsvtv-phasewise
          • Svtv
          • Svtv-spec
          • Defsvtv
          • Process.lisp
          • Svtv-doc
          • Svtv-chase$
          • Svtv-versus-stv
          • Svtv-debug-fsm
          • Structure.lisp
            • Svtv-baseentry-p
            • Svtv-entry-p
            • Svtv-outentry-p
            • Svtv-outentry-fix
            • Svtv-baseentry-fix
            • Svtv-entry-fix
            • Svtv-overrideline
            • Svtv-outputline
            • Svtv-condoverride
              • Svtv-condoverride-fix
              • Svtv-condoverride-equiv
              • Make-svtv-condoverride
                • Svtv-condoverride->value
                • Svtv-condoverride->test
                • Change-svtv-condoverride
                • Svtv-condoverride-p
              • Svtv-line
              • Svtv-inputmap
              • Svtv-outentrylist
              • Svtv-lines
              • Svtv-entrylist
              • Svtv-overridelines
              • Svtv-outputs
              • Svtv-inputtype-p
              • Svtv-dontcare-p
            • Svtv-debug
            • Def-pipeline-thm
            • Expand.lisp
            • Def-cycle-thm
            • Svtv-utilities
            • Svtv-debug$
            • Defsvtv$-phasewise
          • 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
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Svtv-condoverride

    Make-svtv-condoverride

    Basic constructor macro for svtv-condoverride structures.

    Syntax
    (make-svtv-condoverride [:value <value>] 
                            [:test <test>]) 
    

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

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

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-svtv-condoverride

    (defmacro make-svtv-condoverride (&rest args)
      (std::make-aggregate 'svtv-condoverride
                           args '((:value) (:test))
                           'make-svtv-condoverride
                           nil))

    Function: svtv-condoverride

    (defun svtv-condoverride (value test)
      (declare (xargs :guard (and (svtv-baseentry-p value)
                                  (svtv-baseentry-p test))))
      (declare (xargs :guard t))
      (let ((__function__ 'svtv-condoverride))
        (declare (ignorable __function__))
        (b* ((value (mbe :logic (svtv-baseentry-fix value)
                         :exec value))
             (test (mbe :logic (svtv-baseentry-fix test)
                        :exec test)))
          (list value test))))