Event expansion of input-files from the inputs.
(input-files-fn files-presentp files path preprocess
preprocess-args process const-presentp
const keep-going std gcc short-bytes
int-bytes long-bytes long-long-bytes
plain-char-signed ctx state)
→
(mv erp event state)We set the flag
Function:
(defun input-files-fn (files-presentp files path preprocess preprocess-args process const-presentp const keep-going std gcc short-bytes int-bytes long-bytes long-long-bytes plain-char-signed ctx state) (declare (xargs :stobjs (state))) (declare (xargs :guard (and (booleanp files-presentp) (booleanp const-presentp) (ctxp ctx)))) (let ((__function__ 'input-files-fn)) (declare (ignorable __function__)) (b* (((mv erp event & state) (input-files-process-inputs-and-gen-events files-presentp files path preprocess preprocess-args process const-presentp const keep-going std gcc short-bytes int-bytes long-bytes long-long-bytes plain-char-signed nil state)) ((when erp) (er-soft+ ctx t '(_) "~@0" erp))) (value event))))
Theorem:
(defthm pseudo-event-formp-of-input-files-fn.event (b* (((mv acl2::?erp acl2::?event acl2::?state) (input-files-fn files-presentp files path preprocess preprocess-args process const-presentp const keep-going std gcc short-bytes int-bytes long-bytes long-long-bytes plain-char-signed ctx state))) (pseudo-event-formp event)) :rule-classes :rewrite)