summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2013-05-30 22:02:17 +0100
committerSimon Peyton Jones <simonpj@microsoft.com>2013-05-30 22:03:47 +0100
commit3d81b68d48e86f9dff032321aff20b76ad3ea081 (patch)
treed2782d570c69eae25febdb6654c8944b2435dcf3
parent7849266ce2a9f45633d41532a07d870ea6a27fbb (diff)
downloadhaskell-3d81b68d48e86f9dff032321aff20b76ad3ea081.tar.gz
Define chkAppend, and use it
Somtimes we need (xs ++ ys) in situations where ys is almost always empty. Utils.chkAppend checks for that case first.
-rw-r--r--compiler/types/FamInstEnv.lhs4
-rw-r--r--compiler/utils/Util.lhs9
2 files changed, 9 insertions, 4 deletions
diff --git a/compiler/types/FamInstEnv.lhs b/compiler/types/FamInstEnv.lhs
index 34f1701354..6ccd44d70b 100644
--- a/compiler/types/FamInstEnv.lhs
+++ b/compiler/types/FamInstEnv.lhs
@@ -754,13 +754,11 @@ find match_fun match_tys (inst@(FamInst { fi_branches = branches, fi_branched =
where
match = FamInstMatch { fim_instance = inst
, fim_index = ind
- , fim_tys = substTyVars subst tvs `add_on` match_tys2}
+ , fim_tys = substTyVars subst tvs `chkAppend` match_tys2}
where
-- Deal with over-saturation
-- See Note [Over-saturated matches]
(match_tys1, match_tys2) = splitAtList mb_tcs match_tys
- add_on tys1 [] = tys1 -- The wildly common case
- add_on tys1 tys2 = tys1 ++ tys2
lookup_fam_inst_env -- The worker, local to this module
:: MatchFun
diff --git a/compiler/utils/Util.lhs b/compiler/utils/Util.lhs
index 90a2077c71..e2fd0aa093 100644
--- a/compiler/utils/Util.lhs
+++ b/compiler/utils/Util.lhs
@@ -18,7 +18,7 @@ module Util (
unzipWith,
- mapFst, mapSnd,
+ mapFst, mapSnd, chkAppend,
mapAndUnzip, mapAndUnzip3, mapAccumL2,
nOfThem, filterOut, partitionWith, splitEithers,
@@ -259,6 +259,13 @@ splitEithers (e : es) = case e of
Left x -> (x:xs, ys)
Right y -> (xs, y:ys)
where (xs,ys) = splitEithers es
+
+chkAppend :: [a] -> [a] -> [a]
+-- Checks for the second arguemnt being empty
+-- Used in situations where that situation is common
+chkAppend xs ys
+ | null ys = xs
+ | otherwise = xs ++ ys
\end{code}
A paranoid @zip@ (and some @zipWith@ friends) that checks the lists