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