-
Notifications
You must be signed in to change notification settings - Fork 2
/
cmucl.lisp
2313 lines (2010 loc) · 87.6 KB
/
cmucl.lisp
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
;;; -*- indent-tabs-mode: nil; outline-regexp: ";;;;+" -*-
;;;
;;; License: Public Domain
;;;
;;;; Introduction
;;;
;;; This is the CMUCL implementation of the `swank-backend' package.
(in-package :conium)
;;;; "Hot fixes"
;;;
;;; Here are necessary bugfixes to the oldest supported version of
;;; CMUCL (currently 18e). Any fixes placed here should also be
;;; submitted to the `cmucl-imp' mailing list and confirmed as
;;; good. When a new release is made that includes the fixes we should
;;; promptly delete them from here. It is enough to be compatible with
;;; the latest release.
(in-package :lisp)
;;; `READ-SEQUENCE' with large sequences has problems in 18e. This new
;;; definition works better.
#-cmu19
(progn
(let ((s (find-symbol (string :*enable-package-locked-errors*) :lisp)))
(when s
(setf (symbol-value s) nil)))
(defun read-into-simple-string (s stream start end)
(declare (type simple-string s))
(declare (type stream stream))
(declare (type index start end))
(unless (subtypep (stream-element-type stream) 'character)
(error 'type-error
:datum (read-char stream nil #\Null)
:expected-type (stream-element-type stream)
:format-control "Trying to read characters from a binary stream."))
;; Let's go as low level as it seems reasonable.
(let* ((numbytes (- end start))
(total-bytes 0))
;; read-n-bytes may return fewer bytes than requested, so we need
;; to keep trying.
(loop while (plusp numbytes) do
(let ((bytes-read (system:read-n-bytes stream s start numbytes nil)))
(when (zerop bytes-read)
(return-from read-into-simple-string total-bytes))
(incf total-bytes bytes-read)
(incf start bytes-read)
(decf numbytes bytes-read)))
total-bytes))
(let ((s (find-symbol (string :*enable-package-locked-errors*) :lisp)))
(when s
(setf (symbol-value s) t)))
)
(in-package :conium)
(defvar *external-format-to-coding-system*
'((:iso-8859-1
"latin-1" "latin-1-unix" "iso-latin-1-unix"
"iso-8859-1" "iso-8859-1-unix")
#+unicode
(:utf-8 "utf-8" "utf-8-unix")))
(defimplementation find-external-format (coding-system)
(car (rassoc-if (lambda (x) (member coding-system x :test #'equal))
*external-format-to-coding-system*)))
(defun make-socket-io-stream (fd buffering external-format)
"Create a new input/output fd-stream for FD."
#-unicode(declare (ignore external-format))
(sys:make-fd-stream fd :input t :output t :element-type 'base-char
:buffering buffering
#+unicode :external-format
#+unicode external-format))
;;;;; Signal-driven I/O
(defimplementation install-sigint-handler (function)
(sys:enable-interrupt :sigint (lambda (signal code scp)
(declare (ignore signal code scp))
(funcall function))))
(defvar *sigio-handlers* '()
"List of (key . function) pairs.
All functions are called on SIGIO, and the key is used for removing
specific functions.")
(defun set-sigio-handler ()
(sys:enable-interrupt :sigio (lambda (signal code scp)
(sigio-handler signal code scp))))
(defun sigio-handler (signal code scp)
(declare (ignore signal code scp))
(mapc #'funcall (mapcar #'cdr *sigio-handlers*)))
(defun fcntl (fd command arg)
"fcntl(2) - manipulate a file descriptor."
(multiple-value-bind (ok error) (unix:unix-fcntl fd command arg)
(cond (ok)
(t (error "fcntl: ~A" (unix:get-unix-error-msg error))))))
(defimplementation add-sigio-handler (socket fn)
(set-sigio-handler)
(let ((fd (socket-fd socket)))
(fcntl fd unix:f-setown (unix:unix-getpid))
(let ((old-flags (fcntl fd unix:f-getfl 0)))
(fcntl fd unix:f-setfl (logior old-flags unix:fasync)))
(assert (not (assoc fd *sigio-handlers*)))
(push (cons fd fn) *sigio-handlers*)))
(defimplementation remove-sigio-handlers (socket)
(let ((fd (socket-fd socket)))
(when (assoc fd *sigio-handlers*)
(setf *sigio-handlers* (remove fd *sigio-handlers* :key #'car))
(let ((old-flags (fcntl fd unix:f-getfl 0)))
(fcntl fd unix:f-setfl (logandc2 old-flags unix:fasync)))
(sys:invalidate-descriptor fd))
(assert (not (assoc fd *sigio-handlers*)))
(when (null *sigio-handlers*)
(sys:default-interrupt :sigio))))
;;;;; SERVE-EVENT
(defimplementation add-fd-handler (socket fn)
(let ((fd (socket-fd socket)))
(sys:add-fd-handler fd :input (lambda (_) _ (funcall fn)))))
(defimplementation remove-fd-handlers (socket)
(sys:invalidate-descriptor (socket-fd socket)))
(defimplementation wait-for-input (streams &optional timeout)
(assert (member timeout '(nil t)))
(loop
(let ((ready (remove-if-not #'listen streams)))
(when ready (return ready)))
(when timeout (return nil))
(multiple-value-bind (in out) (make-pipe)
(let* ((f (constantly t))
(handlers (loop for s in (cons in (mapcar #'to-fd-stream streams))
collect (add-one-shot-handler s f))))
(unwind-protect
(let ((*interrupt-queued-handler* (lambda ()
(write-char #\! out))))
(when (check-slime-interrupts) (return :interrupt))
(sys:serve-event))
(mapc #'sys:remove-fd-handler handlers)
(close in)
(close out))))))
(defun to-fd-stream (stream)
(etypecase stream
(sys:fd-stream stream)
(synonym-stream
(to-fd-stream
(symbol-value (synonym-stream-symbol stream))))
(two-way-stream
(to-fd-stream (two-way-stream-input-stream stream)))))
(defun add-one-shot-handler (stream function)
(let (handler)
(setq handler (sys:add-fd-handler (sys:fd-stream-fd stream) :input
(lambda (fd)
(declare (ignore fd))
(sys:remove-fd-handler handler)
(funcall function stream))))))
(defun make-pipe ()
(multiple-value-bind (in out) (unix:unix-pipe)
(values (sys:make-fd-stream in :input t :buffering :none)
(sys:make-fd-stream out :output t :buffering :none))))
;;;; Stream handling
;;; XXX: How come we don't use Gray streams in CMUCL too? -luke (15/May/2004)
(defimplementation make-output-stream (write-string)
(make-slime-output-stream write-string))
(defimplementation make-input-stream (read-string)
(make-slime-input-stream read-string))
(defstruct (slime-output-stream
(:include lisp::lisp-stream
(lisp::misc #'sos/misc)
(lisp::out #'sos/write-char)
(lisp::sout #'sos/write-string))
(:conc-name sos.)
(:print-function %print-slime-output-stream)
(:constructor make-slime-output-stream (output-fn)))
(output-fn nil :type function)
(buffer (make-string 4000) :type string)
(index 0 :type kernel:index)
(column 0 :type kernel:index))
(defun %print-slime-output-stream (s stream d)
(declare (ignore d))
(print-unreadable-object (s stream :type t :identity t)))
(defun sos/write-char (stream char)
(let ((pending-output nil))
(system:without-interrupts
(let ((buffer (sos.buffer stream))
(index (sos.index stream)))
(setf (schar buffer index) char)
(setf (sos.index stream) (1+ index))
(incf (sos.column stream))
(when (char= #\newline char)
(setf (sos.column stream) 0)
#+(or)(setq pending-output (sos/reset-buffer stream))
)
(when (= index (1- (length buffer)))
(setq pending-output (sos/reset-buffer stream)))))
(when pending-output
(funcall (sos.output-fn stream) pending-output)))
char)
(defun sos/write-string (stream string start end)
(loop for i from start below end
do (sos/write-char stream (aref string i))))
(defun sos/flush (stream)
(let ((string (sos/reset-buffer stream)))
(when string
(funcall (sos.output-fn stream) string))
nil))
(defun sos/reset-buffer (stream)
(system:without-interrupts
(let ((end (sos.index stream)))
(unless (zerop end)
(prog1 (subseq (sos.buffer stream) 0 end)
(setf (sos.index stream) 0))))))
(defun sos/misc (stream operation &optional arg1 arg2)
(declare (ignore arg1 arg2))
(case operation
((:force-output :finish-output) (sos/flush stream))
(:charpos (sos.column stream))
(:line-length 75)
(:file-position nil)
(:element-type 'base-char)
(:get-command nil)
(:close nil)
(t (format *terminal-io* "~&~Astream: ~S~%" stream operation))))
(defstruct (slime-input-stream
(:include string-stream
(lisp::in #'sis/in)
(lisp::misc #'sis/misc))
(:conc-name sis.)
(:print-function %print-slime-output-stream)
(:constructor make-slime-input-stream (input-fn)))
(input-fn nil :type function)
(buffer "" :type string)
(index 0 :type kernel:index))
(defun sis/in (stream eof-errorp eof-value)
(let ((index (sis.index stream))
(buffer (sis.buffer stream)))
(when (= index (length buffer))
(let ((string (funcall (sis.input-fn stream))))
(cond ((zerop (length string))
(return-from sis/in
(if eof-errorp
(error (make-condition 'end-of-file :stream stream))
eof-value)))
(t
(setf buffer string)
(setf (sis.buffer stream) buffer)
(setf index 0)))))
(prog1 (aref buffer index)
(setf (sis.index stream) (1+ index)))))
(defun sis/misc (stream operation &optional arg1 arg2)
(declare (ignore arg2))
(ecase operation
(:file-position nil)
(:file-length nil)
(:unread (setf (aref (sis.buffer stream)
(decf (sis.index stream)))
arg1))
(:clear-input
(setf (sis.index stream) 0
(sis.buffer stream) ""))
(:listen (< (sis.index stream) (length (sis.buffer stream))))
(:charpos nil)
(:line-length nil)
(:get-command nil)
(:element-type 'base-char)
(:close nil)
(:interactive-p t)))
;;;; Compilation Commands
(defvar *previous-compiler-condition* nil
"Used to detect duplicates.")
(defvar *previous-context* nil
"Previous compiler error context.")
(defvar *buffer-name* nil
"The name of the Emacs buffer we are compiling from.
NIL if we aren't compiling from a buffer.")
(defvar *buffer-start-position* nil)
(defvar *buffer-substring* nil)
(defimplementation call-with-compilation-hooks (function)
(let ((*previous-compiler-condition* nil)
(*previous-context* nil)
(*print-readably* nil))
(handler-bind ((c::compiler-error #'handle-notification-condition)
(c::style-warning #'handle-notification-condition)
(c::warning #'handle-notification-condition))
(funcall function))))
(defimplementation swank-compile-file (input-file output-file
load-p external-format)
(declare (ignore external-format))
(clear-xref-info input-file)
(with-compilation-hooks ()
(let ((*buffer-name* nil)
(ext:*ignore-extra-close-parentheses* nil))
(multiple-value-bind (output-file warnings-p failure-p)
(compile-file input-file :output-file output-file)
(values output-file warnings-p
(or failure-p
(when load-p
;; Cache the latest source file for definition-finding.
(source-cache-get input-file
(file-write-date input-file))
(not (load output-file)))))))))
(defimplementation swank-compile-string (string &key buffer position filename
policy)
(declare (ignore filename policy))
(with-compilation-hooks ()
(let ((*buffer-name* buffer)
(*buffer-start-position* position)
(*buffer-substring* string)
(source-info (list :emacs-buffer buffer
:emacs-buffer-offset position
:emacs-buffer-string string)))
(with-input-from-string (stream string)
(let ((failurep (ext:compile-from-stream stream :source-info
source-info)))
(not failurep))))))
;;;;; Trapping notes
;;;
;;; We intercept conditions from the compiler and resignal them as
;;; `SWANK:COMPILER-CONDITION's.
(defun handle-notification-condition (condition)
"Handle a condition caused by a compiler warning."
(unless (eq condition *previous-compiler-condition*)
(let ((context (c::find-error-context nil)))
(setq *previous-compiler-condition* condition)
(setq *previous-context* context)
(signal-compiler-condition condition context))))
(defun signal-compiler-condition (condition context)
(signal (make-condition
'compiler-condition
:original-condition condition
:severity (severity-for-emacs condition)
:short-message (brief-compiler-message-for-emacs condition)
:message (long-compiler-message-for-emacs condition context)
:location (if (read-error-p condition)
(read-error-location condition)
(compiler-note-location context)))))
(defun severity-for-emacs (condition)
"Return the severity of CONDITION."
(etypecase condition
((satisfies read-error-p) :read-error)
(c::compiler-error :error)
(c::style-warning :note)
(c::warning :warning)))
(defun read-error-p (condition)
(eq (type-of condition) 'c::compiler-read-error))
(defun brief-compiler-message-for-emacs (condition)
"Briefly describe a compiler error for Emacs.
When Emacs presents the message it already has the source popped up
and the source form highlighted. This makes much of the information in
the error-context redundant."
(princ-to-string condition))
(defun long-compiler-message-for-emacs (condition error-context)
"Describe a compiler error for Emacs including context information."
(declare (type (or c::compiler-error-context null) error-context))
(multiple-value-bind (enclosing source)
(if error-context
(values (c::compiler-error-context-enclosing-source error-context)
(c::compiler-error-context-source error-context)))
(format nil "~@[--> ~{~<~%--> ~1:;~A~> ~}~%~]~@[~{==>~%~A~^~%~}~]~A"
enclosing source condition)))
(defun read-error-location (condition)
(let* ((finfo (car (c::source-info-current-file c::*source-info*)))
(file (c::file-info-name finfo))
(pos (c::compiler-read-error-position condition)))
(cond ((and (eq file :stream) *buffer-name*)
(make-location (list :buffer *buffer-name*)
(list :offset *buffer-start-position* pos)))
((and (pathnamep file) (not *buffer-name*))
(make-location (list :file (unix-truename file))
(list :position (1+ pos))))
(t (break)))))
(defun compiler-note-location (context)
"Derive the location of a complier message from its context.
Return a `location' record, or (:error REASON) on failure."
(if (null context)
(note-error-location)
(with-struct (c::compiler-error-context- file-name
original-source
original-source-path) context
(or (locate-compiler-note file-name original-source
(reverse original-source-path))
(note-error-location)))))
(defun note-error-location ()
"Pseudo-location for notes that can't be located."
(cond (*compile-file-truename*
(make-location (list :file (unix-truename *compile-file-truename*))
(list :eof)))
(*buffer-name*
(make-location (list :buffer *buffer-name*)
(list :position *buffer-start-position*)))
(t (list :error "No error location available."))))
(defun locate-compiler-note (file source source-path)
(cond ((and (eq file :stream) *buffer-name*)
;; Compiling from a buffer
(make-location (list :buffer *buffer-name*)
(list :offset *buffer-start-position*
(source-path-string-position
source-path *buffer-substring*))))
((and (pathnamep file) (null *buffer-name*))
;; Compiling from a file
(make-location (list :file (unix-truename file))
(list :position (1+ (source-path-file-position
source-path file)))))
((and (eq file :lisp) (stringp source))
;; No location known, but we have the source form.
;; XXX How is this case triggered? -luke (16/May/2004)
;; This can happen if the compiler needs to expand a macro
;; but the macro-expander is not yet compiled. Calling the
;; (interpreted) macro-expander triggers IR1 conversion of
;; the lambda expression for the expander and invokes the
;; compiler recursively.
(make-location (list :source-form source)
(list :position 1)))))
(defun unix-truename (pathname)
(ext:unix-namestring (truename pathname)))
;;;; XREF
;;;
;;; Cross-reference support is based on the standard CMUCL `XREF'
;;; package. This package has some caveats: XREF information is
;;; recorded during compilation and not preserved in fasl files, and
;;; XREF recording is disabled by default. Redefining functions can
;;; also cause duplicate references to accumulate, but
;;; `swank-compile-file' will automatically clear out any old records
;;; from the same filename.
;;;
;;; To enable XREF recording, set `c:*record-xref-info*' to true. To
;;; clear out the XREF database call `xref:init-xref-database'.
(defmacro defxref (name function)
`(defimplementation ,name (name)
(xref-results (,function name))))
(defxref who-calls xref:who-calls)
(defxref who-references xref:who-references)
(defxref who-binds xref:who-binds)
(defxref who-sets xref:who-sets)
;;; More types of XREF information were added since 18e:
;;;
#+cmu19
(progn
(defxref who-macroexpands xref:who-macroexpands)
;; XXX
(defimplementation who-specializes (symbol)
(let* ((methods (xref::who-specializes (find-class symbol)))
(locations (mapcar #'method-location methods)))
(mapcar #'list methods locations))))
(defun xref-results (contexts)
(mapcar (lambda (xref)
(list (xref:xref-context-name xref)
(resolve-xref-location xref)))
contexts))
(defun resolve-xref-location (xref)
(let ((name (xref:xref-context-name xref))
(file (xref:xref-context-file xref))
(source-path (xref:xref-context-source-path xref)))
(cond ((and file source-path)
(let ((position (source-path-file-position source-path file)))
(make-location (list :file (unix-truename file))
(list :position (1+ position)))))
(file
(make-location (list :file (unix-truename file))
(list :function-name (string name))))
(t
`(:error ,(format nil "Unknown source location: ~S ~S ~S "
name file source-path))))))
(defun clear-xref-info (namestring)
"Clear XREF notes pertaining to NAMESTRING.
This is a workaround for a CMUCL bug: XREF records are cumulative."
(when c:*record-xref-info*
(let ((filename (truename namestring)))
(dolist (db (list xref::*who-calls*
#+cmu19 xref::*who-is-called*
#+cmu19 xref::*who-macroexpands*
xref::*who-references*
xref::*who-binds*
xref::*who-sets*))
(maphash (lambda (target contexts)
;; XXX update during traversal?
(setf (gethash target db)
(delete filename contexts
:key #'xref:xref-context-file
:test #'equalp)))
db)))))
;;;; Find callers and callees
;;;
;;; Find callers and callees by looking at the constant pool of
;;; compiled code objects. We assume every fdefn object in the
;;; constant pool corresponds to a call to that function. A better
;;; strategy would be to use the disassembler to find actual
;;; call-sites.
(labels ((make-stack () (make-array 100 :fill-pointer 0 :adjustable t))
(map-cpool (code fun)
(declare (type kernel:code-component code) (type function fun))
(loop for i from vm:code-constants-offset
below (kernel:get-header-data code)
do (funcall fun (kernel:code-header-ref code i))))
(callees (fun)
(let ((callees (make-stack)))
(map-cpool (vm::find-code-object fun)
(lambda (o)
(when (kernel:fdefn-p o)
(vector-push-extend (kernel:fdefn-function o)
callees))))
(coerce callees 'list)))
(callers (fun)
(declare (function fun))
(let ((callers (make-stack)))
(ext:gc :full t)
;; scan :dynamic first to avoid the need for even more gcing
(dolist (space '(:dynamic :read-only :static))
(vm::map-allocated-objects
(lambda (obj header size)
(declare (type fixnum header) (ignore size))
(when (= vm:code-header-type header)
(map-cpool obj
(lambda (c)
(when (and (kernel:fdefn-p c)
(eq (kernel:fdefn-function c) fun))
(vector-push-extend obj callers))))))
space)
(ext:gc))
(coerce callers 'list)))
(entry-points (code)
(loop for entry = (kernel:%code-entry-points code)
then (kernel::%function-next entry)
while entry
collect entry))
(guess-main-entry-point (entry-points)
(or (find-if (lambda (fun)
(ext:valid-function-name-p
(kernel:%function-name fun)))
entry-points)
(car entry-points)))
(fun-dspec (fun)
(list (kernel:%function-name fun) (function-location fun)))
(code-dspec (code)
(let ((eps (entry-points code))
(di (kernel:%code-debug-info code)))
(cond (eps (fun-dspec (guess-main-entry-point eps)))
(di (list (c::debug-info-name di)
(debug-info-function-name-location di)))
(t (list (princ-to-string code)
`(:error "No src-loc available")))))))
(declare (inline map-cpool))
(defimplementation list-callers (symbol)
(mapcar #'code-dspec (callers (coerce symbol 'function) )))
(defimplementation list-callees (symbol)
(mapcar #'fun-dspec (callees symbol))))
(defun test-list-callers (count)
(let ((funsyms '()))
(do-all-symbols (s)
(when (and (fboundp s)
(functionp (symbol-function s))
(not (macro-function s))
(not (special-operator-p s)))
(push s funsyms)))
(let ((len (length funsyms)))
(dotimes (i count)
(let ((sym (nth (random len) funsyms)))
(format t "~s -> ~a~%" sym (mapcar #'car (list-callers sym))))))))
;; (test-list-callers 100)
;;;; Resolving source locations
;;;
;;; Our mission here is to "resolve" references to code locations into
;;; actual file/buffer names and character positions. The references
;;; we work from come out of the compiler's statically-generated debug
;;; information, such as `code-location''s and `debug-source''s. For
;;; more details, see the "Debugger Programmer's Interface" section of
;;; the CMUCL manual.
;;;
;;; The first step is usually to find the corresponding "source-path"
;;; for the location. Once we have the source-path we can pull up the
;;; source file and `READ' our way through to the right position. The
;;; main source-code groveling work is done in
;;; `swank-source-path-parser.lisp'.
(defvar *debug-definition-finding* nil
"When true don't handle errors while looking for definitions.
This is useful when debugging the definition-finding code.")
(defvar *source-snippet-size* 256
"Maximum number of characters in a snippet of source code.
Snippets at the beginning of definitions are used to tell Emacs what
the definitions looks like, so that it can accurately find them by
text search.")
(defmacro safe-definition-finding (&body body)
"Execute BODY and return the source-location it returns.
If an error occurs and `*debug-definition-finding*' is false, then
return an error pseudo-location.
The second return value is NIL if no error occurs, otherwise it is the
condition object."
`(flet ((body () ,@body))
(if *debug-definition-finding*
(body)
(handler-case (values (progn ,@body) nil)
(error (c) (values `(:error ,(trim-whitespace (princ-to-string c)))
c))))))
(defun trim-whitespace (string)
(string-trim #(#\newline #\space #\tab) string))
(defun code-location-source-location (code-location)
"Safe wrapper around `code-location-from-source-location'."
(safe-definition-finding
(source-location-from-code-location code-location)))
(defun source-location-from-code-location (code-location)
"Return the source location for CODE-LOCATION."
(let ((debug-fun (di:code-location-debug-function code-location)))
(when (di::bogus-debug-function-p debug-fun)
;; Those lousy cheapskates! They've put in a bogus debug source
;; because the code was compiled at a low debug setting.
(error "Bogus debug function: ~A" debug-fun)))
(let* ((debug-source (di:code-location-debug-source code-location))
(from (di:debug-source-from debug-source))
(name (di:debug-source-name debug-source)))
(ecase from
(:file
(location-in-file name code-location debug-source))
(:stream
(location-in-stream code-location debug-source))
(:lisp
;; The location comes from a form passed to `compile'.
;; The best we can do is return the form itself for printing.
(make-location
(list :source-form (with-output-to-string (*standard-output*)
(debug::print-code-location-source-form
code-location 100 t)))
(list :position 1))))))
(defun location-in-file (filename code-location debug-source)
"Resolve the source location for CODE-LOCATION in FILENAME."
(let* ((code-date (di:debug-source-created debug-source))
(source-code (get-source-code filename code-date)))
(with-input-from-string (s source-code)
(make-location (list :file (unix-truename filename))
(list :position (1+ (code-location-stream-position
code-location s)))
`(:snippet ,(read-snippet s))))))
(defun location-in-stream (code-location debug-source)
"Resolve the source location for a CODE-LOCATION from a stream.
This only succeeds if the code was compiled from an Emacs buffer."
(unless (debug-source-info-from-emacs-buffer-p debug-source)
(error "The code is compiled from a non-SLIME stream."))
(let* ((info (c::debug-source-info debug-source))
(string (getf info :emacs-buffer-string))
(position (code-location-string-offset
code-location
string)))
(make-location
(list :buffer (getf info :emacs-buffer))
(list :offset (getf info :emacs-buffer-offset) position)
(list :snippet (with-input-from-string (s string)
(file-position s position)
(read-snippet s))))))
;;;;; Function-name locations
;;;
(defun debug-info-function-name-location (debug-info)
"Return a function-name source-location for DEBUG-INFO.
Function-name source-locations are a fallback for when precise
positions aren't available."
(with-struct (c::debug-info- (fname name) source) debug-info
(with-struct (c::debug-source- info from name) (car source)
(ecase from
(:file
(make-location (list :file (namestring (truename name)))
(list :function-name (string fname))))
(:stream
(assert (debug-source-info-from-emacs-buffer-p (car source)))
(make-location (list :buffer (getf info :emacs-buffer))
(list :function-name (string fname))))
(:lisp
(make-location (list :source-form (princ-to-string (aref name 0)))
(list :position 1)))))))
(defun debug-source-info-from-emacs-buffer-p (debug-source)
"Does the `info' slot of DEBUG-SOURCE contain an Emacs buffer location?
This is true for functions that were compiled directly from buffers."
(info-from-emacs-buffer-p (c::debug-source-info debug-source)))
(defun info-from-emacs-buffer-p (info)
(and info
(consp info)
(eq :emacs-buffer (car info))))
;;;;; Groveling source-code for positions
(defun code-location-stream-position (code-location stream)
"Return the byte offset of CODE-LOCATION in STREAM. Extract the
toplevel-form-number and form-number from CODE-LOCATION and use that
to find the position of the corresponding form.
Finish with STREAM positioned at the start of the code location."
(let* ((location (debug::maybe-block-start-location code-location))
(tlf-offset (di:code-location-top-level-form-offset location))
(form-number (di:code-location-form-number location)))
(let ((pos (form-number-stream-position tlf-offset form-number stream)))
(file-position stream pos)
pos)))
(defun form-number-stream-position (tlf-number form-number stream)
"Return the starting character position of a form in STREAM.
TLF-NUMBER is the top-level-form number.
FORM-NUMBER is an index into a source-path table for the TLF."
(multiple-value-bind (tlf position-map) (read-source-form tlf-number stream)
(let* ((path-table (di:form-number-translations tlf 0))
(source-path
(if (<= (length path-table) form-number) ; source out of sync?
(list 0) ; should probably signal a condition
(reverse (cdr (aref path-table form-number))))))
(source-path-source-position source-path tlf position-map))))
(defun code-location-string-offset (code-location string)
"Return the byte offset of CODE-LOCATION in STRING.
See CODE-LOCATION-STREAM-POSITION."
(with-input-from-string (s string)
(code-location-stream-position code-location s)))
;;;; Finding definitions
;;; There are a great many different types of definition for us to
;;; find. We search for definitions of every kind and return them in a
;;; list.
(defimplementation find-definitions (name)
(append (function-definitions name)
(setf-definitions name)
(variable-definitions name)
(class-definitions name)
(type-definitions name)
(compiler-macro-definitions name)
(source-transform-definitions name)
(function-info-definitions name)
(ir1-translator-definitions name)))
;;;;; Functions, macros, generic functions, methods
;;;
;;; We make extensive use of the compile-time debug information that
;;; CMUCL records, in particular "debug functions" and "code
;;; locations." Refer to the "Debugger Programmer's Interface" section
;;; of the CMUCL manual for more details.
(defun function-definitions (name)
"Return definitions for NAME in the \"function namespace\", i.e.,
regular functions, generic functions, methods and macros.
NAME can any valid function name (e.g, (setf car))."
(let ((macro? (and (symbolp name) (macro-function name)))
(special? (and (symbolp name) (special-operator-p name)))
(function? (and (ext:valid-function-name-p name)
(ext:info :function :definition name)
(if (symbolp name) (fboundp name) t))))
(cond (macro?
(list `((defmacro ,name)
,(function-location (macro-function name)))))
(special?
(list `((:special-operator ,name)
(:error ,(format nil "Special operator: ~S" name)))))
(function?
(let ((function (fdefinition name)))
(if (genericp function)
(generic-function-definitions name function)
(list (list `(function ,name)
(function-location function)))))))))
;;;;;; Ordinary (non-generic/macro/special) functions
;;;
;;; First we test if FUNCTION is a closure created by defstruct, and
;;; if so extract the defstruct-description (`dd') from the closure
;;; and find the constructor for the struct. Defstruct creates a
;;; defun for the default constructor and we use that as an
;;; approximation to the source location of the defstruct.
;;;
;;; For an ordinary function we return the source location of the
;;; first code-location we find.
;;;
(defun function-location (function)
"Return the source location for FUNCTION."
(cond ((struct-closure-p function)
(struct-closure-location function))
((c::byte-function-or-closure-p function)
(byte-function-location function))
(t
(compiled-function-location function))))
(defun compiled-function-location (function)
"Return the location of a regular compiled function."
(multiple-value-bind (code-location error)
(safe-definition-finding (function-first-code-location function))
(cond (error (list :error (princ-to-string error)))
(t (code-location-source-location code-location)))))
(defun function-first-code-location (function)
"Return the first code-location we can find for FUNCTION."
(and (function-has-debug-function-p function)
(di:debug-function-start-location
(di:function-debug-function function))))
(defun function-has-debug-function-p (function)
(di:function-debug-function function))
(defun function-code-object= (closure function)
(and (eq (vm::find-code-object closure)
(vm::find-code-object function))
(not (eq closure function))))
(defun byte-function-location (fun)
"Return the location of the byte-compiled function FUN."
(etypecase fun
((or c::hairy-byte-function c::simple-byte-function)
(let* ((di (kernel:%code-debug-info (c::byte-function-component fun))))
(if di
(debug-info-function-name-location di)
`(:error
,(format nil "Byte-function without debug-info: ~a" fun)))))
(c::byte-closure
(byte-function-location (c::byte-closure-function fun)))))
;;; Here we deal with structure accessors. Note that `dd' is a
;;; "defstruct descriptor" structure in CMUCL. A `dd' describes a
;;; `defstruct''d structure.
(defun struct-closure-p (function)
"Is FUNCTION a closure created by defstruct?"
(or (function-code-object= function #'kernel::structure-slot-accessor)
(function-code-object= function #'kernel::structure-slot-setter)
(function-code-object= function #'kernel::%defstruct)))
(defun struct-closure-location (function)
"Return the location of the structure that FUNCTION belongs to."
(assert (struct-closure-p function))
(safe-definition-finding
(dd-location (struct-closure-dd function))))
(defun struct-closure-dd (function)
"Return the defstruct-definition (dd) of FUNCTION."
(assert (= (kernel:get-type function) vm:closure-header-type))
(flet ((find-layout (function)
(sys:find-if-in-closure
(lambda (x)
(let ((value (if (di::indirect-value-cell-p x)
(c:value-cell-ref x)
x)))
(when (kernel::layout-p value)
(return-from find-layout value))))
function)))
(kernel:layout-info (find-layout function))))
(defun dd-location (dd)
"Return the location of a `defstruct'."
;; Find the location in a constructor.
(function-location (struct-constructor dd)))
(defun struct-constructor (dd)
"Return a constructor function from a defstruct definition.
Signal an error if no constructor can be found."
(let ((constructor (or (kernel:dd-default-constructor dd)
(car (kernel::dd-constructors dd)))))
(when (or (null constructor)
(and (consp constructor) (null (car constructor))))
(error "Cannot find structure's constructor: ~S"
(kernel::dd-name dd)))
(coerce (if (consp constructor) (first constructor) constructor)
'function)))
;;;;;; Generic functions and methods
(defun generic-function-definitions (name function)
"Return the definitions of a generic function and its methods."
(cons (list `(defgeneric ,name) (gf-location function))
(gf-method-definitions function)))
(defun gf-location (gf)
"Return the location of the generic function GF."
(definition-source-location gf (pcl::generic-function-name gf)))
(defun gf-method-definitions (gf)
"Return the locations of all methods of the generic function GF."
(mapcar #'method-definition (pcl::generic-function-methods gf)))
(defun method-definition (method)
(list (method-dspec method)
(method-location method)))
(defun method-dspec (method)
"Return a human-readable \"definition specifier\" for METHOD."
(let* ((gf (pcl:method-generic-function method))
(name (pcl:generic-function-name gf))
(specializers (pcl:method-specializers method))
(qualifiers (pcl:method-qualifiers method)))
`(method ,name ,@qualifiers ,(pcl::unparse-specializers specializers))))
;; XXX maybe special case setters/getters
(defun method-location (method)
(function-location (or (pcl::method-fast-function method)
(pcl:method-function method))))
(defun genericp (fn)
(typep fn 'generic-function))
;;;;;; Types and classes
(defun type-definitions (name)
"Return `deftype' locations for type NAME."
(maybe-make-definition (ext:info :type :expander name) 'deftype name))
(defun maybe-make-definition (function kind name)
"If FUNCTION is non-nil then return its definition location."
(if function
(list (list `(,kind ,name) (function-location function)))))
(defun class-definitions (name)
"Return the definition locations for the class called NAME."
(if (symbolp name)
(let ((class (kernel::find-class name nil)))
(etypecase class
(null '())
(kernel::structure-class
(list (list `(defstruct ,name) (dd-location (find-dd name)))))
#+(or)
(conditions::condition-class
(list (list `(define-condition ,name)
(condition-class-location class))))