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
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
|
;;; sdcdbsrc.el -- Source-based (as opposed to comint-based) debugger
;; interaction mode eventually, this will be unified with GUD
;; (after gud works reliably w/ XEmacs...)
;; Keywords: c, unix, tools, debugging
;; Copyright (C) 1990 Debby Ayers <ayers@austin.ibm.com>, and
;; Rich Schaefer <schaefer@asc.slb.com>
;; Copyright (C) 1994, 1995 Tinker Systems and INS Engineering Corp.
;;
;; Copyright (C) 1999 Sandeep Dutta <sandeep.dutta@usa.net>
;;
;; This file is part of XEmacs.
;;
;; XEmacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;;
;; XEmacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with XEmacs; if not, write to the Free Software
;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;; Based upon code for version18 by Debra Ayers <ayers@austin.ibm.com>
;;; SDCDBSRC::
;;; Sdcdbsrc extends the emacs SDCDB interface to accept sdcdb commands issued
;;; from the source code buffer. Sdcdbsrc behaves similar to sdcdb except
;;; now most debugging may be done from the source code using the *sdcdb*
;;; buffer to view output. Supports a point and click model under X to
;;; evaluate source code expressions (no more typing long variable names).
;;;
;;; Supports C source at the moment but C++ support will be added if there
;;; is sufficient interest.
;;;
;; SDCDBSRC::Sdcdb Source Mode Interface description.
;; Sdcdbsrc extends the emacs SDCDB interface to accept sdcdb commands issued
;; from the source code buffer. Sdcdbsrc behaves similar to sdcdb except now all
;; debugging may be done from the currently focused source buffer using
;; the *sdcdb* buffer to view output.
;; When source files are displayed through sdcdbsrc, buffers are put in
;; sdcdbsrc-mode minor mode. This mode puts the buffer in read-only state
;; and sets up a special key and mouse map to invoke communication with
;; the current sdcdb process. The minor mode may be toggled on/off as needed.
;; (ESC-T)
;; C-expressions may be evaluated by sdcdbsrc by simply pointing at text in the
;; current source buffer with the mouse or by centering the cursor over text
;; and typing a single key command. ('p' for print, '*' for print *).
;; As code is debugged and new buffers are displayed, the focus of sdcdbsrc
;; follows to each new source buffer. Makes debugging fun. (sound like a
;; commercial or what!)
;;
;; Current Listing ::
;;key binding Comment
;;--- ------- -------
;;
;; r sdcdb-return-from-src SDCDB return command
;; n sdcdb-next-from-src SDCDB next command
;; b sdcdb-back-from-src SDCDB back command
;; w sdcdb-where-from-src SDCDB where command
;; f sdcdb-finish-from-src SDCDB finish command
;; u sdcdb-up-from-src SDCDB up command
;; d sdcdb-down-from-src SDCDB down command
;; c sdcdb-cont-from-src SDCDB continue command
;; i sdcdb-stepi-from-src SDCDB step instruction command
;; s sdcdb-step-from-src SDCDB step command
;; ? sdcdb-whatis-c-sexp SDCDB whatis command for data at
;; buffer point
;; x sdcdbsrc-delete SDCDB Delete all breakpoints if no arg
;; given or delete arg (C-u arg x)
;; m sdcdbsrc-frame SDCDB Display current frame if no arg,
;; given or display frame arg
;; * sdcdb-*print-c-sexp SDCDB print * command for data at
;; buffer point
;; ! sdcdbsrc-goto-sdcdb Goto the SDCDB output buffer
;; p sdcdb-print-c-sexp SDCDB print * command for data at
;; buffer point
;; g sdcdbsrc-goto-sdcdb Goto the SDCDB output buffer
;; t sdcdbsrc-mode Toggles Sdcdbsrc mode (turns it off)
;;
;; C-c C-f sdcdb-finish-from-src SDCDB finish command
;;
;; C-x SPC sdcdb-break Set break for line with point
;; ESC t sdcdbsrc-mode Toggle Sdcdbsrc mode
;; ESC m sdcdbsrc-srcmode Toggle list mode
;;
;; Local Bindings for buffer when you exit Sdcdbsrc minor mode
;;
;; C-x SPC sdcdb-break Set break for line with point
;; ESC t sdcdbsrc-mode Toggle Sdcdbsrc mode
;;
;;; (eval-when-compile
;;; (or noninteractive
;;; (progn
;;; (message "ONLY compile sdcdbsrc except with -batch because of advice")
;;; (ding)
;;; )))
;;; sdcdb.el --- run sdcdb under Emacs
;; Author: W. Schelter, University of Texas
;; wfs@rascal.ics.utexas.edu
;; Rewritten by rms.
;; Keywords: c, unix, tools, debugging
;; Some ideas are due to Masanobu.
;; This file is part of XEmacs.
;; XEmacs is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; XEmacs is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with XEmacs; see the file COPYING. If not, write to the Free
;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
;; 02111-1307, USA.
;;; Synched up with: Not in FSF
;;; Commentary:
;; Description of SDCDB interface:
;; A facility is provided for the simultaneous display of the source code
;; in one window, while using sdcdb to step through a function in the
;; other. A small arrow in the source window, indicates the current
;; line.
;; Starting up:
;; In order to use this facility, invoke the command SDCDB to obtain a
;; shell window with the appropriate command bindings. You will be asked
;; for the name of a file to run. Sdcdb will be invoked on this file, in a
;; window named *sdcdb-foo* if the file is foo.
;; M-s steps by one line, and redisplays the source file and line.
;; You may easily create additional commands and bindings to interact
;; with the display. For example to put the sdcdb command next on \M-n
;; (def-sdcdb next "\M-n")
;; This causes the emacs command sdcdb-next to be defined, and runs
;; sdcdb-display-frame after the command.
;; sdcdb-display-frame is the basic display function. It tries to display
;; in the other window, the file and line corresponding to the current
;; position in the sdcdb window. For example after a sdcdb-step, it would
;; display the line corresponding to the position for the last step. Or
;; if you have done a backtrace in the sdcdb buffer, and move the cursor
;; into one of the frames, it would display the position corresponding to
;; that frame.
;; sdcdb-display-frame is invoked automatically when a filename-and-line-number
;; appears in the output.
;;; Code:
(require 'comint)
(require 'shell)
(condition-case nil
(if (featurep 'toolbar)
(require 'eos-toolbar "sun-eos-toolbar"))
(error nil))
(defvar sdcdb-last-frame)
(defvar sdcdb-delete-prompt-marker)
(defvar sdcdb-filter-accumulator)
(defvar sdcdb-last-frame-displayed-p)
(defvar sdcdb-arrow-extent nil)
(or (fboundp 'make-glyph) (fset 'make-glyph 'identity)) ; work w/ pre beta v12
(defvar sdcdb-arrow-glyph (make-glyph "=>"))
(make-face 'sdcdb-arrow-face)
(or (face-differs-from-default-p 'sdcdb-arrow-face)
;; Usually has a better default value than highlight does
(copy-face 'isearch 'sdcdb-arrow-face))
;; Hooks can side-effect extent arg to change extent properties
(defvar sdcdb-arrow-extent-hooks '())
(defvar sdcdb-prompt-pattern "^>\\|^(.*sdcdb[+]?) *\\|^---Type <return> to.*--- *"
"A regexp to recognize the prompt for sdcdb or sdcdb+.")
(defvar sdcdb-mode-map nil
"Keymap for sdcdb-mode.")
(defvar sdcdb-toolbar nil)
(if sdcdb-mode-map
nil
(setq sdcdb-mode-map (make-sparse-keymap))
(set-keymap-name sdcdb-mode-map 'sdcdb-mode-map)
(set-keymap-parents sdcdb-mode-map (list comint-mode-map))
(define-key sdcdb-mode-map "\C-l" 'sdcdb-refresh)
(define-key sdcdb-mode-map "\C-c\C-c" 'sdcdb-control-c-subjob)
(define-key sdcdb-mode-map "\t" 'comint-dynamic-complete)
(define-key sdcdb-mode-map "\M-?" 'comint-dynamic-list-completions))
(define-key ctl-x-map " " 'sdcdb-break)
(define-key ctl-x-map "&" 'send-sdcdb-command)
;;Of course you may use `def-sdcdb' with any other sdcdb command, including
;;user defined ones.
(defmacro def-sdcdb (name key &optional doc &rest forms)
(let* ((fun (intern (format "sdcdb-%s" name)))
(cstr (list 'if '(not (= 1 arg))
(list 'format "%s %s" name 'arg)
name)))
(list 'progn
(nconc (list 'defun fun '(arg)
(or doc "")
'(interactive "p")
(list 'sdcdb-call cstr))
forms)
(and key (list 'define-key 'sdcdb-mode-map key (list 'quote fun))))))
(def-sdcdb "step" "\M-s" "Step one source line with display"
(sdcdb-delete-arrow-extent))
(def-sdcdb "stepi" "\M-i" "Step one instruction with display"
(sdcdb-delete-arrow-extent))
(def-sdcdb "finish" "\C-c\C-f" "Finish executing current function"
(sdcdb-delete-arrow-extent))
(def-sdcdb "run" nil "Run the current program"
(sdcdb-delete-arrow-extent))
;;"next" and "cont" were bound to M-n and M-c in Emacs 18, but these are
;;poor choices, since M-n is used for history navigation and M-c is
;;capitalize-word. These are defined without key bindings so that users
;;may choose their own bindings.
(def-sdcdb "next" "\C-c\C-n" "Step one source line (skip functions)"
(sdcdb-delete-arrow-extent))
(def-sdcdb "cont" "\C-c\M-c" "Proceed with the program"
(sdcdb-delete-arrow-extent))
(def-sdcdb "up" "\C-c<" "Go up N stack frames (numeric arg) with display")
(def-sdcdb "down" "\C-c>" "Go down N stack frames (numeric arg) with display")
(defvar sdcdb-display-mode nil
"Minor mode for sdcdb frame display")
(or (assq 'sdcdb-display-mode minor-mode-alist)
(setq minor-mode-alist
(purecopy
(append minor-mode-alist
'((sdcdb-display-mode " Frame"))))))
(defun sdcdb-display-mode (&optional arg)
"Toggle SDCDB Frame display mode
With arg, turn display mode on if and only if arg is positive.
In the display minor mode, source file are displayed in another
window for repective \\[sdcdb-display-frame] commands."
(interactive "P")
(setq sdcdb-display-mode (if (null arg)
(not sdcdb-display-mode)
(> (prefix-numeric-value arg) 0))))
;; Using cc-mode's syntax table is broken.
(defvar sdcdb-mode-syntax-table nil
"Syntax table for SDCDB mode.")
;; This is adapted from CC Mode 5.11.
(unless sdcdb-mode-syntax-table
(setq sdcdb-mode-syntax-table (make-syntax-table))
;; DO NOT TRY TO SET _ (UNDERSCORE) TO WORD CLASS!
(modify-syntax-entry ?_ "_" sdcdb-mode-syntax-table)
(modify-syntax-entry ?\\ "\\" sdcdb-mode-syntax-table)
(modify-syntax-entry ?+ "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?- "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?= "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?% "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?< "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?> "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?& "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?| "." sdcdb-mode-syntax-table)
(modify-syntax-entry ?\' "\"" sdcdb-mode-syntax-table)
;; add extra comment syntax
(modify-syntax-entry ?/ ". 14" sdcdb-mode-syntax-table)
(modify-syntax-entry ?* ". 23" sdcdb-mode-syntax-table))
(defun sdcdb-mode ()
"Major mode for interacting with an inferior Sdcdb process.
The following commands are available:
\\{sdcdb-mode-map}
\\[sdcdb-display-frame] displays in the other window
the last line referred to in the sdcdb buffer. See also
\\[sdcdb-display-mode].
\\[sdcdb-step],\\[sdcdb-next], and \\[sdcdb-nexti] in the sdcdb window,
call sdcdb to step,next or nexti and then update the other window
with the current file and position.
If you are in a source file, you may select a point to break
at, by doing \\[sdcdb-break].
Commands:
Many commands are inherited from comint mode.
Additionally we have:
\\[sdcdb-display-frame] display frames file in other window
\\[sdcdb-step] advance one line in program
\\[send-sdcdb-command] used for special printing of an arg at the current point.
C-x SPACE sets break point at current line."
(interactive)
(comint-mode)
(use-local-map sdcdb-mode-map)
(set-syntax-table sdcdb-mode-syntax-table)
(make-local-variable 'sdcdb-last-frame-displayed-p)
(make-local-variable 'sdcdb-last-frame)
(make-local-variable 'sdcdb-delete-prompt-marker)
(make-local-variable 'sdcdb-display-mode)
(make-local-variable' sdcdb-filter-accumulator)
(setq sdcdb-last-frame nil
sdcdb-delete-prompt-marker nil
sdcdb-filter-accumulator nil
sdcdb-display-mode t
major-mode 'sdcdb-mode
mode-name "Inferior SDCDB"
comint-prompt-regexp sdcdb-prompt-pattern
sdcdb-last-frame-displayed-p t)
(set (make-local-variable 'shell-dirtrackp) t)
;;(make-local-variable 'sdcdb-arrow-extent)
(and (extentp sdcdb-arrow-extent)
(delete-extent sdcdb-arrow-extent))
(setq sdcdb-arrow-extent nil)
;; XEmacs change:
(make-local-hook 'kill-buffer-hook)
(add-hook 'kill-buffer-hook 'sdcdb-delete-arrow-extent nil t)
(add-hook 'comint-input-filter-functions 'shell-directory-tracker nil t)
(run-hooks 'sdcdb-mode-hook))
(defun sdcdb-delete-arrow-extent ()
(let ((inhibit-quit t))
(if sdcdb-arrow-extent
(delete-extent sdcdb-arrow-extent))
(setq sdcdb-arrow-extent nil)))
(defvar current-sdcdb-buffer nil)
;;;###autoload
(defvar sdcdb-command-name "sdcdb"
"Pathname for executing sdcdb.")
;;
;; default values should be changed as needed
;;
(defvar sdcdbsrc-cpu-type "51")
(defvar sdcdbsrc-frequency "11059200")
(defvar sdcdbsrc-serial nil)
;;;###autoload
(defun sdcdb (path &optional corefile)
"Run sdcdb on program FILE in buffer *sdcdb-FILE*.
The directory containing FILE becomes the initial working directory
and source-file directory for SDCDB. If you wish to change this, use
the SDCDB commands `cd DIR' and `directory'."
(interactive "FRun sdcdb on file: ")
(setq path (file-truename (expand-file-name path)))
(let ((file (file-name-nondirectory path)))
(switch-to-buffer (concat "*sdcdb-" file "*"))
(setq default-directory (file-name-directory path))
(or (bolp) (newline))
(insert "Current directory is " default-directory "\n")
(apply 'make-comint
(concat "sdcdb-" file)
(substitute-in-file-name sdcdb-command-name)
nil
"-cpu"
sdcdbsrc-cpu-type
"-X"
sdcdbsrc-frequency
"-fullname"
file
(and corefile (list corefile)))
(set-process-filter (get-buffer-process (current-buffer)) 'sdcdb-filter)
(set-process-sentinel (get-buffer-process (current-buffer)) 'sdcdb-sentinel)
;; XEmacs change: turn on sdcdb mode after setting up the proc filters
;; for the benefit of shell-font.el
(sdcdb-mode)
(sdcdb-set-buffer)))
;;;###autoload
(defun sdcdb-with-core (file corefile)
"Debug a program using a corefile."
(interactive "fProgram to debug: \nfCore file to use: ")
(sdcdb file corefile))
(defun sdcdb-set-buffer ()
(cond ((eq major-mode 'sdcdb-mode)
(setq current-sdcdb-buffer (current-buffer))
(if (featurep 'eos-toolbar)
(set-specifier default-toolbar (cons (current-buffer)
sdcdb-toolbar))))))
;; This function is responsible for inserting output from SDCDB
;; into the buffer.
;; Aside from inserting the text, it notices and deletes
;; each filename-and-line-number;
;; that SDCDB prints to identify the selected frame.
;; It records the filename and line number, and maybe displays that file.
(defun sdcdb-filter (proc string)
(let ((inhibit-quit t))
(save-current-buffer
(set-buffer (process-buffer proc))
(if sdcdb-filter-accumulator
(sdcdb-filter-accumulate-marker
proc (concat sdcdb-filter-accumulator string))
(sdcdb-filter-scan-input proc string)))))
(defun sdcdb-filter-accumulate-marker (proc string)
(setq sdcdb-filter-accumulator nil)
(if (> (length string) 1)
(if (= (aref string 1) ?\032)
(let ((end (string-match "\n" string)))
(if end
(progn
(let* ((first-colon (string-match ":" string 2))
(second-colon
(string-match ":" string (1+ first-colon))))
(setq sdcdb-last-frame
(cons (substring string 2 first-colon)
(string-to-int
(substring string (1+ first-colon)
second-colon)))))
(setq sdcdb-last-frame-displayed-p nil)
(sdcdb-filter-scan-input proc
(substring string (1+ end))))
(setq sdcdb-filter-accumulator string)))
(sdcdb-filter-insert proc "\032")
(sdcdb-filter-scan-input proc (substring string 1)))
(setq sdcdb-filter-accumulator string)))
(defun sdcdb-filter-scan-input (proc string)
(if (equal string "")
(setq sdcdb-filter-accumulator nil)
(let ((start (string-match "\032" string)))
(if start
(progn (sdcdb-filter-insert proc (substring string 0 start))
(sdcdb-filter-accumulate-marker proc
(substring string start)))
(sdcdb-filter-insert proc string)))))
(defun sdcdb-filter-insert (proc string)
(let ((moving (= (point) (process-mark proc)))
(output-after-point (< (point) (process-mark proc))))
(save-excursion
;; Insert the text, moving the process-marker.
(goto-char (process-mark proc))
(insert-before-markers string)
(set-marker (process-mark proc) (point))
(sdcdb-maybe-delete-prompt)
;; Check for a filename-and-line number.
(sdcdb-display-frame
;; Don't display the specified file
;; unless (1) point is at or after the position where output appears
;; and (2) this buffer is on the screen.
(or output-after-point
(not (get-buffer-window (current-buffer))))
;; Display a file only when a new filename-and-line-number appears.
t))
(if moving (goto-char (process-mark proc))))
(let (s)
(if (and (should-use-dialog-box-p)
(setq s (or (string-match " (y or n) *\\'" string)
(string-match " (yes or no) *\\'" string))))
(sdcdb-mouse-prompt-hack (substring string 0 s) (current-buffer))))
)
(defun sdcdb-mouse-prompt-hack (prompt buffer)
(popup-dialog-box
(list prompt
(vector "Yes" (list 'sdcdb-mouse-prompt-hack-answer 't buffer) t)
(vector "No" (list 'sdcdb-mouse-prompt-hack-answer 'nil buffer) t)
nil
(vector "Cancel" (list 'sdcdb-mouse-prompt-hack-answer 'nil buffer) t)
)))
(defun sdcdb-mouse-prompt-hack-answer (answer buffer)
(let ((b (current-buffer)))
(unwind-protect
(progn
(set-buffer buffer)
(goto-char (process-mark (get-buffer-process buffer)))
(delete-region (point) (point-max))
(insert (if answer "yes" "no"))
(comint-send-input))
(set-buffer b))))
(defun sdcdb-sentinel (proc msg)
(cond ((null (buffer-name (process-buffer proc)))
;; buffer killed
;; Stop displaying an arrow in a source file.
;(setq overlay-arrow-position nil) -- done by kill-buffer-hook
(set-process-buffer proc nil))
((memq (process-status proc) '(signal exit))
;; Stop displaying an arrow in a source file.
(sdcdb-delete-arrow-extent)
;; Fix the mode line.
(setq modeline-process
(concat ": sdcdb " (symbol-name (process-status proc))))
(let* ((obuf (current-buffer)))
;; save-excursion isn't the right thing if
;; process-buffer is current-buffer
(unwind-protect
(progn
;; Write something in *compilation* and hack its mode line,
(set-buffer (process-buffer proc))
;; Force mode line redisplay soon
(set-buffer-modified-p (buffer-modified-p))
(if (eobp)
(insert ?\n mode-name " " msg)
(save-excursion
(goto-char (point-max))
(insert ?\n mode-name " " msg)))
;; If buffer and mode line will show that the process
;; is dead, we can delete it now. Otherwise it
;; will stay around until M-x list-processes.
(delete-process proc))
;; Restore old buffer, but don't restore old point
;; if obuf is the sdcdb buffer.
(set-buffer obuf))))))
(defun sdcdb-refresh (&optional arg)
"Fix up a possibly garbled display, and redraw the arrow."
(interactive "P")
(recenter arg)
(sdcdb-display-frame))
(defun sdcdb-display-frame (&optional nodisplay noauto)
"Find, obey and delete the last filename-and-line marker from SDCDB.
The marker looks like \\032\\032FILENAME:LINE:CHARPOS\\n.
Obeying it means displaying in another window the specified file and line."
(interactive)
(sdcdb-set-buffer)
(and sdcdb-last-frame (not nodisplay)
sdcdb-display-mode
(or (not sdcdb-last-frame-displayed-p) (not noauto))
(progn (sdcdb-display-line (car sdcdb-last-frame) (cdr sdcdb-last-frame))
(setq sdcdb-last-frame-displayed-p t))))
;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
;; and that its line LINE is visible.
;; Put the overlay-arrow on the line LINE in that buffer.
(defun sdcdb-display-line (true-file line &optional select-method)
;; FILE to display
;; LINE number to highlight and make visible
;; SELECT-METHOD 'source, 'debugger, or 'none. (default is 'debugger)
(and (null select-method) (setq select-method 'debugger))
(let* ((pre-display-buffer-function nil) ; screw it, put it all in one screen
(pop-up-windows t)
(source-buffer (find-file-noselect true-file))
(source-window (display-buffer source-buffer))
(debugger-window (get-buffer-window current-sdcdb-buffer))
(extent sdcdb-arrow-extent)
pos)
;; XEmacs change: make sure we find a window displaying the source file
;; even if we are already sitting in it when a breakpoint is hit.
;; Otherwise the t argument to display-buffer will prevent it from being
;; displayed.
(save-excursion
(cond ((eq select-method 'debugger)
;; might not already be displayed
(setq debugger-window (display-buffer current-sdcdb-buffer))
(select-window debugger-window))
((eq select-method 'source)
(select-window source-window))))
(and extent
(not (eq (extent-object extent) source-buffer))
(setq extent (delete-extent extent)))
(or extent
(progn
(setq extent (make-extent 1 1 source-buffer))
(set-extent-face extent 'sdcdb-arrow-face)
(set-extent-begin-glyph extent sdcdb-arrow-glyph)
(set-extent-begin-glyph-layout extent 'whitespace)
(set-extent-priority extent 2000)
(setq sdcdb-arrow-extent extent)))
(save-current-buffer
(set-buffer source-buffer)
(save-restriction
(widen)
(goto-line line)
(set-window-point source-window (point))
(setq pos (point))
(end-of-line)
(set-extent-endpoints extent pos (point))
(run-hook-with-args 'sdcdb-arrow-extent-hooks extent))
(cond ((or (< pos (point-min)) (> pos (point-max)))
(widen)
(goto-char pos))))
;; Added by Stig. It caused lots of problems for several users
;; and since its purpose is unclear it is getting commented out.
;;(and debugger-window
;; (set-window-point debugger-window pos))
))
(defun sdcdb-call (command)
"Invoke sdcdb COMMAND displaying source in other window."
(interactive)
(goto-char (point-max))
;; Record info on the last prompt in the buffer and its position.
;; This is used in sdcdb-maybe-delete-prompt
;; to prevent multiple prompts from accumulating.
(save-excursion
(goto-char (process-mark (get-buffer-process current-sdcdb-buffer)))
(let ((pt (point)))
(beginning-of-line)
(setq sdcdb-delete-prompt-marker
(if (= (point) pt)
nil
(list (point-marker) (- pt (point))
(buffer-substring (point) pt))))))
(sdcdb-set-buffer)
(process-send-string (get-buffer-process current-sdcdb-buffer)
(concat command "\n")))
(defun sdcdb-maybe-delete-prompt ()
(if sdcdb-delete-prompt-marker
;; Get the string that we used as the prompt before.
(let ((prompt (nth 2 sdcdb-delete-prompt-marker))
(length (nth 1 sdcdb-delete-prompt-marker)))
;; Position after it.
(goto-char (+ (car sdcdb-delete-prompt-marker) length))
;; Delete any duplicates of it which follow right after.
(while (and (<= (+ (point) length) (point-max))
(string= prompt
(buffer-substring (point) (+ (point) length))))
(delete-region (point) (+ (point) length)))
;; If that didn't take us to where output is arriving,
;; we have encountered something other than a prompt,
;; so stop trying to delete any more prompts.
(if (not (= (point)
(process-mark (get-buffer-process current-sdcdb-buffer))))
(progn
(set-marker (car sdcdb-delete-prompt-marker) nil)
(setq sdcdb-delete-prompt-marker nil))))))
(defun sdcdb-break (temp)
"Set SDCDB breakpoint at this source line. With ARG set temporary breakpoint."
(interactive "P")
(let* ((file-name (file-name-nondirectory buffer-file-name))
(line (save-restriction
(widen)
(beginning-of-line)
(1+ (count-lines 1 (point)))))
(cmd (concat (if temp "tbreak " "break ") file-name ":"
(int-to-string line))))
(set-buffer current-sdcdb-buffer)
(goto-char (process-mark (get-buffer-process current-sdcdb-buffer)))
(delete-region (point) (point-max))
(insert cmd)
(comint-send-input)
;;(process-send-string (get-buffer-process current-sdcdb-buffer) cmd)
))
(defun sdcdb-clear ()
"Set SDCDB breakpoint at this source line."
(interactive)
(let* ((file-name (file-name-nondirectory buffer-file-name))
(line (save-restriction
(widen)
(beginning-of-line)
(1+ (count-lines 1 (point)))))
(cmd (concat "clear " file-name ":"
(int-to-string line))))
(set-buffer current-sdcdb-buffer)
(goto-char (process-mark (get-buffer-process current-sdcdb-buffer)))
(delete-region (point) (point-max))
(insert cmd)
(comint-send-input)
;;(process-send-string (get-buffer-process current-sdcdb-buffer) cmd)
))
(defun sdcdb-read-address()
"Return a string containing the core-address found in the buffer at point."
(save-excursion
(let ((pt (point)) found begin)
(setq found (if (search-backward "0x" (- pt 7) t)(point)))
(cond (found (forward-char 2)
(buffer-substring found
(progn (re-search-forward "[^0-9a-f]")
(forward-char -1)
(point))))
(t (setq begin (progn (re-search-backward "[^0-9]") (forward-char 1)
(point)))
(forward-char 1)
(re-search-forward "[^0-9]")
(forward-char -1)
(buffer-substring begin (point)))))))
(defvar sdcdb-commands nil
"List of strings or functions used by send-sdcdb-command.
It is for customization by you.")
(defun send-sdcdb-command (arg)
"This command reads the number where the cursor is positioned. It
then inserts this ADDR at the end of the sdcdb buffer. A numeric arg
selects the ARG'th member COMMAND of the list sdcdb-print-command. If
COMMAND is a string, (format COMMAND ADDR) is inserted, otherwise
(funcall COMMAND ADDR) is inserted. eg. \"p (rtx)%s->fld[0].rtint\"
is a possible string to be a member of sdcdb-commands. "
(interactive "P")
(let (comm addr)
(if arg (setq comm (nth arg sdcdb-commands)))
(setq addr (sdcdb-read-address))
(if (eq (current-buffer) current-sdcdb-buffer)
(set-mark (point)))
(cond (comm
(setq comm
(if (stringp comm) (format comm addr) (funcall comm addr))))
(t (setq comm addr)))
(switch-to-buffer current-sdcdb-buffer)
(goto-char (point-max))
(insert comm)))
(fset 'sdcdb-control-c-subjob 'comint-interrupt-subjob)
;(defun sdcdb-control-c-subjob ()
; "Send a Control-C to the subprocess."
; (interactive)
; (process-send-string (get-buffer-process (current-buffer))
; "\C-c"))
(defun sdcdb-toolbar-break ()
(interactive)
(save-excursion
(message (car sdcdb-last-frame))
(set-buffer (find-file-noselect (car sdcdb-last-frame)))
(sdcdb-break nil)))
(defun sdcdb-toolbar-clear ()
(interactive)
(save-excursion
(message (car sdcdb-last-frame))
(set-buffer (find-file-noselect (car sdcdb-last-frame)))
(sdcdb-clear)))
(provide 'sdcdb)
(require 'sdcdb "sdcdb") ; NOT gud! (yet...)
(defvar sdcdbsrc-active-p t
"*Set to nil if you do not want source files put in sdcdbsrc-mode")
(defvar sdcdbsrc-call-p nil
"True if sdcdb command issued from a source buffer")
(defvar sdcdbsrc-associated-buffer nil
"Buffer name of attached sdcdb process")
(defvar sdcdbsrc-mode nil
"Indicates whether buffer is in sdcdbsrc-mode or not")
(make-variable-buffer-local 'sdcdbsrc-mode)
(defvar sdcdbsrc-global-mode nil
"Indicates whether global sdcdbsrc bindings are in effect or not")
(defvar sdcdb-prompt-pattern "^[^)#$%>\n]*[)#$%>] *"
"A regexp for matching the end of the sdcdb prompt")
(defvar eos::toolbar-toggle-srcmode
(toolbar-make-button-list
(expand-file-name "recycle.xbm" eos::toolbar-icon-directory))
"A Run icon pair.")
;;; bindings
(defvar sdcdbsrc-global-map
(let ((map (make-sparse-keymap)))
(set-keymap-name map 'sdcdbsrc-global-map)
(define-key map "\C-x " 'sdcdb-break)
(define-key map "\M-\C-t" 'sdcdbsrc-mode)
(define-key map "\M-\C-g" 'sdcdbsrc-goto-sdcdb)
(define-key map "\M-m" 'sdcdbsrc-srcmode)
;; middle button to select and print expressions...
(define-key map '(meta button2) 'sdcdbsrc-print-csexp)
(define-key map '(meta shift button2) 'sdcdbsrc-*print-csexp)
;; left button to position breakpoints
(define-key map '(meta button1) 'sdcdbsrc-set-break)
(define-key map '(meta shift button1) 'sdcdbsrc-set-tbreak-continue)
map)
"Global minor keymap that is active whenever sdcdbsrc is running.")
(add-minor-mode 'sdcdbsrc-global-mode " SdcdbGlobal" sdcdbsrc-global-map)
(defvar sdcdbsrc-mode-map
(let ((map (make-sparse-keymap)))
(suppress-keymap map)
(set-keymap-name map 'sdcdbsrc-mode-map)
;; inherit keys from global sdcdbsrc map just in case that somehow gets turned off.
(set-keymap-parents map (list sdcdbsrc-global-map))
(define-key map "\C-x\C-q" 'sdcdbsrc-mode) ; toggle read-only
(define-key map "\C-c\C-c" 'sdcdbsrc-mode)
(define-key map "b" 'sdcdb-break)
(define-key map "g" 'sdcdbsrc-goto-sdcdb)
(define-key map "!" 'sdcdbsrc-goto-sdcdb)
(define-key map "p" 'sdcdb-print-c-sexp)
(define-key map "*" 'sdcdb-*print-c-sexp)
(define-key map "?" 'sdcdb-whatis-c-sexp)
(define-key map "R" 'sdcdbsrc-reset)
map)
"Minor keymap for buffers in sdcdbsrc-mode")
(add-minor-mode 'sdcdbsrc-mode " SdcdbSrc" sdcdbsrc-mode-map)
(defvar sdcdbsrc-toolbar
'([eos::toolbar-stop-at-icon
sdcdb-break
t
"Stop at selected position"]
[eos::toolbar-stop-in-icon
sdcdb-break
t
"Stop in function whose name is selected"]
[eos::toolbar-clear-at-icon
sdcdb-clear
t
"Clear at selected position"]
[eos::toolbar-evaluate-icon
sdcdb-print-c-sexp
t
"Evaluate selected expression; shows in separate XEmacs frame"]
[eos::toolbar-run-icon
sdcdbsrc-run
t
"Run current program"]
[eos::toolbar-cont-icon
sdcdbsrc-cont
t
"Continue current program"]
[eos::toolbar-step-into-icon
sdcdbsrc-step
t
"Step into (aka step)"]
[eos::toolbar-step-over-icon
sdcdbsrc-next
t
"Step over (aka next)"]
[eos::toolbar-fix-icon
nil
nil
"Fix (not available with sdcdb)"]
[eos::toolbar-build-icon
toolbar-compile
t
"Build (aka make -NYI)"]
[eos::toolbar-toggle-srcmode
sdcdbsrc-srcmode
t
"Toggle Source C <-> Asm"]
))
(defmacro def-sdcdb-from-src (sdcdb-command key &optional doc &rest forms)
"Create a function that will call SDCDB-COMMAND with KEY."
(let* ((fname (format "sdcdbsrc-%s" sdcdb-command))
(cstr (list 'if 'arg
(list 'format "%s %s" sdcdb-command '(prefix-numeric-value arg))
sdcdb-command))
fun)
(while (string-match " " fname)
(aset fname (match-beginning 0) ?-))
(setq fun (intern fname))
(list 'progn
(nconc (list 'defun fun '(arg)
(or doc "")
'(interactive "P")
(list 'sdcdb-call-from-src cstr))
forms)
(list 'define-key 'sdcdbsrc-mode-map key (list 'quote fun)))))
(def-sdcdb-from-src "step" "s" "Step one instruction in src"
(sdcdb-delete-arrow-extent))
(def-sdcdb-from-src "stepi" "i" "Step one source line (skip functions)"
(sdcdb-delete-arrow-extent))
(def-sdcdb-from-src "cont" "c" "Continue with display"
(sdcdb-delete-arrow-extent))
(def-sdcdb-from-src "down" "d" "Go down N stack frames (numeric arg) ")
(def-sdcdb-from-src "up" "u" "Go up N stack frames (numeric arg)")
(def-sdcdb-from-src "finish" "f" "Finish frame")
(def-sdcdb-from-src "where" "w" "Display (N frames of) backtrace")
(def-sdcdb-from-src "next" "n" "Step one line with display"
(sdcdb-delete-arrow-extent))
(def-sdcdb-from-src "run" "r" "Run program from start"
(sdcdb-delete-arrow-extent))
(def-sdcdb-from-src "return" "R" "Return from selected stack frame")
(def-sdcdb-from-src "disable" "x" "Disable all breakpoints")
(def-sdcdb-from-src "delete" "X" "Delete all breakpoints")
(def-sdcdb-from-src "quit" "Q" "Quit sdcdb."
(sdcdb-delete-arrow-extent))
(def-sdcdb-from-src "info locals" "l" "Show local variables")
(def-sdcdb-from-src "info break" "B" "Show breakpoints")
(def-sdcdb-from-src "" "\r" "Repeat last command")
(def-sdcdb-from-src "frame" "m" "Show frame if no arg, with arg go to frame")
;;; code
;;;###autoload
(defun sdcdbsrc (path &optional core-or-pid)
"Activates a sdcdb session with sdcdbsrc-mode turned on. A numeric prefix
argument can be used to specify a running process to attach, and a non-numeric
prefix argument will cause you to be prompted for a core file to debug."
(interactive (let ((file (read-file-name "Program to debug: " nil nil t)))
(cond ((numberp current-prefix-arg)
(list file (int-to-string current-prefix-arg)))
(current-prefix-arg
(list file (read-file-name "Core file: " nil nil t)))
(t (list file)))
))
;; FIXME - this is perhaps an uncool thing to do --Stig
(delete-other-windows)
(split-window-vertically)
(other-window 0)
(sdcdb path core-or-pid)
(local-set-key 'button2 'sdcdbsrc-select-or-yank)
(setq mode-motion-hook 'sdcdbsrc-mode-motion)
;; XEmacs change:
(make-local-hook 'kill-buffer-hook)
(add-hook 'kill-buffer-hook 'sdcdbsrc-reset nil t))
(defun sdcdbsrc-global-mode ()
;; this can be used as a hook for sdcdb-mode....
(or current-sdcdb-buffer
(and (eq major-mode 'sdcdb-mode) ; doesn't work w/ energize yet
(setq current-sdcdb-buffer (current-buffer))
;; XEmacs change:
(progn
(make-local-hook 'kill-buffer-hook)
(add-hook 'kill-buffer-hook 'sdcdbsrc-reset nil t)))
(error "Cannot determine current-sdcdb-buffer"))
;;; (set-process-filter
;;; (get-buffer-process current-sdcdb-buffer) 'sdcdbsrc-mode-filter)
;;; (set-process-sentinel
;;; (get-buffer-process current-sdcdb-buffer) 'sdcdbsrc-mode-sentinel)
;; sdcdbsrc-global-mode was set to t here but that tended to piss
;; people off
(setq sdcdbsrc-global-mode nil
sdcdbsrc-active-p t
sdcdbsrc-call-p nil
sdcdbsrc-mode nil)
(message "Gbd source mode active"))
(add-hook 'sdcdb-mode-hook 'sdcdbsrc-global-mode)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Sdcdb Source minor mode.
;;;
(defvar sdcdbsrc-associated-buffer nil
"The sdcdb buffer to send commands to.")
(defvar sdcdbsrc-initial-readonly 'undefined
"read-only status of buffer when not in sdcdbsrc-mode")
(defvar sdcdbsrc-old-toolbar nil
"saved toolbar for buffer")
(defun sdcdbsrc-mode (arg &optional quiet)
"Minor mode for interacting with sdcdb from a c source file.
With arg, turn sdcdbsrc-mode on iff arg is positive. In sdcdbsrc-mode,
you may send an associated sdcdb buffer commands from the current buffer
containing c source code."
(interactive "P")
(setq sdcdbsrc-mode
(if (null arg)
(not sdcdbsrc-mode)
(> (prefix-numeric-value arg) 0)))
(cond (sdcdbsrc-mode
(cond ((not (local-variable-p 'sdcdbsrc-initial-readonly (current-buffer)))
(set (make-local-variable 'sdcdbsrc-initial-readonly)
buffer-read-only)
(set (make-local-variable 'sdcdbsrc-associated-buffer)
current-sdcdb-buffer)
(if (featurep 'toolbar)
(set (make-local-variable 'sdcdbsrc-old-toolbar)
(specifier-specs default-toolbar (current-buffer))))
)
)
(if (featurep 'toolbar)
(set-specifier default-toolbar (cons (current-buffer)
sdcdbsrc-toolbar)))
(setq buffer-read-only t)
(or quiet (message "Entering sdcdbsrc-mode...")))
(t
(and (local-variable-p 'sdcdbsrc-initial-readonly (current-buffer))
(progn
(if (featurep 'toolbar)
(if sdcdbsrc-old-toolbar
(set-specifier default-toolbar
(cons (current-buffer)
sdcdbsrc-old-toolbar))
(remove-specifier default-toolbar (current-buffer))))
(kill-local-variable 'sdcdbsrc-old-toolbar)
(setq buffer-read-only sdcdbsrc-initial-readonly)
(kill-local-variable 'sdcdbsrc-initial-readonly)
(kill-local-variable 'sdcdbsrc-associated-buffer)
))
(or quiet (message "Exiting sdcdbsrc-mode..."))))
(redraw-modeline t))
;;
;; Sends commands to sdcdb process.
(defun sdcdb-call-from-src (command)
"Send associated sdcdb process COMMAND displaying source in this window."
(setq sdcdbsrc-call-p t)
(let ((src-win (selected-window))
(buf (or sdcdbsrc-associated-buffer current-sdcdb-buffer)))
(or (buffer-name buf)
(error "SDCDB buffer deleted"))
(pop-to-buffer buf)
(goto-char (point-max))
(beginning-of-line)
;; Go past sdcdb prompt
(re-search-forward
sdcdb-prompt-pattern (save-excursion (end-of-line) (point)) t)
;; Delete any not-supposed-to-be-there text
(delete-region (point) (point-max))
(insert command)
(comint-send-input)
(select-window src-win)
))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Define Commands for SDCDB SRC Mode Buffer
;;;
;;; ;; #### - move elsewhere
(or (fboundp 'event-buffer)
(defun event-buffer (event)
"Return buffer assocaited with EVENT, or nil."
(let ((win (event-window event)))
(and win (window-buffer win)))))
(defun set-sdcdbsrc-mode-motion-extent (st en action)
;; by Stig@hackvan.com
(let ((ex (make-extent st en)))
(set-extent-face ex 'highlight)
(set-extent-property ex 'sdcdbsrc t)
(set-extent-property ex 'action action)
(setq mode-motion-extent ex)))
(defun nuke-mode-motion-extent ()
;; by Stig@hackvan.com
(cond (mode-motion-extent
(delete-extent mode-motion-extent)
(setq mode-motion-extent nil))))
(defun looking-at-any (regex-list)
;; by Stig@hackvan.com
(catch 'found
(while regex-list
(and (looking-at (car regex-list))
(throw 'found t))
(setq regex-list (cdr regex-list)))))
(defconst sdcdb-breakpoint-patterns
'(
;; when execution stops...
;;Breakpoint 1, XlwMenuRedisplay (w=0x4d2e00, ev=0xefffe3f8, region=0x580e60)
;; at /net/stig/src/xemacs/lwlib/xlwmenu.c:2518
"^[BW][ra][et][ac][kh]point [0-9]+, .*\\(\n\\s .*\\)*"
;; output of the breakpoint command:
;;Breakpoint 1 at 0x19f5c8: file /net/stig/src/xemacs/lwlib/xlwmenu.c, line 2715.
"^[BW][ra][et][ac][kh]point [0-9]+ at .*: file \\([^ ,\n]+\\), line \\([0-9]+\\)."
;;Num Type Disp Enb Address What
;;1 breakpoint keep y 0x0019ee60 in XlwMenuRedisplay
;; at /net/stig/src/xemacs/lwlib/xlwmenu.c:2518
"^[0-9]+\\s +[bw][ra][et][ac][kh]point.* in .*\\(\n\\s +\\)?at [^ :\n]+:[0-9]+\\(\n\\s .*\\)*"
)
"list of patterns to match sdcdb's various ways of displaying a breakpoint")
(defun sdcdbsrc-make-breakpoint-action (string)
;; by Stig@hackvan.com
(if (or (string-match "file \\([^ ,\n]+\\), line \\([0-9]+\\)" string)
(string-match "at \\([^ :\n]+\\):\\([0-9]+\\)" string))
(list 'sdcdbsrc-display
(match-string 1 string)
(string-to-int (match-string 2 string)))))
(defconst sdcdb-stack-frame-pattern
;;#9 0x62f08 in emacs_Xt_next_event (emacs_event=0x4cf804)
;; at /net/stig/src/xemacs/src/event-Xt.c:1778
"^#\\([0-9]+\\)\\s +\\(0x[0-9a-f]+ in .*\\|.*\\sw+.* (.*) at .*\\)\\(\n\\s .*\\)*"
"matches the first line of a sdcdb stack frame and all continuation lines.
subex 1 is frame number.")
(defun sdcdbsrc-mode-motion (ee)
;; by Stig@hackvan.com
(save-excursion
(set-buffer (event-buffer ee))
(save-excursion
(if (not (event-point ee))
(nuke-mode-motion-extent)
(goto-char (event-point ee))
(beginning-of-line)
(while (and (not (bobp)) (eq ? (char-syntax (following-char))))
(forward-line -1))
(if (extent-at (point) (current-buffer) 'sdcdbsrc)
nil
(nuke-mode-motion-extent)
(cond ((looking-at-any sdcdb-breakpoint-patterns)
(set-sdcdbsrc-mode-motion-extent
(match-beginning 0)
(match-end 0)
(sdcdbsrc-make-breakpoint-action (match-string 0))))
((looking-at sdcdb-stack-frame-pattern)
(set-sdcdbsrc-mode-motion-extent
(match-beginning 0)
(match-end 0)
(list 'sdcdbsrc-frame
(string-to-int (match-string 1)))))
)))
)))
(defun sdcdbsrc-display (file line)
;; by Stig@hackvan.com
(select-window (display-buffer (find-file-noselect file)))
(goto-line line))
(defun click-inside-selection-p (click)
(or (click-inside-extent-p click primary-selection-extent)
(click-inside-extent-p click zmacs-region-extent)
))
(defun click-inside-extent-p (click extent)
"Returns non-nil if the button event is within the bounds of the primary
selection-extent, nil otherwise."
;; stig@hackvan.com
(let ((ewin (event-window click))
(epnt (event-point click)))
(and ewin
epnt
extent
(eq (window-buffer ewin)
(extent-object extent))
(extent-start-position extent)
(> epnt (extent-start-position extent))
(> (extent-end-position extent) epnt))))
(defun point-inside-extent-p (extent)
"Returns non-nil if the point is within or just after the bounds of the
primary selection-extent, nil otherwise."
;; stig@hackvan.com
(and extent ; FIXME - I'm such a sinner...
(eq (current-buffer)
(extent-object extent))
(> (point) (extent-start-position extent))
(>= (extent-end-position extent) (point))))
(defun sdcdbsrc-select-or-yank (ee)
;; by Stig@hackvan.com
(interactive "e")
(let ((action (save-excursion
(set-buffer (event-buffer ee))
(and mode-motion-extent
(click-inside-extent-p ee mode-motion-extent)
(extent-property mode-motion-extent 'action)))
))
(if action
(eval action)
(mouse-yank ee))))
(defvar sdcdb-print-format ""
"Set this variable to a valid format string to print c-sexps in a
different way (hex,octal, etc).")
(defun sdcdb-print-c-sexp ()
"Find the nearest c-mode sexp. Send it to sdcdb with print command."
(interactive)
(let* ((tag (find-c-sexp))
(command (concat "print " sdcdb-print-format tag)))
(sdcdb-call-from-src command)))
(defun sdcdbsrc-srcmode ()
"Toggle between assembler & C source modes."
(sdcdb-call-from-src "set srcmode"))
(defun sdcdb-*print-c-sexp ()
"Find the nearest c-mode sexp. Send it to sdcdb with the print * command."
(interactive)
(let* ((tag (find-c-sexp))
(command (concat "print " sdcdb-print-format "*" tag)))
(sdcdb-call-from-src command)))
(defun sdcdb-whatis-c-sexp ()
"Find the nearest c-mode sexp. Send it to sdcdb with the whatis command. "
(interactive)
(let* ((tag (sdcdbsrc-selection-or-sexp))
(command (concat "ptype " tag)))
(sdcdb-call-from-src command)))
(defun sdcdbsrc-goto-sdcdb ()
"Hop back and forth between the sdcdb interaction buffer and the sdcdb source
buffer. "
;; by Stig@hackvan.com
(interactive)
(let ((gbuf (or sdcdbsrc-associated-buffer current-sdcdb-buffer)))
(cond ((eq (current-buffer) gbuf)
(and sdcdb-arrow-extent
(extent-object sdcdb-arrow-extent)
(progn (pop-to-buffer (extent-object sdcdb-arrow-extent))
(goto-char (extent-start-position sdcdb-arrow-extent)))))
((buffer-name gbuf) (pop-to-buffer gbuf))
((y-or-n-p "No debugger. Start a new one? ")
(call-interactively 'sdcdbsrc))
(t (error "No sdcdb buffer."))
)))
(defvar sdcdbsrc-last-src-buffer nil)
(defun sdcdbsrc-goto-src ()
(interactive)
(let* ((valid (and sdcdbsrc-last-src-buffer
(memq sdcdbsrc-last-src-buffer (buffer-list))))
(win (and valid
(get-buffer-window sdcdbsrc-last-src-buffer))))
(cond (win (select-window win))
(valid (pop-to-buffer sdcdbsrc-last-src-buffer)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; The following functions are used to extract the closest surrounding
;;; c expression from point
;;;
(defun back-sexp ()
"Version of backward-sexp that catches errors"
(condition-case nil
(backward-sexp)
(error t)))
(defun forw-sexp ()
"Version of forward-sexp that catches errors"
(condition-case nil
(forward-sexp)
(error t)))
(defun sexp-compound-sep (span-start span-end)
"Returns '.' for '->' & '.', returns ' ' for white space,
returns '?' for other puctuation"
(let ((result ? )
(syntax))
(while (< span-start span-end)
(setq syntax (char-syntax (char-after span-start)))
(cond
((= syntax ? ) t)
((= syntax ?.) (setq syntax (char-after span-start))
(cond
((= syntax ?.) (setq result ?.))
((and (= syntax ?-) (= (char-after (+ span-start 1)) ?>))
(setq result ?.)
(setq span-start (+ span-start 1)))
(t (setq span-start span-end)
(setq result ??)))))
(setq span-start (+ span-start 1)))
result
)
)
(defun sexp-compound (first second)
"Returns non-nil if the concatenation of two S-EXPs result in a Single C
token. The two S-EXPs are represented as a cons cells, where the car
specifies the point in the current buffer that marks the begging of the
S-EXP and the cdr specifies the character after the end of the S-EXP
Link S-Exps of the form:
Sexp -> SexpC
Sexp . Sexp
Sexp (Sexp) Maybe exclude if first Sexp is: if, while, do, for, switch
Sexp [Sexp]
(Sexp) Sexp
[Sexp] Sexp"
(let ((span-start (cdr first))
(span-end (car second))
(syntax))
(setq syntax (sexp-compound-sep span-start span-end))
(cond
((= (car first) (car second)) nil)
((= (cdr first) (cdr second)) nil)
((= syntax ?.) t)
((= syntax ? )
(setq span-start (char-after (- span-start 1)))
(setq span-end (char-after span-end))
(cond
((= span-start ?) ) t )
((= span-start ?] ) t )
((= span-end ?( ) t )
((= span-end ?[ ) t )
(t nil))
)
(t nil))
)
)
(defun sexp-cur ()
"Returns the S-EXP that Point is a member, Point is set to begging of S-EXP.
The S-EXPs is represented as a cons cell, where the car specifies the point in
the current buffer that marks the begging of the S-EXP and the cdr specifies
the character after the end of the S-EXP"
(let ((p (point)) (begin) (end))
(back-sexp)
(setq begin (point))
(forw-sexp)
(setq end (point))
(if (>= p end)
(progn
(setq begin p)
(goto-char p)
(forw-sexp)
(setq end (point))
)
)
(goto-char begin)
(cons begin end)
)
)
(defun sexp-prev ()
"Returns the previous S-EXP, Point is set to begging of that S-EXP.
The S-EXPs is represented as a cons cell, where the car specifies the point in
the current buffer that marks the begging of the S-EXP and the cdr specifies
the character after the end of the S-EXP"
(let ((begin) (end))
(back-sexp)
(setq begin (point))
(forw-sexp)
(setq end (point))
(goto-char begin)
(cons begin end))
)
(defun sexp-next ()
"Returns the following S-EXP, Point is set to begging of that S-EXP.
The S-EXPs is represented as a cons cell, where the car specifies the point in
the current buffer that marks the begging of the S-EXP and the cdr specifies
the character after the end of the S-EXP"
(let ((begin) (end))
(forw-sexp)
(forw-sexp)
(setq end (point))
(back-sexp)
(setq begin (point))
(cons begin end)
)
)
(defun find-c-sexp ()
"Returns the Complex S-EXP that surrounds Point"
(interactive)
(save-excursion
(let ((p) (sexp) (test-sexp))
(setq p (point))
(setq sexp (sexp-cur))
(setq test-sexp (sexp-prev))
(while (sexp-compound test-sexp sexp)
(setq sexp (cons (car test-sexp) (cdr sexp)))
(goto-char (car sexp))
(setq test-sexp (sexp-prev))
)
(goto-char p)
(setq test-sexp (sexp-next))
(while (sexp-compound sexp test-sexp)
(setq sexp (cons (car sexp) (cdr test-sexp)))
(setq test-sexp (sexp-next))
)
(buffer-substring (car sexp) (cdr sexp))
)
)
)
(defun sdcdbsrc-selection-or-sexp (&optional ee)
;; FIXME - fix this docstring
"If the EVENT is within the primary selection, then return the selected
text, otherwise parse the expression at the point of the mouse click and
return that. If EVENT is nil, then return the C sexp at point."
;; stig@hackvan.com
(cond ((or (and ee (click-inside-selection-p ee))
(and (not ee) (point-inside-selection-p)))
(replace-in-string (extent-string primary-selection-extent) "\n\\s *" " "))
(ee
(sdcdbsrc-get-csexp-at-click ee))
(t
(find-c-sexp))
))
(defun sdcdbsrc-get-csexp-at-click (ee)
"Returns the containing s-expression located at the mouse cursor to point."
;; "
;; by Stig@hackvan.com
(let ((ewin (event-window ee))
(epnt (event-point ee)))
(or (and ewin epnt)
(error "Must click within a window"))
(save-excursion
(set-buffer (window-buffer ewin))
(save-excursion
(goto-char epnt)
(find-c-sexp)))))
(defun sdcdbsrc-print-csexp (&optional ee)
(interactive)
(or ee (setq ee current-mouse-event))
(sdcdb-call-from-src
(concat "print " sdcdb-print-format (sdcdbsrc-selection-or-sexp ee))))
(defun sdcdbsrc-*print-csexp (&optional ee)
(interactive)
(or ee (setq ee current-mouse-event))
(sdcdb-call-from-src
(concat "print *" sdcdb-print-format (sdcdbsrc-selection-or-sexp ee))))
;; (defun sdcdbsrc-print-region (arg)
;; (let (( command (concat "print " sdcdb-print-format (x-get-cut-buffer))))
;; (sdcdb-call-from-src command)))
;;
;; (defun sdcdbsrc-*print-region (arg)
;; (let (( command (concat "print *" sdcdb-print-format (x-get-cut-buffer))))
;; (sdcdb-call-from-src command)))
(defun sdcdbsrc-file:lno ()
"returns \"file:lno\" specification for location of point. "
;; by Stig@hackvan.com
(format "%s:%d"
(file-name-nondirectory buffer-file-name)
(save-restriction
(widen)
(1+ (count-lines (point-min)
(save-excursion (beginning-of-line) (point)))))
))
(defun sdcdbsrc-set-break (ee)
"Sets a breakpoint. Click on the selection and it will set a breakpoint
using the selected text. Click anywhere in a source file, and it will set
a breakpoint at that line number of that file."
;; by Stig@hackvan.com
;; there is already sdcdb-break, so this only needs to work with mouse clicks.
(interactive "e")
(sdcdb-call-from-src
(concat "break "
(if (click-inside-selection-p ee)
(extent-string primary-selection-extent)
(mouse-set-point ee)
(or buffer-file-name (error "No file in window"))
(- (sdcdbsrc-file:lno) 1)
))))
(defun sdcdbsrc-set-tbreak-continue (&optional ee)
"Set a temporary breakpoint at the position of the mouse click and then
continues. This can be bound to either a key or a mouse button."
;; by Stig@hackvan.com
(interactive)
(or ee (setq ee current-mouse-event))
(and ee (mouse-set-point ee))
(sdcdb-call-from-src (concat "tbreak " (sdcdbsrc-file:lno)))
(sdcdb-call-from-src "c"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Functions extended from sdcdb.el for sdcdbsrc.
;;
;; sdcdbsrc-set-buffer - added a check to set buffer to sdcdbsrc-associated-buffer
;; to handle multiple sdcdb sessions being driven from src
;; files.
(require 'advice)
(defadvice sdcdb-set-buffer (after sdcdbsrc activate) ; ()
"Advised to work from a source buffer instead of just the sdcdb buffer."
;; by Stig@hackvan.com
;; the operations below have tests which are disjoint from the tests in
;; the original `sdcdb-set-buffer'. Current-sdcdb-buffer cannot be set twice.
(and sdcdbsrc-call-p
sdcdbsrc-associated-buffer
(setq current-sdcdb-buffer sdcdbsrc-associated-buffer)))
(defadvice sdcdb-display-line (around sdcdbsrc activate)
;; (true-file line &optional select-method)
"Advised to select the source buffer instead of the sdcdb-buffer"
;; by Stig@hackvan.com
(ad-set-arg 2 'source) ; tell it not to select the sdcdb window
ad-do-it
(save-excursion
(let* ((buf (extent-object sdcdb-arrow-extent))
(win (get-buffer-window buf)))
(setq sdcdbsrc-last-src-buffer buf)
(select-window win)
(set-window-point win (extent-start-position sdcdb-arrow-extent))
(set-buffer buf))
(and sdcdbsrc-active-p
(not sdcdbsrc-mode)
(not (eq (current-buffer) current-sdcdb-buffer))
(sdcdbsrc-mode 1))))
(defadvice sdcdb-filter (after sdcdbsrc activate) ; (proc string)
;; by Stig@hackvan.com
;; if we got a sdcdb prompt and it wasn't a sdcdbsrc command, then it's sdcdb
;; hitting a breakpoint or having a core dump, so bounce back to the sdcdb
;; window.
(let* ((selbuf (window-buffer (selected-window)))
win)
;; if we're at a sdcdb prompt, then display the buffer
(and (save-match-data (string-match sdcdb-prompt-pattern (ad-get-arg 1)))
(prog1
(not sdcdbsrc-call-p)
(setq sdcdbsrc-call-p nil))
(setq win (display-buffer current-sdcdb-buffer))
;; if we're not in either the source buffer or the sdcdb buffer,
;; then select the window too...
(not (eq selbuf current-sdcdb-buffer))
(not (eq selbuf sdcdbsrc-last-src-buffer))
(progn
(ding nil 'warp)
(select-window win)))
))
(defun sdcdbsrc-reset ()
;; tidy house and turn off sdcdbsrc-mode in all buffers
;; by Stig@hackvan.com
(sdcdb-delete-arrow-extent)
(setq sdcdbsrc-global-mode nil)
(mapcar #'(lambda (buffer)
(set-buffer buffer)
(cond ((eq sdcdbsrc-associated-buffer current-sdcdb-buffer)
(sdcdbsrc-mode -1))))
(buffer-list)))
(defadvice sdcdb-sentinel (after sdcdbsrc freeze) ; (proc msg)
;; by Stig@hackvan.com
(sdcdbsrc-reset)
(message "Sdcdbsrc finished"))
(provide 'sdcdbsrc)
|