Skip to content

Instantly share code, notes, and snippets.

@jgm
Created October 28, 2012 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgm/3967761 to your computer and use it in GitHub Desktop.
Save jgm/3967761 to your computer and use it in GitHub Desktop.
Benchmark of various reimplementations of Data.Char.isSpace
{-# OPTIONS_GHC -Wall -fwarn-tabs #-}
{-# LANGUAGE ForeignFunctionInterface #-}
----------------------------------------------------------------
-- Modified by John MacFarlane from an earlier benchmark by
-- wren ng thornton.
-- Normalized benchmark results:
--
-- Compiled without optimization:
-- --------------------------------------------------------------
-- Input isSpace_DataChar isSpace_Pattern isSpace_Alt
-- --------------- ---------------- --------------- -----------
-- ascii text 1.0 0.54 0.17
-- greek text 1.0 0.57 0.71
-- haskell code 1.0 0.57 0.24
-- chars 0..255 1.0 0.54 0.39
-- all space chars 1.0 0.70 0.90
-- --------------------------------------------------------------
--
-- Compiled with -O2:
-- --------------------------------------------------------------
-- Input isSpace_DataChar isSpace_Pattern isSpace_Alt
-- --------------- ---------------- --------------- -----------
-- ascii text 1.0 0.93 0.40
-- greek text 1.0 0.98 0.99
-- haskell code 1.0 1.03 0.58
-- chars 0..255 1.0 0.92 0.62
-- all space chars 1.0 0.88 0.92
-- --------------------------------------------------------------
--
--- Conclusions: We can make isSpace considerably faster just by
-- using pattern matching instead of '=='. And we can optimize
-- further for common inputs by testing for common nonspace characters.
-- (The exceptions are inputs consisting entirely of non-ascii
-- characters and inputs consisting entirely of space characters.
-- But even in these cases, isSpace_Alt does better than
-- isSpace_DataChar.)
module Main (main) where
import qualified Data.Char as C
import Foreign.C.Types (CInt(..))
import Criterion (bench, bgroup, nf, Benchmark)
import Criterion.Main (defaultMain)
----------------------------------------------------------------
-- N.B. \x9..\xD == "\t\n\v\f\r"
foreign import ccall unsafe "u_iswspace"
iswspace :: CInt -> CInt
-- | Verbatim version of 'Data.Char.isSpace' (i.e., 'GHC.Unicode.isSpace'
-- as of base-4.2.0.2).
isSpace_DataChar :: Char -> Bool
{-# INLINE isSpace_DataChar #-}
isSpace_DataChar c =
c == ' ' ||
c == '\t' ||
c == '\n' ||
c == '\r' ||
c == '\f' ||
c == '\v' ||
c == '\xa0' ||
iswspace (fromIntegral (C.ord c)) /= 0
isSpace_Alt :: Char -> Bool
{-# INLINE isSpace_Alt #-}
isSpace_Alt c | c > '\x20' && c < '\xa0' = False
| c == ' ' = True
| '\t' <= c && c <= '\r' = True
| c == '\xa0' = True
| otherwise = iswspace (fromIntegral (C.ord c)) /= 0
isSpace_Alt' :: Char -> Bool
{-# INLINE isSpace_Alt' #-}
isSpace_Alt' c | c > '\x20' && c < '\xa0' = False
| c == ' ' = True
| c > '\xa0' && c <= '\xff' = False
| '\t' <= c && c <= '\r' = True
| c < '\t' = False
| c == '\xa0' = True
| otherwise = iswspace (fromIntegral (C.ord c)) /= 0
isSpace_Pattern :: Char -> Bool
{-# INLINE isSpace_Pattern #-}
isSpace_Pattern c | c == ' ' = True
| '\t' <= c && c <= '\r' = True
| c == '\xa0' = True
| otherwise = iswspace (fromIntegral (C.ord c)) /= 0
----------------------------------------------------------------
sophocles :: String
sophocles = "Ἰοὺ ἰού· τὰ πάντʼ ἂν ἐξήκοι σαφῆ.\nὮ φῶς, τελευταῖόν σε προσϐλέψαιμι νῦν,\nὅστις πέφασμαι φύς τʼ ἀφʼ ὧν οὐ χρῆν, ξὺν οἷς τʼ\nοὐ χρῆν ὁμιλῶν, οὕς τέ μʼ οὐκ ἔδει κτανών.\nἸοὺ ἰού· τὰ πάντʼ ἂν ἐξήκοι σαφῆ.\nὮ φῶς, τελευταῖόν σε προσϐλέψαιμι νῦν,\nὅστις πέφασμαι φύς τʼ ἀφʼ ὧν οὐ χρῆν, ξὺν οἷς τʼ\nοὐ χρῆν ὁμιλῶν, οὕς τέ μʼ οὐκ ἔδει κτανών."
lorem :: String
lorem = "Lorem ipsum dolor sit amet, consectetur adipisicing elit,\nsed do eiusmod tempor incididunt ut labore et\ndolore magna aliqua. Ut enim ad minim veniam,\nquis nostrud exercitation ullamco laboris nisi ut\naliquip ex ea commodo consequat. Duis aute irure dolor\nin reprehenderit in voluptate velit esse cillum dolore\neu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,\nsunt in culpa qui officia deserunt mollit anim id est laborum.\n"
haskell :: String
haskell = "isSpace_DataChar :: Char -> Bool\n{-# INLINE isSpace_DataChar #-}\n isSpace_DataChar c =\n c == ' ' ||\n c == '\t' ||\n c == '\n' ||\n c == '\r' ||\n c == '\f' ||\n\tc == '\v' ||\n\tc == '\xa0' ||\n\tiswspace (fromIntegral (C.ord c)) /= 0\nisSpace_DataChar :: Char -> Bool\n{-# INLINE isSpace_DataChar #-}\n isSpace_DataChar c =\n c == ' ' ||\n c == '\t' ||\n c == '\n' ||\n c == '\r' ||\n c == '\f' ||\n\tc == '\v' ||\n\tc == '\xa0' ||\n\tiswspace (fromIntegral (C.ord c)) /= 0\n"
main :: IO ()
main = defaultMain
[ group "ascii text" lorem
, group "Greek text" sophocles
, group "Haskell code" haskell
, group "chars 0..255" ['\0'..'\255']
, group "all spaces" $ concat $ replicate 50 "\t\r\n\n "
]
group :: String -> String -> Benchmark
group name inp = bgroup name
[ bench "isSpace_DataChar" $ nf (map isSpace_DataChar) inp
, bench "isSpace_Pattern" $ nf (map isSpace_Pattern) inp
, bench "isSpace_Alt" $ nf (map isSpace_Alt) inp
, bench "isSpace_Alt'" $ nf (map isSpace_Alt') inp
]
@jgm
Copy link
Author

jgm commented Oct 28, 2012

Note: if you add a benchmark for isSpace as imported from Data.Char, it performs much better than isSpace_DataChar. I am not sure why, but wren ng thornton suggests it may have to do with how Data.Char is compiled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment