• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
      • Proof-checker-array
      • Soft
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Ethereum
      • Leftist-trees
      • Java
      • Riscv
        • Specification
        • Executable
        • Specialized
          • Specialized-rv64im-le
          • Specialized-rv32im-le
            • Rv32im-le-semantics
            • Rv32im-le-states
              • Write32-xreg
              • Stat32
              • Write32-mem-ubyte16-lendian
              • Memory
              • Xregs
              • Write32-pc
              • Write32-mem-ubyte32-lendian
              • Read32-xreg-unsigned
              • Read32-mem-ubyte16-lendian
              • Read32-mem-ubyte8
              • Read32-mem-ubyte32-lendian
              • Write32-mem-ubyte8
              • Stat32-iso
              • Read32-xreg-unsigned{3}
              • Read32-xreg-signed
              • Inc32-pc
              • Read32-xreg-signed{3}
              • Stat-from-stat32
              • Read32-xreg-unsigned{2}
              • Read32-xreg-signed{2}
              • Stat-rv32im-le-p
              • Read32-xreg-signed{4}
              • Read32-xreg-unsigned{1}
                • Read32-xreg-signed{1}
                • Read32-pc
                • Read32-xreg-unsigned{0}
                • Error32p
                • Error32
                • Stat32-from-stat
                • Read32-xreg-signed{0}
                • Read-xreg-unsigned-to-read32-xreg-unsigned{3}
              • Rv32im-le-execution
              • Rv32im-le-features
          • Optimized
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Rv32im-le-states

    Read32-xreg-unsigned{1}

    Simplify read32-xreg-unsigned{0} after partial evaluation.

    We assume the guard so that we can eliminate the fixers.

    Definitions and Theorems

    Function: read32-xreg-unsigned{1}

    (defun read32-xreg-unsigned{1} (riscv::reg riscv::stat)
     (declare
        (xargs :guard (and (natp riscv::reg)
                           (riscv::statp riscv::stat)
                           (riscv::stat-validp riscv::stat
                                               '((riscv::base :rv32i)
                                                 (riscv::endian :little)
                                                 (riscv::m . t)))
                           (< (lnfix riscv::reg) 32))))
     (let ((riscv::reg (lnfix riscv::reg)))
       (if (= riscv::reg 0)
           0
         (nth (+ -1 riscv::reg)
              (riscv::stat->xregs riscv::stat)))))

    Theorem: read32-xreg-unsigned{0}-becomes-read32-xreg-unsigned{1}

    (defthm read32-xreg-unsigned{0}-becomes-read32-xreg-unsigned{1}
     (implies (and (natp riscv::reg)
                   (riscv::statp riscv::stat)
                   (riscv::featp (feat-rv32im-le))
                   (riscv::stat-validp riscv::stat (feat-rv32im-le))
                   (< (lnfix riscv::reg)
                      (riscv::feat->xnum (feat-rv32im-le))))
              (equal (read32-xreg-unsigned{0} riscv::reg riscv::stat)
                     (read32-xreg-unsigned{1} riscv::reg riscv::stat))))