From: simonmar Date: Fri, 12 Aug 2005 10:47:48 +0000 (+0000) Subject: [project @ 2005-08-12 10:47:48 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~240 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=3f1234649fee9d121801b44789e5b4fb91b647c3;p=ghc-hetmet.git [project @ 2005-08-12 10:47:48 by simonmar] inline unsafePerformIO for eqStrPrefix/eqStrPrefixBA. These functions are fairly time-critical pieces of the FastString system, and using unsafePerformIO here was causing unnecessary allocation. --- diff --git a/ghc/compiler/utils/PrimPacked.lhs b/ghc/compiler/utils/PrimPacked.lhs index 45177dc..f2d034d 100644 --- a/ghc/compiler/utils/PrimPacked.lhs +++ b/ghc/compiler/utils/PrimPacked.lhs @@ -208,34 +208,40 @@ Compare two equal-length strings for equality: \begin{code} eqStrPrefix :: Addr# -> ByteArray# -> Int# -> Bool eqStrPrefix a# barr# len# = - unsafePerformIO $ do + inlinePerformIO $ do x <- memcmp_ba a# barr# (I# len#) return (x == 0) #ifdef UNUSED eqCharStrPrefix :: Addr# -> Addr# -> Int# -> Bool eqCharStrPrefix a1# a2# len# = - unsafePerformIO $ do + inlinePerformIO $ do x <- memcmp a1# a2# (I# len#) return (x == 0) #endif eqStrPrefixBA :: ByteArray# -> ByteArray# -> Int# -> Int# -> Bool eqStrPrefixBA b1# b2# start# len# = - unsafePerformIO $ do + inlinePerformIO $ do x <- memcmp_baoff_ba b2# (I# start#) b1# (I# len#) return (x == 0) #ifdef UNUSED eqCharStrPrefixBA :: Addr# -> ByteArray# -> Int# -> Int# -> Bool eqCharStrPrefixBA a# b2# start# len# = - unsafePerformIO $ do + inlinePerformIO $ do x <- memcmp_baoff b2# (I# start#) a# (I# len#) return (x == 0) #endif \end{code} \begin{code} +-- Just like unsafePerformIO, but we inline it. This is safe when +-- there are no side effects, and improves performance. +{-# INLINE inlinePerformIO #-} +inlinePerformIO :: IO a -> a +inlinePerformIO (IO m) = case m realWorld# of (# _, r #) -> r + #if __GLASGOW_HASKELL__ <= 408 strLength (Ptr a#) = ghc_strlen a# foreign import ccall unsafe "ghc_strlen"