[commit: ghc] wip/oneShot: Add oneShot demo file (5b531c6)
git at git.haskell.org
git at git.haskell.org
Sat Oct 25 10:27:12 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/oneShot
Link : http://ghc.haskell.org/trac/ghc/changeset/5b531c6b250b76ba779c5aee193c824c0ac1857c/ghc
>---------------------------------------------------------------
commit 5b531c6b250b76ba779c5aee193c824c0ac1857c
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.
>---------------------------------------------------------------
5b531c6b250b76ba779c5aee193c824c0ac1857c
OneShotTest.hs | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/OneShotTest.hs b/OneShotTest.hs
new file mode 100644
index 0000000..852450e
--- /dev/null
+++ b/OneShotTest.hs
@@ -0,0 +1,19 @@
+{-# GHC_OPTIONS -fno-call-arity #-}
+
+module OneShotTest (fooA, fooB) 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
+
+foldlB k a xs = foldr (\v f -> oneShot (\ a -> f (v `k` a))) id xs a
+
+f :: Int -> Bool
+f 0 = True
+f 1 = False
+{-# NOINLINE f #-}
+
+fooA = foldlA (+) 0 . filter f
+fooB = foldlB (+) 0 . filter f
More information about the ghc-commits
mailing list