Function: make-comp-latch--cmacro
make-comp-latch--cmacro is a function defined in comp.el.gz.
Signature
(make-comp-latch--cmacro CL-WHOLE &cl-quote &key NAME INSNS CLOSED IN-EDGES OUT-EDGES IDOM DF POST-NUM FINAL-FRAME)
Documentation
compiler-macro for make-comp-latch.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Could not find source code, showing raw function object.
#[(cl-whole &rest --cl-rest--)
((let*
((name (car (cdr (plist-member --cl-rest-- ':name))))
(insns (car (cdr (plist-member --cl-rest-- ':insns))))
(closed (car (cdr (plist-member --cl-rest-- ':closed))))
(in-edges (car (cdr (plist-member --cl-rest-- ':in-edges))))
(out-edges (car (cdr (plist-member --cl-rest-- ':out-edges))))
(idom (car (cdr (plist-member --cl-rest-- ':idom))))
(df
(car
(cdr
(or (plist-member --cl-rest-- ':df)
'(nil (make-hash-table))))))
(post-num (car (cdr (plist-member --cl-rest-- ':post-num))))
(final-frame
(car (cdr (plist-member --cl-rest-- ':final-frame)))))
(progn
(let ((--cl-keys-- --cl-rest--))
(while --cl-keys--
(cond
((memq (car --cl-keys--)
'(:name :insns :closed :in-edges :out-edges :idom
:df :post-num :final-frame
:allow-other-keys))
(unless (cdr --cl-keys--)
(error "Missing argument for %s" (car --cl-keys--)))
(setq --cl-keys-- (cdr (cdr --cl-keys--))))
((car (cdr (memq ':allow-other-keys --cl-rest--)))
(setq --cl-keys-- nil))
(t
(error
"Keyword argument %S not one of (:name :insns :closed :in-edges :out-edges :idom :df :post-num :final-frame)"
(car --cl-keys--))))))
(cl-block make-comp-latch--cmacro
(cl--defsubst-expand
'(name insns closed in-edges out-edges idom df post-num
final-frame)
'(cl-block make-comp-latch
(record 'comp-latch name insns closed in-edges out-edges
idom df post-num final-frame))
nil cl-whole nil name insns closed in-edges out-edges idom
df post-num final-frame)))))
(cl-struct-comp-latch-tags) nil
"compiler-macro for `make-comp-latch'.\n\n(fn CL-WHOLE &cl-quote &key NAME INSNS CLOSED IN-EDGES OUT-EDGES IDOM DF POST-NUM FINAL-FRAME)"]