Generally
I know of simple (scientific) implementations of functional languages, and if I remember correctly there is the G-Machine that may be used with Haskell.
This means (again, if I remember correctly) that your program state is represented like a "Tree", where the nodes are (for the sake of simplicity here) the functions you use in your code. The leafes would be the arguments to it. The "G-Maschine" then looks along the "Spine" (the left-side chain of nodes) and looks in the set of available "Functions" ("Supercombinators"?) for a pattern-match that it can apply. If a mattern-match is recognized from the left side of a definition it is then replaced by the right side of the definition.
This means that even a simple line like
ok seen (n:ns) = not (n `member` seen) && ok (n `insert` seen) ns
or even
(n:ns) = ns
is doing something in computer memory, i.e. matching the pattern
...
...
(:)
/ \
n ns
and replacing it with
...
...
ns
The final result might consume less memory then the input, but this is a dynamic step and therefore must take place somewhere. If this is repeated over and over again (in a "tight loop") then this will make you CPU busy, as well it will your memory -- just because the G-Machine is operating. (As I said, I am not sure the G-Machine-concept applies here, but I guess it is something similar).
Specific guesses
member n word = testBit word n
insert n word = setBit word n
Besides that I habe some suspicions. testBit and setBit look like index operations on lists. If they are it could take some work. If they are proper arrays it would be ok. If they are a sort of maps or sets... well... there might be costly hashing involved? Or implemented via a balanced tree, which uses lots of (costly?) comparision operations?
okhas to allocate a new integer for every element. unboxed ints are cheap, but if you're not allocating much else they could dominate. Also, if the argument list is full of lazy values,nodupswill force their evaluation, which could cause the allocation cost to be attributed here. You may want to try using+RTS -hcor one of the other memory profiling options for more detailed information. – John L Nov 16 '12 at 4:45nodups'then forces. Trydeepseqing the list before to check whether that reduces the figures fornodups'. – Daniel Fischer Nov 16 '12 at 11:55nodups'instead of to the function where the cons's are. (Actually those other two functions are the ones that get charged with the allocations.) I will have to read the cost-center paper again. – Norman Ramsey Nov 17 '12 at 2:12nodups'used unboxedInt#s wherever it could (with-O2of course), so that wouldn't allocate much by itself, unless it's called really really often. – Daniel Fischer Nov 17 '12 at 2:25