References
==========

<:#AAA:A>
<:#BBB:B>
<:#CCC:C>
<:#DDD:D>
<:#EEE:E>
<:#FFF:F>
<:#GGG:G>
<:#HHH:H>
<:#III:I>
<:#JJJ:J>
<:#KKK:K>
<:#LLL:L>
<:#MMM:M>
<:#NNN:N>
<:#OOO:O>
<:#PPP:P>
<:#QQQ:Q>
<:#RRR:R>
<:#SSS:S>
<:#TTT:T>
<:#UUU:U>
<:#VVV:V>
<:#WWW:W>
<:#XXX:X>
<:#YYY:Y>
<:#ZZZ:Z>

== <!Anchor(AAA)>A ==

 * <!Anchor(AcarEtAl06)>
 http://ttic.uchicago.edu/%7Eumut/papers/pldi06.html[An Experimental Analysis of Self-Adjusting Computation]
 Umut Acar, Guy Blelloch, Matthias Blume, and Kanat Tangwongsan.
 <:#PLDI:> 2006.

 * <!Anchor(Appel92)>
 http://us.cambridge.org/titles/catalogue.asp?isbn=0521416957[Compiling with Continuations]
 (http://www.addall.com/New/submitNew.cgi?query=0-521-41695-7&type=ISBN&location=10000&state=&dispCurr=USD[addall]).
 ISBN 0521416957.
 Andrew W. Appel.
 Cambridge University Press, 1992.

 * <!Anchor(Appel93)>
 http://citeseer.ist.psu.edu/appel92critique.html[A Critique of Standard ML].
 Andrew W. Appel.
 <:#JFP:> 1993.

 * <!Anchor(Appel98)>
 http://us.cambridge.org/titles/catalogue.asp?isbn=0521582741[Modern Compiler Implementation in ML]
 (http://www.addall.com/New/submitNew.cgi?query=0-521-58274-1&type=ISBN&location=10000&state=&dispCurr=USD[addall]).
 ISBN 0521582741
 Andrew W. Appel.
 Cambridge University Press, 1998.

 * <!Anchor(AppelJim97)>
 Shrinking Lambda Expressions in Linear Time.
 Andrew Appel and Trevor Jim.
 <:#JFP:> 1997.

 * <!Anchor(AppelEtAl94)>
 http://www.smlnj.org/doc/ML-Lex/manual.html[A lexical analyzer generator for Standard ML. Version 1.6.0]
 Andrew W. Appel, James S. Mattson, and David R. Tarditi.  1994

== <!Anchor(BBB)>B ==

 * <!Anchor(BaudinetMacQueen85)>
 http://citeseer.ist.psu.edu/baudinet85tree.html[Tree Pattern Matching for ML].
 Marianne Baudinet, David MacQueen.  1985.
+
____
Describes the match compiler used in an early version of
<:SMLNJ:SML/NJ>.
____

 * <!Anchor(BentonEtAl98)>
 http://citeseer.ist.psu.edu/benton98compiling.html[Compiling Standard ML to Java Bytecodes].
 Nick Benton, Andrew Kennedy, and George Russell.
 <:#ICFP:> 1998.

 * <!Anchor(BentonKennedy99)>
 http://citeseer.ist.psu.edu/benton99interlanguage.html[Interlanguage Working Without Tears: Blending SML with Java].
 Nick Benton and Andrew Kennedy.
 <:#ICFP:> 1999.

 * <!Anchor(BentonKennedy01)>
 http://citeseer.ist.psu.edu/388363.html[Exceptional Syntax].
 Nick Benton and Andrew Kennedy.
 <:#JFP:> 2001.

 * <!Anchor(BentonEtAl04)>
 http://www.research.microsoft.com/%7Enick/p53-Benton.pdf[Adventures in Interoperability: The SML.NET Experience].
 Nick Benton, Andrew Kennedy, and Claudio Russo.
 <:#PPDP:> 2004.

 * <!Anchor(BentonEtAl04_2)>
 http://research.microsoft.com/%7Eakenn/sml/ShrinkingReductionsInSMLNet.pdf[Shrinking Reductions in SML.NET].
 Nick Benton, Andrew Kennedy, Sam Lindley and Claudio Russo.
 <:#IFL:> 2004.
+
____
Describes a linear-time implementation of an
<!Cite(AppelJim97,Appel-Jim shrinker)>, using a mutable IL, and shows
that it yields nice speedups in SML.NET's compile times.  There are
also benchmarks showing that SML.NET when compiled by MLton runs
roughly five times faster than when compiled by SML/NJ.
____

 * <!Anchor(Benton05)>
 http://research.microsoft.com/%7Enick/benton03.pdf[Embedded Interpreters].
 Nick Benton.
 <:#JFP:> 2005.

 * <!Anchor(Berry91)>
 http://www.lfcs.inf.ed.ac.uk/reports/91/ECS-LFCS-91-148/index.html[The Edinburgh SML Library].
 Dave Berry.
 University of Edinburgh Technical Report ECS-LFCS-91-148, 1991.

 * <!Anchor(BerryEtAl93)>
 http://portal.acm.org/citation.cfm?id=143191[A semantics for ML concurrency primitives].
 Dave Berry, Robin Milner, and David N. Turner.
 <:#POPL:> 1992.

 * <!Anchor(Berry93)>
 Lessons From the Design of a Standard ML Library.
 Dave Berry.
 <:#JFP:> 1993.

 * <!Anchor(Bertelsen98)>
 http://citeseer.ist.psu.edu/bertelsen98compiling.html[Compiling SML to Java Bytecode].
 Peter Bertelsen.
 Master's Thesis, 1998.

 * <!Anchor(Berthomieu00)>
 http://www.laas.fr/%7Ebernard/oo/ooml.html[OO Programming styles in ML].
 Bernard Berthomieu.
 LAAS Report #2000111, 2000.

 * <!Anchor(Blume01)>
 http://citeseer.ist.psu.edu/blume01nolongerforeign.html[No-Longer-Foreign: Teaching an ML compiler to speak C "natively"].
 Matthias Blume.
 <:#BABEL:> 2001.

 * <!Anchor(Blume01_02)>
 http://ttic.uchicago.edu/%7Eblume/pgraph/proposal.pdf[Portable library descriptions for Standard ML].
 Matthias Blume.  2001.

 * <!Anchor(Boehm03)>
 http://citeseer.ist.psu.edu/640926.html[Destructors, Finalizers, and Synchronization].
 Hans Boehm.
 <:#POPL:> 2003.
+
____
Discusses a number of issues in the design of finalizers.  Many of the
design choices are consistent with <:MLtonFinalizable:>.
____

== <!Anchor(CCC)>C ==

 * <!Anchor(CejtinEtAl00)>
 <!Attachment(References,CejtinEtAl00.pdf,Flow-directed Closure Conversion for Typed Languages)>.
 Henry Cejtin, Suresh Jagannathan, and Stephen Weeks.
 <:#ESOP:> 2000.
+
____
Describes MLton's closure-conversion algorithm, which translates from
its simply-typed higher-order intermediate language to its
simply-typed first-order intermediate language.
____

 * <!Anchor(ChengBlelloch01)>
 http://citeseer.ist.psu.edu/493194.html[A Parallel, Real-Time Garbage Collector].
 Perry Cheng and Guy E. Blelloch.
 <:#PLDI:> 2001.

 * <!Anchor(Claessen00)>
 http://www.md.chalmers.se/%7Ekoen/Papers/quick.ps[QuickCheck: A Lightweight Tool for Random Testing of Haskell Programs].
 Koen Claessen and John Hughes.
 <:#ICFP:> 2000.

 * <!Anchor(Clinger98)>
 http://citeseer.ist.psu.edu/clinger98proper.html[Proper Tail Recursion and Space Efficiency].
 William D. Clinger.
 <:#PLDI:> 1998.

 * <!Anchor(CooperMorrisett90)>
 http://citeseer.ist.psu.edu/cooper90adding.html[Adding Threads to Standard ML].
 Eric C. Cooper and J. Gregory Morrisett.
 CMU Technical Report CMU-CS-90-186, 1990.

 * <!Anchor(CouttsEtAl07)>
 http://www.cse.unsw.edu.au/%7Edons/papers/CLS07.html[Stream Fusion: From Lists to Streams to Nothing at All].
 Duncan Coutts, Roman Leshchinskiy, and Don Stewart.
 Submitted for publication.  April 2007.

== <!Anchor(DDD)>D ==

 * <!Anchor(DamasMilner82)>
 http://portal.acm.org/citation.cfm?id=582176[Principal Type-Schemes for Functional Programs].
 Luis Damas and Robin Milner.
 <:#POPL:> 1982.

 * <!Anchor(Danvy98)>
 http://citeseer.ist.psu.edu/danvy98functional.html[Functional Unparsing].
 Olivier Danvy.
 BRICS Technical Report RS 98-12, 1998.

 * <!Anchor(Deboer05)>
 http://www.cis.ksu.edu/%7Estough/eXene/dusty-thesis.pdf[Exhancements to eXene].
 Dustin B. Deboer.
 Master of Science Thesis, 2005.
+
____
Describes ways to improve widget concurrency, handling of input focus,
X resources and selections.
____

 * <!Anchor(DoligezLeroy93)>
 http://citeseer.ist.psu.edu/doligez93concurrent.html[A Concurrent, Generational Garbage Collector for a Multithreaded Implementation of ML].
 Damien Doligez and Xavier Leroy.
 <:#POPL:> 1993.

 * <!Anchor(Dreyer07)>
 http://ttic.uchicago.edu/%7Edreyer/papers/mtc/main-long.pdf[Modular Type Classes].
 Derek Dreyer, Robert Harper, Manuel M.T. Chakravarty.
 University of Chicago Technical Report TR-2007-02, 2006.

 * <!Anchor(DreyerBlume07)>
 http://ttic.uchicago.edu/%7Edreyer/papers/infmod/main-short.pdf[Principal Type Schemes for Modular Programs].
 Derek Dreyer and Matthias Blume.
 <:#ESOP:> 2007.

 * <!Anchor(Dubois95)>
 ftp://ftp.inria.fr/INRIA/Projects/cristal/Francois.Rouaix/generics.dvi.Z[Extensional Polymorphism].
 Catherin Dubois, Francois Rouaix, and Pierre Weis.
 <:#POPL:> 1995.
+
____
An extension of ML that allows the definition of ad-hoc polymorphic
functions by inspecting the type of their argument.
____

== <!Anchor(EEE)>E ==

 * <!Anchor(Elsman03)>
 http://www.it-c.dk/research/mlkit/papers.html[Garbage Collection Safety for Region-based Memory Management].
 Martin Elsman.
 <:#TLDI:> 2003.

 * <!Anchor(Elsman04)>
 http://www.itu.dk/people/mael/papers.html[Type-Specialized Serialization with Sharing]
 Martin Elsman.  University of Copenhagen. IT University Technical
 Report TR-2004-43, 2004.

== <!Anchor(FFF)>F ==

 * <!Anchor(FelleisenFreidman98)>
 http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=4787[The Little MLer]
 (http://www3.addall.com/New/submitNew.cgi?query=026256114X&type=ISBN[addall]).
 ISBN 026256114X.
 Matthias Felleisen and Dan Freidman.
 The MIT Press, 1998.

 * <!Anchor(FlattFindler04)>
 http://www.cs.utah.edu/plt/kill-safe/[Kill-Safe Synchronization Abstractions].
 Matthew Flatt and Robert Bruce Findler.
 <:#PLDI:> 2004.

 * <!Anchor(FluetWeeks01)>
 <!Attachment(References,FluetWeeks01.pdf,Contification Using Dominators)>.
 Matthew Fluet and Stephen Weeks.
 <:#ICFP:> 2001.
+
____
Describes contification, a generalization of tail-recursion
elimination that is an optimization operating on MLton's static single
assignment (SSA) intermediate language.
____

 * <!Anchor(FluetPucella02)>
 http://arxiv.org/abs/cs.PL/0403034[Phantom Types and Subtyping].
 Matthew Fluet and Riccardo Pucella.
 <:#TCS:> 2002.

 * <!Anchor(Furuse01)>
 http://pauillac.inria.fr/%7Efuruse/publications/jfla2001.ps.gz[Generic Polymorphism in ML].
 J{empty}. Furuse.
 <:#JFLA:> 2001.
+
____
The formalism behind G'CAML, which has an approach to ad-hoc
polymorphism based on <!Cite(Dubois95)>, the differences being in how
type checking works an an improved compilation approach for typecase
that does the matching at compile time, not run time.
____

== <!Anchor(GGG)>G ==

 * <!Anchor(GansnerReppy93)>
 http://citeseer.ist.psu.edu/gansner93multithreaded.html[A Multi-Threaded Higher-order User Interface Toolkit].
 Emden R. Gansner and John H. Reppy.
 User Interface Software, 1993.

 * <!Anchor(GansnerReppy04)>
 http://titles.cambridge.org/catalogue.asp?isbn=0521794781[The Standard ML Basis Library].
 (http://www3.addall.com/New/submitNew.cgi?query=0521794781&type=ISBN[addall])
 ISBN 0521794781.
 Emden R. Gansner and John H. Reppy.
 Cambridge University Press, 2004.
+
____
An introduction and overview of the <:BasisLibrary:Basis Library>,
followed by a detailed description of each module.  The module
descriptions are also available
http://www.standardml.org/Basis[online].
____

 * <!Anchor(GrossmanEtAl02)>
 http://www.eecs.harvard.edu/%7Egreg/cyclone/[Region-based Memory Management in Cyclone].
 Dan Grossman, Greg Morrisett, Trevor Jim, Michael Hicks, Yanling
 Wang, and James Cheney.
 <:#PLDI:> 2002.

== <!Anchor(HHH)>H ==

 * <!Anchor(HallenbergEtAl02)>
 http://www.it-c.dk/research/mlkit/papers.html[Combining Region Inference and Garbage Collection].
 Niels Hallenberg, Martin Elsman, and Mads Tofte.
 <:#PLDI:> 2002.

 * <!Anchor(HansenRichel99)>
 http://www.it.dtu.dk/introSML[Introduction to Programming Using SML]
 (http://www3.addall.com/New/submitNew.cgi?query=0201398206&type=ISBN[addall]).
 ISBN 0201398206.
 Michael R. Hansen, Hans Rischel.
 Addison-Wesley, 1999.

 * <!Anchor(HarperEtAl93)>
 http://citeseer.comp.nus.edu.sg/11210.html[Typing First-Class Continuations in ML].
 Robert Harper, Bruce F. Duba, and David MacQueen.
 <:#JFP:> 1993.

 * <!Anchor(HarperMitchell92)>
 http://citeseer.ist.psu.edu/harper92type.html[On the Type Structure of Standard ML].
 Robert Harper and John C. Mitchell.
 <:#TOPLAS:> 1992.

 * <!Anchor(HauserBenson04)>
 http://doi.ieeecomputersociety.org/10.1109/CSD.2004.1309122[On the Practicality and Desirability of Highly-concurrent, Mostly-functional Programming].
 Carl H. Hauser and David B. Benson.
 <:#ACSD:> 2004.
+
____
Describes the use of <:ConcurrentML: Concurrent ML> in implementing
the Ped text editor.  Argues that using large numbers of threads and
message passing style are is a practical and effective ways of
modularizing a program.
____

 * <!Anchor(HeckmanWilhelm97)>
 http://rw4.cs.uni-sb.de/%7Eheckmann/abstracts/neuform.html[A Functional Description of TeX's Formula Layout].
 Reinhold Heckmann and Reinhard Wilhelm.
 <:#JFP:> 1997.

 * <!Anchor(HicksEtAl03)>
 http://www.eecs.harvard.edu/%7Egreg/cyclone/[Safe and Flexible Memory Management in Cyclone].
 Mike Hicks, Greg Morrisett, Dan Grossman, and Trevor Jim.
 University of Maryland Technical Report CS-TR-4514, 2003.

 * <!Anchor(Hurd04)>
 http://www.cl.cam.ac.uk/%7Ejeh1004/research/papers/fasthol.pdf[Compiling HOL4 to Native Code].
 Joe Hurd.
 <:#TPHOLs:> 2004.
+
____
Describes a port of HOL from Moscow ML to MLton, the difficulties
encountered in compiling large programs, and the speedups achieved
(roughly 10x).
____

== <!Anchor(III)>I ==

{empty}

== <!Anchor(JJJ)>J ==

 * <!Anchor(Jones99)>
 http://www.cs.kent.ac.uk/people/staff/rej/gcbook/gcbook.html[Garbage Collection: Algorithms for Automatic Memory Management]
 (http://www3.addall.com/New/submitNew.cgi?query=0471941484&type=ISBN[addall]).
 ISBN 0471941484.
 Richard Jones.
 John Wiley & Sons, 1999.

== <!Anchor(KKK)>K ==

 * <!Anchor(Kahrs93)>
 http://www.cs.kent.ac.uk/pubs/1993/569/index.html[Mistakes and Ambiguities in the Definition of Standard ML].
 Stefan Kahrs.
 University of Edinburgh Technical Report ECS-LFCS-93-257, 1993.
+
____
Describes a number of problems with the
<!Cite(MilnerEtAl90,1990 Definition)>, many of which were fixed in the
<!Cite(MilnerEtAl97,1997 Definition)>.

Also see the http://www.cs.kent.ac.uk/%7Esmk/errors-new.ps.Z[addenda]
published in 1996.
____

 * <!Anchor(Karvonen07)>
 http://dl.acm.org/citation.cfm?doid=1292535.1292547[Generics for the Working ML'er].
 Vesa Karvonen.
 <:#ML:> 2007.

 * <!Anchor(Kennedy04)>
 http://research.microsoft.com/%7Eakenn/fun/picklercombinators.pdf[Pickler Combinators].
 Andrew Kennedy.
 <:#JFP:> 2004.

 * <!Anchor(KoserEtAl03)>
 http://www.cs.princeton.edu/%7Ehlarsen/work/dpcool-paper.pdf[sml2java: A Source To Source Translator].
 Justin Koser, Haakon Larsen, Jeffrey A. Vaughan.
 <:#DPCOOL:> 2003.

== <!Anchor(LLL)>L ==

 * <!Anchor(Lang99)>
 http://citeseer.nj.nec.com/lang99faster.html[Faster Algorithms for Finding Minimal Consistent DFAs].
 Kevin Lang. 1999.

 * <!Anchor(LarsenNiss04)>
 http://www.it-c.dk/%7Ehniss/publications/freenix2004.pdf[mGTK: An SML binding of Gtk+].
 Ken Larsen and Henning Niss.
 USENIX Annual Technical Conference, 2004.

 * <!Anchor(Leroy90)>
 http://citeseer.ist.psu.edu/leroy90zinc.html[The ZINC Experiment: an Economical Implementation of the ML Language].
 Xavier Leroy.
 Technical report 117, INRIA, 1990.
+
____
A detailed explanation of the design and implementation of a bytecode
compiler and interpreter for ML with a machine model aimed at
efficient implementation.
____

 * <!Anchor(Leroy93)>
 http://pauillac.inria.fr/%7Exleroy/leroy.html[Polymorphism by Name for References and Continuations].
 Xavier Leroy.
 <:#POPL:> 1993.

 * <!Anchor(LeungGeorge98)>
 http://citeseer.ist.psu.edu/637416.html[MLRISC Annotations].
 Allen Leung and Lal George. 1998.

== <!Anchor(MMM)>M ==

 * <!Anchor(MarlowEtAl01)>
 http://www.haskell.org/%7Esimonmar/papers/async.ps.gz[Asynchronous Exceptions in Haskell].
 Simon Marlow, Simon Peyton Jones, Andy Moran and John Reppy.
 <:#PLDI:> 2001.
+
____
An asynchronous exception is a signal that one thread can send to
another, and is useful for the receiving thread to treat as an
exception so that it can clean up locks or other state relevant to its
current context.
____

 * <!Anchor(MacQueenEtAl84)>
 http://portal.acm.org/citation.cfm?id=800017.800528[An Ideal Model for Recursive Polymorphic Types].
 David MacQueen, Gordon Plotkin, Ravi Sethi.
 <:#POPL:> 1984.

 * <!Anchor(Matthews91)>
 http://www.lfcs.inf.ed.ac.uk/reports/91/ECS-LFCS-91-174/index.html[A Distributed Concurrent Implementation of Standard ML].
 David Matthews.
 University of Edinburgh Technical Report ECS-LFCS-91-174, 1991.

 * <!Anchor(Matthews95)>
 http://www.lfcs.inf.ed.ac.uk/reports/95/ECS-LFCS-95-335/[Papers on Poly/ML].
 David C. J. Matthews.
 University of Edinburgh Technical Report ECS-LFCS-95-335, 1995.

 * http://www.lfcs.inf.ed.ac.uk/reports/97/ECS-LFCS-97-375/[That About Wraps it Up: Using FIX to Handle Errors Without Exceptions, and Other Programming Tricks].
 Bruce J. McAdam.
 University of Edinburgh Technical Report ECS-LFCS-97-375, 1997.

 * <!Anchor(MeierNorgaard93)>
 http://www.itu.dk/stud/speciale/bmkn/[A Just-In-Time Backend for Moscow ML 2.00 in SML].
 Bjarke Meier, Kristian Nørgaard.
 Masters Thesis, 2003.
+
____
A just-in-time compiler using GNU Lightning, showing a speedup of up
to four times over Moscow ML's usual bytecode interpreter.

The full report is only available in Danish.
____

 * <!Anchor(Milner78)>
 A Theory of Type Polymorphism in Programming.
 Robin Milner.
 Journal of Computer and System Sciences, 1978.

 * <!Anchor(Milner82)>
 http://www.dcs.ed.ac.uk/home/stg/tutorial/papers/evolved.pdf[How ML Evolved].
 Robin Milner.
 Polymorphism--The ML/LCF/Hope Newsletter, 1983.

 * <!Anchor(MilnerTofte90)>
 http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=8988[Commentary on Standard ML] (http://www.itu.dk/people/tofte/publ/1991commentaryBody.pdf[online pdf]).
 (http://www3.addall.com/New/submitNew.cgi?query=0262631327&type=ISBN[addall])
 ISBN 0262631327.
 Robin Milner and Mads Tofte.
 The MIT Press, 1990.
+
____
Introduces and explains the notation and approach used in
<!Cite(MilnerEtAl90,The Definition of Standard ML)>.
____

 * <!Anchor(MilnerEtAl90)>
 http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=7945[The Definition of Standard ML].
 (http://www3.addall.com/New/submitNew.cgi?query=0262631326&type=ISBN[addall])
 ISBN 0262631326.
 Robin Milner, Mads Tofte, and Robert Harper.
 The MIT Press, 1990.
+
____
Superseded by <!Cite(MilnerEtAl97,The Definition of Standard ML (Revised))>.
Accompanied by the <!Cite(MilnerTofte90,Commentary on Standard ML)>.
____

 * <!Anchor(MilnerEtAl97)>
 http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=3874[The Definition of Standard ML (Revised)].
 (http://www3.addall.com/New/submitNew.cgi?query=0262631814&type=ISBN[addall])
 ISBN 0262631814.
 Robin Milner, Mads Tofte, Robert Harper, and David MacQueen.
 The MIT Press, 1997.
+
____
A terse and formal specification of Standard ML's syntax and
semantics.  Supersedes <!Cite(MilnerEtAl90,The Definition of Standard ML)>.
____

 * <!Anchor(ML2000)>
 http://www.cs.cmu.edu/%7Erwh/papers/ml2000/ml2000.pdf[Principles and a Preliminary Design for ML2000].
 The ML2000 working group, 1999.

 * <!Anchor(Morentsen99)>
 http://www.daimi.au.dk/CPnets/workshop99/papers/Mortensen.ps.gz[Automatic Code Generation from Coloured Petri Nets for an Access Control System].
 Kjeld H. Mortensen.
 Workshop on Practical Use of Coloured Petri Nets and Design/CPN, 1999.

 * <!Anchor(MorrisettTolmach93)>
 http://portal.acm.org/affiliated/citation.cfm?id=155353[Procs and Locks: a Portable Multiprocessing Platform for Standard ML of New Jersey].
 J{empty}. Gregory Morrisett and Andrew Tolmach.
 <:#PPoPP:> 1993.

 * <!Anchor(Murphy06)>
 http://www.cs.cmu.edu/%7Etom7/papers/grid-ml06.pdf[ML Grid Programming with ConCert].
 Tom Murphy VII.
 <:#ML:> 2006.

== <!Anchor(NNN)>N ==

 * <!Anchor(Neumann99)>
 http://citeseer.ist.psu.edu/412760.html[fxp - Processing Structured Documents in SML].
 Andreas Neumann.
 Scottish Functional Programming Workshop, 1999.
+
____
Describes http://atseidl2.informatik.tu-muenchen.de/%7Eberlea/Fxp/[fxp],
an XML parser implemented in Standard ML.
____

 * <!Anchor(Neumann99Thesis)>
 http://citeseer.ist.psu.edu/neumann99parsing.html[Parsing and Querying XML Documents in SML].
 Andreas Neumann.
 Doctoral Thesis, 1999.

 * <!Anchor(NguyenOhori06)>
 http://www.pllab.riec.tohoku.ac.jp/%7Eohori/research/NguyenOhoriPPDP06.pdf[Compiling ML Polymorphism with Explicit Layout Bitmap].
 Huu-Duc Nguyen and Atsushi Ohori.
 <:#PPDP:> 2006.

== <!Anchor(OOO)>O ==

 * <!Anchor(Okasaki99)>
 http://us.cambridge.org/titles/catalogue.asp?isbn=0521663504[Purely Functional Data Structures].
 ISBN 0521663504.
 Chris Okasaki.
 Cambridge University Press, 1999.

 * <!Anchor(Ohori89)>
 http://www.pllab.riec.tohoku.ac.jp/%7Eohori/research/fpca89.pdf[A Simple Semantics for ML Polymorphism].
 Atsushi Ohori.
 <:#FPCA:> 1989.

 * <!Anchor(Ohori95)>
 http://www.pllab.riec.tohoku.ac.jp/%7Eohori/research/toplas95.pdf[A Polymorphic Record Calculus and Its Compilation].
 Atsushi Ohori.
 <:#TOPLAS:> 1995.

 * <!Anchor(OhoriTakamizawa97)>
 http://www.pllab.riec.tohoku.ac.jp/%7Eohori/research/jlsc97.pdf[An Unboxed Operational Semantics for ML Polymorphism].
 Atsushi Ohori and Tomonobu Takamizawa.
 <:#LASC:> 1997.

 * <!Anchor(Ohori99)>
 http://www.pllab.riec.tohoku.ac.jp/%7Eohori/research/ic98.pdf[Type-Directed Specialization of Polymorphism].
 Atsushi Ohori.
 <:#IC:> 1999.

 * <!Anchor(OwensEtAl09)>
 Regular-expression derivatives reexamined.
 Scott Owens, John Reppy, and Aaron Turon.
 <:#JFP:> 2009.

== <!Anchor(PPP)>P ==

 * <!Anchor(Paulson96)>
 http://www.cl.cam.ac.uk/users/lcp/MLbook/[ML For the Working Programmer]
 (http://www3.addall.com/New/submitNew.cgi?query=052156543X&type=ISBN[addall])
 ISBN 052156543X.
 Larry C. Paulson.
 Cambridge University Press, 1996.

 * <!Anchor(PetterssonEtAl02)>
 http://user.it.uu.se/%7Ehappi/publications/flops02.pdf[The HiPE/x86 Erlang Compiler: System Description and Performance Evaluation].
 Mikael Pettersson, Konstantinos Sagonas, and Erik Johansson.
 <:#FLOPS:> 2002.
+
____
Describes a native x86 Erlang compiler and a comparison of many
different native x86 compilers (including MLton) and their register
usage and call stack implementations.
____

 * <!Anchor(Price09)>
 http://rogerprice.org/#UG[User's Guide to ML-Lex and ML-Yacc]
 Roger Price.  2009.

 * <!Anchor(Pucella98)>
 http://citeseer.ist.psu.edu/pucella98reactive.html[Reactive Programming in Standard ML].
 Riccardo R. Puccella.  1998.
 <:#ICCL:> 1998.

== <!Anchor(QQQ)>Q ==

{empty}

== <!Anchor(RRR)>R ==

 * <!Anchor(Ramsey90)>
 http://citeseer.ist.psu.edu/ramsey90concurrent.html[Concurrent Programming in ML].
 Norman Ramsey.
 Princeton University Technical Report CS-TR-262-90, 1990.

 * <!Anchor(Ramsey03)>
 http://www.eecs.harvard.edu/%7Enr/pubs/embed-abstract.html[Embedding an Interpreted Language Using Higher-Order Functions and Types].
 Norman Ramsey.
 <:#IVME:> 2003.

 * <!Anchor(RamseyFisherGovereau05)>
 http://www.eecs.harvard.edu/%7Enr/pubs/els-abstract.html[An Expressive Language of Signatures].
 Norman Ramsey, Kathleen Fisher, and Paul Govereau.
 <:#ICFP:> 2005.

 * <!Anchor(RedwineRamsey04)>
 http://citeseer.ist.psu.edu/670348.html[Widening Integer Arithmetic].
 Kevin Redwine and Norman Ramsey.
 <:#CC:> 2004.
+
____
Describes a method to implement numeric types and operations (like
`Int31` or `Word17`) for sizes smaller than that provided by the
processor.
____

 * <!Anchor(Reppy88)>
 Synchronous Operations as First-Class Values.
 John Reppy.
 <:#PLDI:> 1988.

 * <!Anchor(Reppy99)>
 http://us.cambridge.org/titles/catalogue.asp?isbn=0521480892[Concurrent Programming in ML]
 (http://www3.addall.com/New/submitNew.cgi?query=0521480892&type=ISBN[addall]).
 ISBN 0521480892.
 John Reppy.
 Cambridge University Press, 1999.
+
____
Describes <:ConcurrentML:>.
____

 * <!Anchor(Reynolds98)>
 ftp://ftp.cs.cmu.edu/user/jcr/defintintro.ps.gz[Definitional Interpreters Revisited].
 John C. Reynolds.
 <:#HOSC:> 1998.

 * <!Anchor(Reynolds98_2)>
 ftp://ftp.cs.cmu.edu/user/jcr/defint.ps.gz[Definitional Interpreters for Higher-Order Programming Languages]
 John C. Reynolds.
 <:#HOSC:> 1998.

 * <!Anchor(Rossberg01)>
 http://www.ps.uni-sb.de/hamlet/defects.pdf[Defects in the Revised Definition of Standard ML].
 Andreas Rossberg. 2001.

== <!Anchor(SSS)>S ==

 * <!Anchor(Sansom91)>
 http://citeseer.ist.psu.edu/sansom91dualmode.html[Dual-Mode Garbage Collection].
 Patrick M. Sansom.
 Workshop on the Parallel Implementation of Functional Languages, 1991.

 * <!Anchor(ScottRamsey00)>
 http://citeseer.ist.psu.edu/scott00when.html[When Do Match-Compilation Heuristics Matter].
 Kevin Scott and Norman Ramsey.
 University of Virginia Technical Report CS-2000-13, 2000.
+
____
Modified SML/NJ to experimentally compare a number of
match-compilation heuristics and showed that choice of heuristic
usually does not significantly affect code size or run time.
____

 * <!Anchor(Sestoft96)>
 http://citeseer.ist.psu.edu/sestoft96ml.html[ML Pattern Match Compilation and Partial Evaluation].
 Peter Sestoft.
 Partial Evaluation, 1996.
+
____
Describes the derivation of the match compiler used in
<:MoscowML:Moscow ML>.
____

 * <!Anchor(ShaoAppel94)>
 http://flint.cs.yale.edu/flint/publications/closure.html[Space-Efficient Closure Representations].
 Zhong Shao and Andrew W. Appel.
 <:#LFP:> 2006.

 * <!Anchor(Shipman02)>
 <!Attachment(References,Shipman02.pdf,Unix System Programming with Standard ML)>.
 Anthony L. Shipman.
 2002.
+
____
Includes a description of the <:Swerve:> HTTP server written in SML.
____

 * <!Anchor(Signoles03)>
 http://www.lri.fr/%7Esignoles/publis/jfla2003.ps.gz[Calcul Statique des Applications de Modules Parametres].
 Julien Signoles.
 <:#JFLA:> 2003.
+
____
Describes a defunctorizer for OCaml, and compares it to existing
defunctorizers, including MLton.
____

 * <!Anchor(SittampalamEtAl04)>
 http://citeseer.ist.psu.edu/sittampalam04incremental.html[Incremental Execution of Transformation Specifications].
 Ganesh Sittampalam, Oege de Moor, and Ken Friis Larsen.
 <:#POPL:> 2004.
+
____
Mentions a port from Moscow ML to MLton of
http://www.itu.dk/research/muddy/[MuDDY], an SML wrapper around the
http://sourceforge.net/projects/buddy[BuDDY] BDD package.
____

 * <!Anchor(SwaseyEtAl06)>
 http://www.cs.cmu.edu/%7Etom7/papers/smlsc2-ml06.pdf[A Separate Compilation Extension to Standard ML].
 David Swasey, Tom Murphy VII, Karl Crary and Robert Harper.
 <:#ML:> 2006.

== <!Anchor(TTT)>T ==

 * <!Anchor(TarditiAppel00)>
 http://www.smlnj.org/doc/ML-Yacc/index.html[ML-Yacc User's Manual. Version 2.4]
 David R. Tarditi and Andrew W. Appel. 2000.

 * <!Anchor(TarditiEtAl90)>
 http://citeseer.ist.psu.edu/tarditi90no.html[No Assembly Required: Compiling Standard ML to C].
 David Tarditi, Peter Lee, and Anurag Acharya. 1990.

 * <!Anchor(ThorupTofte94)>
 http://citeseer.ist.psu.edu/60712.html[Object-oriented programming and Standard ML].
 Lars Thorup and Mads Tofte.
 <:#ML:>, 1994.

 * <!Anchor(Tofte90)>
 Type Inference for Polymorphic References.
 Mads Tofte.
 <:#IC:> 1990.

 * <!Anchor(TolmachAppel95)>
 http://citeseer.ist.psu.edu/tolmach93debugger.html[A Debugger for Standard ML].
 Andrew Tolmach and Andrew W. Appel.
 <:#JFP:> 1995.

 * <!Anchor(Tolmach97)>
 http://citeseer.ist.psu.edu/tolmach97combining.html[Combining Closure Conversion with Closure Analysis using Algebraic Types].
 Andrew Tolmach.
 <:#TIC:> 1997.
+
____
Describes a closure-conversion algorithm for a monomorphic IL.  The
algorithm uses a unification-based flow analysis followed by
defunctionalization and is similar to the approach used in MLton
(<!Cite(CejtinEtAl00)>).
____

 * <!Anchor(TolmachOliva98)>
 http://web.cecs.pdx.edu/%7Eapt/jfp98.ps[From ML to Ada: Strongly-typed Language Interoperability via Source Translation].
 Andrew Tolmach and Dino Oliva.
 <:#JFP:> 1998.
+
____
Describes a compiler for RML, a core SML-like language.  The compiler
is similar in structure to MLton, using monomorphisation,
defunctionalization, and optimization on a first-order IL.
____

== <!Anchor(UUU)>U ==

 * <!Anchor(Ullman98)>
 http://www-db.stanford.edu/%7Eullman/emlp.html[Elements of ML Programming]
 (http://www3.addall.com/New/submitNew.cgi?query=0137903871&type=ISBN[addall]).
 ISBN 0137903871.
 Jeffrey D. Ullman.
 Prentice-Hall, 1998.

== <!Anchor(VVV)>V ==

{empty}

== <!Anchor(WWW)>W ==

 * <!Anchor(Wand84)>
 http://portal.acm.org/citation.cfm?id=800527[A Types-as-Sets Semantics for Milner-Style Polymorphism].
 Mitchell Wand.
 <:#POPL:> 1984.

 * <!Anchor(Wang01)>
 http://ncstrl.cs.princeton.edu/expand.php?id=TR-640-01[Managing Memory with Types].
 Daniel C. Wang.
 PhD Thesis.
+
____
Chapter 6 describes an implementation of a type-preserving garbage
collector for MLton.
____

 * <!Anchor(WangAppel01)>
 http://www.cs.princeton.edu/%7Edanwang/Papers/tpsrvgc/[Type-Preserving Garbage Collectors].
 Daniel C. Wang and Andrew W. Appel.
 <:#POPL:> 2001.
+
____
Shows how to modify MLton to generate a strongly-typed garbage
collector as part of a program.
____

 * <!Anchor(WangMurphy02)>
 http://www-2.cs.cmu.edu/%7Etom7/papers/wang-murphy-recursion.pdf[Programming With Recursion Schemes].
 Daniel C. Wang and Tom Murphy VII.
+
____
Describes a programming technique for data abstraction, along with
benchmarks of MLton and other SML compilers.
____

 * <!Anchor(Weeks06)>
 <!Attachment(References,060916-mlton.pdf,Whole-Program Compilation in MLton)>.
 Stephen Weeks.
 <:#ML:> 2006.

 * <!Anchor(Wright95)>
 http://citeseer.ist.psu.edu/wright95simple.html[Simple Imperative Polymorphism].
 Andrew Wright.
 <:#LASC:>, 8(4):343-355, 1995.
+
____
The origin of the <:ValueRestriction:>.
____

== <!Anchor(XXX)>X ==

{empty}

== <!Anchor(YYY)>Y ==

 * <!Anchor(Yang98)>
 http://citeseer.ist.psu.edu/53925.html[Encoding Types in ML-like Languages].
 Zhe Yang.
 <:#ICFP:> 1998.

== <!Anchor(ZZZ)>Z ==

 * <!Anchor(ZiarekEtAl06)>
 http://www.cs.purdue.edu/homes/suresh/abstracts.html#icfp06[Stabilizers: A Modular Checkpointing Abstraction for Concurrent Functional Programs].
 Lukasz Ziarek, Philip Schatz, and Suresh Jagannathan.
 <:#ICFP:> 2006.

 * <!Anchor(ZiarekEtAl08)>
 http://www.springerlink.com/content/ku5036n4xjj40715/?p=70c738f3dc1546b68580ad328afee59f&pi=0[Flattening tuples in an SSA intermediate representation].
 Lukasz Ziarek, Stephen Weeks, and Suresh Jagannathan.
 <:#HOSC:> 2008.


== Abbreviations ==

* <!Anchor(ACSD)> ACSD = International Conference on Application of Concurrency to System Design
* <!Anchor(BABEL)> BABEL = Workshop on multi-language infrastructure and interoperability
* <!Anchor(CC)> CC = International Conference on Compiler Construction
* <!Anchor(DPCOOL)> DPCOOL = Workshop on Declarative Programming in the Context of OO Languages
* <!Anchor(ESOP)> ESOP = European Symposium on Programming
* <!Anchor(FLOPS)> FLOPS = Symposium on Functional and Logic Programming
* <!Anchor(FPCA)> FPCA = Conference on Functional Programming Languages and Computer Architecture
* <!Anchor(HOSC)> HOSC = Higher-Order and Symbolic Computation
* <!Anchor(IC)> IC = Information and Computation
* <!Anchor(ICCL)> ICCL = IEEE International Conference on Computer Languages
* <!Anchor(ICFP)> ICFP = International Conference on Functional Programming
* <!Anchor(IFL)> IFL = International Workshop on Implementation and Application of Functional Languages
* <!Anchor(IVME)> IVME = Workshop on Interpreters, Virtual Machines and Emulators
* <!Anchor(JFLA)> JFLA = Journees Francophones des Langages Applicatifs
* <!Anchor(JFP)> JFP = Journal of Functional Programming
* <!Anchor(LASC)> LASC = Lisp and Symbolic Computation
* <!Anchor(LFP)> LFP = Lisp and Functional Programming
* <!Anchor(ML)> ML = Workshop on ML
* <!Anchor(PLDI)> PLDI = Conference on Programming Language Design and Implementation
* <!Anchor(POPL)> POPL = Symposium on Principles of Programming Languages
* <!Anchor(PPDP)> PPDP = International Conference on Principles and Practice of Declarative Programming
* <!Anchor(PPoPP)> PPoPP = Principles and Practice of Parallel Programming
* <!Anchor(TCS)> TCS = IFIP International Conference on Theoretical Computer Science
* <!Anchor(TIC)> TIC = Types in Compilation
* <!Anchor(TLDI)> TLDI = Workshop on Types in Language Design and Implementation
* <!Anchor(TOPLAS)> TOPLAS = Transactions on Programming Languages and Systems
* <!Anchor(TPHOLs)> TPHOLs = International Conference on Theorem Proving in Higher Order Logics
