vote up 6 vote down star

I'm just curious about the efficiency of pattern matching in Haskell. What is a simple case of where pattern matching would be better than nested if/case statements and then the converse?

Thanks for your help.

flag

3  
If you're worried about this, you're doing it wrong! – Chris Conway Jan 9 at 7:23
I second Chris' opinion. – Martinho Fernandes Jan 9 at 18:25
Chris, I don't understand why everyone gets all pissy about people inquiring about the under workings of a programming language. I'm not trying to optimize code I'm simply interested in the theory behind the two constructs. – Casey Jan 9 at 18:31
That's perfectly valid. Didn't mean to be pissy. The pattern of your question matches an irritating newbie FAQ, e.g., "what's better, do or while?", "what's faster, ++i or i++?", etc. – Chris Conway Jan 9 at 18:52
Chris, it's not a problem. – Casey Jan 9 at 19:12

3 Answers

vote up 7 vote down check

In Haskell, case and pattern matching are inextricably linked; you can't have one without the other. if p then e1 else e2 is syntactic sugar for case p of { True -> e1; False -> e2 }. For these reasons, I think it is impossible to produce the examples you ask for; in Core Haskell, everything is equivalent to case.

In languages in the ML family, the optimizer can often do very impressive things with complex pattern matches. This is more difficult for Haskell compilers; because of lazy evaluation, the pattern-match compiler is not allowed to reorder certain tests. In other words, if you nest case statements in different ways, you may get different performance, but in Haskell you also get different semantics. So generally the compiler doesn't mess with it.

As far as which way to write your own code, it's safe to assume that the code with the fewest case expressions is the best (keeping in mind that one if is equivalent to one case expression).

link|flag
vote up 4 vote down

According to the specification, they are semantically equivalent. This, of course, does not necessarily mean that they are implemented identically, but I would personally be surprised if there was a difference in a decent compiler.

link|flag
vote up 6 vote down

I didn't confirm this, but I think both forms will become a nested case-of expression when translated to core Haskell by the compiler. The best way to find out is asking the compiler itself. In GHC you can turn on the dump of the core intermediate program by using the arguments:

  • Before simplifications: -ddump-ds
  • After simplifications: -ddump-simpl
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.