Access the |X86ISA|::|RES1| field of a rflagsbits bit structure.
(rflagsbits->res1 x) → res1
Function:
(defun rflagsbits->res1$inline (x) (declare (xargs :guard (rflagsbits-p x))) (mbe :logic (let ((x (rflagsbits-fix x))) (part-select x :low 1 :width 1)) :exec (the (unsigned-byte 1) (logand (the (unsigned-byte 1) 1) (the (unsigned-byte 31) (ash (the (unsigned-byte 32) x) -1))))))
Theorem:
(defthm bitp-of-rflagsbits->res1 (b* ((res1 (rflagsbits->res1$inline x))) (bitp res1)) :rule-classes :rewrite)
Theorem:
(defthm rflagsbits->res1$inline-of-rflagsbits-fix-x (equal (rflagsbits->res1$inline (rflagsbits-fix x)) (rflagsbits->res1$inline x)))
Theorem:
(defthm rflagsbits->res1$inline-rflagsbits-equiv-congruence-on-x (implies (rflagsbits-equiv x x-equiv) (equal (rflagsbits->res1$inline x) (rflagsbits->res1$inline x-equiv))) :rule-classes :congruence)
Theorem:
(defthm rflagsbits->res1-of-rflagsbits (equal (rflagsbits->res1 (rflagsbits cf res1 pf res2 af res3 zf sf tf intf df of iopl nt res4 rf vm ac vif vip id res5)) (bfix res1)))
Theorem:
(defthm rflagsbits->res1-of-write-with-mask (implies (and (fty::bitstruct-read-over-write-hyps x rflagsbits-equiv-under-mask) (rflagsbits-equiv-under-mask x y fty::mask) (equal (logand (lognot fty::mask) 2) 0)) (equal (rflagsbits->res1 x) (rflagsbits->res1 y))))