• 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-overrideline-fix
              • Svtv-overrideline-equiv
              • Make-svtv-overrideline
                • Svtv-overrideline->entries
                • Change-svtv-overrideline
                • Svtv-overrideline->val
                • Svtv-overrideline->test
                • Svtv-overrideline->lhs
                • Svtv-overrideline-p
              • Svtv-outputline
              • Svtv-condoverride
              • 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-overrideline

    Make-svtv-overrideline

    Basic constructor macro for svtv-overrideline structures.

    Syntax
    (make-svtv-overrideline [:lhs <lhs>] 
                            [:test <test>] 
                            [:val <val>] 
                            [:entries <entries>]) 
    

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

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

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-svtv-overrideline

    (defmacro make-svtv-overrideline (&rest args)
      (std::make-aggregate 'svtv-overrideline
                           args '((:lhs) (:test) (:val) (:entries))
                           'make-svtv-overrideline
                           nil))

    Function: svtv-overrideline

    (defun svtv-overrideline (lhs test val entries)
      (declare (xargs :guard (and (lhs-p lhs)
                                  (svar-p test)
                                  (svar-p val)
                                  (svtv-entrylist-p entries))))
      (declare (xargs :guard t))
      (let ((__function__ 'svtv-overrideline))
        (declare (ignorable __function__))
        (b* ((lhs (mbe :logic (lhs-fix lhs) :exec lhs))
             (test (mbe :logic (svar-fix test) :exec test))
             (val (mbe :logic (svar-fix val) :exec val))
             (entries (mbe :logic (svtv-entrylist-fix entries)
                           :exec entries)))
          (std::prod-cons (std::prod-cons lhs test)
                          (std::prod-cons val entries)))))