Access the |X86ISA|::|SELECTOR| field of a call-gate-descriptorbits bit structure.
(call-gate-descriptorbits->selector x) → selector
Function:
(defun call-gate-descriptorbits->selector$inline (x) (declare (xargs :guard (call-gate-descriptorbits-p x))) (mbe :logic (let ((x (call-gate-descriptorbits-fix x))) (part-select x :low 16 :width 16)) :exec (the (unsigned-byte 16) (logand (the (unsigned-byte 16) 65535) (the (unsigned-byte 112) (ash (the (unsigned-byte 128) x) -16))))))
Theorem:
(defthm 16bits-p-of-call-gate-descriptorbits->selector (b* ((selector (call-gate-descriptorbits->selector$inline x))) (16bits-p selector)) :rule-classes :rewrite)
Theorem:
(defthm call-gate-descriptorbits->selector$inline-of-call-gate-descriptorbits-fix-x (equal (call-gate-descriptorbits->selector$inline (call-gate-descriptorbits-fix x)) (call-gate-descriptorbits->selector$inline x)))
Theorem:
(defthm call-gate-descriptorbits->selector$inline-call-gate-descriptorbits-equiv-congruence-on-x (implies (call-gate-descriptorbits-equiv x x-equiv) (equal (call-gate-descriptorbits->selector$inline x) (call-gate-descriptorbits->selector$inline x-equiv))) :rule-classes :congruence)
Theorem:
(defthm call-gate-descriptorbits->selector-of-call-gate-descriptorbits (equal (call-gate-descriptorbits->selector (call-gate-descriptorbits offset15-0 selector res1 type s dpl p offset31-16 offset63-32 res2 all-zeroes? res3)) (16bits-fix selector)))
Theorem:
(defthm call-gate-descriptorbits->selector-of-write-with-mask (implies (and (fty::bitstruct-read-over-write-hyps x call-gate-descriptorbits-equiv-under-mask) (call-gate-descriptorbits-equiv-under-mask x y fty::mask) (equal (logand (lognot fty::mask) 4294901760) 0)) (equal (call-gate-descriptorbits->selector x) (call-gate-descriptorbits->selector y))))