• 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
          • Rewriting
          • Svex
          • Bit-blasting
          • Functions
          • 4vmask
          • Why-infinite-width
          • Svex-vars
          • Evaluation
            • Svex-xeval
              • Svex-alist-xeval
              • 4vec-xfree-p
                • 4vec-xfree-p-basics
              • Svexlist-xeval
              • Svex-fn/args-xeval
              • Svex-call-xeval
            • Svex-mono-eval
            • Svex-eval
            • Svex-apply
            • Svex-env
            • Svex-alist-eval
            • Svar-boolmasks-lookup
            • Svex-s4eval
            • Svexlist-unquote
            • Svex-alist-eval-for-symbolic
            • Svexlist-eval
            • Svexlist-quotesp
            • Svar-boolmasks
            • Svexlist-s4eval
            • Svexlist-eval-for-symbolic
          • Values
        • 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.