• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Community
    • 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
          • Evaluation
          • Values
            • 4vec
            • 4vec-<<=
              • 4vec-monotonicity
              • Svex-monotonify
              • Svex-alist-partial-monotonic
              • Svex-alist-monotonic-on-vars
              • 4veclist-<<=
              • Svexlist-partial-monotonic
              • Svex-partial-monotonic
              • Svex-alist-<<=
              • Svex-alist-ovmonotonic
              • Svexlist-<<=
              • Svex-env-<<=
              • Svex-alist-ovcongruent
              • Svex-alist-monotonic-p
              • Svexlist-monotonic-on-vars
              • Svex-monotonic-on-vars
              • Svex-<<=
              • Svexlist-monotonic-p
              • 4vec-xfree-p
                • 4vec-xfree-p-basics
              • Svex-apply-monotonocity
              • Svexlist-ovmonotonic
              • Svexlist-ovcongruent
              • Svex-ovmonotonic
              • Svex-monotonic-p
            • 3vec
            • 2vec
            • 2vecx
            • 2vecnatx
            • 4vec-x
            • 4vec-1x
            • 4vec-1z
            • 4vec-z
        • Symbolic-test-vector
        • Vl-to-svex
      • Fgl
      • Vwsim
      • Vl
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • 4vec-<<=
  • Svex-xeval

4vec-xfree-p

Recognizer for 4vecs with no X bits. These have a special relationship with svex-xeval.

Signature
(4vec-xfree-p x) → *
Arguments
x — Guard (4vec-p x).

Definitions and Theorems

Function: 4vec-xfree-p

(defun 4vec-xfree-p (x)
  (declare (xargs :guard (4vec-p x)))
  (let ((__function__ '4vec-xfree-p))
    (declare (ignorable __function__))
    (b* (((4vec x) x))
      (eql -1 (logior (lognot x.upper) x.lower)))))

Subtopics

4vec-xfree-p-basics
Some lemmas about 4vec-xfree-p in the sv/svex/lattice.lisp book.