• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
      • X86isa
        • Program-execution
        • Sdm-instruction-set-summary
        • Tlb
        • Running-linux
        • Introduction
        • Asmtest
        • X86isa-build-instructions
        • Publications
        • Contributors
        • Machine
          • X86isa-state
          • Syscalls
          • Cpuid
          • Linear-memory
          • Rflag-specifications
          • Characterizing-undefined-behavior
          • Top-level-memory
          • App-view
          • X86-decoder
          • Physical-memory
          • Decoding-and-spec-utils
          • Instructions
          • Register-readers-and-writers
            • Zmms-reads-and-writes
              • Xmms-reads-and-writes
              • !zmmi-size
              • Wz64
              • Wz32
              • Wz128
              • Wz256
              • Vector-access-type-p
              • Rz512
                • Zmmi-size
                • Wz512
                • Rz64
                • Rz32
                • Rz256
                • Rz128
              • Gprs-reads-and-writes
              • Mmx-registers-reads-and-writes
              • Xmms-reads-and-writes
              • Rflags-reads-and-writes
              • Gpr-indices
              • Vex-vvvv-reg-index
              • Msr-reads-and-writes
              • Ctr-reads-and-writes
            • X86-modes
            • Segmentation
            • Other-non-deterministic-computations
            • Environment
            • Paging
          • Implemented-opcodes
          • To-do
          • Proof-utilities
          • Peripherals
          • Model-validation
          • Modelcalls
          • Concrete-simulation-examples
          • Utils
          • Debugging-code-proofs
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Zmms-reads-and-writes

    Rz512

    Signature
    (rz512 reg x86) → *

    Definitions and Theorems

    Function: rz512$inline

    (defun rz512$inline (reg x86)
      (declare (xargs :stobjs (x86)))
      (declare (type (unsigned-byte 5) reg))
      (n512 (the (unsigned-byte 512)
                 (zmmi reg x86))))

    Theorem: n512p-rz512

    (defthm n512p-rz512
     (unsigned-byte-p 512 (rz512 reg x86))
     :rule-classes
     (:rewrite
      (:type-prescription
          :corollary (natp (rz512 reg x86))
          :hints
          (("Goal" :in-theory '(unsigned-byte-p integer-range-p natp))))
      (:linear
       :corollary
       (and
        (<= 0 (rz512 reg x86))
        (<
         (rz512 reg x86)
         13407807929942597099574024998205846127479365820592393377723561443721764030073546976801874298166903427690031858186486050853753882811946569946433649006084096))
       :hints
       (("Goal"
            :in-theory '(unsigned-byte-p integer-range-p (:e expt)))))))