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 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
|
;;;; This software is part of the SBCL system. See the README file for
;;;; more information.
;;;;
;;;; While most of SBCL is derived from the CMU CL system, the test
;;;; files (like this one) were written from scratch after the fork
;;;; from CMU CL.
;;;;
;;;; This software is in the public domain and is provided with
;;;; absolutely no warranty. See the COPYING and CREDITS files for
;;;; more information.
(load "compiler-test-util.lisp")
;;;; examples from, or close to, the Common Lisp DEFSTRUCT spec
;;; Type mismatch of slot default init value isn't an error until the
;;; default init value is actually used. (The justification is
;;; somewhat bogus, but the requirement is clear.)
(defstruct person age (name 007 :type string)) ; not an error until 007 used
(make-person :name "James") ; not an error, 007 not used
#.(if (legacy-eval-p) (values)
'(assert-error (make-person) type-error))
#.(if (legacy-eval-p) (values)
'(assert-error (setf (person-name (make-person :name "Q")) 1)
type-error))
;;; An &AUX variable in a boa-constructor without a default value
;;; means "do not initialize slot" and does not cause type error
(defstruct (boa-saux (:constructor make-boa-saux (&aux a (b 3) (c))))
(a #\! :type (integer 1 2))
(b #\? :type (integer 3 4))
(c #\# :type (integer 5 6)))
(defstruct (boa-kid (:include boa-saux)))
(defstruct (boa-grandkid (:include boa-kid)))
(with-test (:name :defstruct-boa-typecheck)
(dolist (dsd (sb-kernel:dd-slots
(sb-kernel:find-defstruct-description 'boa-saux)))
(let ((name (sb-kernel:dsd-name dsd))
(always-boundp (sb-kernel:dsd-always-boundp dsd)))
(ecase name
((a c) (assert (not always-boundp)))
(b (assert always-boundp)))))
(let ((dd (sb-kernel:find-defstruct-description 'boa-grandkid)))
(assert (not (sb-kernel:dsd-always-boundp (car (sb-kernel:dd-slots dd))))))
(let ((s (make-boa-saux)))
(locally (declare (optimize (safety 3))
(inline boa-saux-a))
(assert-error (opaque-identity (boa-saux-a s)) type-error))
(setf (boa-saux-a s) 1)
(setf (boa-saux-c s) 5)
(assert (eql (boa-saux-a s) 1))
(assert (eql (boa-saux-b s) 3))
(assert (eql (boa-saux-c s) 5))))
(with-test (:name :defstruct-boa-nice-error :skipped-on :interpreter)
(let ((err (nth-value 1 (ignore-errors (boa-saux-a (make-boa-saux))))))
(assert (and (typep err 'simple-type-error)
(search "Accessed uninitialized slot"
(simple-condition-format-control err))))))
; these two checks should be
; kept separated
(with-test (:name :defstruct-boa-no-error :skipped-on :interpreter)
(let ((s (make-boa-saux)))
(locally (declare (optimize (safety 0))
(inline boa-saux-a))
(assert (sb-int:unbound-marker-p (opaque-identity (boa-saux-a s)))))
(setf (boa-saux-a s) 1)
(setf (boa-saux-c s) 5)
(assert (eql (boa-saux-a s) 1))
(assert (eql (boa-saux-b s) 3))
(assert (eql (boa-saux-c s) 5))))
(with-test (:name :defstruct-boa-typecheck.2)
(let ((s (make-boa-saux)))
(locally (declare (optimize (safety 3))
(notinline boa-saux-a))
(assert-error (opaque-identity (boa-saux-a s)) type-error))
(setf (boa-saux-a s) 1)
(setf (boa-saux-c s) 5)
(assert (eql (boa-saux-a s) 1))
(assert (eql (boa-saux-b s) 3))
(assert (eql (boa-saux-c s) 5))))
;;; basic inheritance
(defstruct (astronaut (:include person)
(:conc-name astro-))
helmet-size
(favorite-beverage 'tang))
(let ((x (make-astronaut :name "Buzz" :helmet-size 17.5)))
(assert (equal (person-name x) "Buzz"))
(assert (equal (astro-name x) "Buzz"))
(assert (eql (astro-favorite-beverage x) 'tang))
(assert (null (astro-age x))))
(defstruct (ancient-astronaut (:include person (age 77)))
helmet-size
(favorite-beverage 'tang))
(assert (eql (ancient-astronaut-age (make-ancient-astronaut :name "John")) 77))
;;; interaction of :TYPE and :INCLUDE and :INITIAL-OFFSET
(defstruct (binop (:type list) :named (:initial-offset 2))
(operator '? :type symbol)
operand-1
operand-2)
(defstruct (annotated-binop (:type list)
(:initial-offset 3)
(:include binop))
commutative associative identity)
(assert (equal (make-annotated-binop :operator '*
:operand-1 'x
:operand-2 5
:commutative t
:associative t
:identity 1)
'(nil nil binop * x 5 nil nil nil t t 1)))
;;; effect of :NAMED on :TYPE
(defstruct (named-binop (:type list) :named)
(operator '? :type symbol)
operand-1
operand-2)
(let ((named-binop (make-named-binop :operator '+ :operand-1 'x :operand-2 5)))
;; The data representation is specified to look like this.
(assert (equal named-binop '(named-binop + x 5)))
;; A meaningful NAMED-BINOP-P is defined.
(assert (named-binop-p named-binop))
(assert (named-binop-p (copy-list named-binop)))
(assert (not (named-binop-p (cons 11 named-binop))))
(assert (not (named-binop-p (find-package :cl)))))
;;; example 1
(defstruct town
area
watertowers
(firetrucks 1 :type fixnum)
population
(elevation 5128 :read-only t))
(let ((town1 (make-town :area 0 :watertowers 0)))
(assert (town-p town1))
(assert (not (town-p 1)))
(assert (eql (town-area town1) 0))
(assert (eql (town-elevation town1) 5128))
(assert (null (town-population town1)))
(setf (town-population town1) 99)
(assert (eql (town-population town1) 99))
(let ((town2 (copy-town town1)))
(dolist (slot-accessor-name '(town-area
town-watertowers
town-firetrucks
town-population
town-elevation))
(assert (eql (funcall slot-accessor-name town1)
(funcall slot-accessor-name town2))))
(assert (not (fboundp '(setf town-elevation)))) ; 'cause it's :READ-ONLY
;; The source-transform for SETF was too eager,
;; and would accept read-only slots.
(assert-error
(setf (town-elevation (make-town)) 5))
(assert-error
(funcall (compile nil (lambda (x y)
(setf (town-readonly x) y)
x))
(make-town) 5))))
;;; example 2
(defstruct (clown (:conc-name bozo-))
(nose-color 'red)
frizzy-hair-p
polkadots)
(let ((funny-clown (make-clown)))
(assert (eql (bozo-nose-color funny-clown) 'red)))
(defstruct (klown (:constructor make-up-klown)
(:copier clone-klown)
(:predicate is-a-bozo-p))
nose-color
frizzy-hair-p
polkadots)
(assert (is-a-bozo-p (make-up-klown)))
;;;; systematically testing variants of DEFSTRUCT:
;;;; * native, :TYPE LIST, and :TYPE VECTOR
;;; FIXME: things to test:
;;; * Slot readers work.
;;; * Slot writers work.
;;; * Predicates work.
;;; FIXME: things that would be nice to test systematically someday:
;;; * constructors (default, boa..)
;;; * copiers
;;; * no type checks when (> SPEED SAFETY)
;;; * Tests of inclusion would be good. (It's tested very lightly
;;; above, and then tested a fair amount by the system compiling
;;; itself.)
(defun string+ (&rest rest)
(apply #'concatenate 'string
(mapcar #'string rest)))
(defun symbol+ (&rest rest)
(values (intern (apply #'string+ rest))))
(defun accessor-name (conc-name slot-name)
(symbol+ conc-name slot-name))
;;; Use the ordinary FDEFINITIONs of accessors (not inline expansions)
;;; to read and write a structure slot.
(defun read-slot-notinline (conc-name slot-name instance)
(funcall (accessor-name conc-name slot-name) instance))
(defun write-slot-notinline (new-value conc-name slot-name instance)
(funcall (fdefinition `(setf ,(accessor-name conc-name slot-name)))
new-value instance))
;;; Use inline expansions of slot accessors, if possible, to read and
;;; write a structure slot.
(defun read-slot-inline (conc-name slot-name instance)
(funcall (compile nil
`(lambda (instance)
(,(accessor-name conc-name slot-name) instance)))
instance))
(defun write-slot-inline (new-value conc-name slot-name instance)
(funcall (compile nil
`(lambda (new-value instance)
(setf (,(accessor-name conc-name slot-name) instance)
new-value)))
new-value
instance))
;;; Read a structure slot, checking that the inline and out-of-line
;;; accessors give the same result.
(defun read-slot (conc-name slot-name instance)
(let ((inline-value (read-slot-inline conc-name slot-name instance))
(notinline-value (read-slot-notinline conc-name slot-name instance)))
(assert (eql inline-value notinline-value))
inline-value))
;;; Write a structure slot, using INLINEP argument to decide
;;; on inlineness of accessor used.
(defun write-slot (new-value conc-name slot-name instance inlinep)
(if inlinep
(write-slot-inline new-value conc-name slot-name instance)
(write-slot-notinline new-value conc-name slot-name instance)))
;;; bound during the tests so that we can get to it even if the
;;; debugger is having a bad day
(defvar *instance*)
(declaim (optimize (debug 2)))
(declaim (muffle-conditions style-warning)) ; &OPTIONAL and &KEY
(defmacro test-variant (defstructname &key colontype boa-constructor-p)
`(locally
#+nil(format t "~&/beginning PROGN for COLONTYPE=~S~%" ',colontype)
(defstruct (,defstructname
,@(when colontype `((:type ,colontype)))
,@(when boa-constructor-p
`((:constructor ,(symbol+ "CREATE-" defstructname)
(id
&optional
(optional-test 2 optional-test-p)
&key
(home nil home-p)
(no-home-comment "Home package CL not provided.")
(comment (if home-p "" no-home-comment))
(refcount (if optional-test-p optional-test nil))
hash
weight)))))
;; some ordinary tagged slots
id
(home nil :type package :read-only t)
(comment "" :type simple-string)
;; some raw slots
(weight 1.0 :type single-float)
(hash 1 :type (integer 1 #.(* 3 most-positive-fixnum)) :read-only t)
;; more ordinary tagged slots
(refcount 0 :type (and unsigned-byte fixnum)))
#+nil(format t "~&/done with DEFSTRUCT~%")
(let* ((cn (string+ ',defstructname "-")) ; conc-name
(ctor (symbol-function ',(symbol+ (if boa-constructor-p
"CREATE-"
"MAKE-")
defstructname)))
(*instance* (funcall ctor
,@(unless boa-constructor-p
`(:id)) "some id"
,@(when boa-constructor-p
'(1))
:home (find-package :cl)
:hash (+ 14 most-positive-fixnum)
,@(unless boa-constructor-p
`(:refcount 1)))))
;; Check that ctor set up slot values correctly.
#+nil(format t "~&/checking constructed structure~%")
(assert (string= "some id" (read-slot cn "ID" *instance*)))
(assert (eql (find-package :cl) (read-slot cn "HOME" *instance*)))
(assert (string= "" (read-slot cn "COMMENT" *instance*)))
(assert (= 1.0 (read-slot cn "WEIGHT" *instance*)))
(assert (eql (+ 14 most-positive-fixnum)
(read-slot cn "HASH" *instance*)))
(assert (= 1 (read-slot cn "REFCOUNT" *instance*)))
;; There should be no writers for read-only slots.
#+nil(format t "~&/checking no read-only writers~%")
(assert (not (fboundp `(setf ,(symbol+ cn "HOME")))))
(assert (not (fboundp `(setf ,(symbol+ cn "HASH")))))
;; (Read-only slot values are checked in the loop below.)
(dolist (inlinep '(t nil))
#+nil(format t "~&/doing INLINEP=~S~%" inlinep)
;; Fiddle with writable slot values.
(let ((new-id (format nil "~S" (random 100)))
(new-comment (format nil "~X" (random 5555)))
(new-weight (random 10.0)))
(write-slot new-id cn "ID" *instance* inlinep)
(write-slot new-comment cn "COMMENT" *instance* inlinep)
(write-slot new-weight cn "WEIGHT" *instance* inlinep)
(assert (eql new-id (read-slot cn "ID" *instance*)))
(assert (eql new-comment (read-slot cn "COMMENT" *instance*)))
;;(unless (eql new-weight (read-slot cn "WEIGHT" *instance*))
;; (error "WEIGHT mismatch: ~S vs. ~S"
;; new-weight (read-slot cn "WEIGHT" *instance*)))
(assert (eql new-weight (read-slot cn "WEIGHT" *instance*)))))
#+nil(format t "~&/done with INLINEP loop~%")
;; :TYPE FOO objects don't go in the Lisp type system, so we
;; can't test TYPEP stuff for them.
;;
;; FIXME: However, when they're named, they do define
;; predicate functions, and we could test those.
,@(unless colontype
`(;; Fiddle with predicate function.
(let ((pred-name (symbol+ ',defstructname "-P")))
#+nil(format t "~&/doing tests on PRED-NAME=~S~%" pred-name)
(assert (funcall pred-name *instance*))
(assert (not (funcall pred-name 14)))
(assert (not (funcall pred-name "test")))
(assert (not (funcall pred-name (make-hash-table))))
(let ((compiled-pred
(compile nil `(lambda (x) (,pred-name x)))))
#+nil(format t "~&/doing COMPILED-PRED tests~%")
(assert (funcall compiled-pred *instance*))
(assert (not (funcall compiled-pred 14)))
(assert (not (funcall compiled-pred #()))))
;; Fiddle with TYPEP.
#+nil(format t "~&/doing TYPEP tests, COLONTYPE=~S~%" ',colontype)
(assert (typep *instance* ',defstructname))
(assert (not (typep 0 ',defstructname)))
(assert (funcall (symbol+ "TYPEP") *instance* ',defstructname))
(assert (not (funcall (symbol+ "TYPEP") nil ',defstructname)))
(let* ((typename ',defstructname)
(compiled-typep
(compile nil `(lambda (x) (typep x ',typename)))))
(assert (funcall compiled-typep *instance*))
(assert (not (funcall compiled-typep nil))))))))
#+nil(format t "~&/done with PROGN for COLONTYPE=~S~%" ',colontype)))
(test-variant vanilla-struct)
(test-variant vector-struct :colontype vector)
(test-variant list-struct :colontype list)
(test-variant vanilla-struct :boa-constructor-p t)
(test-variant vector-struct :colontype vector :boa-constructor-p t)
(test-variant list-struct :colontype list :boa-constructor-p t)
;;;; testing raw slots harder
;;;;
;;;; The offsets of raw slots need to be rescaled during the punning
;;;; process which is used to access them. That seems like a good
;;;; place for errors to lurk, so we'll try hunting for them by
;;;; verifying that all the raw slot data gets written successfully
;;;; into the object, can be copied with the object, and can then be
;;;; read back out (with none of it ending up bogusly outside the
;;;; object, so that it couldn't be copied, or bogusly overwriting
;;;; some other raw slot).
(defstruct manyraw
(a (expt 2 30) :type (unsigned-byte #.sb-vm:n-word-bits))
(b 0.1 :type single-float)
(c 0.2d0 :type double-float)
(d #c(0.3 0.3) :type (complex single-float))
unraw-slot-just-for-variety
(e #c(0.4d0 0.4d0) :type (complex double-float))
(aa (expt 2 30) :type (unsigned-byte #.sb-vm:n-word-bits))
(bb 0.1 :type single-float)
(cc 0.2d0 :type double-float)
(dd #c(0.3 0.3) :type (complex single-float))
(ee #c(0.4d0 0.4d0) :type (complex double-float)))
(defvar *manyraw* (make-manyraw))
(assert (eql (manyraw-a *manyraw*) (expt 2 30)))
(assert (eql (manyraw-b *manyraw*) 0.1))
(assert (eql (manyraw-c *manyraw*) 0.2d0))
(assert (eql (manyraw-d *manyraw*) #c(0.3 0.3)))
(assert (eql (manyraw-e *manyraw*) #c(0.4d0 0.4d0)))
(assert (eql (manyraw-aa *manyraw*) (expt 2 30)))
(assert (eql (manyraw-bb *manyraw*) 0.1))
(assert (eql (manyraw-cc *manyraw*) 0.2d0))
(assert (eql (manyraw-dd *manyraw*) #c(0.3 0.3)))
(assert (eql (manyraw-ee *manyraw*) #c(0.4d0 0.4d0)))
(setf (manyraw-aa *manyraw*) (expt 2 31)
(manyraw-bb *manyraw*) 0.11
(manyraw-cc *manyraw*) 0.22d0
(manyraw-dd *manyraw*) #c(0.33 0.33)
(manyraw-ee *manyraw*) #c(0.44d0 0.44d0))
(let ((copy (copy-manyraw *manyraw*)))
(assert (eql (manyraw-a copy) (expt 2 30)))
(assert (eql (manyraw-b copy) 0.1))
(assert (eql (manyraw-c copy) 0.2d0))
(assert (eql (manyraw-d copy) #c(0.3 0.3)))
(assert (eql (manyraw-e copy) #c(0.4d0 0.4d0)))
(assert (eql (manyraw-aa copy) (expt 2 31)))
(assert (eql (manyraw-bb copy) 0.11))
(assert (eql (manyraw-cc copy) 0.22d0))
(assert (eql (manyraw-dd copy) #c(0.33 0.33)))
(assert (eql (manyraw-ee copy) #c(0.44d0 0.44d0))))
;;;; Since GC treats raw slots specially now, let's try this with more objects
;;;; and random values as a stress test.
(setf *manyraw* nil)
(defconstant +n-manyraw+ 10)
(defconstant +m-manyraw+ 1000)
(defun check-manyraws (manyraws)
(assert (eql (length manyraws) (* +n-manyraw+ +m-manyraw+)))
(loop
for m in (reverse manyraws)
for i from 0
do
;; Compare the tagged reference values with raw reffer results.
(destructuring-bind (j a b c d e)
(manyraw-unraw-slot-just-for-variety m)
(assert (eql i j))
(assert (= (manyraw-a m) a))
(assert (= (manyraw-b m) b))
(assert (= (manyraw-c m) c))
(assert (= (manyraw-d m) d))
(assert (= (manyraw-e m) e)))
;; Test the funny out-of-line OAOOM-style closures, too.
(mapcar (lambda (fn value)
(assert (= (funcall fn m) value)))
(list #'manyraw-a
#'manyraw-b
#'manyraw-c
#'manyraw-d
#'manyraw-e)
(cdr (manyraw-unraw-slot-just-for-variety m)))))
(defstruct (manyraw-subclass (:include manyraw))
(stolperstein 0 :type (unsigned-byte 32)))
;;; create lots of manyraw objects, triggering GC every now and then
(dotimes (y +n-manyraw+)
(dotimes (x +m-manyraw+)
(let ((a (random (expt 2 32)))
(b (random most-positive-single-float))
(c (random most-positive-double-float))
(d (complex
(random most-positive-single-float)
(random most-positive-single-float)))
(e (complex
(random most-positive-double-float)
(random most-positive-double-float))))
(push (funcall (if (zerop (mod x 3))
#'make-manyraw-subclass
#'make-manyraw)
:unraw-slot-just-for-variety
(list (+ x (* y +m-manyraw+)) a b c d e)
:a a
:b b
:c c
:d d
:e e)
*manyraw*)))
(let ((*standard-output* (make-broadcast-stream))) (room))
(sb-ext:gc))
(with-test (:name :defstruct-raw-slot-gc)
(check-manyraws *manyraw*))
;;; try a full GC, too
(sb-ext:gc :full t)
(with-test (:name (:defstruct-raw-slot-gc :full))
(check-manyraws *manyraw*))
(macrolet ((def-it ()
`(defstruct (huge-manyraw (:include manyraw))
,@(loop for n from 1 to 130
for s = (write-to-string n)
when (zerop (random 10))
collect `(,(sb-int:symbolicate "WORD-SLOT-" s)
,n :type sb-ext:word)
collect `(,(sb-int:symbolicate "SLOT-" s) ,s))
(df 8.207880688335944d-304 :type double-float)
(aaa 'aaa)
(sf 1.5679403e-38 :type single-float)
(cdf #c(9d0 -2d10) :type (complex double-float))
(bbb 'bbb)
(csf #c(2f1 2f0) :type (complex single-float))
(ccc 'ccc)
(w1 #xffee :type sb-ext:word)
(w2 #xeeee :type sb-ext:word))))
(def-it))
(defstruct (hugest-manyraw (:include huge-manyraw))
(another-slot '(whocares)))
(defmethod make-load-form ((self hugest-manyraw) &optional e)
(declare (ignore e))
(make-load-form-saving-slots
self
:slot-names
;; skip the slot named A so that the optimization that turns
;; MAKE-LOAD-FORM-SAVING-SLOTS into "dump normally"
;; (change 4bf626e745d5d2e34630ec4dd67b7c17bd9b8f28) can not be used.
(delete 'a (mapcar 'sb-kernel:dsd-name
(sb-kernel:dd-slots
(sb-kernel:find-defstruct-description 'hugest-manyraw))))))
(with-test (:name :dd-bitmap-vs-layout-bitmap)
(dolist (typename '(huge-manyraw hugest-manyraw))
(let* ((layout (sb-kernel:find-layout typename))
(info (sb-kernel:layout-dd layout))
(bitmap (sb-kernel::dd-bitmap info)))
(assert (typep bitmap 'bignum))
(assert (= (sb-bignum:%bignum-length bitmap)
(sb-kernel:bitmap-nwords layout))))))
(defun check-huge-manyraw (s)
(assert (and (eql (huge-manyraw-df s) 8.207880688335944d-304)
(eql (huge-manyraw-aaa s) 'aaa)
(eql (huge-manyraw-sf s) 1.5679403e-38)
(eql (huge-manyraw-cdf s) #c(9d0 -2d10))
(eql (huge-manyraw-bbb s) 'bbb)
(eql (huge-manyraw-csf s) #c(2f1 2f0))
(eql (huge-manyraw-ccc s) 'ccc)
(eql (huge-manyraw-w1 s) #xffee)
(eql (huge-manyraw-w2 s) #xeeee)))
(dolist (slot (sb-kernel:dd-slots
(sb-kernel:layout-info (sb-kernel:layout-of s))))
(let ((name (string (sb-kernel:dsd-name slot))))
(cond ((eql (mismatch name "SLOT-") 5)
(let ((n (parse-integer name :start 5)))
(assert (string= (funcall (sb-kernel:dsd-accessor-name slot) s)
(write-to-string n)))))
((eql (mismatch name "WORD-SLOT-") 10)
(let ((n (parse-integer name :start 10)))
(assert (= (funcall (sb-kernel:dsd-accessor-name slot) s)
n))))))))
;;; fasl dumper and loader also have special handling of raw slots, so
;;; dump all of them into a fasl
(defmethod make-load-form ((self manyraw) &optional env)
(make-load-form-saving-slots self :environment env))
(defvar *tempfile* (scratch-file-name "lisp"))
(with-open-file (s *tempfile*
:direction :output
:if-exists :supersede)
(write-string "(defun dumped-manyraws () '#.*manyraw*)" s)
(terpri s)
(write-string "(defun dumped-huge-manyraw () '#.(make-huge-manyraw))" s)
(write-string "(defun dumped-hugest-manyraw () '#.(make-hugest-manyraw))" s))
(defvar *tempfasl*)
(with-test (:name :compile-huge-manyraw
:skipped-on :gc-stress)
(setf *tempfasl* (compile-file *tempfile*))
(delete-file *tempfile*)
;; nuke the objects and try another GC just to be extra careful
(setf *manyraw* nil)
(sb-ext:gc :full t)
;; re-read the dumped structures and check them
(load *tempfasl*)
(delete-file *tempfasl*))
(with-test (:name (:defstruct-raw-slot load)
:skipped-on :gc-stress)
(check-manyraws (dumped-manyraws))
(check-huge-manyraw (make-huge-manyraw))
(assert (equalp (make-huge-manyraw) (dumped-huge-manyraw)))
;; make-load-form omits slot A. it reads as 0
(assert (equalp (make-hugest-manyraw :a 0) (dumped-hugest-manyraw))))
;;;; miscellaneous old bugs
(defstruct ya-struct)
(when (ignore-errors (or (ya-struct-p) 12))
(error "YA-STRUCT-P of no arguments should signal an error."))
(when (ignore-errors (or (ya-struct-p 'too 'many 'arguments) 12))
(error "YA-STRUCT-P of three arguments should signal an error."))
;;; bug 210: Until sbcl-0.7.8.32 BOA constructors had SAFETY 0
;;; declared inside on the theory that slot types were already
;;; checked, which bogusly suppressed unbound-variable and other
;;; checks within the evaluation of initforms.
(defvar *bug210*)
(defstruct (bug210a (:constructor bug210a ()))
(slot *bug210*))
(defstruct bug210b
(slot *bug210*))
;;; Because of bug 210, this assertion used to fail.
(assert (typep (nth-value 1 (ignore-errors (bug210a))) 'unbound-variable))
(assert (typep (nth-value 1 (ignore-errors (make-bug210b))) 'unbound-variable))
;;; In sbcl-0.7.8.53, DEFSTRUCT blew up in non-toplevel contexts
;;; because it implicitly assumed that EVAL-WHEN (COMPILE) stuff
;;; setting up compiler-layout information would run before the
;;; constructor function installing the layout was compiled. Make sure
;;; that doesn't happen again.
(defun foo-0-7-8-53 () (defstruct foo-0-7-8-53 x (y :not)))
(assert (not (find-class 'foo-0-7-8-53 nil)))
(foo-0-7-8-53)
(assert (find-class 'foo-0-7-8-53 nil))
(let ((foo-0-7-8-53 (make-foo-0-7-8-53 :x :s)))
(assert (eq (foo-0-7-8-53-x foo-0-7-8-53) :s))
(assert (eq (foo-0-7-8-53-y foo-0-7-8-53) :not)))
;;; tests of behaviour of colliding accessors.
(defstruct (bug127-foo (:conc-name bug127-baz-)) a)
(assert (= (bug127-baz-a (make-bug127-foo :a 1)) 1))
(defstruct (bug127-bar (:conc-name bug127-baz-) (:include bug127-foo)) b)
(assert (= (bug127-baz-a (make-bug127-bar :a 1 :b 2)) 1))
(assert (= (bug127-baz-b (make-bug127-bar :a 1 :b 2)) 2))
(assert (= (bug127-baz-a (make-bug127-foo :a 1)) 1))
(defun bug127-flurble (x)
x)
(defstruct bug127 flurble)
(assert (= (bug127-flurble (make-bug127 :flurble 7)) 7))
(defstruct bug127-a b-c)
(assert (= (bug127-a-b-c (make-bug127-a :b-c 9)) 9))
(defstruct (bug127-a-b (:include bug127-a)) c)
(assert (= (bug127-a-b-c (make-bug127-a :b-c 9)) 9))
(assert (= (bug127-a-b-c (make-bug127-a-b :b-c 11 :c 13)) 11))
(defstruct (bug127-e (:conc-name bug127--)) foo)
(assert (= (bug127--foo (make-bug127-e :foo 3)) 3))
(defstruct (bug127-f (:conc-name bug127--)) foo)
(assert (= (bug127--foo (make-bug127-f :foo 3)) 3))
(assert-error (bug127--foo (make-bug127-e :foo 3)) type-error)
;;; FIXME: should probably do the same tests on DEFSTRUCT :TYPE
;;; As noted by Paul Dietz for CMUCL, :CONC-NAME handling was a little
;;; too fragile:
(defstruct (conc-name-syntax :conc-name) a-conc-name-slot)
(assert (eq (a-conc-name-slot (make-conc-name-syntax :a-conc-name-slot 'y))
'y))
;;; and further :CONC-NAME NIL was being wrongly treated:
(defpackage "DEFSTRUCT-TEST-SCRATCH")
(defstruct (conc-name-nil :conc-name)
defstruct-test-scratch::conc-name-nil-slot)
(assert (= (defstruct-test-scratch::conc-name-nil-slot
(make-conc-name-nil :conc-name-nil-slot 1)) 1))
(assert-error (conc-name-nil-slot (make-conc-name-nil))
undefined-function)
;;; The named/typed predicates were a little fragile, in that they
;;; could throw errors on innocuous input:
(defstruct (list-struct (:type list) :named) a-slot)
(assert (list-struct-p (make-list-struct)))
(assert (not (list-struct-p nil)))
(assert (not (list-struct-p 1)))
(defstruct (offset-list-struct (:type list) :named (:initial-offset 1)) a-slot)
(assert (offset-list-struct-p (make-offset-list-struct)))
(assert (not (offset-list-struct-p nil)))
(assert (not (offset-list-struct-p 1)))
(assert (not (offset-list-struct-p '(offset-list-struct))))
(assert (not (offset-list-struct-p '(offset-list-struct . 3))))
(defstruct (vector-struct (:type vector) :named) a-slot)
(assert (vector-struct-p (make-vector-struct)))
(assert (not (vector-struct-p nil)))
(assert (not (vector-struct-p #())))
;;; bug 3d: type safety with redefined type constraints on slots
#+#.(cl:if (assertoid:legacy-eval-p) '(or) '(and))
(macrolet
((test (type)
(let* ((base-name (intern (format nil "bug3d-~A" type)))
(up-name (intern (format nil "~A-up" base-name)))
(accessor (intern (format nil "~A-X" base-name)))
(up-accessor (intern (format nil "~A-X" up-name)))
(type-options (when type `((:type ,type)))))
`(progn
(defstruct (,base-name ,@type-options)
x y)
(defstruct (,up-name (:include ,base-name
(x "x" :type simple-string)
(y "y" :type simple-string))
,@type-options))
(let ((ob (,(intern (format nil "MAKE-~A" up-name)))))
(setf (,accessor ob) 0)
(loop for decl in '(inline notinline)
for fun = `(lambda (s)
(declare (optimize (safety 3))
(,decl ,',up-accessor))
(,',up-accessor s))
do (assert-error (funcall (compile nil fun) ob)
type-error)))))))
(test nil)
(test list)
(test vector))
(let* ((name (gensym))
(form `(defstruct ,name
(x nil :type (or null (function (integer)
(values number &optional foo)))))))
(eval (copy-tree form))
(eval (copy-tree form)))
;;; 322: "DEFSTRUCT :TYPE LIST predicate and improper lists"
;;; reported by Bruno Haible sbcl-devel "various SBCL bugs" from CLISP
;;; test suite.
(defstruct (bug-332a (:type list) (:initial-offset 5) :named))
(defstruct (bug-332b (:type list) (:initial-offset 2) :named (:include bug-332a)))
(assert (not (bug-332b-p (list* nil nil nil nil nil 'foo73 nil 'tail))))
(assert (not (bug-332b-p 873257)))
(assert (not (bug-332b-p '(1 2 3 4 5 x 1 2 bug-332a))))
(assert (bug-332b-p '(1 2 3 4 5 x 1 2 bug-332b)))
;;; Similar test for vectors, just for good measure.
(defstruct (bug-332a-aux (:type vector)
(:initial-offset 5) :named))
(defstruct (bug-332b-aux (:type vector)
(:initial-offset 2) :named
(:include bug-332a-aux)))
(assert (not (bug-332b-aux-p #(1 2 3 4 5 x 1 premature-end))))
(assert (not (bug-332b-aux-p 873257)))
(assert (not (bug-332b-aux-p #(1 2 3 4 5 x 1 2 bug-332a-aux))))
(assert (bug-332b-aux-p #(1 2 3 4 5 x 1 2 bug-332b-aux)))
;;; In sbcl-0.8.11.8 FBOUNDPness potential collisions of structure
;;; slot accessors signalled a condition at macroexpansion time, not
;;; when the code was actually compiled or loaded.
(let ((defstruct-form '(defstruct bug-in-0-8-11-8 x)))
(defun bug-in-0-8-11-8-x (z) (print "some unrelated thing"))
(handler-case (macroexpand defstruct-form)
(warning (c)
(error "shouldn't warn just from macroexpansion here"))))
;;; bug 318 symptom no 1. (rest not fixed yet)
(catch :ok
(handler-bind ((error (lambda (c)
;; Used to cause stack-exhaustion
(unless (typep c 'storage-condition)
(throw :ok t)))))
(eval '(progn
(defstruct foo a)
(setf (find-class 'foo) nil)
(defstruct foo slot-1)))))
(defstruct bug-348 x)
(with-test (:name :eval-order-slot-writer-arguments)
(assert (eql -1 (let ((i (eval '-2))
(x (make-bug-348)))
(funcall #'(setf bug-348-x)
(incf i)
(aref (vector x) (incf i)))
(bug-348-x x)))))
(with-test (:name :obsolete-defstruct/print-object)
(eval '(defstruct born-to-change))
(let ((x (make-born-to-change)))
(handler-bind ((error 'continue))
(eval '(defstruct born-to-change slot)))
(assert (search "UNPRINTABLE instance" (princ-to-string x)))))
(with-test (:name :obsolete-defstruct/typep)
(eval '(defstruct born-to-change-2))
(let ((x (make-born-to-change-2)))
(handler-bind ((error 'continue))
(eval '(defstruct born-to-change-2 slot)))
(assert (not (typep x (find-class 'standard-class))))))
;; EQUALP didn't work for structures with float slots (reported by
;; Vjacheslav Fyodorov).
(defstruct raw-slot-equalp-bug
(b 0s0 :type single-float)
c
(a 0d0 :type double-float))
(defstruct raw-slot-equalp-bug-2
(b (complex 1d0) :type (complex double-float))
(x (complex 1d0) :type (complex double-float))
c
(a 1s0 :type single-float))
(with-test (:name :raw-slot-equalp)
(assert (equalp (make-raw-slot-equalp-bug :a 1d0 :b 2s0)
(make-raw-slot-equalp-bug :a 1d0 :b 2s0)))
(assert (equalp (make-raw-slot-equalp-bug :a 1d0 :b 0s0)
(make-raw-slot-equalp-bug :a 1d0 :b -0s0)))
(assert (not (equalp (make-raw-slot-equalp-bug :a 1d0 :b 2s0)
(make-raw-slot-equalp-bug :a 1d0 :b 3s0))))
(assert (not (equalp (make-raw-slot-equalp-bug :a 1d0 :b 2s0)
(make-raw-slot-equalp-bug :a 2d0 :b 2s0))))
(assert (equalp (make-raw-slot-equalp-bug-2 :b (complex 1d0) :a 2s0)
(make-raw-slot-equalp-bug-2 :b (complex 1d0) :a 2s0)))
(assert (equalp (make-raw-slot-equalp-bug-2 :b (complex 1d0) :a 0s0)
(make-raw-slot-equalp-bug-2 :b (complex 1d0) :a -0s0)))
(assert (not (equalp (make-raw-slot-equalp-bug-2 :b (complex 1d0) :a 2s0)
(make-raw-slot-equalp-bug-2 :b (complex 1d0) :a 3s0))))
(assert (not (equalp (make-raw-slot-equalp-bug-2 :b (complex 1d0) :a 2s0)
(make-raw-slot-equalp-bug-2 :b (complex 2d0) :a 2s0)))))
;;; Check that all slot types (non-raw and raw) can be initialized with
;;; constant arguments.
(defstruct constant-arg-inits
(a 42 :type t)
(b 1 :type fixnum)
(c 2 :type sb-vm:word)
(d 3.0 :type single-float)
(e 4.0d0 :type double-float)
(f #c(5.0 5.0) :type (complex single-float))
(g #c(6.0d0 6.0d0) :type (complex double-float)))
(defun test-constant-arg-inits ()
(let ((foo (make-constant-arg-inits)))
(declare (dynamic-extent foo))
(assert (eql 42 (constant-arg-inits-a foo)))
(assert (eql 1 (constant-arg-inits-b foo)))
(assert (eql 2 (constant-arg-inits-c foo)))
(assert (eql 3.0 (constant-arg-inits-d foo)))
(assert (eql 4.0d0 (constant-arg-inits-e foo)))
(assert (eql #c(5.0 5.0) (constant-arg-inits-f foo)))
(assert (eql #c(6.0d0 6.0d0) (constant-arg-inits-g foo)))))
(make-constant-arg-inits)
;;; bug reported by John Morrison, 2008-07-22 on sbcl-devel
(defstruct (raw-slot-struct-with-unknown-init (:constructor make-raw-slot-struct-with-unknown-init ()))
(x (#:unknown-function) :type double-float))
;;; Some checks for the behavior of incompatibly redefining structure
;;; classes. We don't actually check that our detection of
;;; "incompatible" is comprehensive, only that if an incompatible
;;; definition is processed, we do various things.
(defmacro with-files ((&rest vars) &body body)
"Evaluate BODY with VARS bound to a number of filenames, then
delete the files at the end."
(let* ((paths (loop for var in vars
as index upfrom 0
collect (scratch-file-name "lisp")))
(binding-spec (mapcar
(lambda (var path) `(,var ,path)) vars paths)))
(labels ((frob (n)
`((unwind-protect
(progn
,@(if (plusp n)
(frob (1- n))
body))
(ignore-errors
(delete-file ,(namestring
(merge-pathnames (make-pathname :type "fasl")
(elt paths n)))))
(delete-file ,(elt paths n))))))
`(let ,binding-spec
,@(frob (1- (length vars)))))))
(defun noclobber (pathspec &rest forms)
"Write FORMS to the file named by PATHSPEC, erroring if
PATHSPEC already names an existing file."
(with-open-file (*standard-output* pathspec :direction :output
:if-exists :error)
(print '(in-package "CL-USER"))
(mapc #'print forms)))
(defun compile-file-assert (file &optional (want-error-p t) (want-warning-p t))
"Compile FILE and assert some things about the results."
(multiple-value-bind (fasl errors-p warnings-p)
(compile-file file)
(assert fasl)
(assert (eq errors-p want-error-p))
(assert (eq warnings-p want-warning-p))
fasl))
(defun continue-from-incompatible-defstruct-error (error)
"Invoke the CONTINUE restart for an incompatible DEFSTRUCT
redefinition."
;; FIXME: want distinct error type for incompatible defstruct.
(when (search "attempt to redefine" (simple-condition-format-control error))
(when (find-restart 'continue)
(invoke-restart 'continue))))
(defun recklessly-continue-from-incompatible-defstruct-error (error)
"Invoke the RECKLESSLY-CONTINUE restart for an incompatible DEFSTRUCT
redefinition."
;; FIXME: want distinct error type for incompatible defstruct.
(when (search "attempt to redefine" (simple-condition-format-control error))
(when (find-restart 'sb-kernel::recklessly-continue)
(invoke-restart 'sb-kernel::recklessly-continue))))
(defun assert-is (predicate instance)
(assert (funcall predicate instance)))
(defun assert-invalid (instance)
(assert (sb-kernel:layout-invalid (sb-kernel:%instance-layout instance))))
;; Don't try to understand this macro; just look at its expansion.
(defmacro with-defstruct-redefinition-test (name
(&rest defstruct-form-bindings)
(&rest path-form-specs)
handler-function
&body body)
(labels ((make-defstruct-form (&key class-name super-name slots)
(let* ((predicate-name
(read-from-string (format nil "~A-p" class-name)))
(constructor-name
(read-from-string (format nil "make-~A" class-name))))
`(values
'(defstruct (,class-name
(:constructor ,constructor-name)
,@(when super-name
`((:include ,super-name))))
,@slots)
',constructor-name
',predicate-name)))
(frob (bindspecs classno)
(if bindspecs
`((multiple-value-bind ,(first (first bindspecs))
,(apply #'make-defstruct-form (rest (first bindspecs)))
(declare (ignorable ,@(first (first bindspecs))))
,@(frob (rest bindspecs) (1+ classno))))
`((with-files ,(mapcar #'first path-form-specs)
,@(mapcar (lambda (path-form) `(noclobber ,@path-form))
path-form-specs)
(handler-bind
((simple-error ',handler-function))
,@body))))))
`(with-test (:name ,name)
,(first (frob defstruct-form-bindings 0)))))
;; When eyeballing these, it's helpful to see when various things are
;; happening.
(setq *compile-verbose* t *load-verbose* t)
;;; Tests begin.
;; Base case: recklessly-continue.
(with-defstruct-redefinition-test :defstruct/recklessly
(((defstruct ctor pred) :class-name redef-test-1 :slots (a))
((defstruct*) :class-name redef-test-1 :slots (a b)))
((path1 defstruct)
(path2 defstruct*))
recklessly-continue-from-incompatible-defstruct-error
(load path1)
(let ((instance (funcall ctor)))
(load path2)
(assert-is pred instance)))
;; Base case: continue (i.e., invalidate instances).
(with-defstruct-redefinition-test :defstruct/continue
(((defstruct ctor) :class-name redef-test-2 :slots (a))
((defstruct*) :class-name redef-test-2 :slots (a b)))
((path1 defstruct)
(path2 defstruct*))
continue-from-incompatible-defstruct-error
(load path1)
(let ((instance (funcall ctor)))
(load path2)
(assert-invalid instance)))
;; Compiling a file with an incompatible defstruct should emit a
;; warning and an error, but the fasl should be loadable.
(with-defstruct-redefinition-test :defstruct/compile-file-should-warn
(((defstruct) :class-name redef-test-3 :slots (a))
((defstruct*) :class-name redef-test-3 :slots (a b)))
((path1 defstruct)
(path2 defstruct*))
continue-from-incompatible-defstruct-error
(load path1)
(load (compile-file-assert path2)))
;; After compiling a file with an incompatible DEFSTRUCT, load the
;; fasl and ensure that an old instance remains valid.
(with-defstruct-redefinition-test :defstruct/compile-file-reckless
(((defstruct ctor pred) :class-name redef-test-4 :slots (a))
((defstruct*) :class-name redef-test-4 :slots (a b)))
((path1 defstruct)
(path2 defstruct*))
recklessly-continue-from-incompatible-defstruct-error
(load path1)
(let ((instance (funcall ctor)))
(load (compile-file-assert path2))
(assert-is pred instance)))
;; After compiling a file with an incompatible DEFSTRUCT, load the
;; fasl and ensure that an old instance has become invalid.
(with-defstruct-redefinition-test :defstruct/compile-file-continue
(((defstruct ctor) :class-name redef-test-5 :slots (a))
((defstruct*) :class-name redef-test-5 :slots (a b)))
((path1 defstruct)
(path2 defstruct*))
continue-from-incompatible-defstruct-error
(load path1)
(let ((instance (funcall ctor)))
(load (compile-file-assert path2))
(assert-invalid instance)))
;;; Subclasses.
;; Ensure that recklessly continuing DT(expected)T to instances of
;; subclasses. (This is a case where recklessly continuing is
;; actually dangerous, but we don't care.)
(with-defstruct-redefinition-test :defstruct/subclass-reckless
(((defstruct ignore pred1) :class-name redef-test-6 :slots (a))
((substruct ctor pred2) :class-name redef-test-6-sub
:super-name redef-test-6 :slots (z))
((defstruct*) :class-name redef-test-6 :slots (a b)))
((path1 defstruct substruct)
(path2 defstruct* substruct))
recklessly-continue-from-incompatible-defstruct-error
(load path1)
(let ((instance (funcall ctor)))
(load (compile-file-assert path2))
(assert-is pred1 instance)
(assert-is pred2 instance)))
;; Ensure that continuing invalidates instances of subclasses.
(with-defstruct-redefinition-test :defstruct/subclass-continue
(((defstruct) :class-name redef-test-7 :slots (a))
((substruct ctor) :class-name redef-test-7-sub
:super-name redef-test-7 :slots (z))
((defstruct*) :class-name redef-test-7 :slots (a b)))
((path1 defstruct substruct)
(path2 defstruct* substruct))
continue-from-incompatible-defstruct-error
(load path1)
(let ((instance (funcall ctor)))
(load (compile-file-assert path2))
(assert-invalid instance)))
;; Reclkessly continuing doesn't invalidate instances of subclasses.
(with-defstruct-redefinition-test :defstruct/subclass-in-other-file-reckless
(((defstruct ignore pred1) :class-name redef-test-8 :slots (a))
((substruct ctor pred2) :class-name redef-test-8-sub
:super-name redef-test-8 :slots (z))
((defstruct*) :class-name redef-test-8 :slots (a b)))
((path1 defstruct)
(path2 substruct)
(path3 defstruct*))
recklessly-continue-from-incompatible-defstruct-error
(load path1)
(load path2)
(let ((instance (funcall ctor)))
(load (compile-file-assert path3))
(assert-is pred1 instance)
(assert-is pred2 instance)))
;; This is an icky case: when a subclass is defined in a separate
;; file, CONTINUE'ing from LOAD of a file containing an incompatible
;; superclass definition leaves the predicates and accessors into the
;; subclass in a bad way until the subclass form is evaluated.
(with-defstruct-redefinition-test :defstruct/subclass-in-other-file-continue
(((defstruct ignore) :class-name redef-test-9 :slots (a))
((substruct ctor) :class-name redef-test-9-sub
:super-name redef-test-9 :slots (z))
((defstruct*) :class-name redef-test-9 :slots (a b)))
((path1 defstruct)
(path2 substruct)
(path3 defstruct*))
continue-from-incompatible-defstruct-error
(load path1)
(load path2)
(let ((instance (funcall ctor)))
(load (compile-file-assert path3))
;; At this point, the instance of the subclass will not count as
;; an instance of the superclass or of the subclass, but PRED2's
;; predicate will error with "an obsolete structure accessor
;; function was called".
(assert-invalid instance)
(format t "~&~A~%" (nth-value 1 (ignore-errors (funcall pred2 instance))))
;; After loading PATH2, we'll get the desired LAYOUT-INVALID error.
(load path2)
(assert-invalid instance)))
;; Some other subclass wrinkles have to do with splitting definitions
;; across files and compiling and loading things in a funny order.
(with-defstruct-redefinition-test
:defstruct/subclass-in-other-file-funny-operation-order-continue
(((defstruct ignore pred1) :class-name redef-test-10 :slots (a))
((substruct ctor pred2) :class-name redef-test-10-sub
:super-name redef-test-10 :slots (z))
((defstruct*) :class-name redef-test-10 :slots (a b)))
((path1 defstruct)
(path2 substruct)
(path3 defstruct*))
continue-from-incompatible-defstruct-error
(load path1)
(load path2)
(let ((instance (funcall ctor)))
;; First we clobber the compiler's layout for the superclass.
(compile-file-assert path3)
;; Then we recompile the subclass definition (which generates a
;; warning about the compiled layout for the superclass being
;; incompatible with the loaded layout, because we haven't loaded
;; path3 since recompiling).
(compile-file path2)
;; Ugh. I don't want to think about loading these in the wrong
;; order.
(load (compile-file-pathname path3))
(load (compile-file-pathname path2))
(assert-invalid instance)
(assert-invalid instance)))
;; Unfortunately this test is fubar by relying on formerly broken behavior of
;; the WITH-FILES macro - it expects that the fasl file from a prior test
;; remain accessible in this test.
;; If that's the intended behavor, then is needs to be part of a single test,
;; or use a "well-known" file name stored in defvar, and not just accidentally
;; see what was ostensibly a temporary remnant that accidentally stuck around.
#+nil
(with-defstruct-redefinition-test
:defstruct/subclass-in-other-file-funny-operation-order-continue
(((defstruct ignore pred1) :class-name redef-test-11 :slots (a))
((substruct ctor pred2) :class-name redef-test-11-sub
:super-name redef-test-11 :slots (z))
((defstruct*) :class-name redef-test-11 :slots (a b)))
((path1 defstruct)
(path2 substruct)
(path3 defstruct*))
continue-from-incompatible-defstruct-error
(load path1)
(load path2)
(let ((instance (funcall ctor)))
;; This clobbers the compiler's layout for REDEF-TEST-11.
(compile-file-assert path3)
;; This recompiles REDEF-TEST-11-SUB, using the new REDEF-TEST-11
;; compiler-layout.
(load (compile-file-pathname path2))
;; Note that because we haven't loaded PATH3, we haven't clobbered
;; the class's layout REDEF-TEST-11, so REDEF-11's predicate will
;; still work. That's probably bad.
(assert-is pred1 instance)
(assert-is pred2 instance)))
(with-test (:name :raw-slot/circle-subst)
;; CIRCLE-SUBSTS used %INSTANCE-REF on raw slots
(multiple-value-bind (list n)
(eval '(progn
(defstruct raw-slot/circle-subst
(x 0.0 :type single-float))
(read-from-string "((#1=#S(raw-slot/circle-subst :x 2.7158911)))")))
(destructuring-bind ((struct)) list
(assert (raw-slot/circle-subst-p struct))
(assert (eql 2.7158911 (raw-slot/circle-subst-x struct)))
(assert (eql 45 n)))))
(defstruct (bug-3b (:constructor make-bug-3b (&aux slot)))
(slot nil :type string))
(with-test (:name :bug-3b)
(handler-case
(progn
(bug-3b-slot (make-bug-3b))
(error "fail"))
(type-error (e)
(assert (eq 'string (type-error-expected-type e)))
;; This next ASSERT made no sense whatsoever. If the slot named DATUM
;; in the ERROR instance that's reporting the unbound slot in the BUG-3B
;; instance is itself unbound, then how can you expect that reading the
;; DATUM slot in E is supposed to work?
;; It worked only by accident, because the first access to the slot would
;; return it from the initargs without checking for unbound-marker,
;; but a subsequent access would trap on the memoized value.
;; That dubious distinction is gone.
;; (assert (sb-int:unbound-marker-p (type-error-datum e)))
(assert (not (slot-boundp e 'sb-kernel::datum))))))
(with-test (:name :defstruct-copier-typechecks-argument)
(copy-person (make-astronaut :name "Neil"))
(assert-error (copy-astronaut (make-person :name "Fred"))))
(with-test (:name :bug-528807)
(let ((*evaluator-mode* :compile))
(handler-bind ((style-warning #'error))
(eval `(defstruct (bug-528807 (:constructor make-528807 (&aux x)))
(x nil :type fixnum))))))
(with-test (:name :bug-520607)
(assert-error
(eval '(defstruct (typed-struct (:type list) (:predicate typed-struct-p))
(a 42 :type fixnum))))
;; NIL is ok, though.
(eval '(defstruct (typed-struct (:type list) (:predicate nil))
(a 42 :type fixnum)))
;; (:predicate) is not ok because absence of the argument does not mean
;; that the value of the option is NIL, as it must be for :typed un-:named.
;; ":predicate
;; This option takes one argument ...
;; If the argument is not supplied ... the name of the predicate is made
;; by concatenating the name of the structure to the string "-P"
;; If the argument is provided and is nil, no predicate is defined.
;; ... if :type is supplied and :named is not supplied, then :predicate
;; must either be unsupplied or have the value nil."
;;
;; The last piece says that the entire option must be unsupplied
;; or else "have the value NIL", and is preceded by a description of the
;; precise manner in which absence of an argument is not the same as nil.
;;
(assert-error
(eval '(defstruct (typed-struct2 (:type list) (:predicate))
(a 42 :type fixnum)))))
(with-test (:name (:boa-supplied-p &optional))
(handler-bind ((sb-c:inlining-dependency-failure #'muffle-warning)
(warning #'error))
(eval `(defstruct (boa-supplied-p.1 (:constructor make-boa-supplied-p.1
(&optional (bar t barp))))
bar
barp)))
(let ((b1 (make-boa-supplied-p.1))
(b2 (make-boa-supplied-p.1 t)))
(assert (eq t (boa-supplied-p.1-bar b1)))
(assert (eq t (boa-supplied-p.1-bar b2)))
(assert (eq nil (boa-supplied-p.1-barp b1)))
(assert (eq t (boa-supplied-p.1-barp b2)))))
(with-test (:name (:boa-supplied-p &key))
(handler-bind ((sb-c:inlining-dependency-failure #'muffle-warning)
(warning #'error))
(eval `(defstruct (boa-supplied-p.2 (:constructor make-boa-supplied-p.2
(&key (bar t barp))))
bar
barp)))
(let ((b1 (make-boa-supplied-p.2))
(b2 (make-boa-supplied-p.2 :bar t)))
(assert (eq t (boa-supplied-p.2-bar b1)))
(assert (eq t (boa-supplied-p.2-bar b2)))
(assert (eq nil (boa-supplied-p.2-barp b1)))
(assert (eq t (boa-supplied-p.2-barp b2)))))
(defstruct structure-with-predicate)
(defclass class-to-be-redefined () ())
(let ((x (make-instance 'class-to-be-redefined)))
(defun function-trampoline (fun) (funcall fun x)))
(with-test (:name (:struct-predicate :obsolete-instance))
(defclass class-to-be-redefined () ((a :initarg :a :initform 1)))
(function-trampoline #'structure-with-predicate-p))
(with-test (:name (:defstruct :not-toplevel-silent))
(let ((sb-ext:*evaluator-mode* :compile))
(handler-bind ((warning #'error))
(eval `(let ()
(defstruct defstruct-no-warning-not-at-toplevel bar))))))
(with-test (:name :bug-941102)
(let ((test `((defstruct bug-941102)
(setf (find-class 'bug-941102-alias) (find-class 'bug-941102))
(setf (find-class 'bug-941102-alias) nil))))
(multiple-value-bind (warn fail) (ctu:file-compile test :load t)
(assert (not warn))
(assert (not fail)))
(multiple-value-bind (warn2 fail2) (ctu:file-compile test)
(assert (not warn2))
(assert (not fail2)))))
(with-test (:name (:defstruct :constant-slot-names))
(defstruct defstruct-constant-slot-names t)
(assert (= 3 (defstruct-constant-slot-names-t
(make-defstruct-constant-slot-names :t 3)))))
(with-test (:name (:defstruct :bogus-inherited-slot-specs))
(defstruct flopsie a b c)
(assert
(handler-case (macroexpand '(defstruct (mopsie (:include flopsie (a 3) (z 9))) q))
(error (c)
(search "slot name Z not present" (write-to-string c :escape nil)))
(:no-error (x) x nil)))
(assert
(handler-case (macroexpand '(defstruct (mopsie (:include flopsie (a 3) (a 'a))) q))
(error (c)
(search "slot name A specified more than once" (write-to-string c :escape nil)))
(:no-error (x) x nil))))
(assert-error
(defstruct bogus-aux.1 (:constructor make-bogus-aux.1 (&aux (a b c)))))
(with-test (:name (:defstruct :lexical-default))
(let ((x 0)) (defstruct lexical-default (a (incf x)))
(assert (= (lexical-default-a (make-lexical-default))
x
1))))
(with-test (:name (:defstruct :find-defstruct-description))
(assert (null (sb-kernel:find-defstruct-description 'not-foo nil)))
(assert-error (sb-kernel:find-defstruct-description 'not-foo t)))
(defstruct (a-named-struct :named (:type vector)) a b c)
(defstruct (a-kid-struct :named (:type vector) (:include a-named-struct)) n)
(with-test (:name (:defstruct :named-typed-struct-subtype-pred))
(let ((par (make-a-named-struct :b 6))
(kid (make-a-kid-struct :n 5)))
(assert (a-named-struct-p par))
(assert (a-named-struct-p kid))
(assert (not (a-kid-struct-p par)))
(assert (a-kid-struct-p kid))))
(with-test (:name :defstruct-parse-strictly)
(dolist (form
'((defstruct (s :conc-name (:conc-name b1-)) x y)
(defstruct (s :copier :copier) x y)
(defstruct (s (:include) (:include)) x y)
(defstruct (s (:initial-offset 2) (:initial-offset nil)) x y)
(defstruct (s (:predicate nil) (:predicate foolp)) x y)
(defstruct (s (:type list) (:type vector)) x y)
;; The :NAMED option requires that SYMBOL be a subtype of the
;; *supplied* element type (not the upgraded element-type).
;; Defining a subtype of the structure places another symbol in
;; the vector, and we can't anticipate what that will be.
;; [Though in practice it is somewhere between unlikely and
;; impossible that an implementation would be able to specialize
;; on only one particular symbol and not also allow any symbol]
(defstruct (s (:type (vector (or (eql s) integer))) :named) x y)
))
(assert-error (macroexpand form))))
(defstruct (foo-not-too-something
(:constructor make-foo-not-too-strong (x &aux (x (abs x))))
(:constructor make-foo-not-too-weak (&optional x)))
(x nil :type unsigned-byte))
(with-test (:name :defstruct-ftype-correctness)
(assert (make-foo-not-too-strong -3)) ; should be allowed
(assert-error (make-foo-not-too-weak))) ; should not set X slot to NIL
(defstruct fruitbat a (b #xbadf00d :type sb-ext:word) (c 'hi))
(mapc 'fmakunbound '(fruitbat-a fruitbat-b fruitbat-c))
(with-test (:name :defstruct-printer-robust)
(assert (string= (princ-to-string (make-fruitbat :a "test"))
"#S(FRUITBAT :A test :B 195948557 :C HI)")))
;; lp#540063
(defstruct x y)
(with-test (:name :redefine-accessor-as-random-defun)
(flet ((assert-that (expect form)
;; test by STRING= since there's no condition class,
;; being a little more thorough than merely ASSERT-SIGNAL.
(let (win)
(handler-bind ((simple-warning
(lambda (c)
(when (string= (princ-to-string c) expect)
(setq win t)
(muffle-warning)))))
(eval form)
(assert win)))))
(assert-that "redefinition of X-Y clobbers structure accessor"
'(defun x-y (z) (list :x-y z)))
(assert-that "redefinition of COPY-X clobbers structure copier"
'(defun copy-x (a b) (list a b)))
(assert-that "redefinition of X-P clobbers structure predicate"
'(defun x-p (z) (list 'bork z))))
(assert (equalp
(funcall (compile nil '(lambda (z) (x-y z)))
(make-x :y t))
'(:X-Y #S(X :Y T))))
(assert (equalp
(funcall (compile nil '(lambda (z)
(declare (notinline x-y))
(x-y z)))
(make-x :y t))
'(:X-Y #S(X :Y T)))))
;; The word order for halves of double-floats on 32-bit platforms
;; should match the platform's native order.
(defun compare-memory (obj1 obj1-word-ofs obj2 obj2-word-ofs n-words)
(sb-sys:with-pinned-objects (obj1 obj2)
(let ((sap1 (sb-sys:int-sap (logandc2 (sb-kernel:get-lisp-obj-address obj1) sb-vm:lowtag-mask)))
(sap2 (sb-sys:int-sap (logandc2 (sb-kernel:get-lisp-obj-address obj2) sb-vm:lowtag-mask))))
(dotimes (i n-words)
(let ((w1 (sb-sys:sap-ref-32 sap1 (ash (+ obj1-word-ofs i) sb-vm:word-shift)))
(w2 (sb-sys:sap-ref-32 sap2 (ash (+ obj2-word-ofs i) sb-vm:word-shift))))
(assert (= w1 w2)))))))
(defstruct struct-df (a pi :type double-float))
(defvar *c* (complex (exp 1d0) pi))
(defstruct struct-cdf (a *c* :type (complex double-float)))
(defvar *adf* (make-array 1 :element-type 'double-float
:initial-element pi))
(defvar *acdf* (make-array 1 :element-type '(complex double-float)
:initial-element *c*))
(with-test (:name :dfloat-endianness
:skipped-on (not (or :mips :x86))) ; only tested on these
(compare-memory pi 2 *adf* 2 2) ; Array
(compare-memory pi 2 (make-struct-df) 2 2) ; Structure
(compare-memory *c* 2 *acdf* 2 4) ; Array
(compare-memory *c* 2 (make-struct-cdf) 2 4)) ; Structure
(with-test (:name :recklessly-continuable-defstruct)
(flet ((redefine-defstruct (from to)
(eval from)
(handler-bind
((error (lambda (c)
(declare (ignore c))
(return-from redefine-defstruct
;; RESTARTs are DX, don't return it.
(not (null (find 'sb-kernel::recklessly-continue
(compute-restarts)
:key 'restart-name))))))
(warning #'muffle-warning))
(eval to))))
(assert (not (redefine-defstruct
'(defstruct not-redefinable (a 0 :type sb-ext:word))
'(defstruct not-redefinable (a)))))
(assert (redefine-defstruct
;; Incompatible types has nothing to do with whether
;; RECKLESSLY-CONTINUE is offered.
'(defstruct redefinable (a nil :type symbol))
'(defstruct redefinable (a nil :type cons))))))
(with-test (:name :non-total-satisfies-predicate)
;; This definition is perfectly fine as long as you always pass
;; only numbers to the constructor.
;; In particular, the macroexpander must not test whether a random
;; object (specifically NIL) meets the test for the slot.
(assert (macroexpand-1
'(defstruct strangestruct (a nil :type (satisfies plusp))))))
(defstruct foo4130 bar)
(with-test (:name :duplicated-slot-names)
(flet ((assert-that (expect form)
(multiple-value-bind (ret error) (ignore-errors (eval form))
(assert (not ret))
(assert (string= (princ-to-string error)
expect)))))
(assert-that "duplicate slot name BAR"
`(defstruct foo4131 bar bar))
(assert-that "slot name BAR duplicated via included FOO4130"
`(defstruct (foo4132 (:include foo4130)) bar))))
(with-test (:name :specialized-equalp)
;; make sure we didn't mess up PATHNAME and HASH-TABLE
(let ((f (sb-kernel:layout-equalp-impl (sb-kernel:find-layout 'pathname))))
(assert (eq f #'sb-int:pathname=)))
(let ((f (sb-kernel:layout-equalp-impl (sb-kernel:find-layout 'hash-table))))
(assert (eq f #'sb-int:hash-table-equalp))))
(defstruct (badbuf (:constructor make-badbuf ()))
(str (make-string 128) :type (simple-array character (128))))
(with-test (:name :make-string-type-inference)
(let ((things (ctu:find-code-constants #'make-badbuf :type 'list)))
(assert (not things))))
(with-test (:name :non-top-level-constructor-cache)
(let ((name (gensym)))
(funcall
(checked-compile `(lambda ()
(defstruct (,name
(:constructor ,name)
(:predicate nil)
(:copier nil))
(a 0 :type sb-vm:word :read-only t)))))
(typep (funcall name :a 3) name)))
(defstruct type-mismatch
(v (make-array 10) :type fixnum))
(compile 'make-type-mismatch)
(with-test (:name :default-type-mismatch)
(assert (nth-value 2
(checked-compile
`(lambda ()
(make-type-mismatch))
:allow-warnings t)))
(checked-compile
`(lambda (m)
(make-type-mismatch :v m))))
(defstruct (boa-constructor-&rest-nil-t
(:constructor make-bcrnt (&rest rest))
(:conc-name bcrnt-))
rest (nil 4) (t 5))
(with-test (:name (:boa-constructor &rest nil t))
(let ((struct (make-bcrnt 1 2 3)))
(assert (equal (bcrnt-rest struct) '(1 2 3)))
(assert (eql (bcrnt-nil struct) 4))
(assert (eql (bcrnt-t struct) 5))))
(let ((a 0))
(defstruct (out-of-line-boa-constructor
(:constructor make-oolbc (&aux x))
(:conc-name oolbc-))
x
(y (incf a))
(z 104 :type sb-vm:word)))
(with-test (:name (:boa-constructor :out-of-line :uninitialized))
(let ((struct (make-oolbc)))
(assert (eql (oolbc-y struct) 1))
(setf (oolbc-x struct) 2)
(assert (eql (oolbc-x struct) 2))
(assert (eql (oolbc-z struct) 104))))
|