[commit: ghc] wip/oneShot: Add oneShot demo file (294b749)

git at git.haskell.org git at git.haskell.org
Fri Oct 31 13:19:33 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/oneShot
Link       : http://ghc.haskell.org/trac/ghc/changeset/294b7490e028d619c6e27636fe0d9affd32be6c1/ghc

>---------------------------------------------------------------

commit 294b7490e028d619c6e27636fe0d9affd32be6c1
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Mon Oct 6 23:04:02 2014 +0200

    Add oneShot demo file
    
    (if you remove {-# GHC_OPTIONS -fno-call-arity #-} then both functions
    have the same Core).
    
    Obviously, this patch is not meant to be merged.


>---------------------------------------------------------------

294b7490e028d619c6e27636fe0d9affd32be6c1
 OneShotTest.hs | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/OneShotTest.hs b/OneShotTest.hs
new file mode 100644
index 0000000..b595285
--- /dev/null
+++ b/OneShotTest.hs
@@ -0,0 +1,22 @@
+{-# OPTIONS_GHC -fno-call-arity #-}
+
+module OneShotTest (foldlB, foldlA, fooA, fooB, fooC) where
+
+import GHC.Prim (oneShot)
+
+foldlA, foldlB :: (x -> a -> a) -> a -> [x] -> a
+
+foldlA k a xs = foldr (\v f a -> f (v `k` a)) id xs a
+{-# INLINEABLE foldlA #-}
+
+foldlB k a xs = foldr (\v f -> oneShot (\ a -> f (v `k` a))) id xs a
+{-# INLINEABLE foldlB #-}
+
+f :: Int -> Bool
+f 0 = True
+f 1 = False
+{-# NOINLINE f #-}
+
+fooA = foldlA (+) 0 . filter f
+fooB = foldlB (+) 0 . filter f
+fooC = foldl (+) 0 . filter f



More information about the ghc-commits mailing list