summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/SPARC/CodeGen.hs
diff options
context:
space:
mode:
authorReid Barton <rwbarton@gmail.com>2014-08-22 18:57:50 -0400
committerReid Barton <rwbarton@gmail.com>2014-08-23 14:55:57 -0400
commitcfd08a992c91c0a9c629912a5d7234610256121e (patch)
tree958982daff6933b00804d5b703f2a362d7c82acf /compiler/nativeGen/SPARC/CodeGen.hs
parent104a66a461f4f89b8e5ad9c829923bb7ca8ceddb (diff)
downloadhaskell-cfd08a992c91c0a9c629912a5d7234610256121e.tar.gz
Add MO_AddIntC, MO_SubIntC MachOps and implement in X86 backend
Summary: These MachOps are used by addIntC# and subIntC#, which in turn are used in integer-gmp when adding or subtracting small Integers. The following benchmark shows a ~6% speedup after this commit on x86_64 (building GHC with BuildFlavour=perf). {-# LANGUAGE MagicHash #-} import GHC.Exts import Criterion.Main count :: Int -> Integer count (I# n#) = go n# 0 where go :: Int# -> Integer -> Integer go 0# acc = acc go n# acc = go (n# -# 1#) $! acc + 1 main = defaultMain [bgroup "count" [bench "100" $ whnf count 100]] Differential Revision: https://phabricator.haskell.org/D140
Diffstat (limited to 'compiler/nativeGen/SPARC/CodeGen.hs')
-rw-r--r--compiler/nativeGen/SPARC/CodeGen.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/nativeGen/SPARC/CodeGen.hs b/compiler/nativeGen/SPARC/CodeGen.hs
index c192b8bda6..864f87f1c6 100644
--- a/compiler/nativeGen/SPARC/CodeGen.hs
+++ b/compiler/nativeGen/SPARC/CodeGen.hs
@@ -665,6 +665,8 @@ outOfLineMachOp_table mop
MO_U_QuotRem {} -> unsupported
MO_U_QuotRem2 {} -> unsupported
MO_Add2 {} -> unsupported
+ MO_AddIntC {} -> unsupported
+ MO_SubIntC {} -> unsupported
MO_U_Mul2 {} -> unsupported
MO_WriteBarrier -> unsupported
MO_Touch -> unsupported