• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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
          • Other-non-deterministic-computations
            • Hw_rnd_gen-logic
            • Hw_rnd_gen
              • Other-non-deterministic-computations-exec
            • Environment
            • Paging
          • Implemented-opcodes
          • Proof-utilities
          • To-do
          • Concrete-simulation-examples
          • Model-validation
          • Utils
          • Debugging-code-proofs
        • Execloader
        • Axe
      • Testing-utilities
      • Math
    • Other-non-deterministic-computations

    Hw_rnd_gen

    Signature
    (hw_rnd_gen size x86) → (mv * * x86)

    Definitions and Theorems

    Function: hw_rnd_gen$notinline

    (defun hw_rnd_gen$notinline (size x86)
           (declare (xargs :stobjs (x86)))
           (declare (type (integer 2 8) size))
           (declare (xargs :guard (or (equal size 2)
                                      (equal size 4)
                                      (equal size 8))))
           (let ((__function__ 'hw_rnd_gen))
                (declare (ignorable __function__))
                (hw_rnd_gen-logic size x86)))

    Theorem: x86p-of-mv-nth-2-hw_rnd_gen

    (defthm x86p-of-mv-nth-2-hw_rnd_gen
            (implies (x86p x86)
                     (x86p (mv-nth 2 (hw_rnd_gen size x86)))))