Difference between revisions of "UHC"

From HaskellWiki
Jump to navigation Jump to search
(stub for UHC)
 
(→‎Blog articles, tutorials: Added a link to "The Great Haskell Compiler shootout")
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
[[Category:Implementations]]
  +
 
UHC is the Utrecht Haskell Compiler. UHC supports almost all Haskell98 features plus experimental extensions. The compiler runs under MacOSX, Windows (cygwin), and various Unix flavors.
 
UHC is the Utrecht Haskell Compiler. UHC supports almost all Haskell98 features plus experimental extensions. The compiler runs under MacOSX, Windows (cygwin), and various Unix flavors.
   
Line 5: Line 7:
 
Multiple backends, including a bytecode interpreter backend and a full program analysis backend, both via C.
 
Multiple backends, including a bytecode interpreter backend and a full program analysis backend, both via C.
 
Experimental language extensions, some of which have not been implemented before.
 
Experimental language extensions, some of which have not been implemented before.
Implementation via attribute grammars and other high-level tools.
+
Implementation via [[Attribute grammar | attribute grammars]] and other high-level tools.
 
Ease of experimentation with language variants, thanks to an aspect-oriented internal organisation.
 
Ease of experimentation with language variants, thanks to an aspect-oriented internal organisation.
   
 
Homepage: http://www.cs.uu.nl/wiki/UHC
 
Homepage: http://www.cs.uu.nl/wiki/UHC
  +
  +
  +
== Blog articles, tutorials ==
  +
<!-- Add new links at the top -->
  +
  +
* [http://chrisdone.com/posts/2012-01-06-uhc-javascript.html Compiling to JavaScript with UHC]
  +
* [http://lhc-compiler.blogspot.com/2010/07/great-haskell-compiler-shootout.html The Great Haskell Compiler shootout] (comparison of speed of compiled programs, anno 2010)
  +
   
 
{{Stub}}
 
{{Stub}}

Revision as of 21:12, 30 March 2012


UHC is the Utrecht Haskell Compiler. UHC supports almost all Haskell98 features plus experimental extensions. The compiler runs under MacOSX, Windows (cygwin), and various Unix flavors.

Features:

Multiple backends, including a bytecode interpreter backend and a full program analysis backend, both via C. Experimental language extensions, some of which have not been implemented before. Implementation via attribute grammars and other high-level tools. Ease of experimentation with language variants, thanks to an aspect-oriented internal organisation.

Homepage: http://www.cs.uu.nl/wiki/UHC


Blog articles, tutorials


This article is a stub. You can help by expanding it.