-
Notifications
You must be signed in to change notification settings - Fork 9
/
heaps.bib
3704 lines (3283 loc) · 93.1 KB
/
heaps.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
@string{ASPLOS = "Architectural Support for Programming Languages and Operating Systems"}
@string{CA = "International Symposium on Computer Architecture"}
@string{CC = "{SIGPLAN} Symposium on Compiler Construction"}
@string{ECOOP = "European Conference on Object Oriented Programming"}
@string{IJCAI = "International Joint Conference on Artificial Intelligence"}
@string{IWMM = "International Workshop on Memory Management"}
@string{IWOOOS = "International Workshop on Object Orientation in Operating Systems"}
@string{LFP = "{ACM} Symposium on {LISP} and Functional Programming"}
@string{OOPSLA = "Conference on Object Oriented Programming Systems, Languages and Applications"}
@string{PARLE = "Parallel Architectures and Languages Europe"}
@string{SOSP = "Symposium on Operating Systems Principles"}
@string{TLC = "{LISP} Conference"}
@string{ai = "Artificial Intelligence"}
@string{bstj = "Bell System Technical Journal"}
@string{compj = "Computer Journal"}
@string{clang = "Computer Languages"}
@string{csurv = "Computing Surveys"}
@string{lsc = "Lisp and Symbolic Computation"}
@string{sigarch = "{SIGARCH} Newsletter"}
@string{spe = "Software Practice and Experience"}
@string{BROWN = "Brown University"}
@string{CORNELL = "Cornell University"}
@string{DECSRC = "Digital Equipment Corporation Systems Research Center"}
@string{DECWRL = "Digital Equipment Corporation Western Research Laboratory"}
@string{NYUCOUR = "Courant Institute of Mathematical Sciences, New York University"}
@string{OGC = "Oregon Graduate Center"}
@string{PRINCETON = "Princeton University"}
@string{RICE = "Rice University"}
@string{SIAM = "Society for Industrial and Applied Mathematics"}
@string{UCB = "University of California, Berkeley"}
@string{UCSC = "University of California at Santa Cruz"}
@string{AW = "Addison-Wesley"}
@string{ACM = "{ACM} Press"}
@string{ENH = "Elsevier North-Holland"}
@string{HR = "Harper and Row"}
@string{HRW = "Holt, Reinhart and Winston"}
@string{MK = "Morgan-Kaufman"}
@string{PH = "Prentice-Hall"}
@string{PP = "Pergamon Press"}
@string{SV = "Springer-Verlag"}
@proceedings{IWMM92,
title = IWMM,
booktitle = IWMM,
editor = "Yves Bekkers and Jacques Cohen",
key = "{IWMM}",
year = 1992,
month = sep,
address = "St. Malo, France",
publisher = SV,
series = LNCS,
number = 637
}
@inproceedings{AP:PGCVMS,
author = "S. Abraham and J. Patel",
title = "Parallel Garbage Collection on a Virtual Memory System",
booktitle = "International Conference on Parallel Processing and
Applications",
editor = "E. Chiricozzi and A. D'Amato",
year = 1987,
month = sep,
address = "L'Aquila, Italy",
publisher = ENH,
pages = {243--246}
}
@inproceedings{RMA:DGC,
author = "Saleh E. Abdullahi and Eliot E. Miranda and Graem A. Ringwood",
title = "Distributed Garbage Collection",
crossref = "IWMM92",
key = "",
pages = "43--81"
}
@techreport{Ae:ISWGC,
author="J.P.H. Aerts",
title="Implementing {SASL} without Garbage Collection",
institution="Eindhoven University of Technology",
address = "The Netherlands",
type="EUT Report",
number="81--WSK--05",
year=1981}
@article{AgHH88,
author = "Agarwal, Anant and Mark Horowitz and John Hennessy",
title = "Cache Performance of Operating Systems and Multiprogramming
Workloads",
journal = tocs,
volume = 6,
number = 4,
pages = "393--431",
month = Nov,
year = 1988 }
@article{APW:PCS,
author = "M. Anderson and R. D. Pose and C. S. Wallace",
title = "A Password-Capability System",
journal = compj,
volume = 29,
number = 1,
pages = "1--7",
year = 1986
}
@inproceedings{ALBL91,
author = "Thomas E. Anderson and Henry M. Levy and Brian N. Bershad
and Edward D. Lazowska",
title = "The Interaction of Architecture and Operating Systems
Design",
crossref = "ASPLOS4",
key = "",
pages = "108--120"
}
@mastersthesis{An:PLP,
author = "Andre, David L.",
title = "Paging in {L}isp Programs",
school = "University of Maryland",
address = "College Park, Maryland",
year = 1986 }
@article{Appel:GCCBFTSA,
author = "Appel, Andrew W.",
title = "Garbage Collection Can Be Faster Than Stack Allocation",
journal = IPL,
volume = 25,
number = 4,
month = jun,
year = 1987,
pages = "275--279"
}
@article{Appel:RTTAN,
title = "Runtime Tags Aren't Necessary",
author = "Andrew W. Appel",
journal = lsc,
year = 1989,
volume = 2,
pages = {153--162}
}
@techreport{Appel:AWL,
AUTHOR = "Andrew W. Appel",
TITLE = "Allocation without Locking",
INSTITUTION = PRINCETON,
NUMBER = "CS-TR-182-88",
YEAR = 1988,
MONTH = sep
}
@techreport{AB:VGC,
AUTHOR = "Andrew W. Appel and Aage Bendiksen",
TITLE = "Vectorized Garbage Collection",
INSTITUTION = PRINCETON,
NUMBER = "CS-TR-169-88",
YEAR = 1988,
MONTH = jul
}
@article{Ap:SGGCFA,
AUTHOR = "Andrew W. Appel",
TITLE = "Simple Generational Garbage Collection and Fast Allocation",
JOURNAL = spe,
VOLUME = 19,
NUMBER = 2,
YEAR = 1989,
MONTH = feb,
PAGES ={171--183}
}
@incollection{Appel:GC,
title = "Garbage Collection",
author = "Andrew W. Appel",
booktitle = "Topics in Advanced Language Implementation",
editor = "Peter Lee",
pages = {89--100},
publisher = "{MIT} Press",
address = "Cambridge, Massachusetts",
year = 1991
}
@inproceedings{AEL:RTCGCSM,
author = "Appel, Andrew W. and John R. Ellis and Kai Li",
title = "Real-time Concurrent Garbage Collection on Stock Multiprocessors",
crossref = "PLDI88",
key = "",
pages = "11--20",
COMMENT = "Not ``real'' real-time, but a very cool algorithm."
}
@techreport{AJ:OCER,
AUTHOR = "Andrew W. Appel and Trevor T. Y. Jim",
TITLE = "Optimizing Closure Environment Representations",
INSTITUTION = PRINCETON,
NUMBER = "CS-TR-168-88",
YEAR = 1988,
MONTH = jul
}
@inproceedings{AM:SMLC,
AUTHOR = "A. W. Appel and D. B. MacQueen",
TITLE = "A Standard {ML} Compiler",
CROSSREF = "FPCA87",
key = "",
PAGES = {301--324}
}
@inproceedings{AL:VMPUP,
title = "Virtual Memory Primitives For User Programs",
author = "Andrew W. Appel and Kai Li",
crossref = "ASPLOS4",
key = "",
pages = "96--107"
}
@article{ArCS84,
author = "Archer, J. E. and R. Conway and F. B. Schneider",
title = "User Recovery and Reversal in Interactive Systems",
journal = toplas,
volume = 6,
number = 1,
month = jan,
year = 1984,
pages = "1--19"
}
@article{Ar:SASimula,
AUTHOR = "Stefan Arnborg",
TITLE = "Storage administration in a virtual memory {SIMULA} system",
JOURNAL = "BIT", VOLUME = 12, YEAR = 1972,
PAGES = {125--141}
}
@article{At:AAPP,
author = "Atkinson, M.P. and P.J. Bailey and K.J. Chisholm and P. W. Cockshott
and R. Morrison",
title = "An Approach to Persistent Programming",
journal = compj,
volume = 26,
number = 4,
month = dec,
year = 1983,
pages = "360--365"
}
@inproceedings{Au:GCDE,
author = "Augusteijn, Lex",
title = "Garbage Collection in a Distributed Environment",
crossref = "PARLE87",
key = "",
pages = "75--93"
}
@inproceedings{Aug:ACLML,
AUTHOR = "Lennart Augustsson",
TITLE = "A Compiler for Lazy {ML}",
CROSSREF = "LFP84",
KEY = "",
PAGES = {218--227}
}
@article{Ax:RCCGFP,
title="Reference Counting of Cyclic Graphs for Functional Programs",
author="T.H. Axford",
address="Univ. Birmingham, Birmingham B15 2tt, W Midlands, England",
journal=CompJ,
year=1990,
volume=33,
number=5,
pages="466--470"
}
@article{Ba:TLRD,
author = "Babaoglu, Ozalp and Domenico Ferrari",
title = "Two-Level Replacement Decisions in Paging Stores",
journal = "{IEEE} Transactions on Computers",
VOLUME = "C-32",
NUMBER = 12,
MONTH = dec,
YEAR = 1983,
PAGES = {1151--1159}
}
@article{BS:DR,
author = "Baer, Jean-Loup and Sager, Gary R.",
title = "Dynamic Improvement of Locality in Virtual Memory Systems",
journal = ieeese,
volume = "SE-2",
number = 1,
month = mar,
pages = {54--62},
year = 1976 }
@article{Bake78,
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"
}
@techreport{Ba:PBCLCA,
author = "Baker, Jr., Henry G.",
title = "The Paging Behavior of the {Cheney} List Copying Algorithm",
type = "Technical Report",
institution = "University of Rochester Computer Science Department",
year = 1980,
note = "Copies available from the author."
}
@unpublished{Ba90:CONS,
author = "Baker, Jr., Henry G.",
title = "{CONS} Should Not {CONS} its Arguments, or, {A} Lazy Alloc is a Smart Alloc",
year = 1990,
note = "Submitted to {\em Communications of the {ACM}}"
}
@unpublished{Ba90:ERFO,
author = "Baker, Jr., Henry G.",
title = "Equal Rights for Functional Objects",
year = 1990,
note = "Submitted to {\em {ACM} Transactions on Programming Languages
and Systems}"
}
@misc{Ba:Treadmill,
author = "Baker, Jr., Henry G.",
title = "The {Treadmill}: Real-time garbage collection without motion
sickness",
month = oct,
year = 1991,
howpublished = "Position paper for {OOPSLA} '91 Workshop on Garbage Collection
in Object-Oriented Systems. Summary appears in \cite{WH:GC91}",
note = "Also appears as {\em SIGPLAN Notices 27}(3):66--70, March 1992"
}
@misc{Ba:CCCC,
author = "Baker, Jr., Henry G.",
title = "Cache-Conscious Copying Collection",
howpublished = "Unpublished position paper for {OOPSLA} '91 Workshop
on Garbage Collection in Object-Oriented Systems. See \cite{WH:GC91}",
note = "Available via anonymous Internet {FTP} from cs.utexas.edu
(/pub/garbage/GC91/baker.ps)",
month = oct,
year = 1991
}
@incollection{BS:VAXS80,
TITLE = "The Design and Implementation of {VAX}/{S}malltalk-80",
AUTHOR = "Stoney Ballard and Stephen Shirron",
CROSSREF = "ST80:BHWA",
COMMENT = "Use variation of Lieberman-Hewitt collector; use indirection table; don't like reference counting",
PAGES = {127--150}
}
@inproceedings{Balz69,
author = "R. M. Balzer",
title = "{EXDAMS}---Extendable Debugging and Monitoring System",
booktitle = "{AFIPS} Proceedings Spring Joint Computer Conference",
month = may,
year = 1969,
publisher = "{AFIPS} Press",
address = "Arlington, Virginia",
pages = "567--580"
}
@techreport{Barb71,
author = "Barbacci, M.",
title = "A LISP Processor for {C.ai}",
institution = "Carnegie-Mellon University",
address = "Pittsburgh, PA",
type = "Memo",
number = "CMU-CS-71-103",
year = 1971
}
@article{Barth:GCatCT,
AUTHOR = "Jeffrey M. Barth",
TITLE = "Shifting Garbage Collection Overhead to Compile Time",
JOURNAL = cacm, VOLUME = 20, NUMBER = 7, YEAR = 1977, MONTH = jul,
PAGES = {513--518}
}
@techreport{Ba:CGCAR,
author = "Bartlett, Joel F.",
title = "Compacting Garbage Collection With Ambiguous Roots",
type = "Technical Report",
number = "88/2",
institution = DECWRL,
address = "Palo Alto, California",
month = Feb,
COMMENT="Excellent trick here---make newness a page property, not an
address-range property",
year = 1988 }
@inproceedings{BDK:IIV,
AUTHOR = "Raymond L. Bates and David Dyer and Johannes A. G. M. Koomen",
TITLE = "Implementation of {I}nterlisp on the {VAX}",
CROSSREF = "LFP82",
KEY = "",
PAGES = {81--87}
}
@article{BB:AlgolStat,
AUTHOR = "A. P. Batson and R. E. Brundage",
TITLE = "Segment Sizes and Lifetimes in {ALGOL} 60 Programs",
JOURNAL = cacm,
VOLUME = 20,
NUMBER = 1,
YEAR = 1977,
MONTH = jan,
PAGES = {36--44}
}
@inproceedings{Be:DIDS,
author = "Bennett, J.K.",
title = "The Design and Implementation of Distributed
{Smalltalk}",
crossref = "OOPSLA87",
key = "",
pages = "318--330"
}
@techreport{Berg88,
author = "Bergstein, Steven H.",
title = "Best-Case Caching in a Symbolic Multiprocessor",
institution = MIT # " {EECS} Department",
month = Feb,
year = 1988,
address = "Cambridge, Massachusetts",
type = "Bachelor's thesis"
}
@inproceedings{Be:DGCURC,
author = "Bevan, David I.",
title = "Distributed Garbage Collection Using Reference Counting",
crossref = "PARLE87",
key = "",
pages = "176/117--187"
}
@article{Be:ERCSDGCP,
author = "Bevan, David I.",
title = "An Efficient Reference Counting Solution to the
Distributed Garbage Collection Problem",
journal = "Parallel Computing",
volume = 9,
number = 2,
year = 1989,
pages = {179--192}
}
@phdthesis{Bishop:phd,
author = "Peter B. Bishop",
title = "Computer Systems with a Very Large Address Space and Garbage Collection",
SCHOOL = MIT # " Laboratory for Computer Science",
note = "Technical report MIT/LCS/TR-178",
YEAR = 1977,
MONTH = MAY
}
@inproceedings{Blau83,
author = "Blau, Ricki",
title = "Paging on an Object-Oriented Personal Computer for {S}malltalk",
booktitle = "Proceedings of the {ACM} {SIGMETRICS} Conference on
Measurement and Modeling of Computer Systems",
address = "Minneapolis, Minnesota",
note = "Also available as Technical Report {UCB/CSD}
83/125, University of California at Berkeley, Computer Science
Division ({EECS}), August 1983",
month = aug,
year = 1983
}
@article{Bo:HL,
AUTHOR = "Daniel G. Bobrow",
TITLE = "A Note on Hash Linking",
JOURNAL = cacm, VOLUME = 18, NUMBER = 7, YEAR = 1975, MONTH = jul,
PAGES = {413--415}
}
@article{Bo:MRSURC,
TITLE = "Managing Reentrant Structures Using Reference Counts",
AUTHOR = "Daniel G. Bobrow",
JOURNAL = toplas, VOLUME = 2, NUMBER = 3, MONTH = jul, YEAR = 1980,
PAGES = {269--273},
comment = "\com can handle some special cases of reference counting, but
restricts the programmer to certain stereotyped patterns."
}
@article{BC:CELS,
TITLE = "Compact Encodings of List Structure",
AUTHOR = "Daniel G. Bobrow and Douglas W. Clark",
JOURNAL = toplas, VOLUME = 1, NUMBER = 2, MONTH = oct, YEAR = 1979,
COMMENT = "Good words on {CDR}-coding",
PAGES = {266--286}
}
@inproceedings{Bo:HOSSCGC,
title = "Hardware and Operating System Support for Conservative Garbage Collection",
author = "Hans-Juergen Boehm",
booktitle = IWMM,
year = 1991,
month = oct,
address = "Palo Alto, California",
pages = {61--67},
publisher = "{IEEE} Press"
}
@misc{BMBC:GC91panel,
author = "Hans-Juergen Boehm and Eliot Moss and Joel Bartlett and David Chase",
title = "Panel Discussion: Conservative vs. Accurate Garbage Collection",
howpublished= "Summary appears in \cite{WH:GC91}",
month = oct,
year = 1991
}
@techreport{BA:IR,
AUTHOR= "Hans-Juergen Boehm and Alan Demers",
TITLE= "Implementing {R}ussell",
INSTITUTION=RICE,
NUMBER="COMP TR85-25",
YEAR=1985
}
@unpublished{BH:SAOCR,
AUTHOR = "Hans Boehm and Lucy Hederman",
TITLE = "Storage Allocation Optimization in a Compiler for {R}ussell",
NOTE = "Submitted for publication",
YEAR = 1988,
MONTH = jul
}
@inproceedings{BDS:MPGC,
AUTHOR = "Hans-J. Boehm and Alan J. Demers and Scott Shenker",
TITLE = "Mostly Parallel Garbage Collection",
CROSSREF = "PLDI91",
KEY = "",
PAGES= {157--164}
}
@incollection{BL:SSAGCA68,
TITLE = "A Scheme of Storage Allocation and Garbage Collection for {ALGOL} 68",
AUTHOR = "P. Branquart and J. Lewi",
CROSSREF = "Peck71",
PAGES = {199--238}
}
@inproceedings{Broo84,
author = "Rodney A. Brooks",
title = "Trading Data Space For Reduced Time and Code Space in Real-Time
Collection on Stock Hardware",
crossref = "LFP84",
key = "",
pages = "108--113"
}
@inproceedings{BGS:S1CL,
AUTHOR = "Rodney A. Brooks and Richard P. Gabriel and Guy L. {Steele Jr.}",
TITLE = "S-1 {C}ommon {LISP} Implementation",
CROSSREF = "LFP82",
KEY = "",
PAGES = {108--113}
}
@inproceedings{BGS:OCfLSL,
AUTHOR = "Rodney A. Brooks and Richard P. Gabriel and Guy L. {Steele Jr.}",
TITLE = "An Optimizing Compiler for Lexically Scoped {LISP}",
YEAR = 1982,
PAGES = {261--275},
BOOKTITLE = CC
}
@inproceedings{BGS:LiLHPP,
AUTHOR = "Rodney A. Brooks and Richard P. Gabriel and Guy L. {Steele Jr.}",
TITLE = "{LISP}-in-{LISP}: High Performance and Portability",
CROSSREF = "IJCAI83", VOLUME = 2, PAGES = {845--849}
}
@phdthesis{Br:thesis,
TITLE = "Recursive Structures in Computer Systems",
AUTHOR = "D. R. Brownbridge",
SCHOOL = "University of Newcastle upon Tyne",
ADDRESS = "United Kingdom",
YEAR = 1984,
month = sep
}
@inproceedings{Bro:CRC,
AUTHOR = "D. R. Brownbridge",
TITLE = "Cyclic Reference Counting for Combinator Machines",
CROSSREF = "FPCA85",
key = "",
PAGES = {273--288},
comments={\com
Presents an interesting, but incorrect algorithm
(see [Salkild, 1987]), for cyclic reference counting
based on the notion of strong and weak (cycle-closing) pointers.}
}
@inproceedings{BJLM:ODCLFS,
AUTHOR = "Michael Burrows and Charles Jerian and Butler Lampson and Timothy Mann",
TITLE = "On-line data compression in a log-structured file system",
CROSSREF = "ASPLOS5",
key = "",
pages = "2--9"
}
@inproceedings{Card:CFL,
AUTHOR = "Luca Cardelli",
TITLE = "Compiling a Functional Language",
CROSSREF = "LFP84",
KEY = "",
PAGES = {208--217}
}
@inproceedings{CG:CCCC,
author = "Vincent Cate and Thomas Gross",
title = "Combining the Concepts of Compression and Caching for a
Two-Level File System",
crossref = "ASPLOS4",
key = "",
pages = {200--209}
}
@incollection{Ca:OO1,
author = "R. G. G. Cattell",
title = "An Engineering Database Benchmark",
booktitle = "The Benchmark Handbook for Database and Transaction Processing Systems",
editor = "Jim Gray",
publisher = MK,
year = 1991,
pages = {247--281}
}
@inproceedings{CaWB86,
author = "Caudill, Patrick J. and Allen Wirfs-Brock",
title = "A Third-Generation {S}malltalk-80 Implementation",
crossref = "OOPSLA86",
key = "",
pages = "119--130"
}
@misc{Caud88,
author = "Patrick J. Caudill",
note = "personal communication"
}
@article{CFKA90,
author = "Chaiken, David and Craig Fields and Kiyoshi Kurihara and Anant
Agarwal",
title = "Directory-Based Cache Coherence in Large-Scale Multiprocessors",
journal = "{IEEE} Computer",
volume = 23,
number = 6,
month = jun,
year = 1990,
pages = "49--58"
}
@phdthesis{Chambers:phd,
title = "The Design and Implementation of the SELF Compiler, an Optimizing Compiler for an Object-Oriented Programming Language",
author = "Craig Chambers",
school = "Stanford University",
addres = "Palo Alto, California",
year = 1992,
month = mar
}
@InProceedings{ChambersU89,
author = "Craig Chambers and David Ungar",
title = "Customization: Optimizing Compiler Technology for
{Self}, a Dynamically-Typed Object-Oriented Language",
crossref = "PLDI89",
pages = "146--160",
}
@inproceedings{ChKa89,
author = "Ellis E. Chang and Randy H. Katz",
title = "Exploiting Inheritance and Structure Semantics for
Effective Clustering and Buffering in an Object-Oriented {DBMS}",
booktitle = "Proceedings of {ACM} {SIGMOD} International Conference
on Management of Data",
note = {Snowbird, Utah},
month = jun,
year = 1989,
pages = {348--357}
}
@phdthesis{Chase:phd,
AUTHOR="David Chase",
TITLE="Garbage Collection and Other Optimizations",
YEAR=1987, MONTH=aug,
SCHOOL=RICE,
ADDRESS = "Houston, Texas"
}
@inproceedings{Chase:SCSAO,
AUTHOR = "David Chase",
TITLE = "Safety Considerations for Storage Allocation Optimizations",
CROSSREF = "PLDI88",
KEY = "",
PAGES= {1--10}
}
@inproceedings{CLLB:LSO,
author = "Jeffrey S. Chase and Henry M. Levy and Edward D. Lazowska and Miche
Baker-Harvey",
title = "Lightweight Shared Objects in a 64-bit Operating System",
crossref = "OOPSLA92",
key = "",
pages = "397--413"
}
@techreport{CLBL:HTU64AS,
author = "Jeffrey S. Chase and Henry M. Levy and Miche Baker-Harvey
and Edward D. Lazowska",
title = "How to Use a 64-bit Virtual Address Space",
institution = "University of Washington",
address = "Seattle, Washington",
number = "92-03-02",
year = 1992,
month = feb
}
@article{Ch:NLCA,
AUTHOR = "C. J. Cheney",
TITLE = "A Nonrecursive List Compacting Algorithm",
JOURNAL = cacm, VOLUME = 13, NUMBER = 11, YEAR = 1970, MONTH = nov,
PAGES = {677--678}
}
@article{Ch:RCGC,
AUTHOR = "Thomas W. Christopher",
TITLE = "Reference Count Garbage Collection",
JOURNAL = spe, VOLUME = 14, NUMBER = 6, PAGES = {503--507},
MONTH = jun, YEAR = 1984,
comments={ \com
A heap management scheme for languages (such as Fortran) which do not have
this facility buit in.
Does not rely on the existance of {\it roots} in the graph.
His complex algorithm actually contains a cyclic reference count algorithm.}
}
@article{Cl:MDLSUL,
AUTHOR = "Douglas W. Clark",
TITLE = "Measurements of Dynamic List Structure Use in {L}isp",
JOURNAL = ieeese, VOLUME = 5, NUMBER = 1, MONTH = jan, YEAR = 1979,
PAGES = {51--59}
}
@article{CG:ESLS,
AUTHOR = "Douglas W. Clark and C. Cordell Green",
TITLE = "An Empirical Study of List Structure in {LISP}",
JOURNAL = cacm, VOLUME = 20, NUMBER = 2, YEAR = 1977, MONTH = feb,
PAGES = {78--87},
COMMENT = "Great paper; evidence pro CDR-coding, con fancy CONS"
}
@inproceedings{ClHO88,
author = "Clinger, Will and Anne Hartheimer and Erik Ost",
title = "Implementation Strategies for Continuations",
crossref = "LFP88",
key = "",
pages = "124--131"
}
@article{CACB84,
author = "Cockshott, W. and M. Atkinson and K. Chisholm and P. Bailey
and R. Morrison",
title = "Persistent Object Management System",
journal = spe,
volume = 14,
number = 1,
month = jan,
year = 1984,
pages = "49--71"
}
@article{Co:GCLDS,
TITLE = "Garbage Collection of Linked Data Structures",
AUTHOR = "Jacques Cohen",
JOURNAL = csurv, VOLUME = 13, NUMBER = 3, YEAR = 1981, MONTH = sep,
PAGES = {341--367}
}
@article{CN:CCAGC,
TITLE = "Comparison of Compacting Algorithms for Garbage Collection",
AUTHOR = "Jacques Cohen and Alexandru Nicolau",
JOURNAL = toplas, VOLUME = 5, NUMBER = 4, MONTH = oct, YEAR = 1983,
PAGES = {532--553}
}
@article{Co:RC,
AUTHOR = "George E. Collins",
TITLE = "A Method for Overlapping and Erasure of Lists",
JOURNAL = cacm,
YEAR = 1960,
VOLUME = 2,
NUMBER = 12,
month = dec,
COMMENT = "The original? reference counting paper.",
PAGES = {655--657}
}
@inproceedings {Co:ERWGCM,
author = "Corporaal, H. and T. Veldman and A. J. van de Goor",
title = "An Efficient, Reference Weightbased Garbage
Collection Method for Distributed Systems",
booktitle = "Proceedings of the PARBASE-90 Conference",
year = 1990,
pages = "463 -- 465",
publisher = "{IEEE}"
}
@article{Cour88,
author = "Courts, Robert",
title = "Improving Locality of Reference in a Garbage-Collecting Memory
Management System",
journal = CACM,
volume = 31,
number = 9,
month = Sep,
year = 1988,
pages = "1128--1138"
}
@article{Cr:GCASMP,
author = "Crammond, J.",
title = "A Garbage Collection Algorithm for Shared Memory
Parallel Processors",
journal = "International Journal of Parallel Programming",
volume = 17,
number = 6,
year = 1989,
month = Dec,
pages = "497 -- 522"
}
@inproceedings{Da:IERTLGC,
title = "Improved Effectiveness from a Real-Time {LISP} Garbage Collector",
author = "Jeffrey L. Dawson",
crossref = "LFP82",
key = "",
pages = {159--167}
}
@inproceedings{De:Grasshopper,
author = "Alan Dearle and Rex di Bona and James Farrow and Frans Henskens and Anders Lindstrom and John Rosenberg and Francis Vaughan",
title = "Grasshopper---A Persistent Operating System for Conventional Hardware",
crossref = "IWOOOS92",
key = "",
pages = {81--85}
}
@inproceedings{DRHV:EOSSPOS,
author = "Alan Dearle and others",
title = "An Examination of Operating System Support for Persistent Object Systems",
booktitle = "25th Hawaii International Conference on Systems Sciences",
year = 1992,
volume = 1,
pages = {779--789}
}
@techreport{Deb:EGCGM,
AUTHOR = "Ashoke Deb",
TITLE = "An efficient garbage collector for graph machines",
INSTITUTION = OGC,
YEAR = 1984,
NUMBER = "CS/E-84-003"
}
@inproceedings{DWH:CGCGC,
author = "Demers, Alan and Mark Weiser and Barry Hayes and Daniel Bobrow
and Scott Shenker",
title = "Combining Generational and Conservative Garbage Collection:
Framework and Implementations",
crossref = "POPL90",
key = "",
pages = "261--269"
}
@article{De:MSGCDA,
author = "Derbyshire, Margaret H.",
title = "Mark Scan Garbage Collection on a Distributed Architecture",
journal = "Lisp and Symbolic Computation",
year = 1990,
month = Apr,
volume = 3,
number = 2,
pages = "135--170"
}
@inproceedings{De:GCRTCL,
title = "Garbage Collection and Runtime Typing as a {C}++ Library",
author = "David L. Detlefs",
crossref = "USENIXCxx92",
pages = "37--56",
key = ""
}
@techreport{De:CGCC,
title = "Concurrent garbage collection for {C}++",
author = "David L. Detlefs",
institution = "Carnegie-Mellon University",
number = "CMU-CS-90-119",
year = 1990,
month = may
}
@phdthesis{De:phdthesis,
author = "David L. Detlefs",
title = "Concurrent, Atomic Garbage Collection",
school = "Dept. of Computer Science, Carnegie Mellon University",
year = 1991,
month = nov,
address = "Pittsburgh, Pennsylvania",
note = "Technical report CMU-CS-90-177"
}
@techreport{DeTr90,
author = "John DeTreville",
title = "Experience with Concurrent Garbage Collectors for {M}odula-2+",
institution = DECSRC,
address = "Palo Alto, California",
number = 64,
month = Aug, year = 1990
}
@techreport{De:HeapUsage,
author = "John DeTreville",
title = "Heap Usage in the {Topaz} Environment",
institution = DECSRC,
address = "Palo Alto, California",
number = 63,
month = Aug, year = 1990
}
@article{DeBo76,
author = "Deutsch, L. Peter and Daniel G. Bobrow",
title = "An Efficient, Incremental, Automatic Garbage Collector",
journal = cacm,
volume = 19,
number = 9,
month = Sep,
year = 1976,
COMMENT = "Transaction-based reference counting; interesting blend of marking and ref-counting collection",
pages = "522--526"
}
@inproceedings{DeSc84,
author = "Deutsch, Peter L. and A.M. Schiffman",
title = "Efficient Implementation of the {S}malltalk-80 System",
crossref = "POPL84",
key = "",
pages = "297--302"
}
@phdthesis{Dickman:phd,
AUTHOR = "Peter Dickman",
TITLE = "Distributed Object Management in a Non-Small Graph of Autonomous Networks With Few Failures",
SCHOOL = "University of Cambridge",
ADDRESS = "United Kingdom",
MONTH = sep,
YEAR = 1991
}
@unpublished{Di:OWRC,
author = "Dickman, Peter",
title = "Optimising Weighted Reference Counts for Scalable
Fault-Tolerant Distributed Object-Support Systems",
note = "Submitted for {HICSS} 26",
month = jun,
year = 1992
}
@article{DL:OTFGC,
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, VOLUME = 21, NUMBER = 11, YEAR = 1978, MONTH = nov,
COMMENT = "much overlooked algorithm, presented as more of a concurrency exercise than a garbage collector",
PAGES = {966--975}
}
@inproceedings{DMH:CSGC,
author = "Amer Diwan and Eliot Moss and Richard Hudson",
title = "Compiler Support for Garbage Collection in a Statically-Typed Language",
crossref = "PLDI92",
key = "",
pages = {273--282}