/usr/share/acl2-8.0dfsg/books/misc/eval.lisp is in acl2-books-source 8.0dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | ; Event-Level Evaluation
;
; Copyright (C) 2017 Regents of the University of Texas
; Copyright (C) 2017 Kestrel Institute (http://www.kestrel.edu)
;
; License: A 3-clause BSD license. See the LICENSE file distributed with ACL2.
;
; Authors:
; Matt Kaufmann (kaufmann@cs.utexas.edu)
; Alessandro Coglio (coglio@kestrel.edu)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Here we define macros that employ make-event to check evaluations of forms.
; See community book make-event/eval-tests.lisp (and many other .lisp files in
; that directory) for how these macros may be employed.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(in-package "ACL2")
(include-book "xdoc/top" :dir :system)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro must-eval-to (&whole must-eval-to-form
form expr
&key
(ld-skip-proofsp ':default)
(with-output-off ':all)
(check-expansion 'nil check-expansion-p))
; Form should evaluate to an error triple (mv erp form-val state). If erp is
; nil and expr-val is the value of expr then (must-eval-to form expr) expands
; to (value-triple 'expr-val); otherwise expansion causes an appropriate soft
; error. Note that both form and expr are evaluated.
(declare (xargs :guard (booleanp check-expansion)))
(let* ((body
`(er-let* ((form-val-use-nowhere-else ,form))
(let ((expr-val (check-vars-not-free
(form-val-use-nowhere-else)
,expr)))
(cond ((equal form-val-use-nowhere-else expr-val)
(value (list 'value-triple (list 'quote expr-val))))
(t (er soft
(msg "( MUST-EVAL-TO ~@0 ~@1)"
(tilde-@-abbreviate-object-phrase ',form)
(tilde-@-abbreviate-object-phrase ',expr))
"Evaluation returned ~X01, not the value ~x2 of ~
the expression ~x3."
form-val-use-nowhere-else
(evisc-tuple 4 3 nil nil)
expr-val
',expr))))))
(form `(make-event ,(if (eq ld-skip-proofsp :default)
body
`(state-global-let*
((ld-skip-proofsp ,ld-skip-proofsp))
,body))
:on-behalf-of ,must-eval-to-form
,@(and check-expansion-p
`(:check-expansion ,check-expansion)))))
(cond (with-output-off `(with-output :off ,with-output-off ,form))
(t form))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro must-eval-to-t (form &key
(ld-skip-proofsp ':default)
(with-output-off ':all)
(check-expansion 'nil check-expansion-p))
; Form should evaluate to an error triple (mv erp val state). If erp is nil
; and val is t then (must-eval-to-t form) expands to (value-triple t);
; otherwise expansion causes an appropriate soft error.
(declare (xargs :guard (booleanp check-expansion)))
`(must-eval-to ,form t
:with-output-off ,with-output-off
,@(and check-expansion-p
`(:check-expansion ,check-expansion))
,@(and (not (eq ld-skip-proofsp :default))
`(:ld-skip-proofsp ,ld-skip-proofsp))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc must-succeed
:parents (testing-utilities errors)
:short "A top-level @(see assert$)-like command. Ensures that a command
which returns an @(see error-triple)—e.g., a @(see defun) or
@(see defthm)—will return successfully."
:long "<p>This can be useful for adding simple unit tests of macros,
theories, etc. to your books. Basic examples:</p>
@({
(must-succeed ;; works fine
(defun f (x) (consp x))) ;; (NOTE: F not defined afterwards!)
(must-succeed ;; causes an error
(defthm bad-theorem nil)) ;; (unless we can prove NIL!)
(must-succeed ;; causes an error
(set-cbd 17)) ;; (because 17 isn't a string)
})
<p>See also @(see must-fail).</p>
<h5>General form:</h5>
@({
(must-succeed form
[:with-output-off items] ;; default: :all
[:check-expansion bool]
)
})
<p>The @('form') should evaluate to an @(see error-triple), which is true for
most top-level ACL2 events and other high level commands.</p>
<p>The @('form') is submitted in a @(see make-event), which has a number of
consequences. Most importantly, when @('form') is an event like a @(see
defun), or @(see defthm), it doesn't persist after the @(see must-succeed)
form. Other state updates do persist, e.g.,</p>
@({
(must-succeed (assign foo 5)) ;; works fine
(@ foo) ;; 5
})
<p>See the @(see make-event) documentation for details.</p>
<h5>Options</h5>
<p><b>with-output-off</b>. By default, all output from @('form') is
suppressed, but you can customize this. Typical example:</p>
@({
(must-succeed
(defun f (x) (consp x))
:with-output-off nil) ;; don't suppress anything
})
<p><b>check-expansion</b>. By default the form won't be re-run and re-checked
at @(see include-book) time. But you can use @(':check-expansion') to
customize this, as in @(see make-event).</p>
<p>Also see @(see must-succeed!).</p>")
(defmacro must-succeed (&whole must-succeed-form
form
&key
(with-output-off ':all)
(check-expansion 'nil check-expansion-p))
; (Must-succeed form) expands to (value-triple t) if evaluation of form is an
; error triple (mv nil val state), and causes a soft error otherwise.
`(make-event
'(must-eval-to-t
(mv-let (erp val state)
,form
(declare (ignore val))
(value (eq erp nil)))
:with-output-off ,with-output-off
,@(and check-expansion-p
`(:check-expansion ,check-expansion)))
:on-behalf-of ,must-succeed-form))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defsection must-succeed*
:parents (testing-utilities errors must-succeed)
:short "A variant of @(tsee must-succeed) that accepts multiple forms."
:long
"@({
(must-succeed* form1
...
formN
:with-output-off ...
:check-expansion ...)
})
<p>
The @('N') forms must be
<see topic='@(url embedded-event-form)'>embedded event forms</see>,
because they are put into a @(tsee progn)
so that earlier forms are evaluated
before considering later forms in the sequence.
This is a difference with @(tsee must-succeed),
whose form is required to return
an <see topic='@(url error-triple)'>error triple</see>
without necessarily being an embedded event form;
since @(tsee must-succeed) takes only one form,
there is no issue of earlier forms being evaluated
before considering later forms
as in @(tsee must-succeed*).
</p>
<p>
The forms may be followed by
@(':with-output-off') and/or @(':check-expansion'),
as in @(tsee must-succeed).
</p>
@(def must-succeed*)"
(defmacro must-succeed* (&rest args)
(mv-let (erp forms options)
(partition-rest-and-keyword-args args
'(:with-output-off :check-expansion))
(if erp
'(er hard?
'must-succeed*
"The arguments of MUST-SUCCEED* must be zero or more forms ~
followed by the options :WITH-OUTPUT-OFF and :CHECK-EXPANSION.")
(let ((with-output-off-pair (assoc :with-output-off options))
(check-expansion-pair (assoc :check-expansion options)))
`(must-succeed (progn ,@forms)
,@(if with-output-off-pair
`(:with-output-off ,(cdr with-output-off-pair))
nil)
,@(if check-expansion-pair
`(:check-expansion ,(cdr check-expansion-pair))
nil)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc must-fail
:parents (testing-utilities errors)
:short "A top-level @(see assert$)-like command. Ensures that a command
which returns an @(see error-triple)—e.g., @(see defun) or @(see
defthm)—will not be successful."
:long "<p>This can be useful for adding simple unit tests of macros,
theories, etc. to your books. Basic examples:</p>
@({
(must-fail ;; succeeds
(defun 5)) ;; (invalid defun will indeed fail)
(must-fail ;; causes an error
(thm t)) ;; (because this thm proves fine)
(must-fail (mv nil (hard-error 'foo \"MESSAGE\" nil) state))
;; causes an error
;; (because hard errors propagate past
;; must-fail by default)
(must-fail (mv nil (hard-error 'foo \"MESSAGE\" nil) state)
:expected :hard) ;; succeeds
(must-fail ;; causes an error
(in-theory (enable floor))) ;; (because this works fine)
(must-fail ;; causes an error
(* 3 4)) ;; (doesn't return an error triple)
})
<p>Must-fail is almost just like @(see must-succeed), except that the event is
expected to fail instead of succeed. The option @(':expected') is described
below; for everything else, please see the documentation for @('must-succeed')
for syntax, options, and additional discussion.</p>
<p>Also see @(see ensure-error), @(see ensure-soft-error), and @(see
ensure-hard-error), which are essentially aliases for @('must-fail') with
different values for the option, @(':expected'), which we now describe.</p>
<p>When the value of keyword @(':expected') is @(':any'), then @('must-fail')
succeeds if and only if ACL2 causes an error during evaluation of the supplied
form. However @(':expected') is @(':soft') by default, in which case success
requires that the error is ``soft'', not ``hard'': hard errors are caused by
guard violations, by calls of @(tsee illegal) and @(tsee hard-error), and by
calls of @(tsee er) that are not ``soft''. Finally, if @(':expected') is
@(':hard'), then the call of @('must-fail') succeeds if and only if evaluation
of the form causes a hard error.</p>
<p>CAVEAT: If a book contains a non-@(see local) form that causes proofs to be
done, such as one of the form @('(must-fail (thm ...))'), then it might not be
possible to include that book. That is because proofs are generally skipped
during @(tsee include-book), and any @('thm') will succeed if proofs are
skipped. One fix is to make such forms @(see local). Another fix is to use a
wrapper @(tsee must-fail!) that creates a call of @('must-fail') with
@(':check-expansion') to @('t'); that causes proofs to be done even when
including a book (because of the way that @('must-fail') is implemented using
@(tsee make-event)).</p>")
(defun error-from-eval-fn (form ctx aok)
`(let ((form ',form)
(ctx ,ctx)
(aok ,aok))
(mv-let (erp stobjs-out/replaced-val state)
(trans-eval form ctx state aok)
(let ((stobjs-out (car stobjs-out/replaced-val))
(replaced-val (cdr stobjs-out/replaced-val)))
(cond (erp (value :hard)) ; no stobjs-out to obtain in this case
((not (equal stobjs-out
'(nil nil state)))
(value (er hard ctx
"The given form must return an error triple, but ~
~x0 does not. See :DOC error-triple."
form)))
(t (value (and (car replaced-val)
:soft))))))))
(defmacro error-from-eval (form &optional
(ctx ''hard-error-to-soft-error)
(aok 't))
; Returns :hard for hard error, :soft for soft error, and nil for no error.
(error-from-eval-fn form ctx aok))
(defmacro must-fail (&whole must-fail-form
form
&key
(expected ':soft) ; :soft, :hard, or :any
(with-output-off ':all)
(check-expansion 'nil check-expansion-p))
; Form should evaluate to an error triple (mv erp val state). (Must-fail
; form) expands to (value-triple t) if erp is non-nil, and expansion causes a
; soft error otherwise.
; Remark on provisional certification: By default we bind state global
; ld-skip-proofsp to nil when generating the .acl2x file for this book during
; provisional certification. We do this because in some cases must-fail
; expects proofs to fail. Some books in the distributed books/make-event/
; directory have the following comment when this change was necessary for
; .acl2x file generation during provisional certification:
; "; See note about ld-skip-proofsp in the definition of must-fail."
(declare (xargs :guard (member-eq expected '(:soft :hard :any))))
(let ((form (case-match expected
(:soft form)
(& `(error-from-eval ,form))))
(success (case-match expected
(:soft '(not (eq erp nil)))
(:hard '(eq val :hard))
(& ; :any, so val should be :hard or :soft, not nil
'(not (eq val nil))))))
`(make-event
'(must-eval-to-t
(mv-let (erp val state)
,form
(declare (ignorable erp val))
(value ,success))
:ld-skip-proofsp
(if (eq (cert-op state) :write-acl2xu)
nil
(f-get-global 'ld-skip-proofsp state))
:with-output-off ,with-output-off
,@(and check-expansion-p
`(:check-expansion ,check-expansion)))
:on-behalf-of ,must-fail-form)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defsection must-fail-local
:parents (testing-utilities errors must-fail)
:short "A @(see local) variant of @(tsee must-fail)."
:long
"<p>
This is useful to overcome the problem discussed in the caveat
in the documentation of @(tsee must-fail).
</p>
@(def must-fail-local)"
(defmacro must-fail-local (&rest args)
`(local (must-fail ,@args))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc ensure-error
:parents (testing-utilities errors)
:short "Ensure that an error occurs"
:long "<p>Evaluation of @('(ensure-error <form>)') returns without error
exactly when evaluation of @('<form>') causes an error.</p>
<p>See @(see must-fail) for more details, as @('ensure-error') abbreviates
@('must-fail') as follows.</p>
@(def ensure-error)
<p>Also see @(see ensure-soft-error) and @(see ensure-hard-error).</p>")
(defmacro ensure-error (form &rest args)
(list* 'must-fail form :expected :any args))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc ensure-soft-error
:parents (testing-utilities errors)
:short "Ensure that a soft error occurs"
:long "<p>Evaluation of @('(ensure-soft-error <form>)') returns without error
exactly when evaluation of @('<form>') causes a soft error.</p>
<p>See @(see must-fail) for more details, as @('ensure-soft-error')
abbreviates @('must-fail') as follows.</p>
@(def ensure-soft-error)
<p>Also see @(see ensure-error) and @(see ensure-hard-error).</p>")
(defmacro ensure-soft-error (form &rest args)
(list* 'must-fail form :expected :soft args))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc ensure-hard-error
:parents (testing-utilities errors)
:short "Ensure that a hard error occurs"
:long "<p>Evaluation of @('(ensure-hard-error <form>)') returns without error
exactly when evaluation of @('<form>') causes a hard error.</p>
<p>See @(see must-fail) for more details, as @('ensure-hard-error')
abbreviates @('must-fail') as follows.</p>
@(def ensure-hard-error)
<p>Also see @(see ensure-error) and @(see ensure-soft-error).</p>")
(defmacro ensure-hard-error (form &rest args)
(list* 'must-fail form :expected :hard args))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro thm? (&rest args)
`(must-succeed (thm ,@args)))
(defmacro not-thm? (&rest args)
`(must-fail (thm ,@args)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defsection must-be-redundant
:parents (testing-utilities errors)
:short "A top-level @(tsee assert$)-like command
to ensure that given forms are redundant."
:long
"<p>
The forms are put into an @(tsee encapsulate),
along with a @(tsee set-enforce-redundancy) command that precedes them.
</p>
@(def must-be-redundant)"
(defmacro must-be-redundant (&rest forms)
`(encapsulate
()
(set-enforce-redundancy t)
,@forms)))
|