Get the phoff field from a elf-header.
(elf-header->phoff x) → phoff
This is an ordinary field accessor created by defprod.
Function:
(defun elf-header->phoff$inline (x) (declare (xargs :guard (elf-header-p x))) (declare (xargs :guard t)) (let ((__function__ 'elf-header->phoff)) (declare (ignorable __function__)) (mbe :logic (b* ((x (and t x))) (nfix (cdr (std::da-nth 11 x)))) :exec (cdr (std::da-nth 11 x)))))
Theorem:
(defthm natp-of-elf-header->phoff (b* ((phoff (elf-header->phoff$inline x))) (natp phoff)) :rule-classes :rewrite)
Theorem:
(defthm elf-header->phoff$inline-of-elf-header-fix-x (equal (elf-header->phoff$inline (elf-header-fix x)) (elf-header->phoff$inline x)))
Theorem:
(defthm elf-header->phoff$inline-elf-header-equiv-congruence-on-x (implies (elf-header-equiv x x-equiv) (equal (elf-header->phoff$inline x) (elf-header->phoff$inline x-equiv))) :rule-classes :congruence)