Get the into field from a instruction-call.
(instruction-call->into x) → into
This is an ordinary field accessor created by fty::defprod.
Function:
(defun instruction-call->into$inline (x) (declare (xargs :guard (instructionp x))) (declare (xargs :guard (equal (instruction-kind x) :call))) (let ((__function__ 'instruction-call->into)) (declare (ignorable __function__)) (mbe :logic (b* ((x (and (equal (instruction-kind x) :call) x))) (register-fix (std::da-nth 2 (cdr x)))) :exec (std::da-nth 2 (cdr x)))))
Theorem:
(defthm registerp-of-instruction-call->into (b* ((into (instruction-call->into$inline x))) (registerp into)) :rule-classes :rewrite)
Theorem:
(defthm instruction-call->into$inline-of-instruction-fix-x (equal (instruction-call->into$inline (instruction-fix x)) (instruction-call->into$inline x)))
Theorem:
(defthm instruction-call->into$inline-instruction-equiv-congruence-on-x (implies (instruction-equiv x x-equiv) (equal (instruction-call->into$inline x) (instruction-call->into$inline x-equiv))) :rule-classes :congruence)
Theorem:
(defthm instruction-call->into-when-wrong-kind (implies (not (equal (instruction-kind x) :call)) (equal (instruction-call->into x) (register-fix nil))))