Tagged Questions
Glasgow Haskell Compiler is a state-of-the-art, open source compiler and interactive environment for the functional language Haskell.
48
votes
5answers
4k views
Why is GHC so large/big?
Is there a simple answer: Why is GHC so big?
OCaml: 2MB
Python: 15MB
SBCL: 9MB
OpenJRE - 26MB
GHC: 113MB
Not interested in evangelism of "Why I shouldn't care about the size if Haskell is the ...
42
votes
4answers
2k views
Reading GHC Core
Core is GHC's intermediate language. Reading Core can help you better understand the performance of your program. Someone asked me for documentation or tutorials on reading Core, but I couldn't find ...
33
votes
2answers
2k views
Small Haskell program compiled with GHC into huge binary
My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
33
votes
2answers
881 views
Good introductory text about GHC implementation?
When programming in Haskell (and especially when solving Project Euler problems, where suboptimal solutions tend to stress the CPU or memory needs) I'm often puzzled why the program behaves the way it ...
33
votes
3answers
2k views
Should I use GHC Haskell extensions or not?
As I am learning Haskell, I see that there is a lot of language extensions used in real life code. As a beginner, should I learn to use them, or should I avoid them at all cost? I see that it breaks ...
29
votes
3answers
991 views
When is memoization automatic in GHC Haskell?
I can't figure out why m1 is apparently memoized while m2 is not in the following:
m1 = ((filter odd [1..]) !!)
m2 n = ((filter odd [1..]) !! n)
m1 10000000 takes about 1.5 seconds on the ...
27
votes
1answer
472 views
GHC not optimizing modules other than the main module
I'm currently writing a multi-module program in Haskell. I've found a strange problem where my files aren't being optimized properly, even though I'm passing in -O2 and so on. The files in question ...
26
votes
1answer
1k views
Memory footprint of Haskell data types
How to find the actual amount of memory required to store a value of some data type in Haskell (mostly with GHC)? Is it possible to evaluate it in runtime (e.g. in GHCi) or is it possible to estimate ...
25
votes
7answers
764 views
Is it a good idea to compile a language to C?
All over the web, I am getting the feeling that writing a C backend for a compiler is not such a good idea anymore. GHC's C backend is not being actively developed anymore (this is my unsupported ...
25
votes
1answer
419 views
Space leak only in certain cases in GHC interpreter when doing: concat <some list> !! n
I define my own version of concat, myConcat:
module Eh where
myConcat [] = []
myConcat ([]:os) = myConcat os
myConcat ((x:xs):os) = x : myConcat (xs:os)
(!!!) :: [a] -> Int -> a
...
24
votes
2answers
224 views
How to relate to type from outer context
Let us consider the following code snippet:
blah :: a -> b -> a
blah x y = ble x where
ble :: b -> b
ble x = x
This compiles fine under GHC, which essentially means that b from the ...
24
votes
5answers
2k views
What does the `forall` keyword in Haskell/GHC do?
I'm beginning to understand how the forall keyword is used in so-called "existential types" like this:
data ShowBox = forall s. Show s => SB s
This is only a subset, however, of how forall is ...
24
votes
2answers
3k views
Curious about the HashTable problem
I read that hash tables in Haskell had performance issues (on the Haskell-Cafe in 2006 and Flying Frog Consultancy's blog in 2009), and since I like Haskell it worried me.
That was a year ago, what is ...
21
votes
1answer
253 views
How does IncoherentInstances work?
Playing around with some code:
{-# LANGUAGE FlexibleInstances, OverlappingInstances #-}
class Arity f where
arity :: f -> Int
instance Arity x where
arity _ = 0
instance Arity f => Arity ...
21
votes
4answers
727 views
How to prevent common sub-expression elimination (CSE) with GHC
Given the program:
import Debug.Trace
main = print $ trace "hit" 1 + trace "hit" 1
If I compile with ghc -O (7.0.1 or higher) I get the output:
hit
2
i.e. GHC has used common sub-expression ...
21
votes
2answers
1k views
What IO activity does the GHC IO manager support?
I've been reading about the new IO manager in GHC, which uses asynchronous event notifications and eschews blocking I/O to achieve high throughput.
Which IO activities are eligible for management by ...
21
votes
5answers
2k views
Mixing Erlang and Haskell
If you've bought into the functional programming paradigm, the chances are that you like both Erlang and Haskell. Both have purely functional cores and other goodness such as lightweight threads that ...
20
votes
4answers
1k views
Converting IEEE 754 floating point in Haskell Word32/64 to and from Haskell Float/Double
Question
In Haskell, the base libraries and Hackage packages provide several means of converting binary IEEE-754 floating point data to and from the lifted Float and Double types. However, the ...
20
votes
2answers
4k views
GHC's RTS options for garbage collection
I have a Haskell program which processes a text file and builds a Map (with several million elements). The whole thing can run for 2-3 minutes. I found that tweaking the -H and -A options makes a big ...
19
votes
6answers
939 views
Orphaned instances in Haskell
When compiling my Haskell application with the -Wall option, GHC complains about orphaned instances, for example:
Publisher.hs:45:9:
Warning: orphan instance: instance ToSElem Result
The type ...
19
votes
4answers
4k views
What is a good way to debug haskell code?
I have used the ghci debugger but would really prefer if it was somewhat integrated with a text editor to simplify the process of setting breakpoints. It should probably not strictly evaluate every ...
18
votes
1answer
261 views
Compiling ghc with -fPIC support
I'm trying to install GHC with -fPIC support in Fedora.
I've grabbed a source tarball since it seems no binary one has this.
In Build.mk i've changed the quick build type to
ifeq "$(BuildFlavour)" ...
17
votes
2answers
483 views
Why does GHC think that this type variable is not injective?
I have this piece of code:
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, KindSignatures, GADTs, FlexibleInstances, FlexibleContexts #-}
class Monad m => Effect p e r m | p e m -> ...
17
votes
2answers
2k views
Why does performGC fail to release all memory?
Given the program:
import Language.Haskell.Exts.Annotated -- from haskell-src-exts
import System.Mem
import System.IO
import Control.Exception
main :: IO ()
main = do
evaluate $ length $ show $ ...
17
votes
3answers
413 views
Why can I not make String an instance of a typeclass?
Given:
data Foo =
FooString String
…
class Fooable a where --(is this a good way to name this?)
toFoo :: a -> Foo
I want to make String an instance of Fooable:
instance Fooable String ...
16
votes
1answer
247 views
Are Haskell FlexibleInstances a stable extension to the language?
What is the problem with FlexibleInstances in Haskell? Why are they not included in Haskell 2010? Were implementations of FlexibleInstances simply not stable enough for inclusion into a standard or ...
16
votes
1answer
386 views
Haskell tuple constructor (GHC) and the separation between a language and its implementation
Haskell blew my mind yet again when I realised that
(x,y)
Is just syntactic sugar for
(,) x y
Naturally I wanted to extend this to larger tuples. But
(,) x ((,) y z)
Gave me
(x,(y,z))
...
16
votes
1answer
320 views
Understanding GHC assembly output
When compiling a haskell source file using the -S option in GHC the assembly code generated is not clear. There's no clear distinction between which parts of the assembly code belong to which parts of ...
16
votes
5answers
562 views
What are hidden performance pitfalls in haskell?
I know, that I am not the first one who asks this, but I think my question may be different. I am asking for the non-obvious things. For instance, it took me a long time to understand, that ...
16
votes
5answers
915 views
Compilers for Haskell
AFAIK GHC is the most common compiler today, but I also see, that some other ompilers are available too. Is GHC really the best choice for all purposes or may I use something else instead? For ...
16
votes
7answers
2k views
Making small haskell executables?
Are there any good ways to make small haskell executables? With ghc6 a simple hello world program seems to come to about 370kB (523kB before strip). Hello world in C is about 4kB (9kB before strip).
15
votes
1answer
1k views
Android application in haskell
Hi i know there are similar questions. But maybe thare are any updates or new libraries in this area.
What I'm looking for:
Best practices of writing android
appplication in Haskell. I know in
...
14
votes
3answers
518 views
Why does s ++ t not lead to a stack overflow for large s?
I'm wondering why
Prelude> head $ reverse $ [1..10000000] ++ [99]
99
does not lead to a stack overflow error. The ++ in the prelude seems straight forward and non-tail-recursive:
(++) :: [a] ...
14
votes
3answers
612 views
How are lists implemented in Haskell (GHC)?
I was just curious about some exact implementation details of lists in Haskell (GHC-specific answers are fine)--are they naive linked lists, or do they have any special optimizations? More ...
13
votes
5answers
1k views
List of GHC extensions
I wanted to use {-# LANGUAGE OverloadedStrings #-} but I forgot how it's called. This kind of thing isn't hoogle-able, and also it takes some time finding using google*.
Is there somewhere a list of ...
13
votes
2answers
277 views
What is the relationship between ghc-pkg and cabal?
With respect to how packages are created, installed and used in Haskell, what is the relationship between ghc-pkg and cabal?
What are their roles - when would you use one, over the other, or use ...
13
votes
3answers
555 views
Evaluation of Haskell Statements/Expressions using GHC API
For a tool I'm writing ( http://hackage.haskell.org/package/explore ) I need a way to read haskell function definitions at run-time, apply them to values from my tool and retrieve the results of their ...
12
votes
1answer
254 views
Handling events in Haskell
I would like to implement the following scenario in Haskell. I have an
enumerable set of 'events' defined like this:
data MyEvent = Event1
| Event2
| Event3
I want to ...
12
votes
1answer
125 views
Can I add an instance declaration in GHCi
I was messing around with HashMap and tried to use a Data.Bson.ObjectId as a key. I, of course, discovered that there is not a Hashable instance for that structure. That's ok, because writing one is ...
12
votes
6answers
693 views
How to make a CAF not a CAF in Haskell?
How do I make a Constant Applicative Form into, well, not a Constant Applicative Form, to stop it being retained for the lifetime of the program?
I've tried this approach:
-- | Dummy parameter to ...
12
votes
2answers
839 views
How to compile Haskell to a static library?
Hey,
I'm learning Haskell and I'm interested in using it to make static libraries for using in Python and probably C. After some googling I found out how to get GHC to output a shared object, but it ...
12
votes
3answers
655 views
Possible optimizations in Haskell that are not yet implemented in GHC?
So, purely functional languages have their own class of potentials due to the clear separation between pure and impure code. I have seen several features that are somewhat simpler to implement in ...
11
votes
1answer
99 views
Undefined at the type level
Often when I'm playing with Haskell code, I stub things out with a type annotation and undefined.
foo :: String -> Int
foo = undefined
Is there a type-level "undefined" that I could use in a ...
11
votes
4answers
139 views
Generate unique, comparable values
What's a good way to generate ad-hoc keys, where each key is unique to the program? Ideally, an action of the form:
newKey :: IO Key
such that:
do a <- newKey
b <- newKey
return (a == ...
11
votes
2answers
189 views
Preferred method for viewing code generated by Template Haskell
As you know, Template Haskell is used to generate various kinds of AST splices programmatically at compile-time.
However, a splice can often be very opaque, and it is often difficult to discern what ...
11
votes
2answers
350 views
Optimization of Function Calls in Haskell
Not sure what exactly to google for this question, so I'll post it directly to SO:
Variables in Haskell are immutable
Pure functions should result in same values for same arguments
From these two ...
10
votes
1answer
155 views
How does GHCi pick names for type variables?
When using the interactive GHC interpreter, it's possible to ask for the inferred type of an expression:
Prelude> :t map
map :: (a -> b) -> [a] -> [b]
It seems that it takes the names ...
10
votes
3answers
151 views
How to [temporarily] suppress “defined but not used” warnings?
When I prototype Haskell programs, I always get hundreds of warnings like this (not joking):
/Users/bob/SourceCode/course/is/expriment/LiftedSpine2.hs:70:15:
Warning: Defined but not used: `ta'
...
10
votes
3answers
475 views
How could I remove the “if … then … else …” keywords in Haskell (GHC)?
I would like to remove the if ... then ... else ... keywords, because I am embedding a language/DSL in Haskell. if, then and else convey a lot of meaning in many domains, and it would be great if I ...
10
votes
4answers
638 views
On improving Haskell's performance compared to C in fibonacci micro-benchmark
I came across this question, which compared the performance of various compilers on computing fibonaci numbers the naive way.
I tried doing this with Haskell to see how it compares to C.
C code:
...