-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgarbage-collection.bib
1502 lines (1211 loc) · 48.3 KB
/
garbage-collection.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
% -*- Mode: BibTeX -*-
% gc.bib
% Garbage collection, with an emphasis on distributed GC.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% On-the-fly garbage collection (concurrent with mutator)
%%%
@Article{DijkstraLMSS78,
author = "Edsger W. Dijkstra and Leslie Lamport and A. J. Martin and
C. S. Scholten and E. F. M. Steffens",
title = "On-the-Fly Garbage Collection: An Exercise in Cooperation",
journal = CACM,
year = 1978,
volume = 21,
number = 11,
pages = "966--975",
month = Nov
}
@TechReport{Detlefs90a,
author = "Detlefs, David L.",
title = "Concurrent garbage collection for C++",
institution = "Carnegie-Mellon Univ. Computer Science Dept.",
year = "1990",
number = "CMU-CS-90-119",
address = "Pittsburgh, Pennsylvania",
month = may
}
@TechReport{Detlefs90b,
author = "Detlefs, David L.",
title = "Concurrent, atomic garbage collection",
institution = "Carnegie-Mellon Univ. Computer Science Dept.",
year = "1990",
number = "CMU-CS-90-177",
address = "Pittsburgh, Pennsylvania",
month = Oct,
note = "PhD thesis"
}
@TechReport{Kolodner87,
author = "Kolodner, Elliot K.",
title = "Recovery using virtual memory",
institution = "MIT Lab. for Computer Science",
year = "1987",
number = "MIT-LCS-TR-404",
month = jul,
note = "S.M. thesis"
}
@InProceedings{Boehm93,
author = "Hans-Juergen Boehm",
title = "Space efficient conservative garbage collection",
crossref = "PLDI93",
pages = "197--206",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Reference counting
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Distributed garbage collection
%%%
@InProceedings{TelTL86,
author = "Gerard Tel and Richard B. Tan and Jan van Leeuwen",
title = "The derivation of on-the-fly garbage collection algorithms
from distributed termination detection protocols",
booktitle = "STACS '87: 4th Annual Symposium on Theoretical Aspects of
Computer Science",
year = "1987",
editor = "Brandenburg",
pages = "445--455",
publisher = "Springer-Verlag"
}
@InProceedings{Augusteijn,
author = "Lex Augusteijn",
title = "Garbage Collection in a Distributed Environment",
booktitle = "Proc PARLE Parallel Architectures and Languages
Europe (Springer-Verlag LNCS 259)",
pages = "75--93",
year = 1987,
month = jun,
address = "Eindhoven, The Netherlands"
}
@InProceedings{KoikeT1989,
author = "Hanpei Koike and Hidehiko Tanaka",
title = "Generation scavenging {GC} on Distributed-Memory Parallel
Computers",
booktitle = "ASTEM",
NEEDpages = "",
year = 1989,
NEEDaddress = "",
month = nov,
}
@Article{Halstead85,
author = "Halstead, Jr., Robert H.",
title = "Multilisp: A Language for Concurrent Symbolic Computation",
journal = toplas,
year = 1985,
volume = 7,
number = 4,
pages = "501--538",
month = Oct
}
@techreport{AliH85,
author = " Ali, Khayri M.
and Haridi, Seif",
title = "Global Garbage Collection for Distributed
Heap Storage Systems",
institution = "IBM Thomas J. Watson Research Center",
address = "PO Box 218, Yorktown Heights NY 10598",
year = 1985,
month = feb,
number = "RC 11082 (\#49769)"
}
@inproceedings{Rudalics86,
author = "Rudalics, Martin",
title = "Distributed Copying Garbage Collection",
booktitle = "Proc Lisp and Functional Programming Conf.",
pages = "364--372",
year = 1986,
month = aug
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Fault-tolerant distributed garbage collection
%%%
@inproceedings{LiskovL86,
author = " Liskov, Barbara
and Ladin, Rivka",
title = "Highly-Available Distributed Services and
Fault-Tolerant Distributed Garbage Collection",
booktitle = "Proc 5th Annual ACM Symp on Principles of
Distributed Computing",
pages = "29--39",
year = 1986,
month = aug,
address = "Calgary, Alberta, Canada"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Shared-memory garbage collection
%%%
@InProceedings{SharmaS91,
author = "Ravi Sharma and Mary Lou Soffa",
title = "Parallel generational garbage collection",
booktitle = "Object-Oriented Programming Systems, Languages, and
Applications '91",
pages = "16--32",
organization = "ACM",
address = "Phoenix, Arizona",
year = 1991,
month = oct # "~6--11,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Finalization
%%%
@InProceedings{Boehm2003,
author = "Hans-J. Boehm",
title = "Destructors, Finalizers, and Synchronization",
crossref = "POPL2003",
pages = "262--272",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Other bibliographies
%%%
@techreport{NS94102,
author = "Nandakumar Sankaran",
title = "A Bibliography on Garbage Collection",
institution = "Clemson University",
address = "$4^{th}$ Floor, R. C. Edwards Hall, Computer Science
Department, Clemson, SC 29631",
month = feb,
year = 1994,
type = "Technical Report",
number = "94-102",
note = "This paper references literature related to garbage
collection in uniprocessor, parallel, distributed,
real-time, object-oriented, functional and logic
programming systems.",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Local talent
%%%
@Unpublished{Vandevoorde88,
author = "Mark T. Vandevoorde",
title = "An Evaluation of Garbage Collection Algorithms for
Multiprocessors",
note = "Area Exam Paper",
year = 1988,
month = Dec # "~7,"
}
@InProceedings{VG94,
author = "Mark T. Vandevoorde and John V. Guttag",
title = "Using specialized procedures and specification-based analysis
to reduce the runtime costs of modularity",
crossref = "FSE94",
pages = "121--127",
}
@Unpublished{Hsieh91,
author = "Wilson C. Hsieh",
title = "Garbage Collection for Parallel and Distributed Systems",
note = "Area Examination Paper",
year = 1991,
month = Dec # "~5,"
}
@Unpublished{Keen92,
author = "John S. Keen",
title = "A Critical Survey of Some Concurrent Garbage Collection
Algorithms",
note = "Area examination report",
year = 1992,
month = Jun # "~3,"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Grouping information to improve locality
%%%
@InProceedings{WLM91,
author = "Paul R. Wilson and Michael S. Lam and Thomas G. Moher",
title = "Effective ``Static-graph'' Reorganization to Improve
Locality in Garbage-Collected Systems",
crossref = "PLDI91",
pages = "177--191"
}
@INPROCEEDINGS{WM89,
crossref = "OOPSLA89",
AUTHOR = "Paul R. Wilson and Thomas G. Moher",
TITLE = "Design of the {Opportunistic Garbage Collector}",
PAGES = "23--35"
}
@TechReport{Shaw87,
author = "Robert A. Shaw",
title = "Improving Garbage Collector Performance in Virtual Memory",
institution = "Stanford University",
year = 1987,
number = "CSL-TR-87-323",
month = mar
}
@PHDTHESIS{Shaw88,
AUTHOR = "Robert A. Shaw",
TITLE = "Empirical Analysis of a {LISP} System",
SCHOOL = "Stanford University",
MONTH = feb,
YEAR = 1988,
NOTE = "Available as Technical Report CSL-TR-88-351"
}
@InProceedings{Ungar84,
author = "David Ungar",
title = "Generation Scavenging: A Non-disruptive High Performance
Storage Reclamation Algorithm",
BookTitle={SIGSOFT/SIGPLAN Notices Practical Programming Environments Conference},
Organization={ACM},
pages = "157--167",
year = 1984,
month = Apr
}
@INPROCEEDINGS{UngarJ88,
crossref = "OOPSLA88",
AUTHOR = "David Ungar and Frank Jackson",
TITLE = "Tenuring Policies for Generation-Based Storage Reclamation",
PAGES = "1--17"
}
@Book{Ungar87,
author = "David Michael Ungar",
title = "The Design and Evaluation of a High Performance Smalltalk
System",
publisher = "MIT Press",
year = 1987,
series = "ACM Distinguished Dissertations",
address = "Cambridge, Massachusetts",
note = "Ph.D. Dissertation, University of California at Berkeley,
February 1986"
}
@InProceedings{Moon84,
author = "David A. Moon",
title = "Garbage collection in a large lisp system",
booktitle = "Proceedings of the 1984 ACM Symposium on Lisp and
Functional Programming",
pages = "235--246",
year = 1984,
month = Aug
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% I have it, but haven't read it.
%%%
@inproceedings{HudakK82,
author = " Hudak, Paul
and Keller, Robert M.",
title = "Garbage Collection and Task Deletion in
Distributed Applicative Processing Systems",
booktitle = "Proc ACM Symp on Lisp and Functional Programming",
pages = "168--178",
year = 1982,
month = aug,
address = "{Pittsburgh, Pennsylvania}"
}
@inproceedings{Halstead84,
author = "Halstead, Jr., Robert H.",
title = "Implementation of Multilisp: Lisp on a
Multiprocessor",
booktitle = "Proc ACM Symp on Lisp and Functional Programming",
pages = "9--17",
year = 1984,
month = Aug,
address = "{Austin, Texas}"
}
@inproceedings{MillerE89,
author = " Miller, James S.
and Epstein, Barbara S.",
title = "Garbage Collection in MultiScheme (Preliminary Version)",
booktitle = "Proc Parallel Lisp: Languages and Systems
(Springer-Verlag LNCS 441)",
pages = "138--160",
year = 1989,
month = Jun # "5--8,",
address = "{Sendai, Japan}"
}
@inproceedings{Hughes85,
author = "Hughes, John",
title = "A Distributed Garbage Collection Algorithm",
booktitle = "Proc Functional Programming Languages and
Computer Architecture (Springer-Verlag LNCS 201)",
editor = "J. P. Jouannaud",
pages = "256--272",
year = 1985,
month = sep,
address = "{Nancy, France}"
}
@techreport{ManciniS88,
author = " Mancini, L. V.
and Shrivastava, S. K.",
title = "Fault-tolerant reference counting for garbage
collection in distributed systems",
institution = "{University of Newcastle upon Tyne}",
address = "{Computing Laboratory,
University of Newcastle upon Tyne, England}",
year = 1988,
month = jun,
number = "260"
}
@techreport{EllisLA88,
author = " Ellis, John R.
and Li, Kai
and Appel, Andrew W.",
title = "Real-time Concurrent Collection
on Stock Multiprocessors",
institution = "{DEC Systems Research Center}",
address = "{130 Lytton Ave., Palo Alto, California}",
year = 1988,
month = feb,
number = 25
}
@mastersthesis{Venkatasubramanian92,
author = "Venkatasubramanian, Nalini",
title = "Hierarchical Garbage Collection in Scalable
Distributed Systems",
school = "University of Illinois at Urbana-Champaign",
year = 1992
}
@TechReport{Vestal87,
author = "Stephen C. Vestal",
title = "Garbage collection: an exercise in
distributed, fault-tolerant programming",
institution = "University of Washington Department of Computer Science",
year = 1987,
number = "87-01-03",
month = Jan
}
@InProceedings{DiwanMH92,
author = "Amer Diwan and Eliot Moss and Richard Hudson",
title = "Compiler support for garbage collection in a statically
typed language",
crossref = "PLDI92",
pages = "273--282",
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% From John Keen
%%%
% Some of these may be duplicates of stuff that's above.
% And beware the odd or misleading use of some fields, especially institution.
@article{Baker78,
author = "Baker, Jr., Henry G.",
title = "List Processing in Real Time on a Serial Computer",
journal = CACM,
volume = 21,
number = 4,
month = Apr,
year = 1978,
pages = "280--294"
}
@inproceedings{NorthR87,
author = " North, S. C.
and Reppy, J. H.",
title = "Concurrent Garbage Collection on Stock Hardware",
booktitle = "Proc Functional Programming Languages and
Computer Architecture (Springer-Verlag LNCS 274)",
pages = "113--133",
year = 1987,
month = sep,
address = "{Portland, Oregon}"
}
@inproceedings{Brooks84,
author = "Brooks, Rodney A.",
title = "Trading Data Space for Reduced Time and Code
Space in Real-Time Garbage Collection on
Stock Hardware",
booktitle = "Proc ACM Symp on Lisp and Functional Programming",
pages = "256--262",
year = 1984,
month = aug,
address = "{Austin, Texas}"
}
@inproceedings{Ali85b,
author = "Ali, Khayri A. M.",
title = "Garbage Collection Schemes for Distributed
Storage Systems",
booktitle = "Proc Workshop on Implementation of
Functional Languages",
pages = "422--428",
year = 1985,
month = feb
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@article{Fenichel69,
author = " Fenichel, Robert R.
and Yochelson, Jerome C.",
title = "A LISP Garbage-Collector for Virtual-Memory
Computer Systems",
journal = CACM,
volume = 12,
number = 11,
month = nov,
year = 1969,
pages = "611--612"
}
@article{Steele75,
author = "{Steele Jr.}, Guy L.",
title = "Multiprocessing Compactifying Garbage Collection",
journal = CACM,
volume = 18,
number = 9,
month = sep,
year = 1975,
pages = "495--508"
}
@article{Schorr67,
author = " Schorr, H.
and Waite, W.M.",
title = "An Efficient Machine-Independent Procedure for
Garbage Collection in Various List Structures",
journal = CACM,
volume = 10,
number = 8,
month = aug,
year = 1967,
pages = "501--506"
}
@article{Lieberman83,
author = " Lieberman, Henry
and Hewitt, Carl",
title = "A Real-Time Garbage Collector Based on the
Lifetimes of Objects",
journal = CACM,
volume = 26,
number = 6,
month = jun,
year = 1983,
pages = "419--429"
}
@inproceedings{Wise85,
author = "Wise, David S.",
title = "Design for a Multiprocessing Heap with On-board
Reference Counting",
booktitle = "Proc.\ Functional Programming Languages and
Computer Architecture (Springer-Verlag LNCS 201)",
pages = "289--303",
year = 1985,
month = sep,
address = "{Nancy, France}"
}
@inproceedings{Brownbridge85,
author = "Brownbridge, D.R.",
title = "Cyclic Reference Counting for Combinator Machines",
booktitle = "Proc Functional Programming Languages and
Computer Architecture (Springer-Verlag LNCS 201)",
pages = "273--288",
year = 1985,
month = sep,
address = "{Nancy, France}"
}
@inproceedings{Chiueh91,
author = "Chiueh, Tzi-cker",
title = "An Architectural Technique for Cache-level Garbage
Collection",
booktitle = "Proc Functional Programming Languages and
Computer Architecture",
pages = "520--537",
year = 1991,
month = aug,
address = "{Cambridge, Massachusetts}"
}
@inproceedings{Zorn90,
author = "Zorn, Benjamin",
title = "Comparing Mark-and-sweep and Stop-and-copy
Garbage Collection",
booktitle = "Proc ACM Symp on Lisp and Functional Programming",
pages = "87--98",
year = 1990,
month = jun,
address = "{Nice, France}"
}
@inproceedings{Thacker87,
author = " Thacker, Charles P.
and Stewart, Lawrence C.",
title = "Firefly: A Multiprocessor Workstation",
booktitle = "Proc 2nd Int'l Conf on Architectural Support for
Programming Langs and Operating Systems (ASPLOS II)",
pages = "164--172",
year = 1987,
month = oct,
address = "{Palo Alto, California}"
}
@inproceedings{Tel87,
author = " Tel, Gerard
and Tan, Richard B.
and {van Leeuwen}, Jan",
title = "The Derivation of On-the-fly Garbage Collection
Algorithms from Distributed Termination Detection
Protocols",
booktitle = "Proc 4th Annual Symp on Theoretical Aspects of
Computer Science (Springer-Verlag LNCS 247)",
pages = "445--455",
year = 1987,
month = feb,
address = "{Passau, Federal Republic of Germany}"
}
@inproceedings{Tel91,
author = " Tel, Gerard
and Mattern, Friedemann",
title = "The Derivation of Distributed Termination Detection
Algorithms from Garbage Collection Schemes",
booktitle = "Proc PARLE '91 Parallel Architectures and Languages
Europe",
pages = "137--149",
year = 1991,
month = jun,
address = "{Eindhoven, The Netherlands}"
}
@inproceedings{Piquer91,
author = "Piquer, Jos\'{e} M.",
title = "Indirect Reference Counting: A Distributed Garbage
Collection Algorithm",
booktitle = "Proc PARLE '91 Parallel Architectures and Languages
Europe",
pages = "150--165",
year = 1991,
month = jun,
address = "{Eindhoven, The Netherlands}"
}
@inproceedings{Queinnec89,
author = " Queinnec, Christian
and Beaudoing, Barbara
and Queille, Jean-Pierre",
title = "Mark DURING Sweep rather than Mark THEN Sweep",
booktitle = "Proc PARLE '89 Parallel Architectures and Languages
Europe (Springer-Verlag LNCS 365)",
pages = "224--237",
year = 1989,
month = jun,
address = "{Eindhoven, The Netherlands}"
}
@inproceedings{Lester89,
author = "Lester, David R.",
title = "An Efficient Distributed Garbage Collection
Algorithm",
booktitle = "Proc PARLE '89 Parallel Architectures and Languages
Europe (Springer-Verlag LNCS 365)",
pages = "207--223",
year = 1989,
month = jun,
address = "{Eindhoven, The Netherlands}"
}
@inproceedings{Bevan87,
author = "Bevan, D.I.",
title = "Distributed Garbage Collection Using Reference Counting",
booktitle = "Proc PARLE Parallel Architectures and Languages
Europe (Springer-Verlag LNCS 259)",
pages = "176--187",
year = 1987,
month = jun,
address = "{Eindhoven, The Netherlands}"
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Database searches and other possibilities
%%%
@PhdThesis{Ali84,
author = "Ali, K. A. M.",
title = "Object Oriented Storage Management and Garbage Collection
in Distributed Systems",
school = "Royal Institute of Technology",
year = 1984,
address = "Stockholm",
month = dec
}
@MastersThesis{Nori79,
author = "Nori, A. K.",
title = "A Storage Reclamation Scheme for Applicative
Multiprocessor Systems",
school = "University of Utah",
year = 1979,
month = dec
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% From Keene
%%%
@techreport{Zorn89,
author = "Zorn, Benjamin G.",
title = "Comparative Performance Evaluation of
Garbage Collection Algorithms",
institution = "{Univ of California, Berkeley}",
year = 1989,
month = dec,
number = "UCB/CSD 89/544"
}
@techreport{Ellis88,
author = " Ellis, John R.
and Li, Kai
and Appel, Andrew W.",
title = "Real-time Concurrent Collection
on Stock Multiprocessors",
institution = "{DEC Systems Research Centre}",
address = "{130 Lytton Ave., Palo Alto, California}",
year = 1988,
month = feb,
number = 25,
note = "The contents of this report also appear in
{\em Proc ACM Conf on Programming Language Design
and Implementation}, pages 11--20, Atlanta,
Georgia, June 1988."
}
@techreport{DeTreville90,
author = "DeTreville, John",
title = "Experience with Concurrent Garbage
Collectors for Modula-2+",
institution = "{DEC Systems Research Centre}",
address = "{130 Lytton Ave., Palo Alto, California}",
year = 1990,
month = nov,
number = 64
}
@techreport{Ali85,
author = " Ali, Khayri M.
and Haridi, Seif",
title = "Global Garbage Collection for Distributed
Heap Storage Systems",
institution = "{Royal Institute of Technology, Sweden,
and IBM Thomas Watson Research Center}",
address = "{PO Box 218, Yorktown Heights NY 10598}",
year = 1985,
month = feb,
number = "IBM RC 11082 (\#49769)"
}
@techreport{Herlihy90,
author = " Herlihy, Maurice
and Moss, J. Eliot B.",
title = "Non-Blocking Garbage Collection for Multiprocessors",
institution = "{DEC Cambridge Research Lab}",
address = "{Cambridge, Massachusetts}",
year = 1990,
month = nov,
number = "CRL 90/9"
}
@mastersthesis{Totty88,
author = "Totty, Brian",
title = "An Operating Environment for the Jellybean Machine",
school = "Massachusetts Institute of Technology",
year = 1988
}
@article{Dijkstra78,
author = " Dijkstra, Edsger W.
and Lamport, Leslie
and Martin, A.J.
and Scholten, C.S.
and Steffens, E.F.M.",
title = "On-the-Fly Garbage Collection: An Exercise
in Cooperation",
journal = "Comm. of ACM",
volume = "21",
number = 11,
month = nov,
year = 1978,
pages = "966--975"
}
@article{Cohen81,
author = "Cohen, Jacques",
institution = "{Brandeis University}",
title = "Garbage Collection of Linked Data Structures",
journal = "ACM Computing Surveys",
volume = 13,
number = 3,
month = sep,
year = 1981,
pages = "341--367"
}
@inproceedings{North87,
author = " North, S.C.
and Reppy, J.H.",
title = "Concurrent Garbage Collection on Stock Hardware",
booktitle = "Proc Functional Programming Languages and
Computer Architecture (Springer-Verlag LNCS 274)",
pages = "113--133",
year = 1987,
month = sep,
address = "{Portland, Oregon}"
}
@inproceedings{Miller89,
author = " Miller, James S.
and Epstein, Barbara S.",
title = "Garbage Collection in MultiScheme (Preliminary Version)",
booktitle = "Proc Parallel Lisp: Languages and Systems
(Springer-Verlag LNCS 441)",
pages = "138--160",
year = 1989,
month = jun,
address = "{Sendai, Japan}"
}
@inproceedings{Hudak82,
author = " Hudak, Paul
and Keller, Robert M.",
title = "Garbage Collection and Task Deletion in
Distributed Applicative Processing Systems",
booktitle = "Proc ACM Symp on Lisp and Functional Programming",
pages = "168--178",
year = 1982,
month = aug,
address = "{Pittsburgh, Pennsylvania}"
}
@inproceedings{Liskov86,
author = " Liskov, Barbara
and Ladin, Rivka",
title = "Highly-Available Distributed Services and
Fault-Tolerant Distributed Garbage Collection",
booktitle = "Proc 5th Annual ACM Symp on Principles of
Distributed Computing",
pages = "29--39",
year = 1986,
month = aug,
address = "{Calgary, Alberta, Canada}"
}
@inproceedings{Watson87,
author = " Watson, Paul
and Watson, Ian",
title = "An Efficient Garbage Collection Scheme for Parallel
Computer Architectures",
booktitle = "Proc PARLE Parallel Architectures and Languages
Europe (Springer-Verlag LNCS 259)",
pages = "432--443",
year = 1987,
month = jun,
address = "{Eindhoven, The Netherlands}"
}
@inproceedings{Augusteijn87,
author = "Augusteijn, Lex",
title = "Garbage Collection in a Distributed Environment",
booktitle = "Proc PARLE Parallel Architectures and Languages
Europe (Springer-Verlag LNCS 259)",
pages = "75--93",
year = 1987,
month = jun,
address = "{Eindhoven, The Netherlands}"