/usr/share/acl2-6.3/books/cutil/da-base.lisp is in acl2-books-source 6.3-5.
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 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | ; CUTIL - Centaur Basic Utilities
; Copyright (C) 2008-2013 Centaur Technology
;
; Contact:
; Centaur Technology Formal Verification Group
; 7600-C N. Capital of Texas Highway, Suite 300, Austin, TX 78731, USA.
; http://www.centtech.com/
;
; This program is free software; you can redistribute it and/or modify it under
; the terms of the GNU General Public License as published by the Free Software
; Foundation; either version 2 of the License, or (at your option) any later
; version. This program is distributed in the hope that it will be useful but
; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
; more details. You should have received a copy of the GNU General Public
; License along with this program; if not, write to the Free Software
; Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
;
; Original author: Jared Davis <jared@centtech.com>
;
; Additional copyright notice:
;
; This file is adapted from Milawa, which is also released under the GPL.
(in-package "CUTIL")
(include-book "support")
(include-book "tools/bstar" :dir :system)
(defsection tag
:parents (defaggregate)
:short "Alias for @('car') used by @(see defaggregate)."
:long "<p>The types introduced by @('defaggregate') are basically objects of
the form @('(tag . field-data)'), where the tag says what kind of object is
being represented (e.g., \"employee\").</p>
<p>The @('tag') function is an alias for @('car'), and so it can be used to get
the tag from these kinds of objects. We introduce this alias and keep it
disabled so that reasoning about the tags of objects does not slow down
reasoning about @('car') in general.</p>"
(definlined tag (x)
(declare (xargs :guard t))
(mbe :logic (car x)
:exec (if (consp x)
(car x)
nil)))
(defthm tag-forward-to-consp
(implies (tag x)
(consp x))
:rule-classes :forward-chaining
:hints(("Goal" :in-theory (enable tag)))))
(deftheory defaggregate-basic-theory
(union-theories
'(tag
car-cons
cdr-cons
alistp
assoc-equal
hons
booleanp
booleanp-compound-recognizer
tag)
(theory 'minimal-theory)))
(program)
; NAME GENERATION. We introduce some functions to generate the names of
; constructors, recognizers, accessors, making macros, changing macros, etc.,
; when given the base name of the aggregate.
(defun da-x (basename)
(intern-in-package-of-symbol "X" basename))
(defun da-constructor-name (basename)
basename)
(defun da-honsed-constructor-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "HONSED-" (symbol-name basename))
basename))
(defun da-accessor-name (basename field)
(intern-in-package-of-symbol
(concatenate 'string (symbol-name basename) "->" (symbol-name field))
basename))
(defun da-recognizer-name (basename)
(intern-in-package-of-symbol
(concatenate 'string (symbol-name basename) "-P")
basename))
(defun da-changer-fn-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "CHANGE-" (symbol-name basename) "-FN")
basename))
(defun da-changer-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "CHANGE-" (symbol-name basename))
basename))
(defun da-maker-fn-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "MAKE-" (symbol-name basename) "-FN")
basename))
(defun da-maker-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "MAKE-" (symbol-name basename))
basename))
(defun da-honsed-maker-fn-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "MAKE-HONSED-" (symbol-name basename) "-FN")
basename))
(defun da-honsed-maker-name (basename)
(intern-in-package-of-symbol
(concatenate 'string "MAKE-HONSED-" (symbol-name basename))
basename))
; FIELDS MAPS.
;
; We can lay out the components of the structure in either "legibly" by using
; maps with named keys, or "illegibly" by using a tree structure. Illegible
; structures are more efficient, but are not very convenient when you are
; trying to debug your code. By default, we lay out the structure legibly.
;
; A "fields map" is an alist that binds each field name to an s-expression that
; describes how to access it. For instance, suppose the fields are (A B C).
; For a legible structure, the fields map will be:
;
; ((A . (cdr (assoc 'a <body>)))
; (B . (cdr (assoc 'b <body>)))
; (C . (cdr (assoc 'c <body>))))
;
; Where <body> is either X or (cdr X), depending on whether the structure is
; tagless or not. For an illegible structure, the (cdr (assoc ...)) terms just
; get replaced with something horrible like (CAR (CDR (CAR <body>))).
(defun da-body (basename tag)
(if tag
`(cdr ,(da-x basename))
(da-x basename)))
(defun da-illegible-split-fields (fields)
;; Convert a linear list of fields into a balanced tree with the same fields
(let ((length (len fields)))
(cond ((equal length 1)
(first fields))
((equal length 2)
(cons (first fields) (second fields)))
(t
(let* ((halfway (floor length 2))
(firsthalf (take halfway fields))
(lasthalf (nthcdr halfway fields)))
(cons (da-illegible-split-fields firsthalf)
(da-illegible-split-fields lasthalf)))))))
(defun da-illegible-fields-map-aux (split-fields path)
;; Convert the balanced tree into a map from field names to paths, e.g.,
;; field1 might be bound to (car (car x)), field2 to (cdr (car x)), etc.
(if (consp split-fields)
(append (da-illegible-fields-map-aux (car split-fields) `(car ,path))
(da-illegible-fields-map-aux (cdr split-fields) `(cdr ,path)))
(list (cons split-fields path))))
(defun da-illegible-fields-map (basename tag fields)
;; Convert a linear list of fields into a map from field names to paths.
(da-illegible-fields-map-aux (da-illegible-split-fields fields)
(da-body basename tag)))
(defun da-illegible-structure-checks-aux (split-fields path)
;; Convert the balanced tree into a list of the consp checks we'll need.
(if (consp split-fields)
(cons `(consp ,path)
(append (da-illegible-structure-checks-aux (car split-fields) `(car ,path))
(da-illegible-structure-checks-aux (cdr split-fields) `(cdr ,path))))
nil))
(defun da-illegible-structure-checks (basename tag fields)
;; Convert a linear list of fields into the consp checks we'll need.
(da-illegible-structure-checks-aux (da-illegible-split-fields fields)
(da-body basename tag)))
(defun da-illegible-pack-aux (honsp split-fields)
;; Convert the tree of split fields into a cons tree for building the struct.
(if (consp split-fields)
`(,(if honsp 'hons 'cons)
,(da-illegible-pack-aux honsp (car split-fields))
,(da-illegible-pack-aux honsp (cdr split-fields)))
split-fields))
(defun da-illegible-pack-fields (honsp tag fields)
;; Convert a linear list of fields into consing code
(let ((body (da-illegible-pack-aux honsp (da-illegible-split-fields fields))))
(if tag
`(,(if honsp 'hons 'cons) ,tag ,body)
body)))
#||
(da-illegible-pack-fields nil :taco '(shell meat cheese lettuce sauce))
;; (CONS :TACO (CONS (CONS SHELL MEAT)
;; (CONS CHEESE (CONS LETTUCE SAUCE))))
||#
(defun da-legible-fields-map (basename tag fields)
;; Convert a linear list of fields into a map from field names to paths.
(if (consp fields)
(cons (cons (car fields) `(cdr (assoc ',(car fields) ,(da-body basename tag))))
(da-legible-fields-map basename tag (cdr fields)))
nil))
(defun da-legible-pack-fields-aux (honsp fields)
;; Convert a linear list of fields into the pairs for a list operation
(if (consp fields)
`(,(if honsp 'hons 'cons)
(,(if honsp 'hons 'cons) ',(car fields) ,(car fields))
,(da-legible-pack-fields-aux honsp (cdr fields)))
nil))
(defun da-legible-pack-fields (honsp tag fields)
;; Convert a linear list of fields into consing code for a legible map
(let ((body (da-legible-pack-fields-aux honsp fields)))
(if tag
`(,(if honsp 'hons 'cons) ,tag ,body)
body)))
#||
(da-legible-pack-fields nil :taco '(shell meat cheese lettuce sauce))
;; (CONS :TACO (CONS (CONS 'SHELL SHELL)
;; (CONS (CONS 'MEAT MEAT)
;; (CONS (CONS 'CHEESE CHEESE)
;; (CONS (CONS 'LETTUCE LETTUCE)
;; (CONS (CONS 'SAUCE SAUCE) NIL))))))
||#
(defun da-fields-map (basename tag legiblep fields)
;; Create a fields map of the appropriate type
(if legiblep
(da-legible-fields-map basename tag fields)
(da-illegible-fields-map basename tag fields)))
(defun da-pack-fields (honsp legiblep tag fields)
;; Create a fields map of the appropriate type
(if legiblep
(da-legible-pack-fields honsp tag fields)
(da-illegible-pack-fields honsp tag fields)))
(defun da-structure-checks (basename tag legiblep fields)
;; Check that the object's cdr has the appropriate cons structure
(if legiblep
`((alistp ,(da-body basename tag))
(consp ,(da-body basename tag)))
(da-illegible-structure-checks basename tag fields)))
(defun da-fields-map-let-bindings (map)
;; Convert a fields map into a list of let bindings
(if (consp map)
(let* ((entry (car map))
(field (car entry))
(path (cdr entry)))
(cons (list field path)
(da-fields-map-let-bindings (cdr map))))
nil))
; (FOO ...) CONSTRUCTOR.
(defun da-make-constructor-raw (basename tag fields guard honsp legiblep)
;; Previously we allowed construction to be inlined, but we prefer to only
;; inline accessors.
(let ((foo (da-constructor-name basename)))
`(defund ,foo ,fields
(declare (xargs :guard ,guard
:guard-hints
(("Goal" :in-theory (theory 'minimal-theory))
(and stable-under-simplificationp
;; I hadn't expected to need to do this, because
;; the constructor is just consing something
;; together, so how could it have guard
;; obligations?
;;
;; But it turns out that it CAN have other guard
;; obligations, since the ,guard above can be
;; arbitrarily complicated. So, we will rely on
;; the user to provide a theory that can satisfy
;; these obligations.
;;
;; This looks like it does nothing, but really it
;; "undoes" the in-theory event above.
'(:in-theory (enable ))))))
,(da-pack-fields honsp legiblep tag fields))))
(defun da-make-honsed-constructor-raw (basename tag fields guard legiblep)
(let ((foo (da-constructor-name basename))
(honsed-foo (da-honsed-constructor-name basename)))
`(defun ,honsed-foo ,fields
(declare (xargs :guard ,guard
;; Same hints as for the ordinary constructor
:guard-hints
(("Goal"
:in-theory (union-theories
'(,foo)
(theory 'minimal-theory)))
(and stable-under-simplificationp
'(:in-theory (enable ))))))
(mbe :logic (,foo . ,fields)
:exec ,(da-pack-fields t legiblep tag fields)))))
; (FOOP X) RECOGNIZER.
(defun da-make-recognizer-raw (basename tag fields guard legiblep)
;; Previously we allowed recognizers to be inlined, but now we prefer to
;; only inline accessors.
(let* ((foo-p (da-recognizer-name basename))
(x (da-x basename))
(fields-map (da-fields-map basename tag legiblep fields))
(let-binds (da-fields-map-let-bindings fields-map)))
`(defund ,foo-p (,x)
(declare (xargs :guard t
:guard-hints
(("Goal"
:in-theory (union-theories
'((:executable-counterpart acl2::eqlablep)
acl2::consp-assoc-equal
acl2::assoc-eql-exec-is-assoc-equal)
(theory 'defaggregate-basic-theory)))
(and stable-under-simplificationp
;; This looks like it does nothing, but the basic
;; effect is to undo the "goal" theory and go back
;; into the default theory.
;;
;; This is sometimes necessary because the later
;; requirements might have guards that depend on the
;; previous requirements. The user needs to provide
;; a theory that is adequate to show this is the
;; case.
'(:in-theory (enable ))))))
(and ,@(if tag
`((consp ,x)
(eq (car ,x) ,tag))
nil)
,@(da-structure-checks basename tag legiblep fields)
(let ,let-binds
(declare (ACL2::ignorable ,@fields))
,guard)))))
; (FOO->BAR X) ACCESSORS.
(defun da-make-accessor (basename field map)
(let ((foo-p (da-recognizer-name basename))
(foo->bar (da-accessor-name basename field))
(x (da-x basename))
(body (cdr (assoc field map))))
`(defund-inline ,foo->bar (,x)
(declare (xargs :guard (,foo-p ,x)
:guard-hints (("Goal"
;; expand hint sometimes needed due to mutual
;; recursions
:expand (,foo-p ,x)
:in-theory
(union-theories
'(,foo-p
(:executable-counterpart acl2::eqlablep)
acl2::consp-assoc-equal
acl2::assoc-eql-exec-is-assoc-equal)
(theory 'defaggregate-basic-theory))))))
,body)))
#||
(da-make-accessor 'taco 'meat
(da-fields-map 'taco :taco t '(shell meat cheese lettuce sauce) ))
;; (DEFUND-INLINE TACO->MEAT (X)
;; (DECLARE (XARGS :GUARD (TACO-P X)
;; :GUARD-HINTS (("Goal" :IN-THEORY (ENABLE TACO-P)))))
;; (CDR (ASSOC 'MEAT (CDR X))))
||#
(defun da-make-accessors-aux (basename fields map)
(if (consp fields)
(cons (da-make-accessor basename (car fields) map)
(da-make-accessors-aux basename (cdr fields) map))
nil))
(defun da-make-accessors (basename tag fields legiblep)
(da-make-accessors-aux basename fields (da-fields-map basename tag legiblep fields)))
(defun da-make-accessor-of-constructor (basename field all-fields)
(let ((foo->bar (da-accessor-name basename field))
(foo (da-constructor-name basename)))
`(defthm ,(intern-in-package-of-symbol
(concatenate 'string (symbol-name foo->bar) "-OF-" (symbol-name foo))
basename)
(equal (,foo->bar (,foo . ,all-fields))
,field)
:hints(("Goal"
:in-theory
(union-theories
'(,foo->bar ,foo)
(theory 'defaggregate-basic-theory)))))))
(defun da-make-accessors-of-constructor-aux (basename fields all-fields)
(if (consp fields)
(cons (da-make-accessor-of-constructor basename (car fields) all-fields)
(da-make-accessors-of-constructor-aux basename (cdr fields) all-fields))
nil))
(defun da-make-accessors-of-constructor (basename fields)
(da-make-accessors-of-constructor-aux basename fields fields))
; (CHANGE-FOO ...) MACRO.
(defun da-changer-args-to-alist
(args ; user-supplied args to an actual (change-foo ...) macro, i.e.,
; should be like (:field1 val1 :field2 val2)
valid-fields ; list of valid fields (already keywordified) for this aggregate
)
;; Makes sure args are valid, turns them into a (field . value) alist
(cond ((null args)
nil)
((atom args)
(er hard? 'da-changer-args-to-alist
"Expected a true-list, but instead it ends with ~x0." args))
((atom (cdr args))
(er hard? 'da-changer-args-to-alist
"Expected :field val pairs, but found ~x0." args))
(t
(let ((field (first args))
(value (second args)))
(and (or (member-equal field valid-fields)
(er hard? 'da-changer-args-to-alist
"~x0 is not among the allowed fields, ~&1." field valid-fields))
(cons (cons field value)
(da-changer-args-to-alist (cddr args) valid-fields)))))))
(defun da-make-valid-fields-for-changer (fields)
;; Convert field names into keywords for the (change-foo ...) macro
(if (consp fields)
(cons (intern-in-package-of-symbol (symbol-name (car fields)) :keyword)
(da-make-valid-fields-for-changer (cdr fields)))
nil))
(defun da-alist-name (basename)
(intern-in-package-of-symbol "ALIST" basename))
(defun da-make-changer-fn-aux (basename fields)
;; Writes the body of the change-foo macro. For each field, look up whether the
;; field is given a value, or else use the accessor to preserve previous value
(if (consp fields)
(let ((kwd-name (intern-in-package-of-symbol (symbol-name (car fields)) :keyword))
(alist (da-alist-name basename))
(x (da-x basename)))
(cons `(if (assoc ,kwd-name ,alist)
(cdr (assoc ,kwd-name ,alist))
(list ',(da-accessor-name basename (car fields)) ,x))
(da-make-changer-fn-aux basename (cdr fields))))
nil))
(defun da-make-changer-fn (basename fields)
(let ((alist (intern-in-package-of-symbol "ALIST" basename))
(x (da-x basename))
(change-foo-fn (da-changer-fn-name basename))
(foo (da-constructor-name basename)))
`(defun ,change-foo-fn (,x ,alist)
(declare (xargs :mode :program))
(cons ',foo ,(cons 'list (da-make-changer-fn-aux basename fields))))))
(defun da-make-changer (basename fields)
(let ((x (da-x basename))
(change-foo (da-changer-name basename))
(change-foo-fn (da-changer-fn-name basename))
(kwd-fields (da-make-valid-fields-for-changer fields)))
`(defmacro ,change-foo (,x &rest args)
(,change-foo-fn ,x (da-changer-args-to-alist args ',kwd-fields)))))
; (MAKE-FOO ...) MACRO.
(defun da-make-maker-fn-aux (basename fields defaults)
(if (consp fields)
(let ((kwd-name (intern-in-package-of-symbol (symbol-name (car fields)) :keyword))
(alist (da-alist-name basename)))
(cons `(if (assoc ,kwd-name ,alist)
(cdr (assoc ,kwd-name ,alist))
',(car defaults))
(da-make-maker-fn-aux basename (cdr fields) (cdr defaults))))
nil))
(defun da-make-maker-fn (basename fields defaults)
(let ((alist (da-alist-name basename))
(make-foo-fn (da-maker-fn-name basename))
(foo (da-constructor-name basename)))
`(defun ,make-foo-fn (,alist)
(declare (xargs :mode :program))
(cons ',foo ,(cons 'list (da-make-maker-fn-aux basename fields defaults))))))
(defun da-make-maker (basename fields)
(let ((make-foo (da-maker-name basename))
(make-foo-fn (da-maker-fn-name basename))
(kwd-fields (da-make-valid-fields-for-changer fields)))
`(defmacro ,make-foo (&rest args)
(,make-foo-fn (da-changer-args-to-alist args ',kwd-fields)))))
(defun da-make-honsed-maker-fn (basename fields defaults)
(let ((alist (intern-in-package-of-symbol "ALIST" basename))
(make-honsed-foo-fn (da-honsed-maker-fn-name basename))
(honsed-foo (da-honsed-constructor-name basename)))
`(defun ,make-honsed-foo-fn (,alist)
(declare (xargs :mode :program))
(cons ',honsed-foo ,(cons 'list (da-make-maker-fn-aux basename fields defaults))))))
(defun da-make-honsed-maker (basename fields)
(let ((make-honsed-foo (da-honsed-maker-name basename))
(make-honsed-foo-fn (da-honsed-maker-fn-name basename))
(kwd-fields (da-make-valid-fields-for-changer fields)))
`(defmacro ,make-honsed-foo (&rest args)
(,make-honsed-foo-fn (da-changer-args-to-alist args ',kwd-fields)))))
; SUPPORT FOR B* INTEGRATION
(defun da-patbind-make-field-vars-alist (var fields)
;; Given var = 'foo and fields = '(a b c),
;; Constructs '(("FOO.A" . a) ("FOO.B" . b) ("FOO.C" . c))
(if (atom fields)
nil
(acons (concatenate 'string (symbol-name var) "." (symbol-name (car fields)))
(car fields)
(da-patbind-make-field-vars-alist var (cdr fields)))))
(defun da-patbind-find-used-vars (form varstrs acc)
;; Varstrs is a list of strings such as "X.FOO" "X.BAR" etc.
;; Acc accumulates (uniquely) all the symbols in FORM for which the
;; symbol-name is in varstrs.
(if (atom form)
(if (and (symbolp form)
(member-equal (symbol-name form) varstrs)
(not (member-eq form acc)))
(cons form acc)
acc)
(da-patbind-find-used-vars (car form) varstrs
(da-patbind-find-used-vars (cdr form) varstrs acc))))
(defun da-patbind-alist-to-bindings (name vars valist target)
(if (atom vars)
nil
(let* ((fldname (cdr (assoc-equal (symbol-name (car vars)) valist)))
(accessor (da-accessor-name name fldname))
(call (list accessor target)) ;; (taco->shell foo)
(binding (list (car vars) call))) ;; (x.foo (taco->shell foo))
(cons binding
(da-patbind-alist-to-bindings name (cdr vars) valist target)))))
(defun da-patbind-fn (name fields args forms rest-expr)
(b* ((- (or (and (tuplep 1 args)
(tuplep 1 forms)
(symbolp (car args))
(not (booleanp (car args))))
(er hard? 'da-patbind-fn "B* bindings for ~x0 aggregates must have the ~
form ((~x0 <name>) <expr>), where <name> is a symbol and <expr> is a single ~
term. The attempted binding of~|~% ~p1~%~%is not of this form."
name (cons (cons name args) forms))))
(var (car args))
(full-vars-alist (da-patbind-make-field-vars-alist var fields))
(field-vars (strip-cars full-vars-alist))
(used-vars (da-patbind-find-used-vars rest-expr field-vars nil))
((unless used-vars)
(progn$
(cw "Note: not introducing any ~x0 field bindings for ~x1, since ~
none of its fields appear to be used.~%" name var)
rest-expr))
;;(- (cw "Var is ~x0.~%" var))
;;(- (cw "Full vars alist is ~x0.~%" full-vars-alist))
;;(- (cw "Unnecessary field vars are ~x0.~%" unused-vars))
;;(- (cw "Optimized vars alist is ~x0.~%" vars-alist))
;; The below is adapted from patbind-nth. Sol is using (pack binding)
;; to generate a name that is probably unused. We'll do the same.
(binding (if forms (car forms) var))
(evaledp (or (atom binding) (eq (car binding) 'quote)))
(target (if evaledp binding (acl2::pack binding)))
(bindings (da-patbind-alist-to-bindings name used-vars full-vars-alist target))
;;(- (cw "Binding is ~x0.~%" var))
;;(- (cw "Evaledp is ~x0.~%" var))
;;(- (cw "Target is ~x0.~%" target))
;;(- (cw "New bindings are ~x0.~%" bindings))
)
(if evaledp
`(b* ,bindings ,rest-expr)
`(let ((,target ,binding))
(b* ,bindings
(check-vars-not-free (,target) ,rest-expr))))))
(defun da-make-binder (name fields)
`(defmacro ,(intern-in-package-of-symbol
(concatenate 'string "PATBIND-" (symbol-name name))
name)
(args forms rest-expr)
(da-patbind-fn ',name ',fields args forms rest-expr)))
(defun def-primitive-aggregate-fn (basename fields tag)
(let ((honsp nil)
(legiblep t)
(guard t))
`(progn
,(da-make-recognizer-raw basename tag fields guard legiblep)
,(da-make-constructor-raw basename tag fields guard honsp legiblep)
,@(da-make-accessors basename tag fields legiblep)
,@(da-make-accessors-of-constructor basename fields)
,(da-make-binder basename fields)
,(da-make-changer-fn basename fields)
,(da-make-changer basename fields)
,(da-make-maker-fn basename fields nil)
,(da-make-maker basename fields))))
(defmacro def-primitive-aggregate (name fields &key tag)
`(make-event
(def-primitive-aggregate-fn ',name ',fields ',tag)))
#||
(def-primitive-aggregate employee
(name title department manager salary)
:tag :foo)
(b* ((emp (make-employee :name "jared"))
((employee emp) emp))
emp.name)
||#
|