• 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
      • Riscv
        • Specification
        • Executable
        • Specialized
        • Optimized
          • State-stobj
            • Stat1
            • Stat1-iso
            • Stat1-from-stat
            • Write1-memory-unsigned64
            • Stat-from-stat1
            • Read1-memory-unsigned64
            • Write1-memory-unsigned32
            • Make-stat1
            • Write1-xreg
            • Write1-memory-unsigned8
            • Write1-memory-unsigned16
            • Stat1->memory
            • Read1-memory-unsigned32
            • Read1-instruction
            • Write1-xreg-32
            • Write1-pc
              • Read1-memory-unsigned16
              • Stat1-validp
              • Read1-xreg-unsigned32
              • Read1-xreg-unsigned
              • Read1-xreg-signed32
              • Read1-memory-unsigned8
              • Inc1-4-pc
              • Error1
              • Read1-xreg-signed
              • Read1-pc
              • Errorp1
        • Taspi
        • Bitcoin
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Community
      • Proof-automation
      • ACL2
      • Macro-libraries
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • State-stobj

    Write1-pc

    Signature
    (write1-pc pc stat1 feat) → *

    Definitions and Theorems

    Function: write1-pc

    (defun write1-pc (pc stat1 feat)
     (declare (xargs :stobjs (stat1)))
     (declare (xargs :non-executable t
                     :guard (and (stat1p stat1)
                                 (b* ((stat (stat-from-stat1 stat1)))
                                   (and (natp pc)
                                        (statp stat)
                                        (featp feat)
                                        (stat-validp stat feat))))))
     (prog2$
      (acl2::throw-nonexec-error 'write1-pc
                                 (list pc stat1 feat))
      (let ((__function__ 'write1-pc))
        (declare (ignorable __function__))
        (if
         (mbt (stat1p stat1))
         (stat1-from-stat
              (b* ((stat (stat-from-stat1 stat1)))
                (let ((change-stat stat)
                      (stat->pc (loghead (feat->xlen feat) (lnfix pc))))
                  (stat (stat->xregs change-stat)
                        stat->pc (stat->memory change-stat)
                        (stat->error change-stat)))))
         stat1))))