• 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
          • Environment
            • Components-of-the-environment-field
              • Write-x86-file-des-logic
              • Write-x86-file-contents-logic
              • Read-x86-file-des-logic
              • Read-x86-file-contents-logic
              • Delete-x86-file-des-logic
              • Delete-x86-file-contents-logic
              • Pop-x86-oracle-logic
              • Pop-x86-oracle
                • Write-x86-file-des
                • Write-x86-file-contents
                • Env-read
                • Delete-x86-file-des
                • Delete-x86-file-contents
                • Env-write
                • Read-x86-file-des
                • Read-x86-file-contents
                • Env-write-logic
                • Env-read-logic
              • Reading-memory-as-strings-or-bytes
              • Converting-between-strings-and-bytes
              • Writing-strings-or-bytes-to-memory
            • Paging
          • Implemented-opcodes
          • Proof-utilities
          • To-do
          • Concrete-simulation-examples
          • Model-validation
          • Utils
          • Debugging-code-proofs
        • Execloader
        • Axe
      • Testing-utilities
      • Math
    • Components-of-the-environment-field

    Pop-x86-oracle

    Signature
    (pop-x86-oracle x86) → (mv * x86)

    Definitions and Theorems

    Function: pop-x86-oracle$notinline

    (defun pop-x86-oracle$notinline (x86)
           (declare (xargs :stobjs (x86)))
           (declare (xargs :guard t))
           (let ((__function__ 'pop-x86-oracle))
                (declare (ignorable __function__))
                (pop-x86-oracle-logic x86)))

    Theorem: x86p-mv-nth-1-pop-x86-oracle

    (defthm x86p-mv-nth-1-pop-x86-oracle
            (implies (x86p x86)
                     (x86p (mv-nth 1 (pop-x86-oracle x86)))))