/usr/share/sbcl-source/contrib/sb-introspect/test-driver.lisp is in sbcl-source 2:1.0.57.0-2.
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 | ;;;; This software is part of the SBCL system. See the README file for
;;;; more information.
;;;;
;;;; This software is derived from the CMU CL system, which was
;;;; written at Carnegie Mellon University and released into the
;;;; public domain. The software is in the public domain and is
;;;; provided with absolutely no warranty. See the COPYING and CREDITS
;;;; files for more information.
(defpackage :sb-introspect-test
(:use "SB-INTROSPECT" "CL" "SB-RT"))
(in-package :sb-introspect-test)
(deftest function-lambda-list.1
(function-lambda-list 'cl-user::one)
(cl-user::a cl-user::b cl-user::c))
(deftest function-lambda-list.2
(function-lambda-list 'the)
(sb-c::value-type sb-c::form))
(deftest function-lambda-list.3
(function-lambda-list #'(sb-pcl::slow-method cl-user::j (t)))
(sb-pcl::method-args sb-pcl::next-methods))
(deftest definition-source-plist.1
(let* ((source (find-definition-source #'cl-user::one))
(plist (definition-source-plist source)))
(values (= (definition-source-file-write-date source)
(file-write-date "test.lisp"))
(or (equal (getf plist :test-outer)
"OUT")
plist)))
t t)
(deftest definition-source-plist.2
(let ((plist (definition-source-plist
(find-definition-source #'cl-user::four))))
(values (or (equal (getf plist :test-outer) "OUT")
plist)
(or (equal (getf plist :test-inner) "IN")
plist)))
t t)
(defun matchp (object form-number)
(let ((ds (sb-introspect:find-definition-source object)))
(and (pathnamep (sb-introspect:definition-source-pathname ds))
(= form-number
(first (sb-introspect:definition-source-form-path ds))))))
(defun matchp-name (type object form-number)
(let ((ds (car (sb-introspect:find-definition-sources-by-name object type))))
(and (pathnamep (sb-introspect:definition-source-pathname ds))
(= form-number
(first (sb-introspect:definition-source-form-path ds))))))
(defun matchp-length (type object form-numbers)
(let ((ds (sb-introspect:find-definition-sources-by-name object type)))
(= (length ds) form-numbers)))
(deftest find-source-stuff.1
(matchp-name :function 'cl-user::one 2)
t)
(deftest find-source-stuff.2
(matchp #'cl-user::one 2)
t)
(deftest find-source-stuff.3
(matchp-name :generic-function 'cl-user::two 3)
t)
(deftest find-source-stuff.4
(matchp (car (sb-pcl:generic-function-methods #'cl-user::two)) 4)
t)
(deftest find-source-stuff.5
(matchp-name :variable 'cl-user::*a* 8)
t)
(deftest find-source-stuff.6
(matchp-name :variable 'cl-user::*b* 9)
t)
(deftest find-source-stuff.7
(matchp-name :class 'cl-user::a 10)
t)
(deftest find-source-stuff.8
(matchp-name :condition 'cl-user::b 11)
t)
(deftest find-source-stuff.9
(matchp-name :structure 'cl-user::c 12)
t)
(deftest find-source-stuff.10
(matchp-name :function 'cl-user::make-c 12)
t)
(deftest find-source-stuff.11
(matchp-name :function 'cl-user::c-e 12)
t)
(deftest find-source-stuff.12
(matchp-name :structure 'cl-user::d 13)
t)
(deftest find-source-stuff.13
(matchp-name :function 'cl-user::make-d 13)
t)
(deftest find-source-stuff.14
(matchp-name :function 'cl-user::d-e 13)
t)
(deftest find-source-stuff.15
(matchp-name :package 'cl-user::e 14)
t)
(deftest find-source-stuff.16
(matchp-name :symbol-macro 'cl-user::f 15)
t)
(deftest find-source-stuff.17
(matchp-name :type 'cl-user::g 16)
t)
(deftest find-source-stuff.18
(matchp-name :constant 'cl-user::+h+ 17)
t)
(deftest find-source-stuff.19
(matchp-length :method 'cl-user::j 2)
t)
(deftest find-source-stuff.20
(matchp-name :macro 'cl-user::l 20)
t)
(deftest find-source-stuff.21
(matchp-name :compiler-macro 'cl-user::m 21)
t)
(deftest find-source-stuff.22
(matchp-name :setf-expander 'cl-user::n 22)
t)
(deftest find-source-stuff.23
(matchp-name :function '(setf cl-user::o) 23)
t)
(deftest find-source-stuff.24
(matchp-name :method '(setf cl-user::p) 24)
t)
(deftest find-source-stuff.25
(matchp-name :macro 'cl-user::q 25)
t)
(deftest find-source-stuff.26
(matchp-name :method-combination 'cl-user::r 26)
t)
(deftest find-source-stuff.27
(matchp-name :setf-expander 'cl-user::s 27)
t)
(deftest find-source-stuff.28
(let ((fin (make-instance 'sb-mop:funcallable-standard-object)))
(sb-mop:set-funcallable-instance-function fin #'cl-user::one)
(matchp fin 2))
t)
(deftest find-source-stuff.29
(unwind-protect
(progn
(sb-profile:profile cl-user::one)
(matchp-name :function 'cl-user::one 2))
(sb-profile:unprofile cl-user::one))
t)
(deftest find-source-stuff.30
;; Test finding a type that isn't one
(not (find-definition-sources-by-name 'fboundp :type))
t)
(deftest find-source-stuff.31
(matchp-name :function 'cl-user::compile-time-too-fun 28)
t)
(deftest find-source-stuff.32
(matchp-name :function 'cl-user::loaded-as-source-fun 3)
t)
;;; Check wrt. interplay of generic functions and their methods.
(defgeneric xuuq (gf.a gf.b &rest gf.rest &key gf.k-X))
(defmethod xuuq ((m1.a number) m1.b &rest m1.rest &key gf.k-X m1.k-Y m1.k-Z)
(declare (ignore m1.a m1.b m1.rest gf.k-X m1.k-Y m1.k-Z))
'm1)
(defmethod xuuq ((m2.a string) m2.b &rest m2.rest &key gf.k-X m1.k-Y m2.k-Q)
(declare (ignore m2.a m2.b m2.rest gf.k-X m1.k-Y m2.k-Q))
'm2)
;; XUUQ's lambda list should look similiar to
;;
;; (GF.A GF.B &REST GF.REST &KEY GF.K-X M1.K-Z M1.K-Y M2.K-Q)
;;
(deftest gf-interplay.1
(multiple-value-bind (required optional restp rest keyp keys allowp
auxp aux morep more-context more-count)
(sb-int:parse-lambda-list (function-lambda-list #'xuuq))
(and (equal required '(gf.a gf.b))
(null optional)
(and restp (eql rest 'gf.rest))
(and keyp
(member 'gf.k-X keys)
(member 'm1.k-Y keys)
(member 'm1.k-Z keys)
(member 'm2.k-Q keys))
(not allowp)
(and (not auxp) (null aux))
(and (not morep) (null more-context) (not more-count))))
t)
;;; Check what happens when there's no explicit DEFGENERIC.
(defmethod kroolz (r1 r2 &optional opt &aux aux)
(declare (ignore r1 r2 opt aux))
'kroolz)
(deftest gf-interplay.2
(equal (function-lambda-list #'kroolz) '(r1 r2 &optional opt))
t)
;;;; Check correctness of DEFTYPE-LAMBDA-LIST.
(deftype foobar-type
(&whole w &environment e r1 r2 &optional o &rest rest &key k1 k2 k3)
(declare (ignore w e r1 r2 o rest k1 k2 k3))
nil)
(deftest deftype-lambda-list.1
(deftype-lambda-list 'foobar-type)
(&whole w &environment e r1 r2 &optional o &rest rest &key k1 k2 k3)
t)
(deftest deftype-lambda-list.2
(deftype-lambda-list (gensym))
nil
nil)
;; ARRAY is a primitive type with associated translator function.
(deftest deftype-lambda-list.3
(deftype-lambda-list 'array)
(&optional (sb-kernel::element-type '*) (sb-kernel::dimensions '*))
t)
;; VECTOR is a primitive type that is defined by means of DEFTYPE.
(deftest deftype-lambda-list.4
(deftype-lambda-list 'vector)
(&optional sb-kernel::element-type sb-kernel::size)
t)
;;; Test allocation-information
(defun tai (x kind info &key ignore)
(multiple-value-bind (kind2 info2) (sb-introspect:allocation-information x)
(unless (eq kind kind2)
(error "wanted ~S, got ~S" kind kind2))
(when (not (null ignore))
(setf info2 (copy-list info2))
(dolist (key ignore)
(remf info2 key))
(setf info (copy-list info))
(dolist (key ignore)
(remf info key)))
(equal info info2)))
(deftest allocation-infromation.1
(tai nil :heap '(:space :static))
t)
(deftest allocation-information.2
(tai t :heap '(:space :static))
t)
(deftest allocation-information.3
(tai 42 :immediate nil)
t)
;;; Skip the whole damn test on GENCGC PPC -- the combination is just
;;; to flaky for this to make too much sense.
#-(and ppc gencgc)
(deftest allocation-information.4
#+gencgc
(tai #'cons :heap
;; FIXME: This is the canonical GENCGC result. On PPC we sometimes get
;; :LARGE T, which doesn't seem right -- but ignore that for now.
'(:space :dynamic :generation 6 :write-protected t :boxed t :pinned nil :large nil)
:ignore (list :page #+ppc :large))
#-gencgc
(tai :cons :heap
;; FIXME: Figure out what's the right cheney-result. SPARC at least
;; has exhibited both :READ-ONLY and :DYNAMIC, which seems wrong.
'()
:ignore '(:space))
t)
#+sb-thread
(deftest allocation-information.thread.1
(let ((x (list 1 2 3)))
(declare (dynamic-extent x))
(tai x :stack sb-thread:*current-thread*))
t)
#+sb-thread
(progn
(defun thread-tai ()
(let ((x (list 1 2 3)))
(declare (dynamic-extent x))
(let ((child (sb-thread:make-thread
(lambda ()
(sb-introspect:allocation-information x)))))
(equal (list :stack sb-thread:*current-thread*)
(multiple-value-list (sb-thread:join-thread child))))))
(deftest allocation-information.thread.2
(thread-tai)
t)
(defun thread-tai2 ()
(let* ((sem (sb-thread:make-semaphore))
(obj nil)
(child (sb-thread:make-thread
(lambda ()
(let ((x (list 1 2 3)))
(declare (dynamic-extent x))
(setf obj x)
(sb-thread:wait-on-semaphore sem)))
:name "child")))
(loop until obj)
(unwind-protect
(equal (list :stack child)
(multiple-value-list
(sb-introspect:allocation-information obj)))
(sb-thread:signal-semaphore sem)
(sb-thread:join-thread child))))
(deftest allocation-information.thread.3
(thread-tai2)
t))
;;;; Test FUNCTION-TYPE
(defun type-equal (typespec1 typespec2)
(or (equal typespec1 typespec2) ; TYPE= punts on &keywords in FTYPEs.
(sb-kernel:type= (sb-kernel:values-specifier-type typespec1)
(sb-kernel:values-specifier-type typespec2))))
(defmacro interpret (form)
`(let ((sb-ext:*evaluator-mode* :interpret))
(eval ',form)))
;; Functions
(declaim (ftype (function (integer &optional string) string) moon))
(defun moon (int &optional suffix)
(concatenate 'string (princ-to-string int) suffix))
(deftest function-type.1
(values (type-equal (function-type 'moon) (function-type #'moon))
(type-equal (function-type #'moon)
'(function (integer &optional string)
(values string &rest t))))
t t)
(defun sun (x y &key k1)
(declare (fixnum x y))
(declare (boolean k1))
(declare (ignore x y k1))
t)
(deftest function-type.2
(values (type-equal (function-type 'sun) (function-type #'sun))
(type-equal (function-type #'sun)
'(function (fixnum fixnum &key (:k1 (member nil t)))
(values (member t) &optional))))
t t)
;; Local functions
(deftest function-type.5
(flet ((f (s)
(declare (symbol s))
(values (symbol-name s))))
(type-equal (function-type #'f)
'(function (symbol) (values simple-string &optional))))
t)
;; Closures
(deftest function-type.6
(let ((x 10))
(declare (fixnum x))
(flet ((closure (y)
(declare (fixnum y))
(setq x (+ x y))))
(type-equal (function-type #'closure)
'(function (fixnum) (values fixnum &optional)))))
t)
;; Anonymous functions
(deftest function-type.7
(type-equal (function-type #'(lambda (x) (declare (fixnum x)) x))
'(function (fixnum) (values fixnum &optional)))
t)
;; Interpreted functions
#+sb-eval
(deftest function-type.8
(type-equal (function-type (interpret (lambda (x) (declare (fixnum x)) x)))
'(function (&rest t) *))
t)
;; Generic functions
(defgeneric earth (x y))
(deftest function-type+gfs.1
(values (type-equal (function-type 'earth) (function-type #'earth))
(type-equal (function-type 'earth) '(function (t t) *)))
t t)
;; Implicitly created generic functions.
;; (FUNCTION-TYPE 'MARS) => FUNCTION at the moment. (1.0.31.26)
;; See LP #520695.
(defmethod mars (x y) (+ x y))
#+ nil
(deftest function-type+gfs.2
(values (type-equal (function-type 'mars) (function-type #'mars))
(type-equal (function-type 'mars) '(function (t t) *)))
t t)
;; DEFSTRUCT created functions
;; These do not yet work because SB-KERNEL:%FUN-NAME does not work on
;; functions defined by DEFSTRUCT. (1.0.35.x)
;; See LP #520692.
#+nil
(progn
(defstruct (struct (:predicate our-struct-p)
(:copier copy-our-struct))
(a 42 :type fixnum))
(deftest function-type+defstruct.1
(values (type-equal (function-type 'struct-a)
(function-type #'struct-a))
(type-equal (function-type 'struct-a)
'(function (struct) (values fixnum &optional))))
t t)
(deftest function-type+defstruct.2
(values (type-equal (function-type 'our-struct-p)
(function-type #'our-struct-p))
(type-equal (function-type 'our-struct-p)
'(function (t) (values (member t nil) &optional))))
t t)
(deftest function-type+defstruct.3
(values (type-equal (function-type 'copy-our-struct)
(function-type #'copy-our-struct))
(type-equal (function-type 'copy-our-struct)
'(function (struct) (values struct &optional))))
t t)
(defstruct (typed-struct :named (:type list)
(:predicate typed-struct-p))
(a 42 :type fixnum))
(deftest function-type+defstruct.4
(values (type-equal (function-type 'typed-struct-a)
(function-type #'typed-struct-a))
(type-equal (function-type 'typed-struct-a)
'(function (list) (values fixnum &optional))))
t t)
(deftest function-type+defstruct.5
(values (type-equal (function-type 'typed-struct-p)
(function-type #'typed-struct-p))
(type-equal (function-type 'typed-struct-p)
'(function (t) (values (member t nil) &optional))))
t t)
) ; #+nil (progn ...
;; SETF functions
(defun (setf sun) (value x y &key k1)
(declare (boolean value))
(declare (fixnum x y))
(declare (boolean k1))
(declare (ignore x y k1))
value)
(deftest function-type+setf.1
(values (type-equal (function-type '(setf sun))
(function-type #'(setf sun)))
(type-equal (function-type '(setf sun))
'(function ((member nil t)
fixnum fixnum
&key (:k1 (member nil t)))
(values (member nil t) &optional))))
t t)
;; Misc
(deftest function-type+misc.1
(flet ((nullary ()))
(type-equal (function-type #'nullary)
'(function () (values null &optional))))
t)
;;; Defstruct accessor, copier, and predicate
(deftest defstruct-fun-sources
(let ((copier (find-definition-source #'cl-user::copy-three))
(accessor (find-definition-source #'cl-user::three-four))
(predicate (find-definition-source #'cl-user::three-p)))
(values (and (equalp copier accessor)
(equalp copier predicate))
(equal "test.lisp"
(file-namestring (definition-source-pathname copier)))
(equal '(5)
(definition-source-form-path copier))))
t
t
t)
(deftest defstruct-fun-sources-by-name
(let ((copier (car (find-definition-sources-by-name 'cl-user::copy-three :function)))
(accessor (car (find-definition-sources-by-name 'cl-user::three-four :function)))
(predicate (car (find-definition-sources-by-name 'cl-user::three-p :function))))
(values (and (equalp copier accessor)
(equalp copier predicate))
(equal "test.lisp"
(file-namestring (definition-source-pathname copier)))
(equal '(5)
(definition-source-form-path copier))))
t
t
t)
|