book.bib 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296
  1. @book{Pierce:2004fk,
  2. editor = {Benjamin C. Pierce},
  3. publisher = {MIT Press},
  4. title = {Advanced Topics in Types and Programming Languages},
  5. year = {2004}}
  6. @book{Pierce:SF2,
  7. author = {Benjamin C. Pierce and Arthur Azevedo de Amorim
  8. and Chris Casinghino and Marco Gaboardi and
  9. Michael Greenberg and C\v{a}t\v{a}lin Hri\c{t}cu
  10. and Vilhelm Sj\"{o}berg and Andrew Tolmach
  11. and Brent Yorgey},
  12. title = {Programming Language Foundations},
  13. series = {Software Foundations},
  14. volume = {2},
  15. year = {2018},
  16. publisher = {Electronic textbook},
  17. keys = {verification,books},
  18. url = {https://softwarefoundations.cis.upenn.edu/plf-current/index.html}
  19. }
  20. @Book{Harper2016,
  21. author = {Robert Harper},
  22. title = {Practical Foundations for Programming Languages},
  23. publisher = {Cambridge University Press},
  24. year = 2016,
  25. edition = {2nd edition}}
  26. @Article{Appel90,
  27. author = {Appel, Andrew W.},
  28. title = {A {Runtime} {System}},
  29. journal = {{LISP} and Symbolic Computation},
  30. year = 1990,
  31. volume = 3,
  32. number = 4,
  33. pages = {343--380}
  34. }
  35. @book{Appel91,
  36. place={Cambridge},
  37. title={Compiling with Continuations},
  38. publisher={Cambridge University Press},
  39. author={Appel, Andrew W.},
  40. year={1991}
  41. }
  42. @article{Pierce:2000,
  43. author = {Pierce, Benjamin C. and Turner, David N.},
  44. title = {Local Type Inference},
  45. year = 2000,
  46. publisher = {Association for Computing Machinery},
  47. volume = 22,
  48. number = 1,
  49. journal = {ACM Trans. Program. Lang. Syst.},
  50. pages = {1–44},
  51. keywords = {subtyping, polymorphism, type inference}
  52. }
  53. @inproceedings{Hatcliff:1994ea,
  54. author = {John Hatcliff and Olivier Danvy},
  55. booktitle = {Proceedings of the 21st ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages},
  56. series = {POPL '94},
  57. pages = {458--471},
  58. publisher = {Association for Computing Machinery},
  59. title = {A Generic Account of Continuation-Passing Styles},
  60. year = {1994}}
  61. @article{Plotkin:1975,
  62. author = {G. D. Plotkin},
  63. journal = {Theoretical Computer Science},
  64. number = {2},
  65. pages = {125-159},
  66. rating = {5},
  67. read = {Yes},
  68. title = {Call-by-{N}ame, {C}all-by-{V}alue and the {L}ambda-{C}alculus},
  69. volume = {1},
  70. year = {1975}}
  71. @inproceedings{Lawall:1993,
  72. author = {Lawall, Julia L. and Danvy, Olivier},
  73. title = {Separating Stages in the Continuation-Passing Style Transformation},
  74. year = 1993,
  75. publisher = {Association for Computing Machinery},
  76. booktitle = {Proceedings of the 20th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages},
  77. pages = {124–136},
  78. numpages = 13,
  79. series = {POPL '93}
  80. }
  81. @book{Friedman:2001,
  82. author = {Daniel P. Friedman and
  83. Mitchell Wand and
  84. Christopher T. Haynes},
  85. title = {Essentials of {Programming} {Languages}},
  86. edition = {2nd edition},
  87. publisher = {{MIT} Press},
  88. year = 2001,
  89. timestamp = {Fri, 15 Apr 2011 13:37:34 +0200},
  90. biburl = {https://dblp.org/rec/books/daglib/0017436.bib},
  91. bibsource = {dblp computer science bibliography, https://dblp.org}
  92. }
  93. @inproceedings{Fischer:1972,
  94. author = {Fischer, Michael J.},
  95. title = {Lambda Calculus Schemata},
  96. year = 1972,
  97. publisher = {Association for Computing Machinery},
  98. booktitle = {Proceedings of ACM Conference on Proving Assertions about
  99. Programs},
  100. pages = {104–109}
  101. }
  102. @InProceedings{Wijngaarden:1966,
  103. author = {Adriaan {van Wijngaarden}},
  104. title = {Recursive Definition of Syntax and Semantics},
  105. booktitle = {Formal Language Description Languages for Computer Programming},
  106. year = 1966,
  107. editor = {T. B. Steel Jr.},
  108. pages = {13-24},
  109. publisher = {North-Holland}}
  110. @book{Aho:2006wb,
  111. author = {Aho, Alfred V. and Lam, Monica S. and Sethi, Ravi and Ullman, Jeffrey D.},
  112. date-added = {2021-10-22 09:38:52 -0400},
  113. date-modified = {2021-10-22 09:38:59 -0400},
  114. publisher = {Addison-Wesley Longman},
  115. title = {Compilers: Principles, Techniques, and Tools},
  116. edition = {2nd edition},
  117. year = {2006}}
  118. @article{Logothetis:1981,
  119. author = {Logothetis, George and Mishra, Prateek},
  120. title = {Compiling {S}hort-{C}ircuit {B}oolean {E}xpressions in {O}ne {P}ass},
  121. journal = {Software: Practice and Experience},
  122. volume = {11},
  123. number = {11},
  124. pages = {1197-1214},
  125. year = {1981}
  126. }
  127. @article{Clarke:1989,
  128. author = {Clarke, Keith},
  129. title = {One-Pass Code Generation Using Continuations},
  130. year = {1989},
  131. issue_date = {Dec. 1989},
  132. publisher = {John Wiley & Sons},
  133. volume = {19},
  134. number = {12},
  135. journal = {Softw. Pract. Exper.},
  136. pages = {1175–1192},
  137. numpages = {18}
  138. }
  139. @article{Moggi:1991in,
  140. author = {Eugenio Moggi},
  141. journal = {Inf. Comput.},
  142. number = {1},
  143. pages = {55--92},
  144. publisher = {Academic Press},
  145. title = {Notions of {C}omputation and {M}onads},
  146. volume = {93},
  147. year = {1991}
  148. }
  149. @article{Flatt:2019tb,
  150. articleno = {78},
  151. author = {Flatt, Matthew and Derici, Caner and Dybvig, R. Kent and Keep, Andrew W. and Massaccesi, Gustavo E. and Spall, Sarah and Tobin-Hochstadt, Sam and Zeppieri, Jon},
  152. journal = {Proc. ACM Program. Lang.},
  153. number = {ICFP},
  154. numpages = {15},
  155. publisher = {Association for Computing Machinery},
  156. title = {Rebuilding Racket on Chez Scheme (Experience Report)},
  157. volume = {3},
  158. year = {2019}}
  159. @incollection{Danvy:2003fk,
  160. author = {Danvy, Olivier},
  161. booktitle = {Compiler Construction: Proceedings of the 12th International Conference},
  162. pages = {77-89},
  163. series = {Lecture Notes in Computer Science},
  164. title = {A New One-Pass Transformation into Monadic Normal Form},
  165. volume = {2622},
  166. year = {2003}
  167. }
  168. @article{PeytonJones:1998,
  169. author = {Simon L. {Peyton Jones} and Andr{\'e} L.M. Santos},
  170. journal = {Science of Computer Programming},
  171. number = {1},
  172. pages = {3-47},
  173. title = {A {T}ransformation-{B}ased {O}ptimiser for {H}askell},
  174. volume = {32},
  175. year = {1998}}
  176. @book{Russell2003,
  177. author = {Russell, Stuart J. and Norvig, Peter},
  178. title = {Artificial Intelligence: A Modern Approach},
  179. year = {2003},
  180. publisher = {Pearson Education},
  181. edition = {2}
  182. }
  183. @book{Kernighan:1988nx,
  184. author = {Brian W. Kernighan and Dennis M. Ritchie},
  185. publisher = {Prentice Hall},
  186. title = {The C {P}rogramming {L}anguage},
  187. year = {1988}
  188. }
  189. @book{Dybvig:1987aa,
  190. author = {Dybvig, R. Kent},
  191. publisher = {Prentice-Hall},
  192. title = {The Scheme Programming Language},
  193. year = {1987}
  194. }
  195. @book{Abelson:1996uq,
  196. author = {Abelson, Harold and Sussman, Gerald J.},
  197. edition = {2nd edition},
  198. publisher = {MIT Press},
  199. title = {Structure and Interpretation of Computer Programs},
  200. year = {1996}
  201. }
  202. @book{Friedman:1996aa,
  203. author = {Friedman, Daniel P. and Felleisen, Matthias},
  204. publisher = {MIT Press},
  205. title = {The Little Schemer},
  206. edition = {4th edition},
  207. year = {1996}
  208. }
  209. @book{Felleisen:2001aa,
  210. author = {Felleisen, Matthias and Findler, Robert Bruce and
  211. Flatt, Matthew and Krishnamurthi, Shriram},
  212. publisher = {MIT Press},
  213. title = {How to Design Programs: An Introduction to
  214. Programming and Computing},
  215. year = {2001}
  216. }
  217. @book{Felleisen:2013aa,
  218. author = {Felleisen, Matthias and Conrad, M.D. Barski and
  219. Horn, David Van and
  220. Eight Students of Northeastern University},
  221. publisher = {No Starch Press},
  222. title = {Realm of Racket: Learn to Program, One Game at a
  223. Time!},
  224. year = {2013}
  225. }
  226. @techreport{Flatt:2014aa,
  227. author = {Matthew Flatt and Robert Bruce Findler and PLT},
  228. institution = {PLT},
  229. number = {6.0},
  230. title = {The Racket Guide},
  231. year = {2014}
  232. }
  233. @manual{Intel:2015aa,
  234. author = {Intel},
  235. institution = {Intel},
  236. title = {Intel 64 and IA-32 Architectures Software Developer's
  237. Manual Combined Volumes: 1, 2A, 2B, 2C, 3A, 3B, 3C
  238. and 3D},
  239. year = {2015}
  240. }
  241. @book{Bryant:2010aa,
  242. author = {Bryant, Randal E. and O'Hallaron, David R.},
  243. edition = {2nd edition},
  244. publisher = {Addison-Wesley},
  245. title = {Computer Systems: A Programmer's Perspective},
  246. year = {2010}
  247. }
  248. @manual{Bryant:2005aa,
  249. author = {Randal E. Bryant and David R. O'Hallaron},
  250. organization = {Carnegie Mellon University},
  251. title = {x86-64 Machine-Level Programming},
  252. year = {2005}
  253. }
  254. @manual{Matz:2013aa,
  255. author = {Michael Matz and Jan Hubicka and Andreas Jaeger and
  256. Mark Mitchell},
  257. title = {System V Application Binary Interface, AMD64
  258. Architecture Processor Supplement},
  259. publisher = {Linux Foundation},
  260. year = {2013}
  261. }
  262. @misc{Microsoft:2018aa,
  263. author = {Microsoft},
  264. url = {https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/x64-architecture},
  265. title = {x64 Architecture},
  266. year = {2018}
  267. }
  268. @misc{Microsoft:2020aa,
  269. author = {Microsoft},
  270. url = {https://docs.microsoft.com/en-us/cpp/build/x64-calling-convention},
  271. title = {x64 {C}alling {C}onvention},
  272. year = {2020}
  273. }
  274. @inproceedings{Dybvig:2006aa,
  275. author = {Dybvig, R. Kent},
  276. booktitle = {Proceedings of the Eleventh ACM SIGPLAN International
  277. Conference on Functional Programming},
  278. pages = {1--12},
  279. publisher = {Association for Computing Machinery},
  280. series = {ICFP '06},
  281. title = {The Development of {Chez} {Scheme}},
  282. year = {2006}
  283. }
  284. @inproceedings{Sarkar:2004fk,
  285. author = {Dipanwita Sarkar and Oscar Waddell and
  286. R. Kent Dybvig},
  287. booktitle = {Proceedings of the Ninth ACM SIGPLAN
  288. International Conference on Functional Programming},
  289. series = {ICFP '04},
  290. pages = {201--212},
  291. publisher = {Association for Computing Machinery},
  292. title = {A {N}anopass {I}nfrastructure for {C}ompiler {E}ducation},
  293. year = {2004}
  294. }
  295. @phdthesis{Keep:2012aa,
  296. author = {Andrew W. Keep},
  297. school = {Indiana University},
  298. title = {A Nanopass Framework for Commercial Compiler
  299. Development},
  300. year = {2012}
  301. }
  302. @techreport{Dybvig:2010aa,
  303. author = {R. Kent Dybvig and Andrew Keep},
  304. institution = {Indiana University},
  305. title = {P523 Compiler Assignments},
  306. year = {2010}
  307. }
  308. @inproceedings{Ghuloum:2006bh,
  309. author = {Abdulaziz Ghuloum},
  310. booktitle = {Proceedings of the Workshop on Scheme and Functional Programming},
  311. url = {http://www.schemeworkshop.org/2006/},
  312. title = {An Incremental Approach to Compiler Construction},
  313. year = {2006}
  314. }
  315. @article{Backus:1960aa,
  316. author = {Backus, J. W. and Bauer, F. L. and Green, J. and
  317. Katz, C. and McCarthy, J. and Perlis, A. J. and
  318. Rutishauser, H. and Samelson, K. and Vauquois, B. and
  319. Wegstein, J. H. and van Wijngaarden, A. and
  320. Woodger, M.},
  321. editor = {Naur, Peter},
  322. journal = {Commun. ACM},
  323. number = {5},
  324. pages = {299--314},
  325. publisher = {Association for Computing Machinery},
  326. title = {Report on the Algorithmic Language ALGOL 60},
  327. volume = {3},
  328. year = {1960}
  329. }
  330. @article{Knuth:1964aa,
  331. author = {Knuth, Donald E.},
  332. journal = {Commun. ACM},
  333. number = {12},
  334. pages = {735--736},
  335. publisher = {Association for Computing Machinery},
  336. title = {Backus Normal Form vs. Backus Naur Form},
  337. volume = {7},
  338. year = {1964}
  339. }
  340. @article{SPERBER:2009aa,
  341. author = {Sperber, Michael and Dybvig, R. Kent and Flatt, Matthew and
  342. Van Straaten, Anton and Findler, Robby and
  343. Matthews, Jacob},
  344. journal = {Journal of Functional Programming},
  345. pages = {1--301},
  346. title = {Revised$^6$ Report on the Algorithmic Language
  347. Scheme},
  348. volume = {19},
  349. year = {2009}
  350. }
  351. @techreport{plt-tr,
  352. author = {Matthew Flatt and PLT},
  353. institution = {PLT},
  354. url = {https://docs.racket-lang.org/reference/index.html},
  355. title = {The {R}acket Reference~6.0},
  356. year = {2014}
  357. }
  358. @inproceedings{reynolds72:_def_interp,
  359. author = {John C. Reynolds},
  360. booktitle = {{ACM} '72: Proceedings of the {ACM} Annual
  361. Conference},
  362. pages = {717--740},
  363. publisher = {Association for Computing Machinery},
  364. title = {Definitional Interpreters for Higher-Order
  365. Programming Languages},
  366. year = {1972}
  367. }
  368. @book{Jones:1993uq,
  369. author = {Neil D. Jones and Carsten K. Gomard and
  370. Peter Sestoft},
  371. publisher = {Prentice-Hall},
  372. title = {Partial {Evaluation} and {Automatic} {Program} {Generation}},
  373. year = {1993}
  374. }
  375. @techreport{Danvy:1991fk,
  376. author = {Olivier Danvy},
  377. institution = {Kansas State University},
  378. number = {CIS-92-02},
  379. title = {Three Steps for the {CPS} Transformation},
  380. year = {1991}
  381. }
  382. @inproceedings{Flanagan:1993cg,
  383. author = {Cormac Flanagan and Amr Sabry and Bruce F. Duba and
  384. Matthias Felleisen},
  385. booktitle = {Proceedings of the ACM SIGPLAN Conference on {P}rogramming {L}anguage {D}esign and
  386. {I}mplementation},
  387. pages = {502--514},
  388. series = {PLDI '93},
  389. title = {The {Essence} of {Compiling} with {Continuations}},
  390. year = {1993}
  391. }
  392. @book{Cooper:2011aa,
  393. author = {Keith Cooper and Linda Torczon},
  394. edition = {2nd edition},
  395. publisher = {Morgan Kaufmann},
  396. title = {Engineering a Compiler},
  397. year = {2011}
  398. }
  399. @book{Appel:2003fk,
  400. author = {Andrew W. Appel and Jens Palsberg},
  401. publisher = {Cambridge University Press},
  402. title = {Modern Compiler Implementation in Java},
  403. year = {2003}
  404. }
  405. @book{Balakrishnan:1996ve,
  406. author = {Balakrishnan, V. K.},
  407. publisher = {Dover},
  408. title = {Introductory Discrete Mathematics},
  409. year = {1996}
  410. }
  411. @book{Rosen:2002bh,
  412. author = {Rosen, Kenneth H.},
  413. publisher = {McGraw-Hill Higher Education},
  414. title = {Discrete Mathematics and Its Applications},
  415. year = {2002}
  416. }
  417. @article{Brelaz:1979eu,
  418. author = {Br\'{e}laz, Daniel},
  419. journal = {Commun. ACM},
  420. number = {4},
  421. pages = {251--256},
  422. publisher = {Association for Computing Machinery},
  423. title = {New {Methods} to {Color} the {Vertices} of a {Graph}},
  424. volume = {22},
  425. year = {1979}
  426. }
  427. @article{Horwitz:1966aa,
  428. author = {Horwitz, L. P. and Karp, R. M. and Miller, R. E. and
  429. Winograd, S.},
  430. journal = {J. ACM},
  431. number = {1},
  432. pages = {43--61},
  433. publisher = {Association for Computing Machinery},
  434. title = {Index Register Allocation},
  435. volume = {13},
  436. year = {1966}
  437. }
  438. @inbook{Backus:1978aa,
  439. author = {Backus, John},
  440. booktitle = {History of Programming Languages},
  441. pages = {25--74},
  442. publisher = {Association for Computing Machinery},
  443. title = {The History of Fortran I, II, and III},
  444. year = {1978}
  445. }
  446. @article{Chaitin:1981vl,
  447. author = {Gregory J. Chaitin and Marc A. Auslander and
  448. Ashok K. Chandra and John Cocke and Martin E. Hopkins and
  449. Peter W. Markstein},
  450. journal = {Computer Languages},
  451. pages = {47-57},
  452. title = {Register {Allocation} via {Coloring}},
  453. volume = {6},
  454. year = {1981}
  455. }
  456. @article{Kempe:1879aa,
  457. author = {A. B. Kempe},
  458. journal = {American Journal of Mathematics},
  459. number = {3},
  460. pages = {193--200},
  461. publisher = {Johns Hopkins University Press},
  462. title = {On the Geographical Problem of the Four Colours},
  463. volume = {2},
  464. year = {1879}
  465. }
  466. @inproceedings{Chaitin:1982vn,
  467. author = {G. J. Chaitin},
  468. booktitle = {SIGPLAN '82: Proceedings of the 1982 {SIGPLAN}
  469. Symposium on Compiler Construction},
  470. pages = {98--105},
  471. publisher = {Association for Computing Machinery},
  472. title = {Register {Allocation} \& {Spilling} via {Graph} {Coloring}},
  473. year = {1982}
  474. }
  475. @article{Briggs:1994kx,
  476. author = {Preston Briggs and Keith D. Cooper and Linda Torczon},
  477. journal = {ACM Trans. Program. Lang. Syst.},
  478. number = {3},
  479. pages = {428--455},
  480. publisher = {Association for Computing Machinery},
  481. title = {Improvements to Graph Coloring Register Allocation},
  482. volume = {16},
  483. year = {1994}
  484. }
  485. @article{George:1996aa,
  486. author = {George, Lal and Appel, Andrew W.},
  487. journal = {ACM Trans. Program. Lang. Syst.},
  488. number = {3},
  489. pages = {300--324},
  490. publisher = {Association for Computing Machinery},
  491. title = {Iterated Register Coalescing},
  492. volume = {18},
  493. year = {1996}
  494. }
  495. @incollection{Matula:1972aa,
  496. author = {David W. Matula and George Marble and Joel D. Isaacson},
  497. booktitle = {Graph Theory and Computing},
  498. pages = {109 - 122},
  499. publisher = {Academic Press},
  500. title = {Graph Coloring Algorithms},
  501. year = {1972}
  502. }
  503. @inproceedings{Chow:1984ys,
  504. author = {Frederick Chow and John Hennessy},
  505. booktitle = {Proceedings of the 1984 SIGPLAN
  506. {Symposium} on {Compiler} {Construction}},
  507. pages = {222--232},
  508. publisher = {Association for Computing Machinery},
  509. title = {Register {Allocation} by {Priority-Based} {Coloring}},
  510. year = {1984}
  511. }
  512. @inproceedings{Cooper:1998ly,
  513. author = {Keith D. Cooper and L. Taylor Simpson},
  514. booktitle = {Compiler Construction: Proceedings of the 7th International Conference},
  515. series = {Lecture Notes in Computer Science},
  516. volume = {1383},
  517. publisher = {Springer},
  518. title = {Live {Range} {Splitting} in a {Graph} {Coloring} {Register}
  519. {Allocator}},
  520. year = {1998}
  521. }
  522. @inproceedings{Palsberg:2007si,
  523. author = {Palsberg, Jens},
  524. booktitle = {Proceedings of the {T}hirteenth {A}ustralasian
  525. {S}ymposium on {T}heory of {C}omputing},
  526. pages = {3--3},
  527. publisher = {Australian Computer Society},
  528. title = {Register {A}llocation via {C}oloring of {C}hordal {G}raphs},
  529. year = {2007}
  530. }
  531. @article{Poletto:1999uq,
  532. author = {Massimiliano Poletto and Vivek Sarkar},
  533. journal = {ACM Trans. Program. Lang. Syst.},
  534. number = {5},
  535. pages = {895--913},
  536. publisher = {Association for Computing Machinery},
  537. title = {Linear {S}can {R}egister {A}llocation},
  538. volume = {21},
  539. year = {1999}
  540. }
  541. @inproceedings{Allen:1970uq,
  542. author = {Frances E. Allen},
  543. booktitle = {Proceedings of a Symposium on Compiler Optimization},
  544. publisher = {Association for Computing Machinery},
  545. pages = {1--19},
  546. title = {Control {Flow} {Analysis}},
  547. year = {1970}
  548. }
  549. @techreport{Friedman:1976aa,
  550. author = {Daniel P. Friedman and David S. Wise},
  551. institution = {Indiana University},
  552. number = {TR44},
  553. title = {Cons {Should} {Not} {Evaluate} {Its} {Arguments}},
  554. year = {1976}
  555. }
  556. @book{Pierce:2002hj,
  557. author = {Benjamin C. Pierce},
  558. publisher = {MIT Press},
  559. title = {Types and {P}rogramming {L}anguages},
  560. year = {2002}
  561. }
  562. @article{Lieberman:1983aa,
  563. author = {Lieberman, Henry and Hewitt, Carl},
  564. journal = {Commun. ACM},
  565. number = {6},
  566. pages = {419--429},
  567. publisher = {Association for Computing Machinery},
  568. title = {A Real-Time Garbage Collector Based on the Lifetimes
  569. of Objects},
  570. volume = {26},
  571. year = {1983}
  572. }
  573. @inproceedings{Ungar:1984aa,
  574. author = {Ungar, David},
  575. booktitle = {Proceedings of the First ACM SIGSOFT/SIGPLAN Software
  576. Engineering Symposium on Practical Software
  577. Development Environments},
  578. pages = {157--167},
  579. publisher = {Association for Computing Machinery},
  580. series = {SDE 1},
  581. title = {Generation Scavenging: A Non-Disruptive High
  582. Performance Storage Reclamation Algorithm},
  583. year = {1984}
  584. }
  585. @book{Jones:1996aa,
  586. author = {Jones, Richard and Lins, Rafael},
  587. publisher = {John Wiley \& Sons},
  588. title = {Garbage Collection: Algorithms for Automatic Dynamic
  589. Memory Management},
  590. year = {1996}
  591. }
  592. @inproceedings{Detlefs:2004aa,
  593. author = {Detlefs, David and Flood, Christine and Heller, Steve and
  594. Printezis, Tony},
  595. booktitle = {Proceedings of the 4th International Symposium on
  596. Memory Management},
  597. series = {ISMM '04},
  598. pages = {37--48},
  599. publisher = {Association for Computing Machinery},
  600. title = {Garbage-{F}irst {Garbage} {Collection}},
  601. year = {2004}
  602. }
  603. @inproceedings{Tene:2011kx,
  604. author = {Tene, Gil and Iyengar, Balaji and Wolf, Michael},
  605. booktitle = {Proceedings of the International Symposium on Memory
  606. Management},
  607. pages = {79--88},
  608. publisher = {Association for Computing Machinery},
  609. series = {ISMM '11},
  610. title = {C4: the {C}ontinuously {C}oncurrent {C}ompacting {C}ollector},
  611. year = {2011}
  612. }
  613. @incollection{Wilson:1992fk,
  614. author = {Wilson, Paul},
  615. booktitle = {Memory Management},
  616. editor = {Bekkers, Yves and Cohen, Jacques},
  617. pages = {1-42},
  618. publisher = {Springer},
  619. series = {Lecture Notes in Computer Science},
  620. title = {Uniprocessor Garbage Collection Techniques},
  621. volume = {637},
  622. year = {1992}
  623. }
  624. @article{Cheney:1970aa,
  625. author = {C. J. Cheney},
  626. journal = {Commun. of the {ACM}},
  627. number = {11},
  628. title = {A Nonrecursive List Compacting Algorithm},
  629. volume = {13},
  630. year = {1970}
  631. }
  632. @article{McCarthy:1960dz,
  633. author = {McCarthy, John},
  634. journal = {Commun. ACM},
  635. number = {4},
  636. pages = {184--195},
  637. publisher = {Association for Computing Machinery},
  638. title = {Recursive {F}unctions of {S}ymbolic {E}xpressions and their
  639. {C}omputation by {M}achine, Part I},
  640. volume = {3},
  641. year = {1960}
  642. }
  643. @article{Collins:1960aa,
  644. author = {Collins, George E.},
  645. journal = {Commun. ACM},
  646. number = {12},
  647. pages = {655--657},
  648. publisher = {Association for Computing Machinery},
  649. title = {A Method for Overlapping and Erasure of Lists},
  650. volume = {3},
  651. year = {1960}
  652. }
  653. @inproceedings{Blackburn:2004aa,
  654. author = {Blackburn, Stephen M. and Cheng, Perry and
  655. McKinley, Kathryn S.},
  656. booktitle = {Proceedings of the Joint International Conference on
  657. Measurement and Modeling of Computer Systems},
  658. pages = {25--36},
  659. publisher = {Association for Computing Machinery},
  660. title = {Myths and Realities: The Performance Impact of
  661. Garbage Collection},
  662. year = {2004}
  663. }
  664. @book{Jones:2011aa,
  665. author = {Jones, Richard and Hosking, Antony and Moss, Eliot},
  666. publisher = {Chapman \& Hall/CRC},
  667. title = {The Garbage Collection Handbook: The Art of Automatic
  668. Memory Management},
  669. year = {2011}
  670. }
  671. @inproceedings{Shahriyar:2013aa,
  672. author = {Shahriyar, Rifat and Blackburn, Stephen M. and
  673. Yang, Xi and McKinley, Kathryn M.},
  674. booktitle = {Proceeding of the 24th ACM SIGPLAN
  675. Conference on Object Oriented Programming Systems
  676. Languages and Applications},
  677. series = {OOPSLA '13},
  678. publisher = {Association for Computing Machinery},
  679. title = {Taking Off the Gloves with Reference Counting Immix},
  680. year = {2013}
  681. }
  682. @inproceedings{Cutler:2015aa,
  683. author = {Cutler, Cody and Morris, Robert},
  684. booktitle = {Proceedings of the 2015 International Symposium on
  685. Memory Management},
  686. pages = {131--142},
  687. publisher = {Association for Computing Machinery},
  688. series = {ISMM '15},
  689. title = {Reducing Pause Times with Clustered Collection},
  690. year = {2015}
  691. }
  692. @inproceedings{Shidal:2015aa,
  693. author = {Shidal, Jonathan and Spilo, Ari J. and
  694. Scheid, Paul T. and Cytron, Ron K. and
  695. Kavi, Krishna M.},
  696. booktitle = {Proceedings of the 2015 International Symposium on
  697. Memory Management},
  698. pages = {118--130},
  699. publisher = {Association for Computing Machinery},
  700. series = {ISMM '15},
  701. title = {Recycling Trash in Cache},
  702. year = {2015}
  703. }
  704. @inproceedings{Osterlund:2016aa,
  705. author = {\"{O}sterlund, Erik and L\"{o}we, Welf},
  706. booktitle = {Proceedings of the 2016 ACM SIGPLAN International
  707. Symposium on Memory Management},
  708. pages = {1--12},
  709. publisher = {Association for Computing Machinery},
  710. series = {ISMM '16},
  711. title = {Block-Free Concurrent GC: Stack Scanning and Copying},
  712. year = {2016}
  713. }
  714. @inproceedings{Jacek:2019aa,
  715. author = {Jacek, Nicholas and Moss, J. Eliot B.},
  716. booktitle = {Proceedings of the 2019 ACM SIGPLAN International
  717. Symposium on Memory Management},
  718. pages = {53--63},
  719. publisher = {Association for Computing Machinery},
  720. series = {ISMM '19},
  721. title = {Learning When to Garbage Collect with Random Forests},
  722. year = {2019}
  723. }
  724. @inproceedings{Gamari:2020aa,
  725. author = {Gamari, Ben and Dietz, Laura},
  726. booktitle = {Proceedings of the 2020 ACM SIGPLAN International
  727. Symposium on Memory Management},
  728. pages = {87--99},
  729. publisher = {Association for Computing Machinery},
  730. series = {ISMM '20},
  731. title = {Alligator Collector: A Latency-Optimized Garbage
  732. Collector for Functional Programming Languages},
  733. year = {2020}
  734. }
  735. @inproceedings{Moore:1959aa,
  736. author = {E.F. Moore},
  737. booktitle = {Proceedings of an International Symposium on the
  738. Theory of Switching},
  739. title = {The {S}hortest {P}ath {T}hrough a {M}aze},
  740. publisher = {Harvard University Press},
  741. year = {1959}
  742. }
  743. @book{Cormen:2001uq,
  744. author = {Thomas H. Cormen and Clifford Stein and
  745. Ronald L. Rivest and Charles E. Leiserson},
  746. publisher = {McGraw-Hill Higher Education},
  747. title = {Introduction to Algorithms},
  748. year = {2001}
  749. }
  750. @techreport{Steele:1977ab,
  751. author = {Guy L. Steele},
  752. institution = {MIT Artificial Intelligence Lab},
  753. number = {420},
  754. type = {AI Memo},
  755. title = {Data Representations in PDP-10 MacLISP},
  756. year = {1977}
  757. }
  758. @article{Appel:1989aa,
  759. author = {Appel, Andrew W.},
  760. journal = {LISP and Symbolic Computation},
  761. number = {2},
  762. pages = {153-162},
  763. publisher = {Kluwer Academic Publishers},
  764. title = {Runtime {Tags} {Aren't} {Necessary}},
  765. volume = {2},
  766. year = {1989}
  767. }
  768. @inproceedings{Goldberg:1991aa,
  769. author = {Goldberg, Benjamin},
  770. booktitle = {Proceedings of the ACM SIGPLAN 1991 Conference on
  771. Programming Language Design and Implementation},
  772. pages = {165--176},
  773. publisher = {Association for Computing Machinery},
  774. series = {PLDI '91},
  775. title = {Tag-free Garbage Collection for Strongly Typed
  776. Programming Languages},
  777. year = {1991}
  778. }
  779. @inproceedings{Diwan:1992aa,
  780. author = {Diwan, Amer and Moss, Eliot and Hudson, Richard},
  781. booktitle = {Proceedings of the ACM SIGPLAN 1992 Conference on
  782. Programming Language Design and Implementation},
  783. pages = {273--282},
  784. publisher = {Association for Computing Machinery},
  785. title = {Compiler Support for Garbage Collection in a
  786. Statically Typed Language},
  787. year = {1992}
  788. }
  789. @inproceedings{Siebert:2001aa,
  790. author = {Siebert, Fridtjof},
  791. title = {Constant-Time Root Scanning for Deterministic Garbage
  792. Collection},
  793. pages = {304--318},
  794. publisher = {Springer},
  795. booktitle = {Compiler Construction: Proceedings of the 10th International Conference},
  796. year = {2001}
  797. }
  798. @inproceedings{Henderson:2002aa,
  799. author = {Henderson, Fergus},
  800. booktitle = {Proceedings of the 3rd International Symposium on
  801. Memory Management},
  802. pages = {150--156},
  803. publisher = {Association for Computing Machinery},
  804. series = {ISMM '02},
  805. title = {Accurate Garbage Collection in an Uncooperative
  806. Environment},
  807. year = {2002}
  808. }
  809. @article{Baker:2009aa,
  810. author = {Baker, J. and Cunei, A. and Kalibera, T. and
  811. Pizlo, F. and Vitek, J.},
  812. journal = {Concurr. Comput.: Pract. Exper.},
  813. number = {12},
  814. pages = {1572--1606},
  815. publisher = {John Wiley and Sons Ltd.},
  816. title = {Accurate Garbage Collection in Uncooperative
  817. Environments Revisited},
  818. volume = {21},
  819. year = {2009}
  820. }
  821. @techreport{Dijkstra:1982aa,
  822. author = {E. W. Dijkstra},
  823. institution = {University of Texas at Austin},
  824. number = {EWD831},
  825. title = {Why {Numbering} {Should} {Start} at {Zero}},
  826. year = {1982}
  827. }
  828. @article{Kelsey:1998di,
  829. author = {R. Kelsey and W. Clinger and J. Rees},
  830. journal = {Higher-Order and Symbolic Computation},
  831. number = {1},
  832. title = {Revised$^5$ Report on the Algorithmic Language
  833. Scheme},
  834. volume = {11},
  835. year = {1998}
  836. }
  837. @techreport{Cardelli:1983aa,
  838. author = {Luca Cardelli},
  839. institution = {AT\&T Bell Laboratories},
  840. number = {TR-107},
  841. title = {The Functional Abstract Machine},
  842. year = {1983}
  843. }
  844. @inproceedings{Minamide:1996ys,
  845. author = {Minamide, Yasuhiko and Morrisett, Greg and
  846. Harper, Robert},
  847. booktitle = {Proceedings of the 23rd ACM SIGPLAN-SIGACT Symposium
  848. on Principles of Programming Languages},
  849. pages = {271--283},
  850. publisher = {Association for Computing Machinery},
  851. series = {POPL '96},
  852. title = {Typed {C}losure {C}onversion},
  853. year = {1996}
  854. }
  855. @inproceedings{Shivers:1988aa,
  856. author = {Shivers, O.},
  857. booktitle = {Proceedings of the ACM SIGPLAN 1988 Conference on
  858. Programming Language Design and Implementation},
  859. pages = {164--174},
  860. publisher = {Association for Computing Machinery},
  861. series = {PLDI '88},
  862. title = {Control Flow Analysis in {Scheme}},
  863. year = {1988}
  864. }
  865. @inproceedings{Gilray:2016aa,
  866. author = {Gilray, Thomas and Lyde, Steven and Adams, Michael D. and
  867. Might, Matthew and Van Horn, David},
  868. booktitle = {Proceedings of the 43rd Annual ACM SIGPLAN-SIGACT
  869. Symposium on Principles of Programming Languages},
  870. pages = {691--704},
  871. publisher = {Association for Computing Machinery},
  872. series = {POPL '16},
  873. title = {Pushdown Control-Flow Analysis for Free},
  874. year = {2016}
  875. }
  876. @inproceedings{Keep:2012ab,
  877. author = {Keep, Andrew W. and Hearn, Alex and Dybvig, R. Kent},
  878. booktitle = {Proceedings of the Workshop on Scheme and Functional Programming},
  879. title = {Optimizing Closures in {O}(0)-time},
  880. year = {2012}
  881. }
  882. @article{Church:1932aa,
  883. author = {Church, Alonzo},
  884. journal = {Annals of Mathematics},
  885. number = {2},
  886. pages = {346-366},
  887. publisher = {Annals of Mathematics},
  888. series = {Second Series},
  889. title = {A Set of Postulates for the Foundation of Logic},
  890. volume = {33},
  891. year = {1932}
  892. }
  893. @techreport{Guy-L.-Steele:1978yq,
  894. author = {Guy L. Steele},
  895. institution = {MIT},
  896. title = {Rabbit: A Compiler for {Scheme}},
  897. year = {1978}
  898. }
  899. @inproceedings{Cardelli:1984aa,
  900. author = {Cardelli, Luca},
  901. booktitle = {ACM Symposium on LISP and Functional Programming},
  902. publisher = {Association for Computing Machinery},
  903. title = {Compiling a Functional Language},
  904. year = {1984}
  905. }
  906. @inproceedings{Gordon:1978aa,
  907. author = {Gordon, M. and Milner, R. and Morris, L. and
  908. Newey, M. and Wadsworth, C.},
  909. booktitle = {Proceedings of the 5th ACM SIGACT-SIGPLAN Symposium
  910. on Principles of Programming Languages},
  911. pages = {119--130},
  912. publisher = {Association for Computing Machinery},
  913. series = {POPL '78},
  914. title = {A Metalanguage for Interactive Proof in LCF},
  915. year = {1978}
  916. }
  917. @book{Milner:1990fk,
  918. author = {Robin Milner and Mads Tofte and Robert Harper},
  919. publisher = {MIT Press},
  920. title = {The {D}efinition of Standard ML},
  921. year = {1990}
  922. }
  923. @phdthesis{Dybvig:1987ab,
  924. author = {R. Kent Dybvig},
  925. school = {University of North Carolina at Chapel Hill},
  926. title = {Three Implementation Models for Scheme},
  927. year = {1987}
  928. }
  929. @article{Cardelli:1985kx,
  930. author = {Luca Cardelli and Peter Wegner},
  931. journal = {ACM Comput. Surv.},
  932. number = {4},
  933. pages = {471--523},
  934. publisher = {Association for Computing Machinery},
  935. title = {On {Understanding} {Types}, {Data} {Abstraction}, and
  936. {Polymorphism}},
  937. volume = {17},
  938. year = {1985}
  939. }
  940. @inproceedings{Kildall:1973vn,
  941. author = {Gary A. Kildall},
  942. booktitle = {Proceedings of the 1st {A}nnual ACM
  943. SIGACT-SIGPLAN {S}ymposium on {P}rinciples of {P}rogramming
  944. {L}anguages},
  945. series = {POPL '73},
  946. pages = {194--206},
  947. publisher = {Association for Computing Machinery},
  948. title = {A {U}nified {A}pproach to {G}lobal {P}rogram {O}ptimization},
  949. year = {1973}
  950. }
  951. @book{Kleene:1952aa,
  952. author = {Kleene, S.},
  953. publisher = {Van Nostrand},
  954. title = {Introduction to {M}etamathematics},
  955. year = {1952}
  956. }
  957. @inproceedings{Tobin-Hochstadt:2006fk,
  958. author = {Sam Tobin-Hochstadt and Matthias Felleisen},
  959. booktitle = {Companion to the 21st ACM SIGPLAN Conference on Object Oriented Programming Systems Languages and Applications (Dynamic Languages Symposium)},
  960. title = {Interlanguage Migration: From Scripts to Programs},
  961. publisher = {Association for Computing Machinery},
  962. year = {2006}
  963. }
  964. @inproceedings{Matthews:2007zr,
  965. author = {Jacob Matthews and Robert Bruce Findler},
  966. booktitle = {Proceedings of the 34th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages},
  967. series = {POPL '07},
  968. title = {Operational Semantics for Multi-Language Programs},
  969. publisher = {Association for Computing Machinery},
  970. year = {2007}
  971. }
  972. @inproceedings{Flanagan:2006mn,
  973. author = {Cormac Flanagan},
  974. booktitle = {Proceedings of the 33rd {ACM SIGPLAN-SIGACT} Symposium
  975. on Principles of Programming Languages},
  976. series = {POPL '06},
  977. pages = {245-256},
  978. title = {Hybrid Type Checking},
  979. publisher = {Association for Computing Machinery},
  980. year = {2006}
  981. }
  982. @inproceedings{Gronski:2006uq,
  983. author = {Jessica Gronski and Kenneth Knowles and Aaron Tomb and
  984. Stephen N. Freund and Cormac Flanagan},
  985. booktitle = {Proceedings of the Workshop on Scheme and Functional Programming},
  986. pages = {93--104},
  987. title = {Sage: Hybrid Checking for Flexible Specifications},
  988. url = {http://www.schemeworkshop.org/2006/},
  989. year = {2006}
  990. }
  991. @inproceedings{Anderson:2002kd,
  992. author = {Christopher Anderson and Sophia Drossopoulou},
  993. booktitle = {Electron. Notes Theor. Comput. Sci.},
  994. number = {8},
  995. publisher = {Elsevier},
  996. title = {{BabyJ}: From Object Based to Class Based
  997. Programming via Types},
  998. volume = {82},
  999. year = {2003}
  1000. }
  1001. @inproceedings{Siek:2006bh,
  1002. author = {Jeremy G. Siek and Walid Taha},
  1003. booktitle = {Proceedings of the Workshop on Scheme and Functional Programming},
  1004. pages = {81-92},
  1005. title = {Gradual {T}yping for {F}unctional {L}anguages},
  1006. url = {http://www.schemeworkshop.org/2006/},
  1007. year = {2006}
  1008. }
  1009. @inproceedings{Wadler:2009qv,
  1010. author = {Philip Wadler and Robert Bruce Findler},
  1011. booktitle = {Proceedings of Programming Languages and Systems: 18th European Symposium on Programming},
  1012. pages = {1--16},
  1013. series = {ESOP 2009},
  1014. title = {Well-Typed Programs Can't Be Blamed},
  1015. year = {2009}
  1016. }
  1017. @inproceedings{Herman:2006uq,
  1018. author = {David Herman and Aaron Tomb and Cormac Flanagan},
  1019. booktitle = {Trends in Functional Prog. (TFP)},
  1020. title = {Space-{E}fficient {G}radual {T}yping},
  1021. year = {2007}
  1022. }
  1023. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  1024. @article{Herman:2010aa,
  1025. author = {Herman, David and Tomb, Aaron and Flanagan, Cormac},
  1026. journal = {Higher-Order and Symbolic Computation},
  1027. number = {2},
  1028. pages = {167-189},
  1029. publisher = {Springer US},
  1030. title = {Space-{E}fficient {G}radual {T}yping},
  1031. volume = {23},
  1032. year = {2010}
  1033. }
  1034. @article{Henglein:1994nz,
  1035. author = {Fritz Henglein},
  1036. journal = {Science of Computer Programming},
  1037. number = {3},
  1038. pages = {197-230},
  1039. title = {Dynamic Typing: Syntax and Proof Theory},
  1040. volume = {22},
  1041. year = {1994}
  1042. }
  1043. @inproceedings{Siek:2015ab,
  1044. author = {Jeremy G. Siek and Peter Thiemann and Philip Wadler},
  1045. booktitle = {Proceedings of the ACM SIGPLAN Conference on Programming Language Design and Implementation},
  1046. series = {PLDI '15},
  1047. title = {Blame and {C}oercion: {T}ogether {A}gain for the {F}irst
  1048. {T}ime},
  1049. year = {2015}
  1050. }
  1051. @inproceedings{Kuhlenschmidt:2019aa,
  1052. author = {Andre Kuhlenschmidt and Deyaaeldeen Almahallawi and
  1053. Jeremy G. Siek},
  1054. booktitle = {Proceedings of the ACM SIGPLAN Conference on Programming Language Design and
  1055. Implementation},
  1056. publisher = {Association for Computing Machinery},
  1057. series = {PLDI '19},
  1058. title = {Toward Efficient Gradual Typing for Structural Types
  1059. via Coercions},
  1060. year = {2019}
  1061. }
  1062. @inproceedings{stroustrup88:_param_types,
  1063. author = {Bjarne Stroustrup},
  1064. booktitle = {Proceedings of the USENIX {C++} Conference},
  1065. title = {Parameterized Types for {C++}},
  1066. publisher = {USENIX},
  1067. year = {1988}
  1068. }
  1069. @inproceedings{Blelloch:1993aa,
  1070. author = {Blelloch, Guy E. and Hardwick, Jonathan C. and
  1071. Chatterjee, Siddhartha and Sipelstein, Jay and
  1072. Zagha, Marco},
  1073. booktitle = {Proceedings of the Fourth ACM SIGPLAN Symposium on
  1074. Principles and Practice of Parallel Programming},
  1075. publisher = {Association for Computing Machinery},
  1076. title = {Implementation of a Portable Nested Data-Parallel
  1077. Language},
  1078. year = {1993}
  1079. }
  1080. @inproceedings{Weeks:2006aa,
  1081. author = {Weeks, Stephen},
  1082. booktitle = {Proceedings of the 2006 Workshop on ML},
  1083. pages = {1},
  1084. publisher = {Association for Computing Machinery},
  1085. series = {ML '06},
  1086. title = {Whole-Program Compilation in MLton},
  1087. year = {2006}
  1088. }
  1089. @techreport{liskov79:_clu_ref,
  1090. author = {Barbara Liskov and Russ Atkinson and Toby Bloom and
  1091. Eliot Moss and Craig Schaffert and Bob Scheifler and
  1092. Alan Snyder},
  1093. institution = {MIT},
  1094. number = {LCS-TR-225},
  1095. publisher = {Massachusetts Institute of Technology},
  1096. title = {{CLU} Reference Manual},
  1097. year = {1979}
  1098. }
  1099. @inproceedings{Liskov:1993dk,
  1100. author = {Liskov, Barbara},
  1101. booktitle = {The {S}econd ACM SIGPLAN {C}onference on {H}istory
  1102. of {P}rogramming {L}anguages},
  1103. series = {HOPL-II},
  1104. pages = {133--147},
  1105. publisher = {Association for Computing Machinery},
  1106. title = {A {H}istory of {CLU}},
  1107. year = {1993}
  1108. }
  1109. @inbook{Appel:1987aa,
  1110. author = {Appel, Andrew W. and MacQueen, David B.},
  1111. booktitle = {Functional Programming Languages and Computer
  1112. Architecture},
  1113. pages = {301--324},
  1114. publisher = {Springer},
  1115. title = {A Standard ML Compiler},
  1116. year = {1987}
  1117. }
  1118. @inproceedings{Bracha:1998fk,
  1119. author = {Bracha, Gilad and Odersky, Martin and
  1120. Stoutamire, David and Wadler, Philip},
  1121. booktitle = {Proceedings of the 13th ACM SIGPLAN {Conference} on
  1122. {Object-Oriented} {Programming}, {Systems}, {Languages}, and
  1123. {Applications}},
  1124. publisher = {Association for Computing Machinery},
  1125. title = {Making the {Future} {Safe} for the {Past}: {Adding}
  1126. {Genericity} to the {Java} {Programming} {Language}},
  1127. year = {1998}
  1128. }
  1129. @inproceedings{Leroy:1992qb,
  1130. author = {Xavier Leroy},
  1131. booktitle = {Proceedings of the 19th ACM SIGPLAN-SIGACT
  1132. {Symposium} on {Principles} of {Programming} {Languages}},
  1133. series = {POPL '92},
  1134. pages = {177--188},
  1135. publisher = {Association for Computing Machinery},
  1136. title = {Unboxed {Objects} and {Polymorphic} {Typing}},
  1137. year = {1992}
  1138. }
  1139. @article{Morrison:1991aa,
  1140. author = {Morrison, R. and Dearle, A. and Connor, R. C. H. and
  1141. Brown, A. L.},
  1142. journal = {ACM Trans. Program. Lang. Syst.},
  1143. number = {3},
  1144. pages = {342--371},
  1145. publisher = {Association for Computing Machinery},
  1146. title = {An Ad Hoc Approach to the Implementation of
  1147. Polymorphism},
  1148. volume = {13},
  1149. year = {1991}
  1150. }
  1151. @inproceedings{Harper:1995um,
  1152. author = {Robert Harper and Greg Morrisett},
  1153. booktitle = {Proceedings of the 22nd ACM SIGPLAN-SIGACT
  1154. {Symposium} on {Principles} of {Programming} {Languages}},
  1155. pages = {130--141},
  1156. publisher = {Association for Computing Machinery},
  1157. title = {Compiling {Polymorphism} {Using} {Intensional} {Type}
  1158. {Analysis}},
  1159. series = {POPL '95},
  1160. year = {1995}
  1161. }