summaryrefslogtreecommitdiff
path: root/compiler/iface
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@cs.stanford.edu>2016-05-30 14:21:36 +0200
committerBen Gamari <ben@smart-cactus.org>2016-06-02 11:48:20 +0200
commitf2b3be031075156cf128aba127bdddb84f8b2eb8 (patch)
treeaa9cd70645aece6312e0c921e1f6bcf3590dd21e /compiler/iface
parentcb2c042947ccc4d13bd11d3e4bce47059c3471de (diff)
downloadhaskell-f2b3be031075156cf128aba127bdddb84f8b2eb8.tar.gz
Improve failed knot-tying error message.
Test Plan: validate Reviewers: simonpj, austin, bgamari Reviewed By: bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2207
Diffstat (limited to 'compiler/iface')
-rw-r--r--compiler/iface/TcIface.hs24
1 files changed, 20 insertions, 4 deletions
diff --git a/compiler/iface/TcIface.hs b/compiler/iface/TcIface.hs
index 8bc0dd1110..12980475b2 100644
--- a/compiler/iface/TcIface.hs
+++ b/compiler/iface/TcIface.hs
@@ -1319,9 +1319,11 @@ tcIfaceGlobal name
-> do -- It's defined in the module being compiled
{ type_env <- setLclEnv () get_type_env -- yuk
; case lookupNameEnv type_env name of
- Just thing -> return thing
- Nothing -> pprPanic "tcIfaceGlobal (local): not found:"
- (ppr name $$ ppr type_env) }
+ Just thing -> return thing
+ Nothing ->
+ pprPanic "tcIfaceGlobal (local): not found"
+ (ifKnotErr name (if_doc env) type_env)
+ }
; _ -> do
@@ -1337,11 +1339,25 @@ tcIfaceGlobal name
Succeeded thing -> return thing
}}}}}
+ifKnotErr :: Name -> SDoc -> TypeEnv -> SDoc
+ifKnotErr name env_doc type_env = vcat
+ [ text "You are in a maze of twisty little passages, all alike."
+ , text "While forcing the thunk for TyThing" <+> ppr name
+ , text "which was lazily initialized by" <+> env_doc <> text ","
+ , text "I tried to tie the knot, but I couldn't find" <+> ppr name
+ , text "in the current type environment."
+ , text "If you are developing GHC, please read Note [Tying the knot]"
+ , text "and Note [Type-checking inside the knot]."
+ , text "Consider rebuilding GHC with profiling for a better stack trace."
+ , hang (text "Contents of current type environment:")
+ 2 (ppr type_env)
+ ]
+
-- Note [Tying the knot]
-- ~~~~~~~~~~~~~~~~~~~~~
-- The if_rec_types field is used in two situations:
--
--- a) Compiling M.hs, which indiretly imports Foo.hi, which mentions M.T
+-- a) Compiling M.hs, which indirectly imports Foo.hi, which mentions M.T
-- Then we look up M.T in M's type environment, which is splatted into if_rec_types
-- after we've built M's type envt.
--