summaryrefslogtreecommitdiff
path: root/compiler/specialise/Rules.hs
diff options
context:
space:
mode:
authorBartosz Nitka <niteria@gmail.com>2015-07-17 16:50:52 +0100
committerSimon Marlow <marlowsd@gmail.com>2015-07-17 16:51:18 +0100
commit3448f9827d2364b91bc60134aa38b74849b9d54e (patch)
tree6d818b58b8547eabbe42777b47f6cf0042c2fb35 /compiler/specialise/Rules.hs
parenta5e9da8feb5110ab8ee8fe3821e6b6d53946f983 (diff)
downloadhaskell-3448f9827d2364b91bc60134aa38b74849b9d54e.tar.gz
Reduce non-determinism in ABI hashes with RULES and instance decls
Summary: Before this change the `RULES` would be attached to one for the names from the module that appear on the left hand side. The choice depended on the `uniq` that was generated, which are known to be non-deterministic (a separate, bigger problem). Now we use `OccName`s which should be stable. Analogously for instance declarations, but they are attached to one of the types involved. Test Plan: contbuild it made `Data.Text.Internal.Fusion.Common` interface stable, previously stream fusion rule would be attached either to `streamList` or `unstreamList` depending on if the module was compiled after `cabal clean` or after `find | grep '\.o$' | xargs rm`. Reviewers: simonpj, austin, bgamari, simonmar Subscribers: puffnfresh, thomie Differential Revision: https://phabricator.haskell.org/D1073 GHC Trac Issues: #4012
Diffstat (limited to 'compiler/specialise/Rules.hs')
-rw-r--r--compiler/specialise/Rules.hs12
1 files changed, 9 insertions, 3 deletions
diff --git a/compiler/specialise/Rules.hs b/compiler/specialise/Rules.hs
index cb71e3a3f3..7cf6e56bb7 100644
--- a/compiler/specialise/Rules.hs
+++ b/compiler/specialise/Rules.hs
@@ -180,9 +180,15 @@ mkRule this_mod is_auto is_local name act fn bndrs args rhs
lhs_names = nameSetElems (extendNameSet (exprsOrphNames args) fn)
-- TODO: copied from ruleLhsOrphNames
- orph = case filter (nameIsLocalOrFrom this_mod) lhs_names of
- (n : _) -> NotOrphan (nameOccName n)
- [] -> IsOrphan
+ -- Since rules get eventually attached to one of the free names
+ -- from the definition when compiling the ABI hash, we should make
+ -- it deterministic. This chooses the one with minimal OccName
+ -- as opposed to uniq value.
+ local_lhs_names = filter (nameIsLocalOrFrom this_mod) lhs_names
+ anchor = minimum $ map nameOccName local_lhs_names
+ orph = case local_lhs_names of
+ (_ : _) -> NotOrphan anchor
+ [] -> IsOrphan
--------------
roughTopNames :: [CoreExpr] -> [Maybe Name]