• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
      • X86isa
        • Program-execution
        • Introduction
        • X86isa-build-instructions
        • Publications
        • Contributors
        • Machine
          • Syscalls
          • Cpuid
          • X86isa-state
          • Linear-memory
          • Rflag-specifications
          • Characterizing-undefined-behavior
          • Top-level-memory
          • App-view
          • X86-decoder
          • Physical-memory
          • Decoding-and-spec-utils
          • Instructions
          • X86-modes
          • Segmentation
          • Register-readers-and-writers
            • Zmms-reads-and-writes
            • Gprs-reads-and-writes
            • Mmx-registers-reads-and-writes
              • Mmx-instruction-updates
              • Mmx
              • !mmx
              • Xmms-reads-and-writes
              • Rflags-reads-and-writes
              • Gpr-indices
            • Other-non-deterministic-computations
            • Environment
            • Paging
          • Implemented-opcodes
          • Proof-utilities
          • To-do
          • Concrete-simulation-examples
          • Model-validation
          • Utils
          • Debugging-code-proofs
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Mmx-registers-reads-and-writes

    !mmx

    Signature
    (!mmx i v x86) → x86

    Definitions and Theorems

    Function: !mmx$inline

    (defun !mmx$inline (i v x86)
      (declare (xargs :stobjs (x86)))
      (declare (type (integer 0 7) i)
               (type (unsigned-byte 64) v))
      (let
        ((val80 (mbe :logic (part-install 65535 v :low 64 :high 79)
                     :exec (the (unsigned-byte 80)
                                (logior 1208907372870555465154560 v)))))
        (!fp-datai i val80 x86)))

    Theorem: x86p-!mmx

    (defthm x86p-!mmx
      (implies (x86p x86)
               (x86p (!mmx i v x86))))