Recognizer for addnames-indices structures.
(addnames-indices-p x) → *
Function:
(defun addnames-indices-p (x) (declare (xargs :guard t)) (let ((__function__ 'addnames-indices-p)) (declare (ignorable __function__)) (and (std::prod-consp x) (std::prod-consp (std::prod-car x)) (std::prod-consp (std::prod-cdr x)) (b* ((genblk-idx (std::prod-car (std::prod-car x))) (gateinst-idx (std::prod-cdr (std::prod-car x))) (blockstmt-idx (std::prod-car (std::prod-cdr x))) (modinst-idx (std::prod-cdr (std::prod-cdr x)))) (and (posp genblk-idx) (posp gateinst-idx) (posp blockstmt-idx) (posp modinst-idx))))))