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 inlining make-comp-latch.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Closure converted to defun by helpful.
(defun make-comp-latch--cmacro
    (cl-whole &rest --cl-rest--)
  "compiler-macro for inlining `make-comp-latch'.\n\n\\(fn CL-WHOLE &cl-quote &key NAME INSNS CLOSED IN-EDGES OUT-EDGES IDOM DF POST-NUM FINAL-FRAME)"
  (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))
	    (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)))))