• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Leftist-trees
      • Java
      • Taspi
      • Bitcoin
      • Riscv
      • Des
      • Ethereum
      • X86isa
        • Program-execution
        • Sdm-instruction-set-summary
        • Tlb
        • Running-linux
        • Introduction
        • Asmtest
        • X86isa-build-instructions
        • Publications
        • Contributors
        • Machine
        • Implemented-opcodes
        • To-do
        • Proof-utilities
        • Peripherals
        • Model-validation
        • Modelcalls
        • Concrete-simulation-examples
          • Fibonacci32-cosim
          • Fibonacci-cosim
            • X86isa-one-fib-cosim
            • Run-x86isa-fib
              • Check-fib-output
              • Fib
            • Factorial-cosim
            • Nop-cosim
            • Datacopy-cosim
          • Utils
          • Debugging-code-proofs
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Fibonacci-cosim

    Run-x86isa-fib

    Signature
    (run-x86isa-fib input start-address 
                    halt-address xrun-limit sys-view? x86) 
     
      → 
    (mv * * x86)
    Arguments
    sys-view? — Guard (booleanp sys-view?).

    Definitions and Theorems

    Function: run-x86isa-fib

    (defun run-x86isa-fib (input start-address
                                 halt-address xrun-limit sys-view? x86)
     (declare (xargs :stobjs (x86)))
     (declare (type (unsigned-byte 50) input)
              (type (signed-byte 48) start-address)
              (type (signed-byte 48) halt-address)
              (type (unsigned-byte 50) xrun-limit))
     (declare (xargs :guard (booleanp sys-view?)))
     (let ((__function__ 'run-x86isa-fib))
      (declare (ignorable __function__))
      (if (zp input)
          (mv t 0 x86)
        (b*
         (((mv flg steps x86)
           (x86isa-one-fib-cosim (1- input)
                                 start-address
                                 halt-address xrun-limit sys-view? x86))
          ((unless flg)
           (cw "~% Mismatch found!~%")
           (mv flg steps x86)))
         (run-x86isa-fib (1- input)
                         start-address halt-address
                         xrun-limit sys-view? x86)))))