-
Notifications
You must be signed in to change notification settings - Fork 9
/
slicing.bib
1233 lines (927 loc) · 30.8 KB
/
slicing.bib
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
%%% slicing.bib
%%% Bibliography on static and dynamic program slicing.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Surveys
%%%
@techreport{Tip94,
key = {Tip94},
author = {Frank Tip},
title = {A Survey of Program Slicing Techniques},
institution = {Centrum voor Wiskunde en Informatica (CWI)},
type = {Report {CS}-{R}9438},
address = {Amsterdam},
year = {1994},
supersededby = {Tip95:survey},
}
@Article{Tip95:survey,
author = "Frank Tip",
title = "A survey of program slicing techniques",
journal = "Journal of Programming Languages",
year = 1995,
volume = 3,
number = 3,
pages = "121--189"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Semantics
%%%
@InProceedings{CartwrightF89,
author = "Robert Cartwright and Matthias Felleisen",
title = "The semantics of program dependence",
crossref = "PLDI89",
pages = "13--27",
}
@TechReport{RepsY88,
author = "Thomas Reps and Wuu Yang",
title = "The semantics of program slicing",
institution = UWMadison,
year = 1988,
number = 777,
month = Jun
}
@InProceedings{RepsY89,
author = "Thomas Reps and Wuu Yang",
title = "The semantics of program slicing and program integration",
editor = "J. D{\'\i}az and F. Orejas",
number = 352,
series = LNCS,
booktitle = "TAPSOFT '89: Proceedings of the International Joint
Conference on Theory and Practice of Software
Development. Vol.2: Advanced Seminar on Foundations of
Innovative Software II and Colloquium on Current Issues
in Programming Languages (CCIPL)",
pages = "360--374",
year = 1989,
publisher = "Springer-Verlag",
address = "Barcelona, Spain",
month = Mar # "~13--17,"
}
@InProceedings{Venkatesh91,
author = "G. A. Venkatesh",
title = "The semantic approach to program slicing",
crossref = "PLDI91",
pages = "107--119",
abstract =
"Program slicing is a source-to-source transformation that has
applications in construction, analysis, testing and debugging of programs.
A program slice contains the portion of a program that captures some subset
of the program behavior. Algorithms are available for constructing slices
for a particular execution of a program (dynamic slices) as well as to
approximate a subset of the behavior over all possible executions of a
program (static slices). As the behavior of a program is determined by the
semantics of the language, it is reasonable to expect a semantic
justification for the practice of program slicing. Program slices have been
used in several applications but there is no single notion of a slice that
is useful for all applications. The author identifies and categorizes
different notions of a program slice available in the literature as well as
several new notions. The various notions are formalized in a denotational
framework."
}
% Aka SIGPLAN Notices vol.26, no.6
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Dynamic slicing
%%%
@Unpublished{Venkatesh93,
author = "G. A. Venkatesh",
title = "Experimental results from slicing {C} programs",
note = "Submitted for publication",
year = 1993,
month = Oct # "~19,"
}
@Article{Venkatesh95,
author = "G. A. Venkatesh",
title = "Experimental results from dynamic slicing of {C} programs",
journal = TOPLAS,
year = 1995,
volume = 17,
number = 2,
pages = "197--216",
month = mar
}
@TechReport{Agrawal91,
author = "H. Agrawal",
title = "Towards automatic debugging of computer programs",
institution = PurdueSERC,
year = 1991,
number = "SERC-TR-103-P",
month = Sep
}
@InProceedings{AgrawalH90,
author = "Hiralal Agrawal and Joseph R. Horgan",
title = "Dynamic Program Slicing",
crossref = "PLDI90",
pages = "246--256",
}
% Aka SIGPLAN Notices vol.25, no. 6
@TechReport{LarusC93,
author = "James R. Larus and Satish Chandra",
title = "Using tracing and dynamic slicing to tune compilers",
institution = UWMadison,
year = 1993,
number = 1174,
address = UWMadisonaddr,
month = aug # "~26,"
}
@Conference{HL92,
AUTHOR = "L. Huelsbergen and J. Larus",
TITLE = "Dynamic Program Parallelization",
Booktitle = "Proceedings of the '92 {ACM} Conference on
{LISP} and Functional Programming",
Pages = "311--323",
YEAR = "June 1992"
}
@InProceedings{ZhangGZ2004,
author = "Xiangyu Zhang and Rajiv Gupta and Youtao Zhang",
title = "Efficient Forward Computation of Dynamic Slices Using
Reduced Ordered Binary Decision Diagrams",
crossref = "ICSE2004",
pages = "502--511",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Static slicing
%%%
@Article{Weiser84,
author = "Mark Weiser",
title = "Program slicing",
journal = ieeese,
year = 1984,
volume = "SE-10",
number = 4,
pages = "352--357",
month = Jul
}
% day of month was either 3-7 or 5-7, I'm not sure which
@InProceedings{HwangDC88,
author = "J. C. Hwang and M. W. Du and C. R. Chou",
title = "Finding program slices for recursive procedures",
booktitle = "Proceedings COMPSAC 88: The Twelfth International
Computer Software and Applications Conference",
year = 1988,
organization = "IEEE Computer Society",
address = "Chicago",
month = oct
}
@InProceedings{HorwitzPR88b,
author = "Susan Horwitz and Jan Prins and Thomas Reps",
title = "On the adequacy of program dependence graphs for
representing programs",
crossref = "POPL88",
pages = "146--157",
}
@TechReport{HorwitzRB88,
author = "Susan Horwitz and Thomas Reps and David Binkley",
title = "Interprocedural slicing using dependence graphs",
institution = UWMadison,
year = 1988,
number = 756,
month = Mar
}
@Article{HorwitzRB90,
author = "Susan Horwitz and Thomas Reps and David Binkley",
title = "Interprocedural slicing using dependence graphs",
journal = toplas,
year = 1990,
volume = 12,
number = 1,
pages = "26--60",
month = jan
}
@TechReport{Ball93,
author = "Thomas Jaudon Ball",
title = "The Use of Control-flow and Control Dependence in
Software Tools",
institution = UWMadison,
year = 1993,
number = 1169,
month = Aug,
note = "PhD thesis"
}
@InProceedings{OttensteinO84,
author = "K. J. Ottenstein and L. M. Ottenstein",
title = "The program dependence graph in a software development
environment",
booktitle = "Proc. ACM SIGSOFT/SIGPLAN Software Engineering Symp. on
Practical Software Development Environments",
pages = "177--184",
year = 1984,
address = "Pittsburgh, Pennsylvania",
month = apr
}
% (aka SIGPLAN Notices 19:5, May 1984)
@Article{HarmanD93,
author = "M. Harman and S. Danicic",
title = "Projecting funtional models of imperative programs",
journal = SIGPLANNotices,
year = 1993,
volume = 28,
number = 11,
pages = "33--41",
month = Nov
}
@InProceedings{BiggerstaffMW93,
author = "Ted J. Biggerstaff and Bharat G. Mitbander and Dallas Webster",
title = "The concept assignment problem in program understanding",
booktitle = "15th Annual Conference on Software Engineering",
year = 1993,
address = "Baltimore, Maryland",
month = May # "~17--21,"
}
@Article{BiggerstaffMW94,
author = "Ted J. Biggerstaff and Bharat G. Mitbander and Dallas Webster",
title = "Program understanding and the concept assignment problem",
journal = CACM,
year = 1994,
volume = 37,
number = 5,
pages = "72--83",
month = May
}
@InProceedings{KamkarSF90,
author = "Miriam Kamkar and Nahid Shahmehri and Peter Fritzson",
title = "Bug localization by algorithmic debugging and program slicing",
editor = "P. Deransart and J. Ma{\l}uszy{\'n}ski",
booktitle = "Proceedings, Programming Language Implementation and
Logic Programming, International Workshop PLILP '90",
pages = "60--74",
year = 1990,
publisher = "Springer-Verlag",
address = "Link{\"o}ping, Sweden",
month = aug # "~20--22,",
note = "LNCS 456"
}
@Article{FrizsonSKG92,
author = "Peter Fritzson and Nahid Shahmehri and Mariam Kamkar and
Tibor Gyimothy",
title = "Generalized algorithmic debugging and testing",
journal = loplas,
year = 1992,
volume = 1,
number = 4,
pages = "303--322",
month = Dec
}
% Also LiTH-IDA-R-90-42, apparently.
@InProceedings{LyleW87,
author = "James R. Lyle and Mark Weiser",
title = "Automatic program bug location by program slicing",
booktitle = "Proceedings of the Second International Conference on
Computers and Applications",
year = 1987,
address = "Beijing, China",
month = Jun
}
@InProceedings{JiangZR91,
author = "Jingyue Jiang and Xiling Zhou and David J. Robson",
title = "Program slicing for {C} --- The problems in implementation",
booktitle = "Proceedings, Conference on Software Maintenance 1991",
pages = "182--190",
year = 1991,
publisher = "IEEE Computer Society Press",
address = "Sorrento, Italy",
month = Oct # "~15--17,"
}
@Article{MarkosianNBBK94,
author = "Lawrence Markosian and Philip Newcomb and Russell Brand
and Scott Burson and Ted Kitzmiller",
title = "Using an enabling technology to reengineer legacy systems",
journal = CACM,
year = 1994,
volume = 37,
number = 5,
pages = "58--70",
month = May
}
@TechReport{LivadasC92,
author = "Panos E. Livadas and Stephen Croll",
title = "Program Slicing",
institution = "Computer and Information Sciences Department, University of Florida",
year = 1992,
number = "SERC-TR-61-F",
address = "Gainesville, FL",
month = Oct
}
@TechReport{LivadasC94,
author = "Panos E. Livadas and Stephen Croll",
title = "A new algorithm for the calculation of transitive
dependences",
institution = "Computer and Information Sciences Department, University of Florida",
year = 1994,
number = "SERC-TR-72-F",
address = "Gainesville, FL",
month = Jun
}
@TechReport{LivadasR94,
author = "Panos E. Livadas and Adam Rosenstein",
title = "Slicing in the presence of pointer variables",
institution = "Computer and Information Sciences Department, University of Florida",
year = 1994,
number = "SERC-TR-74-F",
address = "Gainesville, FL",
month = Jun
}
@InProceedings{LivadasR91,
author = "Panos E. Livadas and Prabal K. Roy",
title = "Program Dependence Analysis",
editor = "M. Kellner",
address = "Orlando, FL",
booktitle = "Proceedings, Conference on Software Maintenance",
pages = "356--365",
year = 1992,
month = Nov # "~9--12,"
}
@Unpublished{JacksonR94:Abstract,
author = "Daniel Jackson and Eugene J. Rollins",
title = "Abstract Program Dependences for Reverse Engineering",
note = "Submitted to Second ACM SIGSOFT Symposium on Foundations
of Software Engineering",
year = 1994,
month = Jun
}
@InProceedings{JacksonR94:NewModel,
author = "Daniel Jackson and Eugene J. Rollins",
title = "A New Model of Program Dependences for Reverse Engineering",
OPTpages = "2--11",
booktitle = "Proceedings, Second ACM SIGSOFT Symposium on Foundations
of Software Engineering",
year = 1994,
address = "New Orleans",
month = Dec
}
@InProceedings{JacksonR94:Pictorial,
author = "Daniel Jackson and Eugene J. Rollins",
title = "Abstraction Mechanisms for Pictorial Slicing",
OPTpages = "",
booktitle = "Proceedings, IEEE Workshop on Program Comprehension",
year = 1994,
address = "Washington",
month = Nov
}
@TechReport{Jackson92,
author = "Daniel Jackson",
title = "Aspect: A formal specification language for detecting bugs",
institution = MITLCS,
year = 1992,
number = "MIT/LCS/TR-543",
address = "Cambridge, MA",
month = Jun # "~16,"
}
@Unpublished{ChanghoHB95,
author = "C. C. Changho and M. L. Hines and J. K. Blundell",
title = "Generic program slicing with equivalence graphs",
note = "Computer Science Telecommunications, University of
Missouri -- Kansas City",
month = nov,
year = 1995
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Combining dynamic and static slicing
%%%
@InProceedings{FieldT94,
author = "John Field and Frank Tip",
title = "Dynamic dependence in term rewriting systems and its
application to program slicing",
editor = "M. Hermenegildo and J. Penjam",
volume = "???",
series = LNCS,
booktitle = "Proceedings of the Sixth International Symposium on
Programming Language Implementation and Logic Programming",
pages = "416--432",
year = 1994,
publisher = "Springer-Verlag",
note = "ftp.cwi.nl:/pub/gipe/drafts/FT94.ps.Z"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Integration/comparison
%%%
@TechReport{HorwitzR90,
author = "Susan Horwitz and Thomas Reps",
title = "Efficient Comparison of Program Slices",
institution = UWMadison,
year = 1990,
number = 982,
month = Dec
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Compilable slicing
%%%
@Article{Binkley93,
author = "David Binkley",
title = "Precise executable interprocedural slices",
journal = loplas,
year = 1993,
volume = 2,
number = "1-4",
pages = "31--45",
month = mar # "--" # dec
}
@Misc{Binkley94,
author = "David Binkley",
howpublished = "Personal communication",
year = 1994,
month = Jan # "~21,"
}
@InProceedings{BallH93,
author = "Thomas Ball and Susan Horwitz",
title = "Slicing Programs with Arbitrary Control-Flow",
number = 749,
series = LNCS,
booktitle = "Proc. of the 1st International Workshop on Automated and
Algorithmic Debugging",
pages = "206--222",
year = 1993,
publisher = "Springer-Verlag",
address = "Link{\"o}ping, Sweden",
month = May
}
@Unpublished{ChoiF93,
author = "Jong-Deok Choi and Jeanne Ferrante",
title = "Static slicing in the presence of {GOTO} statements",
note = "Submitted for publication;
previously titled ``What is in a slice''",
year = 1993,
month = Oct # "~19,"
}
@TechReport{BallH92,
author = "Thomas Ball and Susan Horwitz",
title = "Slicing Programs with Arbitrary Control Flow",
institution = UWMadison,
year = 1992,
number = "1128",
month = dec # "~21,"
}
@InProceedings{Agrawal94,
author = "Hiralal Agrawal",
title = "On slicing programs with jump statements",
crossref = "PLDI94",
pages = "302--312",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Implemented slicers
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Applications of slicing
%%%
%%% Parallelization
@InProceedings{BadgerW88,
author = "Lee Badger and Mark Weiser",
title = "Minimizing Communication for Synchronizing Parallel
Dataflow Programs",
booktitle = "Proceedings of the 1988 International Conference on
Parallel Processing, Volume II, Software",
pages = "122--126",
year = 1988,
address = "Penn State",
month = Aug
}
@Article{Weiser83,
author = "Mark Weiser",
title = "Reconstructing sequential behavior from parallel behavior
projections",
journal = IPL,
year = 1983,
volume = 17,
number = 5,
pages = "129--135",
month = Oct
}
%%% Debugging
@InProceedings{TischlerSP83,
author = "Ron Tischler and Robin Schaufler and Charlotte Payne",
title = "Static analysis of programs as an aid to debugging",
crossref = "HLD83",
pages = "155--158",
}
@Article{PodgurskiC90,
author = "Andy Podgurski and Lori A. Clarke",
title = "A formal model of program dependences and its
implications for software testing, debugging, and
maintenance",
journal = IEEESE,
year = 1990,
volume = 16,
number = 9,
pages = "965--979",
month = Sep
}
@Article{Weiser82,
author = "Mark Weiser",
title = "Programmers use slices when debugging",
journal = CACM,
year = 1982,
volume = 25,
number = 7,
pages = "446--52",
month = Jul
}
@InProceedings{LyleW86,
author = "Jim Lyle and Mark Weiser",
title = "Experiments on slicing-based debugging aids",
booktitle = "Proceedings of the First Workshop on Empirical Studies of
Programmers",
editor = "Elliot Soloway and Sitharama Iyengar",
year = 1986,
month = Jun # "~5--6,",
address = "Washington, DC",
pages = "187--197"
}
%%% Real-time systems
@InProceedings{GerberH93:RTS,
author = "Richard Gerber and Seongsoo Hong",
title = "Semantics-Based Compiler Transformations for Enhanced
Schedulability",
booktitle = "IEEE Real-Time Systems Symposium",
year = 1993,
month = Dec,
note = "Also appears as UMD CS-TR-3071, UMIACS-TR-93-37, May 1993"
}
%%% Secure information flow
@inproceedings{HammerKS2006,
author = {Christian Hammer and Jens Krinke and Gregor Snelting},
title = {Information Flow Control for {Java} Based on Path Conditions in Dependence Graphs},
crossref = "ISSSE2006",
pages = "87--96",
}
@article{SneltingRK2006,
author = {Gregor Snelting and Torsten Robschink and Jens Krinke},
title = {Efficient Path Conditions in Dependence Graphs for Software Safety Analysis},
year = 2006,
month = oct,
volume = 15,
number = 4,
pages = "410--457",
journal = TOSEM,
}
@inproceedings{HammerKN2006,
title = {Intransitive Noninterference in Dependence Graphs},
author = {Christian Hammer and Jens Krinke and Frank Nodes},
crossref = "ISOLA2006",
pages = "119--128",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Not yet read
%%%
@Unpublished{LarsenH,
author = {Loren D. Larsen and Mary Jean Harrold},
title = {Slicing Object-Oriented Software},
note = {Submitted to OOPSLA '95}
}
@InProceedings(abramsky,
Author = {Abramsky, S.},
Title = {Strictness Analysis and Polymorphic Invariance},
BookTitle = {Programs as Data Objects},
Year = {1985},
Editor = {H. Granziger and N. D. Jones},
Number = {217},
Series = {LNCS},
Pages = {1--23},
Publisher = sv
)
@Article{BergerettiC85,
author = "Jean-Francois Bergeretti and Bernard A. Carre",
title = "Information-flow and dataflow analysis of while-programs",
journal = toplas,
year = 1985,
volume = 7,
number = 1,
pages = "37--61",
month = Jan
}
@Article{NingEK94,
author = "Jim Q. Ning and Andre Engberts and W. (Voytek) Kozaczynski",
title = "Automated support for legacy code understanding",
journal = CACM,
year = 1994,
volume = 37,
number = 5,
pages = "50--57",
month = May
}
@InProceedings{NingEK93,
author = "Jim Q. Ning and Andre Engberts and W. (Voytek) Kozaczynski",
title = "Recovering reusable components from legacy systems by
program segmentation",
booktitle = "Proc. Working Conference on Reverse Engineering",
pages = "64--72",
year = 1993,
address = "Baltimore",
month = May
}
@Manual{Refine,
title = "Refine User's Guide",
organization = "Reasoning Systems",
address = "Palo Alto, CA",
year = 1992
}
@InProceedings{BeckE93,
author = "Jon Beck and David Eichmann",
title = "Program and interface slicing for reverse engineering",
booktitle = "Proc. 15th International Conference on Software Engineering",
pages = "509--518",
year = 1993,
address = "Baltimore",
month = May
}
@Article{MoriconiW90,
author = "Mark Moriconi and Timothy C. Winkler",
title = "Approximate reasoning about the semantic effects of
program changes",
journal = IEEETSE,
year = 1990,
volume = 16,
number = 9,
pages = "980--992",
month = Sep
}
@TechReport{YauL88,
author = "S. Yau and S. S. Liu",
title = "Some approaches to logical ripple-effect analysis",
institution = "University of Florida",
year = 1988,
type = "Software Engineering Research Center",
number = "SERC-TR-24-F",
address = "Gainesville, FL",
month = Oct
}
%A K. B. Gallagher
%T Using program slicing in software maintenance
%R Ph. D. Thesis \fR(Technical Report CS-90-05)\fP
%I University of Maryland
%C Baltimore County, Maryland
@PhdThesis{Weiser79,
author = "Mark Weiser",
title = "Program slices: formal, psychological, and practical
investigations of an automatic program abstraction method",
school = "University of Michigan",
year = 1979,
address = "Ann Arbor"
}
@InProceedings{Reps:93:SolvingDemandProblems,
author = "T. Reps",
title = "Solving demand versions of interprocedural analysis problems",
booktitle = "Proceedings of the Fifth International Conference on Compiler Construction",
semno = "D-211",
year = "1993",
series = lncs,
volume = "786",
editor = "P. Fritzson",
pages = "389--403",
publisher = "Springer-Verlag",
OPTnote = "",
keywords = "interprocedural dataflow analysis, magic-sets transformation,
demand algorithms",
summary = "The paper describes how algorithms for demand versions of
program-analysis problems can be obtained from their exhaustive
counterparts essentially for free, by applying the so-called
magic-sets transformation that was developed in the
logic-programming and deductive-database communities."
}
@Unpublished{Reps:94:SequentialNatureOfInterproceduralAnalysis,
author = "T. Reps",
title = "On the sequential nature of interprocedural program-analysis problems",
note = "Submitted for publication",
year = "1994",
month = Jan,
summary = "This paper shows that the interprocedural slicing problem
and the interprocedural gen/kill dataflow-analysis problem
are log-space complete for P. These results provide evidence
that there do not exists fast parallel algorithms for
these problems.",
keywords = "interprocedural dataflow analysis,
interprocedural program slicing,
parallel algorithms,
inherently sequential problems",
semno = "D-212"
}
@Unpublished{Reps:94:DemandInterproceduralAnalysis,
author = "T. Reps",
title = "Demand interprocedural program analysis using logic databases",
note = "Extended version of D-211. Submitted for publication",
year = "1994",
month = may,
summary = "The paper describes how algorithms for demand versions of
program-analysis problems can be obtained from their exhaustive
counterparts essentially for free, by applying the so-called
magic-sets transformation that was developed in the
logic-programming and deductive-database communities.
Applications to interprocedural dataflow analysis and
interprocedural program slicing are described.",
keywords = "interprocedural dataflow analysis,
magic-sets transformation,
interprocedural program slicing,
demand algorithms",
semno = "D-213"
}
@InProceedings{RepsHSR94:SIGSOFT,
author = "Thomas Reps and Susan Horwitz and Mooly Sagiv and Genevieve Rosay",
title = "Speeding up slicing",
booktitle = "SIGSOFT'94: Proceedings of the Second ACM SIGSOFT
Symposium on Foundations of Reverse Engineering",
year = 1994,
month = Dec # "~6--9,",
editor = "David Wile",
address = "New Orleans",
pages = "11--20",
note = "Software Engineering Notes 19:5"
}
@TechReport{RepsHSR94:TR,
author = "Thomas Reps and Susan Horwitz and Mooly Sagiv and Genevieve Rosay",
title = "Speeding up slicing",
institution = "University of Wisconsin -- Madison",
year = "1994",
month = dec,
keywords = "interprocedural program slicing,
system dependence graph,
dynamic programming,
dynamic transitive closure",
semno = "D-214"
}
@TechReport{RepsSagivHorwitz:94:GraphReachabilityReport,
semno = "D-215",
author = "T. Reps and M. Sagiv and S. Horwitz",
title = "Interprocedural dataflow analysis via graph reachability",
institution = "DIKU, University of Copenhagen, Denmark",
year = "1994",
number = "94/14",
summary = "The paper shows how a large class of interprocedural
dataflow-analysis problems can be solved precisely
in polynomial time by transforming them into a
special kind of graph-reachability problem.",
keywords = "demand dataflow analysis,
interprocedural dataflow analysis,
interprocedural program slicing,
graph reachability"
} % ISSN 0107-8283
@InProceedings{RepsHS95,
author = "Thomas Reps and Susan Horwitz and Mooly Sagiv",
title = "Precise interprocedural dataflow analysis via graph reachability",
crossref = "POPL95",
pages = "49--61",
}
@TechReport{Kamkar91-20,
author = {Mariam Kamkar},
title = {Interprocedural dynamic slicing applied to algorithmic debugging},
institution = {Department of Computer and Information Science,
Link\"oping University},
year = 1991,
number = {LiTH-IDA-R-91-20},
address = {Link\"oping, Sweden},
month = {June}
}
@TechReport{Kamkar91-19,
author = {Mariam Kamkar},
title = {An overview and comparative classification of static and
dynamic slicing},
institution = {Department of Computer and Information Science,
Link\"oping University},
year = 1991,
number = {LiTH-IDA-R-91-19},
address = {Link\"oping, Sweden},
month = {June}
}
@InProceedings{FieldR95,
author = "John Field and G. Ramalingam and Frank Tip",
title = "Parametric program slicing",
booktitle = "POPL '95",
year = 1995,
month = jan
}
@InProceedings{GerberH93,
author = "Richard Gerber and Seongsoo Hong",