LLVM: Difference between revisions
(simplified path to Hackage) |
(llvm-extra, synthesizer-llvm) |
||
Line 14: | Line 14: | ||
* a [http://augustss.blogspot.com/2009/01/llvm-llvm-low-level-virtual-machine-is.html blog article] with examples, | * a [http://augustss.blogspot.com/2009/01/llvm-llvm-low-level-virtual-machine-is.html blog article] with examples, | ||
* the article "[http://augustss.blogspot.com/2009/01/performance-update-ive-continued.html A performance update]" that describes, how LLVM can improve performance | * the article "[http://augustss.blogspot.com/2009/01/performance-update-ive-continued.html A performance update]" that describes, how LLVM can improve performance | ||
Additional stuff | |||
* [http://hackage.haskell.org/package/llvm-extra llvm-extra] provides high-level control structures (<hask>ifThenElse</hask>, <hask>whileLoop</hask>, <hask>Maybe</hask>), vector instructions, automatic adaption to target specific extensions | |||
Applications | |||
* [http://hackage.haskell.org/package/synthesizer-llvm synthesizer-llvm] provides efficient signal processing using vector instructions, including a realtime [[Synthesizer|software synthesizer]] | |||
[[Category:Packages]] | [[Category:Packages]] | ||
[[Category:Performance]] | [[Category:Performance]] | ||
[[Category:Compiler tools]] | [[Category:Compiler tools]] |
Revision as of 17:25, 26 September 2010
LLVM is an abbreviation of "Low Level Virtual Machine"; LLVM is:
- A compilation strategy
- A virtual instruction set
- A compiler infrastructure
It is developed by the University of Illinois. It is implemented on many platforms, amongst others the iPhone.
You can use this from a Haskell program using the Haskell package llvm. There is
- a cabal package at Hackage,
- a darcs repository,
- a mailing list,
- a blog article with examples,
- the article "A performance update" that describes, how LLVM can improve performance
Additional stuff
- llvm-extra provides high-level control structures (
ifThenElse
,whileLoop
,Maybe
), vector instructions, automatic adaption to target specific extensions
Applications
- synthesizer-llvm provides efficient signal processing using vector instructions, including a realtime software synthesizer