summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2018-12-05 10:12:09 +0000
committerSimon Peyton Jones <simonpj@microsoft.com>2018-12-05 10:15:40 +0000
commit84cba4bce65ffc99e2356b3621cf91258b055cad (patch)
treeeb30ca74bf730a1aa9534adc64c1c47f23e7a4b6 /compiler
parenta8b7cef4d45a5003bf7584e06912f0f632116c71 (diff)
downloadhaskell-84cba4bce65ffc99e2356b3621cf91258b055cad.tar.gz
Remove duplicates in -ddump-minimial-imports
This fixes Trac #15994. Previously RdrName.gresToAvailInfo assumed that the input list of GREs had no duplicates. I accidentally broke this precondition in this refactoring: commit 6353efc7694ba8ec86c091918e02595662169ae2 Date: Thu Nov 22 14:48:05 2018 -0500 Fix unused-import warnings This patch fixes a fairly long-standing bug (dating back to 2015) in RdrName.bestImport, namely (There was an ASSERT, but it's usually switched off in stage2. It tripped when I switched stage2 assertions on.) The fix is straightforward: account for dups in gresToAvailInfo.
Diffstat (limited to 'compiler')
-rw-r--r--compiler/basicTypes/RdrName.hs42
1 files changed, 25 insertions, 17 deletions
diff --git a/compiler/basicTypes/RdrName.hs b/compiler/basicTypes/RdrName.hs
index 6a3db51399..60e4e8476f 100644
--- a/compiler/basicTypes/RdrName.hs
+++ b/compiler/basicTypes/RdrName.hs
@@ -88,7 +88,7 @@ import Util
import NameEnv
import Data.Data
-import Data.List( sortBy, nub )
+import Data.List( sortBy )
{-
************************************************************************
@@ -696,17 +696,26 @@ greParent_maybe gre = case gre_par gre of
-- uniqueness assumption.
gresToAvailInfo :: [GlobalRdrElt] -> [AvailInfo]
gresToAvailInfo gres
- = ASSERT( nub gres == gres ) nameEnvElts avail_env
+ = nameEnvElts avail_env
where
- avail_env :: NameEnv AvailInfo -- keyed by the parent
- avail_env = foldl' add emptyNameEnv gres
-
- add :: NameEnv AvailInfo -> GlobalRdrElt -> NameEnv AvailInfo
- add env gre = extendNameEnv_Acc comb availFromGRE env
- (fromMaybe (gre_name gre)
- (greParent_maybe gre)) gre
-
+ avail_env :: NameEnv AvailInfo -- Keyed by the parent
+ (avail_env, _) = foldl' add (emptyNameEnv, emptyNameSet) gres
+
+ add :: (NameEnv AvailInfo, NameSet)
+ -> GlobalRdrElt
+ -> (NameEnv AvailInfo, NameSet)
+ add (env, done) gre
+ | name `elemNameSet` done
+ = (env, done) -- Don't insert twice into the AvailInfo
+ | otherwise
+ = ( extendNameEnv_Acc comb availFromGRE env key gre
+ , done `extendNameSet` name )
where
+ name = gre_name gre
+ key = case greParent_maybe gre of
+ Just parent -> parent
+ Nothing -> gre_name gre
+
-- We want to insert the child `k` into a list of children but
-- need to maintain the invariant that the parent is first.
--
@@ -718,13 +727,12 @@ gresToAvailInfo gres
| otherwise = n:k:ns
comb :: GlobalRdrElt -> AvailInfo -> AvailInfo
- comb _ (Avail n) = Avail n -- Duplicated name
- comb gre (AvailTC m ns fls) =
- let n = gre_name gre
- in case gre_par gre of
- NoParent -> AvailTC m (n:ns) fls -- Not sure this ever happens
- ParentIs {} -> AvailTC m (insertChildIntoChildren m ns n) fls
- FldParent _ mb_lbl -> AvailTC m ns (mkFieldLabel n mb_lbl : fls)
+ comb _ (Avail n) = Avail n -- Duplicated name, should not happen
+ comb gre (AvailTC m ns fls)
+ = case gre_par gre of
+ NoParent -> AvailTC m (name:ns) fls -- Not sure this ever happens
+ ParentIs {} -> AvailTC m (insertChildIntoChildren m ns name) fls
+ FldParent _ mb_lbl -> AvailTC m ns (mkFieldLabel name mb_lbl : fls)
availFromGRE :: GlobalRdrElt -> AvailInfo
availFromGRE (GRE { gre_name = me, gre_par = parent })