strict-ghc-plugin: Compiler plugin for making Haskell strict

[ bsd3, compiler-plugin, library ] [ Propose Tags ]

This plugin gives an example of defining a compiler plugin for GHC. You mark functions with the Strictify annotation and GHC makes the function strict (by recursively expanding non-recursive let bindings into case bindings.)


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.1
Dependencies base (<5), ghc (>=7.4), syb [details]
License BSD-3-Clause
Copyright Copyright (c) the GHC authors
Author The GHC authors
Maintainer Austin Seipp <mad.one@gmail.com>
Category Compiler Plugin
Home page http://thoughtpolice.github.com/strict-ghc-plugin
Bug tracker http://github.com/thoughtpolice/strict-ghc-plugin/issues
Source repo head: git clone https://github.com/thoughtpolice/strict-ghc-plugin.git
Uploaded by AustinSeipp at 2012-08-08T01:41:30Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1226 total (5 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for strict-ghc-plugin-0.1.1

[back to package description]

GHC plugin for making functions strict.

This plugin gives an example of defining a compiler plugin for GHC. You mark functions with the Strictify annotation and GHC makes the function strict (by recursively expanding non-recursive let bindings into case bindings.)

travis-ci.org results: Build Status

Homepage.

Installation

Install the latest version of the plugin from Hackage (requires GHC 7.4.1):

$ cabal install strict-ghc-plugin

Join in

File bugs in the GitHub issue tracker.

Master git repository:

  • git clone https://github.com/thoughtpolice/strict-ghc-plugin.git

There's also a BitBucket mirror:

  • git clone https://bitbucket.org/thoughtpolice/strict-ghc-plugin.git

Authors

See AUTHORS.txt.

License

BSD3. See LICENSE.txt for terms of copyright and redistribution.