book.bib 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401
  1. @Misc{Lehtosalo2021:MyPy,
  2. author = {Jukka Lehtosalo},
  3. title = {MyPy Optional Type Checker for Python},
  4. howpublished = {\url{http://mypy-lang.org/}},
  5. month = {June},
  6. year = 2021}
  7. @book{Russell2003,
  8. author = {Russell, Stuart J. and Norvig, Peter},
  9. title = {Artificial Intelligence: A Modern Approach},
  10. year = {2003},
  11. isbn = {0137903952},
  12. publisher = {Pearson Education},
  13. edition = {2},
  14. }
  15. @Misc{PSF21:cpython,
  16. title = {CPython github repository},
  17. organization = {Python Software Foundation},
  18. howpublished = {\url{https://github.com/python/cpython}},
  19. year = 2021}
  20. @Manual{PSF21:python_ref,
  21. title = {The Python Language Reference},
  22. organization = {Python Software Foundation},
  23. month = {June},
  24. year = 2021,
  25. howpublished = {\url{https://docs.python.org/3/reference/}},
  26. }
  27. @book{Lutz:2013vp,
  28. author = {Mark Lutz},
  29. date-added = {2021-06-10 10:29:47 -0400},
  30. date-modified = {2021-06-10 10:30:37 -0400},
  31. edition = {5th},
  32. publisher = {O'Reilly},
  33. title = {Learning Python},
  34. year = {2013}}
  35. @book{Sweigart:2019vn,
  36. author = {Al Sweigart},
  37. date-added = {2021-06-10 10:28:09 -0400},
  38. date-modified = {2021-06-10 10:29:04 -0400},
  39. publisher = {No Starch Press},
  40. title = {Automate the Boring Stuff with Python},
  41. year = {2019}}
  42. @book{Barry:2016vj,
  43. author = {Paul Barry},
  44. date-added = {2021-06-10 10:24:32 -0400},
  45. date-modified = {2021-06-10 10:25:03 -0400},
  46. publisher = {O'Reilly},
  47. title = {Head First Python},
  48. year = {2016}}
  49. @book{Matthes:2019vs,
  50. author = {Eric Matthes},
  51. date-added = {2021-06-10 10:22:38 -0400},
  52. date-modified = {2021-06-10 10:23:25 -0400},
  53. edition = {2nd},
  54. publisher = {No Starch Press},
  55. title = {Python Crash Course},
  56. year = {2019}}
  57. @book{Kernighan:1988nx,
  58. address = {Upper Saddle River, NJ, USA},
  59. author = {Brian W. Kernighan and Dennis M. Ritchie},
  60. publisher = {Prentice Hall Press},
  61. title = {The C programming language},
  62. year = {1988},
  63. isbn = {0-13-110362-8},
  64. }
  65. @book{Dybvig:1987aa,
  66. address = {Upper Saddle River, NJ, USA},
  67. author = {Dybvig, R. Kent},
  68. publisher = {Prentice-Hall, Inc.},
  69. title = {The SCHEME Programming Language},
  70. year = {1987},
  71. isbn = {0-13-791864-X},
  72. }
  73. @book{Abelson:1996uq,
  74. address = {Cambridge, MA, USA},
  75. author = {Abelson, Harold and Sussman, Gerald J.},
  76. edition = {2nd},
  77. publisher = {MIT Press},
  78. title = {Structure and Interpretation of Computer Programs},
  79. year = {1996},
  80. isbn = {0262011530},
  81. }
  82. @book{Friedman:1996aa,
  83. address = {Cambridge, MA, USA},
  84. author = {Friedman, Daniel P. and Felleisen, Matthias},
  85. publisher = {MIT Press},
  86. title = {The Little Schemer (4th Ed.)},
  87. year = {1996},
  88. isbn = {0-262-56099-2},
  89. }
  90. @book{Felleisen:2001aa,
  91. address = {Cambridge, MA, USA},
  92. author = {Felleisen, Matthias and Findler, Robert Bruce and
  93. Flatt, Matthew and Krishnamurthi, Shriram},
  94. publisher = {MIT Press},
  95. title = {How to Design Programs: An Introduction to
  96. Programming and Computing},
  97. year = {2001},
  98. isbn = {0-262-06218-6},
  99. }
  100. @book{Felleisen:2013aa,
  101. address = {San Francisco, CA, USA},
  102. author = {Felleisen, Matthias and Conrad, M.D. Barski and
  103. Horn, David Van and
  104. Eight Students of Northeastern University},
  105. publisher = {No Starch Press},
  106. title = {Realm of Racket: Learn to Program, One Game at a
  107. Time!},
  108. year = {2013},
  109. isbn = {1593274912, 9781593274917},
  110. }
  111. @techreport{Flatt:2014aa,
  112. author = {Matthew Flatt and Robert Bruce Findler and PLT},
  113. institution = {PLT Inc.},
  114. number = {6.0},
  115. title = {The Racket Guide},
  116. year = {2014},
  117. }
  118. @manual{Intel:2015aa,
  119. author = {Intel},
  120. institution = {Intel},
  121. month = {December},
  122. title = {Intel 64 and IA-32 Architectures Software Developer's
  123. Manual Combined Volumes: 1, 2A, 2B, 2C, 3A, 3B, 3C
  124. and 3D},
  125. year = {2015},
  126. }
  127. @book{Bryant:2010aa,
  128. address = {USA},
  129. author = {Bryant, Randal E. and O'Hallaron, David R.},
  130. edition = {2nd},
  131. publisher = {Addison-Wesley Publishing Company},
  132. title = {Computer Systems: A Programmer's Perspective},
  133. year = {2010},
  134. isbn = {0136108040, 9780136108047},
  135. }
  136. @manual{Bryant:2005aa,
  137. author = {Randal E. Bryant and David R. O'Hallaron},
  138. month = {September},
  139. organization = {Carnegie Mellon University},
  140. title = {x86-64 Machine-Level Programming},
  141. year = {2005},
  142. }
  143. @manual{Matz:2013aa,
  144. author = {Michael Matz and Jan Hubicka and Andreas Jaeger and
  145. Mark Mitchell},
  146. month = {October},
  147. title = {System V Application Binary Interface, AMD64
  148. Architecture Processor Supplement},
  149. year = {2013},
  150. }
  151. @misc{Microsoft:2018aa,
  152. author = {Microsoft},
  153. howpublished =
  154. {\url{https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/x64-architecture}},
  155. month = {March},
  156. title = {x64 Architecture},
  157. year = {2018},
  158. }
  159. @misc{Microsoft:2020aa,
  160. author = {Microsoft},
  161. howpublished =
  162. {\url{https://docs.microsoft.com/en-us/cpp/build/x64-calling-convention}},
  163. month = {July},
  164. title = {x64 calling convention},
  165. year = {2020},
  166. }
  167. @inproceedings{Dybvig:2006aa,
  168. address = {New York, NY, USA},
  169. author = {Dybvig, R. Kent},
  170. booktitle = {Proceedings of the Eleventh ACM SIGPLAN International
  171. Conference on Functional Programming},
  172. pages = {1--12},
  173. publisher = {ACM},
  174. series = {ICFP '06},
  175. title = {The Development of {Chez} {Scheme}},
  176. year = {2006},
  177. doi = {10.1145/1159803.1159805},
  178. isbn = {1-59593-309-3},
  179. url = {http://doi.acm.org/10.1145/1159803.1159805},
  180. }
  181. @inproceedings{Sarkar:2004fk,
  182. author = {Dipanwita Sarkar and Oscar Waddell and
  183. R. Kent Dybvig},
  184. booktitle = {ICFP '04: Proceedings of the ninth ACM SIGPLAN
  185. international conference on Functional programming},
  186. pages = {201--212},
  187. publisher = {ACM Press},
  188. title = {A nanopass infrastructure for compiler education},
  189. year = {2004},
  190. isbn = {1-58113-905-5},
  191. }
  192. @phdthesis{Keep:2012aa,
  193. author = {Andrew W. Keep},
  194. month = {December},
  195. school = {Indiana University},
  196. title = {A Nanopass Framework for Commercial Compiler
  197. Development},
  198. year = {2012},
  199. }
  200. @techreport{Dybvig:2010aa,
  201. author = {R. Kent Dybvig and Andrew Keep},
  202. institution = {Indiana University},
  203. title = {P523 Compiler Assignments},
  204. year = {2010},
  205. }
  206. @inproceedings{Ghuloum:2006bh,
  207. author = {Abdulaziz Ghuloum},
  208. booktitle = {Scheme and Functional Programming Workshop},
  209. title = {An Incremental Approach to Compiler Construction},
  210. year = {2006},
  211. }
  212. @book{Aho:1986qf,
  213. address = {Boston, MA, USA},
  214. author = {Alfred V. Aho and Ravi Sethi and Jeffrey D. Ullman},
  215. publisher = {Addison-Wesley Longman Publishing Co., Inc.},
  216. title = {Compilers: principles, techniques, and tools},
  217. year = {1986},
  218. isbn = {0-201-10088-6},
  219. }
  220. @article{Backus:1960aa,
  221. address = {New York, NY, USA},
  222. author = {Backus, J. W. and Bauer, F. L. and Green, J. and
  223. Katz, C. and McCarthy, J. and Perlis, A. J. and
  224. Rutishauser, H. and Samelson, K. and Vauquois, B. and
  225. Wegstein, J. H. and van Wijngaarden, A. and
  226. Woodger, M.},
  227. editor = {Naur, Peter},
  228. journal = {Commun. ACM},
  229. month = may,
  230. number = {5},
  231. pages = {299--314},
  232. publisher = {ACM},
  233. title = {Report on the Algorithmic Language ALGOL 60},
  234. volume = {3},
  235. year = {1960},
  236. doi = {10.1145/367236.367262},
  237. issn = {0001-0782},
  238. url = {http://doi.acm.org/10.1145/367236.367262},
  239. }
  240. @article{Knuth:1964aa,
  241. address = {New York, NY, USA},
  242. author = {Knuth, Donald E.},
  243. journal = {Commun. ACM},
  244. month = dec,
  245. number = {12},
  246. pages = {735--736},
  247. publisher = {ACM},
  248. title = {Backus Normal Form vs. Backus Naur Form},
  249. volume = {7},
  250. year = {1964},
  251. doi = {10.1145/355588.365140},
  252. issn = {0001-0782},
  253. url = {http://doi.acm.org/10.1145/355588.365140},
  254. }
  255. @article{SPERBER:2009aa,
  256. author = {Sperber, Michael and DYBVIG,R. KENT and FLATT,MATTHEW and
  257. VAN STRAATEN,ANTON and FINDLER,ROBBY and
  258. MATTHEWS,JACOB},
  259. journal = {Journal of Functional Programming},
  260. month = {8},
  261. pages = {1--301},
  262. title = {Revised$^6$ Report on the Algorithmic Language
  263. Scheme},
  264. volume = {19},
  265. year = {2009},
  266. doi = {10.1017/S0956796809990074},
  267. issn = {1469-7653},
  268. url = {http://journals.cambridge.org/article_S0956796809990074},
  269. }
  270. @techreport{plt-tr,
  271. author = {Matthew Flatt and PLT},
  272. institution = {PLT Inc.},
  273. note = {\url{http://docs.racket-lang.org/reference/index.html}},
  274. title = {The {R}acket Reference~6.0},
  275. year = {2014},
  276. }
  277. @inproceedings{reynolds72:_def_interp,
  278. author = {John C. Reynolds},
  279. booktitle = {{ACM} '72: Proceedings of the {ACM} Annual
  280. Conference},
  281. pages = {717--740},
  282. publisher = {{ACM} Press},
  283. title = {Definitional interpreters for higher-order
  284. programming languages},
  285. year = {1972},
  286. }
  287. @book{Jones:1993uq,
  288. address = {Upper Saddle River, NJ, USA},
  289. author = {Neil D. Jones and Carsten K. Gomard and
  290. Peter Sestoft},
  291. publisher = {Prentice-Hall, Inc.},
  292. title = {Partial evaluation and automatic program generation},
  293. year = {1993},
  294. isbn = {0-13-020249-5},
  295. }
  296. @techreport{Danvy:1991fk,
  297. author = {Olivier Danvy},
  298. institution = {Kansas State University},
  299. month = {December},
  300. number = {CIS-92-02},
  301. title = {Three Steps for the {CPS} Transformation},
  302. year = {1991},
  303. }
  304. @inproceedings{Flanagan:1993cg,
  305. author = {Cormac Flanagan and Amr Sabry and Bruce F. Duba and
  306. Matthias Felleisen},
  307. booktitle = {Conference on {P}rogramming {L}anguage {D}esign and
  308. {I}mplementation},
  309. month = {June},
  310. pages = {502--514},
  311. series = {PLDI},
  312. title = {The essence of compiling with continuations},
  313. year = {1993},
  314. }
  315. @book{Cooper:2011aa,
  316. author = {Keith Cooper and Linda Torczon},
  317. edition = {2nd},
  318. publisher = {Morgan Kaufmann},
  319. title = {Engineering a Compiler},
  320. year = {2011},
  321. }
  322. @book{Appel:2003fk,
  323. author = {Andrew W. Appel and Jens Palsberg},
  324. publisher = {Cambridge University Press},
  325. title = {Modern Compiler Implementation in Java},
  326. year = {2003},
  327. isbn = {052182060X},
  328. }
  329. @book{Balakrishnan:1996ve,
  330. author = {Balakrishnan, V. K.},
  331. publisher = {Dover Publications, Incorporated},
  332. title = {Introductory Discrete Mathematics},
  333. year = {1996},
  334. isbn = {0486691152},
  335. }
  336. @book{Rosen:2002bh,
  337. author = {Rosen, Kenneth H.},
  338. publisher = {McGraw-Hill Higher Education},
  339. title = {Discrete Mathematics and Its Applications},
  340. year = {2002},
  341. isbn = {0072474777},
  342. }
  343. @article{Brelaz:1979eu,
  344. address = {New York, NY, USA},
  345. author = {Br\'{e}laz, Daniel},
  346. journal = {Commun. ACM},
  347. number = {4},
  348. pages = {251--256},
  349. publisher = {ACM},
  350. title = {New methods to color the vertices of a graph},
  351. volume = {22},
  352. year = {1979},
  353. issn = {0001-0782},
  354. }
  355. @phdthesis{Gebremedhin:1999fk,
  356. author = {Assefaw Hadish Gebremedhin},
  357. school = {University of Bergen},
  358. title = {Parallel Graph Coloring},
  359. year = {1999},
  360. }
  361. @article{Omari:2006uq,
  362. author = {Hussein Al-Omari and Khair Eddin Sabri},
  363. journal = {Journal of Mathematics and Statistics},
  364. number = {4},
  365. title = {New Graph Coloring Algorithms},
  366. volume = {2},
  367. year = {2006},
  368. }
  369. @article{Horwitz:1966aa,
  370. address = {New York, NY, USA},
  371. author = {Horwitz, L. P. and Karp, R. M. and Miller, R. E. and
  372. Winograd, S.},
  373. journal = {J. ACM},
  374. month = jan,
  375. number = {1},
  376. pages = {43--61},
  377. publisher = {Association for Computing Machinery},
  378. title = {Index Register Allocation},
  379. volume = {13},
  380. year = {1966},
  381. doi = {10.1145/321312.321317},
  382. issn = {0004-5411},
  383. url = {https://doi.org/10.1145/321312.321317},
  384. }
  385. @inbook{Backus:1978aa,
  386. address = {New York, NY, USA},
  387. author = {Backus, John},
  388. booktitle = {History of Programming Languages},
  389. pages = {25--74},
  390. publisher = {Association for Computing Machinery},
  391. title = {The History of Fortran I, II, and III},
  392. year = {1978},
  393. isbn = {0127450408},
  394. url = {https://doi.org/10.1145/800025.1198345},
  395. }
  396. @article{Chaitin:1981vl,
  397. author = {Gregory J. Chaitin and Marc A. Auslander and
  398. Ashok K. Chandra and John Cocke and Martin E. Hopkins and
  399. Peter W. Markstein},
  400. journal = {Computer Languages},
  401. pages = {47-57},
  402. title = {Register allocation via coloring},
  403. volume = {6},
  404. year = {1981},
  405. }
  406. @article{Kempe:1879aa,
  407. author = {A. B. Kempe},
  408. journal = {American Journal of Mathematics},
  409. number = {3},
  410. pages = {193--200},
  411. publisher = {Johns Hopkins University Press},
  412. title = {On the Geographical Problem of the Four Colours},
  413. volume = {2},
  414. year = {1879},
  415. issn = {00029327, 10806377},
  416. url = {http://www.jstor.org/stable/2369235},
  417. }
  418. @inproceedings{Chaitin:1982vn,
  419. author = {G. J. Chaitin},
  420. booktitle = {SIGPLAN '82: Proceedings of the 1982 {SIGPLAN}
  421. Symposium on Compiler Construction},
  422. pages = {98--105},
  423. publisher = {ACM Press},
  424. title = {Register allocation \& spilling via graph coloring},
  425. year = {1982},
  426. isbn = {0-89791-074-5},
  427. }
  428. @article{Briggs:1994kx,
  429. author = {Preston Briggs and Keith D. Cooper and Linda Torczon},
  430. journal = {ACM Trans. Program. Lang. Syst.},
  431. number = {3},
  432. pages = {428--455},
  433. publisher = {ACM Press},
  434. title = {Improvements to graph coloring register allocation},
  435. volume = {16},
  436. year = {1994},
  437. issn = {0164-0925},
  438. }
  439. @article{George:1996aa,
  440. address = {New York, NY, USA},
  441. author = {George, Lal and Appel, Andrew W.},
  442. journal = {ACM Trans. Program. Lang. Syst.},
  443. month = may,
  444. number = {3},
  445. pages = {300--324},
  446. publisher = {Association for Computing Machinery},
  447. title = {Iterated Register Coalescing},
  448. volume = {18},
  449. year = {1996},
  450. doi = {10.1145/229542.229546},
  451. issn = {0164-0925},
  452. url = {https://doi.org/10.1145/229542.229546},
  453. }
  454. @incollection{Matula:1972aa,
  455. author = {David W. Matula and George Marble and
  456. Joel D. Isaacson},
  457. booktitle = {Graph Theory and Computing},
  458. editor = {RONALD C. READ},
  459. pages = {109 - 122},
  460. publisher = {Academic Press},
  461. title = {GRAPH COLORING ALGORITHMS††This research was
  462. supported in part by the Advanced Research Projects
  463. Agency of the Department of Defense under contract
  464. SD-302 and by the National Science Foundation under
  465. contract GJ-446.},
  466. year = {1972},
  467. doi = {https://doi.org/10.1016/B978-1-4832-3187-7.50015-5},
  468. isbn = {978-1-4832-3187-7},
  469. url = {http://www.sciencedirect.com/science/article/pii/
  470. B9781483231877500155},
  471. }
  472. @inproceedings{Chow:1984ys,
  473. author = {Frederick Chow and John Hennessy},
  474. booktitle = {SIGPLAN '84: Proceedings of the 1984 SIGPLAN
  475. symposium on Compiler construction},
  476. pages = {222--232},
  477. publisher = {ACM Press},
  478. title = {Register allocation by priority-based coloring},
  479. year = {1984},
  480. isbn = {0-89791-139-3},
  481. }
  482. @inproceedings{Cooper:1998ly,
  483. author = {Keith D. Cooper and L. Taylor Simpson},
  484. booktitle = {Compiler Construction},
  485. title = {Live range splitting in a graph coloring register
  486. allocator},
  487. year = {1998},
  488. }
  489. @inproceedings{Palsberg:2007si,
  490. address = {Darlinghurst, Australia, Australia},
  491. author = {Palsberg, Jens},
  492. booktitle = {CATS '07: Proceedings of the thirteenth Australasian
  493. symposium on Theory of computing},
  494. pages = {3--3},
  495. publisher = {Australian Computer Society, Inc.},
  496. title = {Register allocation via coloring of chordal graphs},
  497. year = {2007},
  498. isbn = {1-920-68246-5},
  499. }
  500. @article{Poletto:1999uq,
  501. author = {Massimiliano Poletto and Vivek Sarkar},
  502. journal = {ACM Trans. Program. Lang. Syst.},
  503. number = {5},
  504. pages = {895--913},
  505. publisher = {ACM Press},
  506. title = {Linear scan register allocation},
  507. volume = {21},
  508. year = {1999},
  509. issn = {0164-0925},
  510. }
  511. @inproceedings{Allen:1970uq,
  512. author = {Frances E. Allen},
  513. booktitle = {Proceedings of a symposium on Compiler optimization},
  514. pages = {1--19},
  515. title = {Control flow analysis},
  516. year = {1970},
  517. }
  518. @techreport{Friedman:1976aa,
  519. author = {Daniel P. Friedman and David S. Wise},
  520. institution = {Indiana University},
  521. number = {TR44},
  522. title = {Cons should not evaluate its arguments},
  523. year = {1976},
  524. }
  525. @book{Pierce:2002hj,
  526. author = {Benjamin C. Pierce},
  527. publisher = {MIT Press},
  528. title = {Types and {P}rogramming {L}anguages},
  529. year = {2002},
  530. }
  531. @article{Lieberman:1983aa,
  532. address = {New York, NY, USA},
  533. author = {Lieberman, Henry and Hewitt, Carl},
  534. journal = {Commun. ACM},
  535. month = jun,
  536. number = {6},
  537. pages = {419--429},
  538. publisher = {ACM},
  539. title = {A Real-time Garbage Collector Based on the Lifetimes
  540. of Objects},
  541. volume = {26},
  542. year = {1983},
  543. doi = {10.1145/358141.358147},
  544. issn = {0001-0782},
  545. url = {http://doi.acm.org/10.1145/358141.358147},
  546. }
  547. @inproceedings{Ungar:1984aa,
  548. address = {New York, NY, USA},
  549. author = {Ungar, David},
  550. booktitle = {Proceedings of the First ACM SIGSOFT/SIGPLAN Software
  551. Engineering Symposium on Practical Software
  552. Development Environments},
  553. pages = {157--167},
  554. publisher = {ACM},
  555. series = {SDE 1},
  556. title = {Generation Scavenging: A Non-disruptive High
  557. Performance Storage Reclamation Algorithm},
  558. year = {1984},
  559. doi = {10.1145/800020.808261},
  560. isbn = {0-89791-131-8},
  561. url = {http://doi.acm.org/10.1145/800020.808261},
  562. }
  563. @book{Jones:1996aa,
  564. address = {New York, NY, USA},
  565. author = {Jones, Richard and Lins, Rafael},
  566. publisher = {John Wiley \& Sons, Inc.},
  567. title = {Garbage Collection: Algorithms for Automatic Dynamic
  568. Memory Management},
  569. year = {1996},
  570. isbn = {0-471-94148-4},
  571. }
  572. @inproceedings{Detlefs:2004aa,
  573. address = {New York, NY, USA},
  574. author = {Detlefs, David and Flood, Christine and Heller, Steve and
  575. Printezis, Tony},
  576. booktitle = {Proceedings of the 4th International Symposium on
  577. Memory Management},
  578. pages = {37--48},
  579. publisher = {ACM},
  580. series = {ISMM '04},
  581. title = {Garbage-first Garbage Collection},
  582. year = {2004},
  583. doi = {10.1145/1029873.1029879},
  584. isbn = {1-58113-945-4},
  585. url = {http://doi.acm.org/10.1145/1029873.1029879},
  586. }
  587. @inproceedings{Tene:2011kx,
  588. address = {New York, NY, USA},
  589. author = {Tene, Gil and Iyengar, Balaji and Wolf, Michael},
  590. booktitle = {Proceedings of the international symposium on Memory
  591. management},
  592. pages = {79--88},
  593. publisher = {ACM},
  594. series = {ISMM '11},
  595. title = {C4: the continuously concurrent compacting collector},
  596. year = {2011},
  597. doi = {http://doi.acm.org/10.1145/1993478.1993491},
  598. }
  599. @incollection{Wilson:1992fk,
  600. author = {Wilson, Paul},
  601. booktitle = {Memory Management},
  602. editor = {Bekkers, Yves and Cohen, Jacques},
  603. note = {10.1007/BFb0017182},
  604. pages = {1-42},
  605. publisher = {Springer Berlin / Heidelberg},
  606. series = {Lecture Notes in Computer Science},
  607. title = {Uniprocessor garbage collection techniques},
  608. volume = {637},
  609. year = {1992},
  610. url = {http://dx.doi.org/10.1007/BFb0017182},
  611. }
  612. @article{Cheney:1970aa,
  613. author = {C. J. Cheney},
  614. journal = {Communications of the {ACM}},
  615. number = {11},
  616. title = {A Nonrecursive List Compacting Algoirthm},
  617. volume = {13},
  618. year = {1970},
  619. }
  620. @article{McCarthy:1960dz,
  621. address = {New York, NY, USA},
  622. author = {McCarthy, John},
  623. journal = {Commun. ACM},
  624. number = {4},
  625. pages = {184--195},
  626. publisher = {ACM},
  627. title = {Recursive functions of symbolic expressions and their
  628. computation by machine, Part I},
  629. volume = {3},
  630. year = {1960},
  631. issn = {0001-0782},
  632. }
  633. @article{Collins:1960aa,
  634. address = {New York, NY, USA},
  635. author = {Collins, George E.},
  636. journal = {Commun. ACM},
  637. month = dec,
  638. number = {12},
  639. pages = {655--657},
  640. publisher = {Association for Computing Machinery},
  641. title = {A Method for Overlapping and Erasure of Lists},
  642. volume = {3},
  643. year = {1960},
  644. doi = {10.1145/367487.367501},
  645. issn = {0001-0782},
  646. url = {https://doi.org/10.1145/367487.367501},
  647. }
  648. @inproceedings{Blackburn:2004aa,
  649. address = {New York, NY, USA},
  650. author = {Blackburn, Stephen M. and Cheng, Perry and
  651. McKinley, Kathryn S.},
  652. booktitle = {Proceedings of the Joint International Conference on
  653. Measurement and Modeling of Computer Systems},
  654. pages = {25--36},
  655. publisher = {ACM},
  656. series = {SIGMETRICS '04/Performance '04},
  657. title = {Myths and Realities: The Performance Impact of
  658. Garbage Collection},
  659. year = {2004},
  660. doi = {10.1145/1005686.1005693},
  661. isbn = {1-58113-873-3},
  662. url = {http://doi.acm.org/10.1145/1005686.1005693},
  663. }
  664. @book{Jones:2011aa,
  665. author = {Jones, Richard and Hosking, Antony and Moss, Eliot},
  666. edition = {1st},
  667. publisher = {Chapman \& Hall/CRC},
  668. title = {The Garbage Collection Handbook: The Art of Automatic
  669. Memory Management},
  670. year = {2011},
  671. isbn = {1420082795, 9781420082791},
  672. }
  673. @inproceedings{Shahriyar:2013aa,
  674. author = {Shahriyar, Rifat and Blackburn, Stephen M. and
  675. Yang, Xi and McKinley, Kathryn M.},
  676. booktitle = {OOPSLA '13: Proceeding of the 24th ACM SIGPLAN
  677. conference on Object oriented programming systems
  678. languages and applications},
  679. month = {oct},
  680. title = {Taking Off the Gloves with Reference Counting Immix},
  681. year = {2013},
  682. doi = {http://dx.doi.org/10.1145/2509136.2509527},
  683. }
  684. @inproceedings{Cutler:2015aa,
  685. address = {New York, NY, USA},
  686. author = {Cutler, Cody and Morris, Robert},
  687. booktitle = {Proceedings of the 2015 International Symposium on
  688. Memory Management},
  689. pages = {131--142},
  690. publisher = {ACM},
  691. series = {ISMM '15},
  692. title = {Reducing Pause Times with Clustered Collection},
  693. year = {2015},
  694. doi = {10.1145/2754169.2754184},
  695. isbn = {978-1-4503-3589-8},
  696. url = {http://doi.acm.org/10.1145/2754169.2754184},
  697. }
  698. @inproceedings{Shidal:2015aa,
  699. address = {New York, NY, USA},
  700. author = {Shidal, Jonathan and Spilo, Ari J. and
  701. Scheid, Paul T. and Cytron, Ron K. and
  702. Kavi, Krishna M.},
  703. booktitle = {Proceedings of the 2015 International Symposium on
  704. Memory Management},
  705. pages = {118--130},
  706. publisher = {ACM},
  707. series = {ISMM '15},
  708. title = {Recycling Trash in Cache},
  709. year = {2015},
  710. doi = {10.1145/2754169.2754183},
  711. isbn = {978-1-4503-3589-8},
  712. url = {http://doi.acm.org/10.1145/2754169.2754183},
  713. }
  714. @inproceedings{Osterlund:2016aa,
  715. address = {New York, NY, USA},
  716. author = {\"{O}sterlund, Erik and L\"{o}we, Welf},
  717. booktitle = {Proceedings of the 2016 ACM SIGPLAN International
  718. Symposium on Memory Management},
  719. pages = {1--12},
  720. publisher = {Association for Computing Machinery},
  721. series = {ISMM 2016},
  722. title = {Block-Free Concurrent GC: Stack Scanning and Copying},
  723. year = {2016},
  724. doi = {10.1145/2926697.2926701},
  725. isbn = {9781450343176},
  726. url = {https://doi.org/10.1145/2926697.2926701},
  727. }
  728. @inproceedings{Jacek:2019aa,
  729. address = {New York, NY, USA},
  730. author = {Jacek, Nicholas and Moss, J. Eliot B.},
  731. booktitle = {Proceedings of the 2019 ACM SIGPLAN International
  732. Symposium on Memory Management},
  733. pages = {53--63},
  734. publisher = {Association for Computing Machinery},
  735. series = {ISMM 2019},
  736. title = {Learning When to Garbage Collect with Random Forests},
  737. year = {2019},
  738. doi = {10.1145/3315573.3329983},
  739. isbn = {9781450367226},
  740. url = {https://doi.org/10.1145/3315573.3329983},
  741. }
  742. @inproceedings{Gamari:2020aa,
  743. address = {New York, NY, USA},
  744. author = {Gamari, Ben and Dietz, Laura},
  745. booktitle = {Proceedings of the 2020 ACM SIGPLAN International
  746. Symposium on Memory Management},
  747. pages = {87--99},
  748. publisher = {Association for Computing Machinery},
  749. series = {ISMM 2020},
  750. title = {Alligator Collector: A Latency-Optimized Garbage
  751. Collector for Functional Programming Languages},
  752. year = {2020},
  753. doi = {10.1145/3381898.3397214},
  754. isbn = {9781450375665},
  755. url = {https://doi.org/10.1145/3381898.3397214},
  756. }
  757. @inproceedings{Moore:1959aa,
  758. author = {E.F. Moore},
  759. booktitle = {Proceedings of an International Symposium on the
  760. Theory of Switching},
  761. month = {April},
  762. title = {The shortest path through a maze},
  763. year = {1959},
  764. }
  765. @book{Cormen:2001uq,
  766. author = {Thomas H. Cormen and Clifford Stein and
  767. Ronald L. Rivest and Charles E. Leiserson},
  768. publisher = {McGraw-Hill Higher Education},
  769. title = {Introduction to Algorithms},
  770. year = {2001},
  771. isbn = {0070131511},
  772. }
  773. @techreport{Steele:1977ab,
  774. author = {Steele, Jr., Guy L.},
  775. institution = {MIT Artificial Intelligence Lab},
  776. month = {September},
  777. number = {420},
  778. type = {AI Memo},
  779. title = {Data Representations in PDP-10 Maclisp},
  780. year = {1977},
  781. }
  782. @article{Appel:1989aa,
  783. author = {Appel, Andrew W.},
  784. journal = {LISP and Symbolic Computation},
  785. number = {2},
  786. pages = {153-162},
  787. publisher = {Kluwer Academic Publishers},
  788. title = {Runtime tags aren't necessary},
  789. volume = {2},
  790. year = {1989},
  791. doi = {10.1007/BF01811537},
  792. issn = {0892-4635},
  793. language = {English},
  794. url = {http://dx.doi.org/10.1007/BF01811537},
  795. }
  796. @inproceedings{Goldberg:1991aa,
  797. address = {New York, NY, USA},
  798. author = {Goldberg, Benjamin},
  799. booktitle = {Proceedings of the ACM SIGPLAN 1991 Conference on
  800. Programming Language Design and Implementation},
  801. pages = {165--176},
  802. publisher = {ACM},
  803. series = {PLDI '91},
  804. title = {Tag-free Garbage Collection for Strongly Typed
  805. Programming Languages},
  806. year = {1991},
  807. doi = {10.1145/113445.113460},
  808. isbn = {0-89791-428-7},
  809. url = {http://doi.acm.org/10.1145/113445.113460},
  810. }
  811. @inproceedings{Diwan:1992aa,
  812. address = {New York, NY, USA},
  813. author = {Diwan, Amer and Moss, Eliot and Hudson, Richard},
  814. booktitle = {Proceedings of the ACM SIGPLAN 1992 Conference on
  815. Programming Language Design and Implementation},
  816. pages = {273--282},
  817. publisher = {ACM},
  818. series = {PLDI '92},
  819. title = {Compiler Support for Garbage Collection in a
  820. Statically Typed Language},
  821. year = {1992},
  822. doi = {10.1145/143095.143140},
  823. isbn = {0-89791-475-9},
  824. url = {http://doi.acm.org/10.1145/143095.143140},
  825. }
  826. @inbook{Siebert:2001aa,
  827. address = {Berlin, Heidelberg},
  828. author = {Siebert, Fridtjof},
  829. chapter = {Constant-Time Root Scanning for Deterministic Garbage
  830. Collection},
  831. editor = {Wilhelm, Reinhard},
  832. pages = {304--318},
  833. publisher = {Springer Berlin Heidelberg},
  834. title = {Compiler Construction: 10th International Conference,
  835. CC 2001 Held as Part of the Joint European
  836. Conferences on Theory and Practice of Software, ETAPS
  837. 2001 Genova, Italy, April 2--6, 2001 Proceedings},
  838. year = {2001},
  839. doi = {10.1007/3-540-45306-7_21},
  840. isbn = {978-3-540-45306-2},
  841. url = {http://dx.doi.org/10.1007/3-540-45306-7_21},
  842. }
  843. @inproceedings{Henderson:2002aa,
  844. address = {New York, NY, USA},
  845. author = {Henderson, Fergus},
  846. booktitle = {Proceedings of the 3rd International Symposium on
  847. Memory Management},
  848. pages = {150--156},
  849. publisher = {ACM},
  850. series = {ISMM '02},
  851. title = {Accurate Garbage Collection in an Uncooperative
  852. Environment},
  853. year = {2002},
  854. doi = {10.1145/512429.512449},
  855. isbn = {1-58113-539-4},
  856. url = {http://doi.acm.org/10.1145/512429.512449},
  857. }
  858. @article{Baker:2009aa,
  859. address = {Chichester, UK},
  860. author = {Baker, J. and Cunei, A. and Kalibera, T. and
  861. Pizlo, F. and Vitek, J.},
  862. journal = {Concurr. Comput. : Pract. Exper.},
  863. month = aug,
  864. number = {12},
  865. pages = {1572--1606},
  866. publisher = {John Wiley and Sons Ltd.},
  867. title = {Accurate Garbage Collection in Uncooperative
  868. Environments Revisited},
  869. volume = {21},
  870. year = {2009},
  871. doi = {10.1002/cpe.v21:12},
  872. issn = {1532-0626},
  873. url = {http://dx.doi.org/10.1002/cpe.v21:12},
  874. }
  875. @techreport{Dijkstra:1982aa,
  876. author = {E. W. Dijkstra},
  877. institution = {University of Texas at Austin},
  878. number = {EWD831},
  879. title = {Why numbering should start at zero},
  880. year = {1982},
  881. }
  882. @article{Kelsey:1998di,
  883. author = {R. Kelsey and W. Clinger and J. Rees (eds.)},
  884. journal = {Higher-Order and Symbolic Computation},
  885. month = {August},
  886. number = {1},
  887. title = {Revised$^5$ Report on the Algorithmic Language
  888. Scheme},
  889. volume = {11},
  890. year = {1998},
  891. }
  892. @techreport{Cardelli:1983aa,
  893. author = {Luca Cardelli},
  894. institution = {AT\&T Bell Laboratories},
  895. number = {TR-107},
  896. title = {The Functional Abstract Machine},
  897. year = {1983},
  898. }
  899. @inproceedings{Minamide:1996ys,
  900. address = {New York, NY, USA},
  901. author = {Minamide, Yasuhiko and Morrisett, Greg and
  902. Harper, Robert},
  903. booktitle = {Proceedings of the 23rd ACM SIGPLAN-SIGACT symposium
  904. on Principles of programming languages},
  905. pages = {271--283},
  906. publisher = {ACM},
  907. series = {POPL '96},
  908. title = {Typed closure conversion},
  909. year = {1996},
  910. doi = {http://doi.acm.org/10.1145/237721.237791},
  911. isbn = {0-89791-769-3},
  912. url = {http://doi.acm.org/10.1145/237721.237791},
  913. }
  914. @inproceedings{Shivers:1988aa,
  915. address = {New York, NY, USA},
  916. author = {Shivers, O.},
  917. booktitle = {Proceedings of the ACM SIGPLAN 1988 Conference on
  918. Programming Language Design and Implementation},
  919. pages = {164--174},
  920. publisher = {ACM},
  921. series = {PLDI '88},
  922. title = {Control Flow Analysis in {Scheme}},
  923. year = {1988},
  924. }
  925. @inproceedings{Gilray:2016aa,
  926. address = {New York, NY, USA},
  927. author = {Gilray, Thomas and Lyde, Steven and Adams, Michael D. and
  928. Might, Matthew and Van Horn, David},
  929. booktitle = {Proceedings of the 43rd Annual ACM SIGPLAN-SIGACT
  930. Symposium on Principles of Programming Languages},
  931. pages = {691--704},
  932. publisher = {Association for Computing Machinery},
  933. series = {POPL '16},
  934. title = {Pushdown Control-Flow Analysis for Free},
  935. year = {2016},
  936. doi = {10.1145/2837614.2837631},
  937. isbn = {9781450335492},
  938. url = {https://doi.org/10.1145/2837614.2837631},
  939. }
  940. @inproceedings{Keep:2012ab,
  941. author = {Keep, Andrew W. and Hearn, Alex and Dybvig, R. Kent},
  942. booktitle = {Proceedings of the 2012 Workshop on Scheme and
  943. Functional Programming},
  944. series = {Scheme '12},
  945. title = {Optimizing Closures in {O}(0)-time},
  946. year = {2012},
  947. }
  948. @article{Church:1932aa,
  949. author = {Church, Alonzo},
  950. journal = {Annals of Mathematics},
  951. number = {2},
  952. pages = {pp. 346-366},
  953. publisher = {Annals of Mathematics},
  954. series = {Second Series},
  955. title = {A Set of Postulates for the Foundation of Logic},
  956. volume = {33},
  957. year = {1932},
  958. issn = {0003486X},
  959. language = {English},
  960. url = {http://www.jstor.org/stable/1968337},
  961. }
  962. @techreport{Guy-L.-Steele:1978yq,
  963. address = {Cambridge, MA, USA},
  964. author = {Guy L. Steele},
  965. publisher = {Massachusetts Institute of Technology},
  966. title = {Rabbit: A Compiler for {Scheme}},
  967. year = {1978},
  968. }
  969. @inproceedings{Cardelli:1984aa,
  970. author = {Cardelli, Luca},
  971. booktitle = {ACM Symposium on LISP and Functional Programming},
  972. pages = {208--217},
  973. publisher = {ACM},
  974. series = {LFP '84},
  975. title = {Compiling a Functional Language},
  976. year = {1984},
  977. }
  978. @inproceedings{Gordon:1978aa,
  979. address = {New York, NY, USA},
  980. author = {Gordon, M. and Milner, R. and Morris, L. and
  981. Newey, M. and Wadsworth, C.},
  982. booktitle = {Proceedings of the 5th ACM SIGACT-SIGPLAN Symposium
  983. on Principles of Programming Languages},
  984. pages = {119--130},
  985. publisher = {Association for Computing Machinery},
  986. series = {POPL '78},
  987. title = {A Metalanguage for Interactive Proof in LCF},
  988. year = {1978},
  989. doi = {10.1145/512760.512773},
  990. isbn = {9781450373487},
  991. url = {https://doi.org/10.1145/512760.512773},
  992. }
  993. @book{Milner:1990fk,
  994. author = {Robin Milner and Mads Tofte and Robert Harper},
  995. publisher = {MIT Press},
  996. title = {The definition of Standard ML},
  997. year = {1990},
  998. isbn = {0-262-63132-6},
  999. }
  1000. @phdthesis{Dybvig:1987ab,
  1001. author = {R. Kent Dybvig},
  1002. school = {University of North Carolina at Chapel Hill},
  1003. title = {Three Implementation Models for Scheme},
  1004. year = {1987},
  1005. }
  1006. @article{Cardelli:1985kx,
  1007. address = {New York, NY, USA},
  1008. author = {Luca Cardelli and Peter Wegner},
  1009. journal = {ACM Comput. Surv.},
  1010. number = {4},
  1011. pages = {471--523},
  1012. publisher = {ACM Press},
  1013. title = {On understanding types, data abstraction, and
  1014. polymorphism},
  1015. volume = {17},
  1016. year = {1985},
  1017. issn = {0360-0300},
  1018. }
  1019. @inproceedings{Kildall:1973vn,
  1020. author = {Gary A. Kildall},
  1021. booktitle = {POPL '73: Proceedings of the 1st annual ACM
  1022. SIGACT-SIGPLAN symposium on Principles of programming
  1023. languages},
  1024. pages = {194--206},
  1025. publisher = {ACM Press},
  1026. title = {A unified approach to global program optimization},
  1027. year = {1973},
  1028. }
  1029. @misc{Kleene:1952aa,
  1030. author = {Kleene, S.},
  1031. publisher = {Van Nostrand, New York},
  1032. title = {{Introduction to Metamathematics}},
  1033. year = {1952},
  1034. timestamp = {2008-12-30T12:24:45.000+0100},
  1035. }
  1036. @inproceedings{Tobin-Hochstadt:2006fk,
  1037. author = {Sam Tobin-Hochstadt and Matthias Felleisen},
  1038. booktitle = {Dynamic Languages Symposium},
  1039. title = {Interlanguage Migration: From Scripts to Programs},
  1040. year = {2006},
  1041. }
  1042. @inproceedings{Matthews:2007zr,
  1043. author = {Jacob Matthews and Robert Bruce Findler},
  1044. booktitle = {The 34th ACM SIGPLAN-SIGACT Symposium on Principles
  1045. of Programming Languages},
  1046. month = {January},
  1047. title = {Operational Semantics for Multi-Language Programs},
  1048. year = {2007},
  1049. }
  1050. @inproceedings{Flanagan:2006mn,
  1051. address = {Charleston, South Carolina},
  1052. author = {Cormac Flanagan},
  1053. booktitle = {{POPL} 2006: The 33rd {ACM SIGPLAN-SIGACT} Symposium
  1054. on Principles of Programming Languages},
  1055. month = {January},
  1056. pages = {245-256},
  1057. title = {Hybrid Type Checking},
  1058. year = {2006},
  1059. }
  1060. @inproceedings{Gronski:2006uq,
  1061. author = {Jessica Gronski and Kenneth Knowles and Aaron Tomb and
  1062. Stephen N. Freund and Cormac Flanagan},
  1063. booktitle = {Scheme and Functional Programming Workshop},
  1064. pages = {93--104},
  1065. title = {Sage: Hybrid Checking for Flexible Specifications},
  1066. year = {2006},
  1067. }
  1068. @inproceedings{Anderson:2002kd,
  1069. author = {Christopher Anderson and Sophia Drossopoulou},
  1070. booktitle = {WOOD '03},
  1071. number = {8},
  1072. publisher = {Elsevier},
  1073. series = {},
  1074. title = {{BabyJ} - From Object Based to Class Based
  1075. Programming via Types},
  1076. volume = {82},
  1077. year = {2003},
  1078. }
  1079. @inproceedings{Siek:2006bh,
  1080. author = {Jeremy G. Siek and Walid Taha},
  1081. booktitle = {Scheme and Functional Programming Workshop},
  1082. month = {September},
  1083. pages = {81-92},
  1084. title = {Gradual typing for functional languages},
  1085. year = {2006},
  1086. }
  1087. @inproceedings{Wadler:2009qv,
  1088. author = {Philip Wadler and Robert Bruce Findler},
  1089. booktitle = {European {S}ymposium on {P}rogramming},
  1090. month = {March},
  1091. pages = {1--16},
  1092. series = {ESOP},
  1093. title = {Well-typed programs can't be blamed},
  1094. year = {2009},
  1095. }
  1096. @inproceedings{Herman:2006uq,
  1097. author = {David Herman and Aaron Tomb and Cormac Flanagan},
  1098. booktitle = {Trends in Functional Prog. (TFP)},
  1099. month = {April},
  1100. pages = {XXVIII},
  1101. title = {Space-Efficient Gradual Typing},
  1102. year = {2007},
  1103. }
  1104. @article{Herman:2010aa,
  1105. author = {Herman, David and Tomb, Aaron and Flanagan, Cormac},
  1106. journal = {Higher-Order and Symbolic Computation},
  1107. number = {2},
  1108. pages = {167-189},
  1109. publisher = {Springer US},
  1110. title = {Space-efficient gradual typing},
  1111. volume = {23},
  1112. year = {2010},
  1113. language = {English},
  1114. }
  1115. @article{Henglein:1994nz,
  1116. author = {Fritz Henglein},
  1117. journal = {Science of Computer Programming},
  1118. month = {June},
  1119. number = {3},
  1120. pages = {197-230},
  1121. title = {Dynamic typing: syntax and proof theory},
  1122. volume = {22},
  1123. year = {1994},
  1124. }
  1125. @inproceedings{Siek:2015ab,
  1126. author = {Jeremy G. Siek and Peter Thiemann and Philip Wadler},
  1127. booktitle = {Conference on Programming Language Design and
  1128. Implementation},
  1129. month = {June},
  1130. series = {PLDI},
  1131. title = {Blame and coercion: Together again for the first
  1132. time},
  1133. year = {2015},
  1134. }
  1135. @inproceedings{Kuhlenschmidt:2019aa,
  1136. author = {Andre Kuhlenschmidt and Deyaaeldeen Almahallawi and
  1137. Jeremy G. Siek},
  1138. booktitle = {Conference on Programming Language Design and
  1139. Implementation},
  1140. month = {June},
  1141. publisher = {ACM},
  1142. series = {PLDI},
  1143. title = {Toward Efficient Gradual Typing for Structural Types
  1144. via Coercions},
  1145. year = {2019},
  1146. }
  1147. @inproceedings{stroustrup88:_param_types,
  1148. author = {Bjarne Stroustrup},
  1149. booktitle = {USENIX {C++} Conference},
  1150. month = {October},
  1151. title = {Parameterized Types for {C++}},
  1152. year = {1988},
  1153. }
  1154. @inproceedings{Blelloch:1993aa,
  1155. address = {New York, NY, USA},
  1156. author = {Blelloch, Guy E. and Hardwick, Jonathan C. and
  1157. Chatterjee, Siddhartha and Sipelstein, Jay and
  1158. Zagha, Marco},
  1159. booktitle = {Proceedings of the Fourth ACM SIGPLAN Symposium on
  1160. Principles and Practice of Parallel Programming},
  1161. pages = {102--111},
  1162. publisher = {Association for Computing Machinery},
  1163. series = {PPOPP '93},
  1164. title = {Implementation of a Portable Nested Data-Parallel
  1165. Language},
  1166. year = {1993},
  1167. doi = {10.1145/155332.155343},
  1168. isbn = {0897915895},
  1169. url = {https://doi.org/10.1145/155332.155343},
  1170. }
  1171. @inproceedings{Weeks:2006aa,
  1172. address = {New York, NY, USA},
  1173. author = {Weeks, Stephen},
  1174. booktitle = {Proceedings of the 2006 Workshop on ML},
  1175. pages = {1},
  1176. publisher = {Association for Computing Machinery},
  1177. series = {ML '06},
  1178. title = {Whole-Program Compilation in MLton},
  1179. year = {2006},
  1180. doi = {10.1145/1159876.1159877},
  1181. isbn = {1595934839},
  1182. url = {https://doi.org/10.1145/1159876.1159877},
  1183. }
  1184. @techreport{liskov79:_clu_ref,
  1185. author = {Barbara Liskov and Russ Atkinson and Toby Bloom and
  1186. Eliot Moss and Craig Schaffert and Bob Scheifler and
  1187. Alan Snyder},
  1188. institution = {MIT},
  1189. month = {October},
  1190. number = {LCS-TR-225},
  1191. publisher = {Massachusetts Institute of Technology},
  1192. title = {{CLU} Reference Manual},
  1193. year = {1979},
  1194. }
  1195. @inproceedings{Liskov:1993dk,
  1196. address = {New York, NY, USA},
  1197. author = {Liskov, Barbara},
  1198. booktitle = {HOPL-II: The second ACM SIGPLAN conference on History
  1199. of programming languages},
  1200. pages = {133--147},
  1201. publisher = {ACM},
  1202. title = {A history of CLU},
  1203. year = {1993},
  1204. isbn = {0-89791-570-4},
  1205. }
  1206. @inbook{Appel:1987aa,
  1207. address = {Berlin, Heidelberg},
  1208. author = {Appel, Andrew W. and MacQueen, David B.},
  1209. booktitle = {Functional Programming Languages and Computer
  1210. Architecture: Portland, Oregon, USA, September
  1211. 14--16, 1987 Proceedings},
  1212. editor = {Kahn, Gilles},
  1213. pages = {301--324},
  1214. publisher = {Springer Berlin Heidelberg},
  1215. title = {A standard ML compiler},
  1216. year = {1987},
  1217. doi = {10.1007/3-540-18317-5_17},
  1218. isbn = {978-3-540-47879-9},
  1219. url = {http://dx.doi.org/10.1007/3-540-18317-5_17},
  1220. }
  1221. @inproceedings{Bracha:1998fk,
  1222. address = {New York, NY, USA},
  1223. author = {Bracha, Gilad and Odersky, Martin and
  1224. Stoutamire, David and Wadler, Philip},
  1225. booktitle = {Proceedings of the 13th ACM SIGPLAN conference on
  1226. Object-oriented programming, systems, languages, and
  1227. applications},
  1228. pages = {183--200},
  1229. publisher = {ACM},
  1230. series = {OOPSLA '98},
  1231. title = {Making the future safe for the past: adding
  1232. genericity to the Java programming language},
  1233. year = {1998},
  1234. doi = {http://doi.acm.org/10.1145/286936.286957},
  1235. isbn = {1-58113-005-8},
  1236. url = {http://doi.acm.org/10.1145/286936.286957},
  1237. }
  1238. @inproceedings{Leroy:1992qb,
  1239. address = {New York, NY, USA},
  1240. author = {Xavier Leroy},
  1241. booktitle = {POPL '92: Proceedings of the 19th ACM SIGPLAN-SIGACT
  1242. symposium on Principles of programming languages},
  1243. pages = {177--188},
  1244. publisher = {ACM Press},
  1245. title = {Unboxed objects and polymorphic typing},
  1246. year = {1992},
  1247. isbn = {0-89791-453-8},
  1248. }
  1249. @article{Morrison:1991aa,
  1250. address = {New York, NY, USA},
  1251. author = {Morrison, R. and Dearle, A. and Connor, R. C. H. and
  1252. Brown, A. L.},
  1253. journal = {ACM Trans. Program. Lang. Syst.},
  1254. month = jul,
  1255. number = {3},
  1256. pages = {342--371},
  1257. publisher = {ACM},
  1258. title = {An Ad Hoc Approach to the Implementation of
  1259. Polymorphism},
  1260. volume = {13},
  1261. year = {1991},
  1262. doi = {10.1145/117009.117017},
  1263. issn = {0164-0925},
  1264. url = {http://doi.acm.org/10.1145/117009.117017},
  1265. }
  1266. @inproceedings{Harper:1995um,
  1267. author = {Robert Harper and Greg Morrisett},
  1268. booktitle = {POPL '95: Proceedings of the 22nd ACM SIGPLAN-SIGACT
  1269. Symposium on Principles of Programming Languages},
  1270. pages = {130--141},
  1271. publisher = {ACM Press},
  1272. title = {Compiling polymorphism using intensional type
  1273. analysis},
  1274. year = {1995},
  1275. isbn = {0-89791-692-1},
  1276. }