summaryrefslogtreecommitdiff
path: root/compiler/GHC
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC')
-rw-r--r--compiler/GHC/Runtime/Eval.hs1
-rw-r--r--compiler/GHC/Runtime/Eval/Types.hs10
-rw-r--r--compiler/GHC/Runtime/Interpreter.hs2
-rw-r--r--compiler/GHC/Types/BreakInfo.hs12
4 files changed, 16 insertions, 9 deletions
diff --git a/compiler/GHC/Runtime/Eval.hs b/compiler/GHC/Runtime/Eval.hs
index bceb9a4159..a4ddbbfd4a 100644
--- a/compiler/GHC/Runtime/Eval.hs
+++ b/compiler/GHC/Runtime/Eval.hs
@@ -106,6 +106,7 @@ import GHC.Types.SrcLoc
import GHC.Types.Unique
import GHC.Types.Unique.Supply
import GHC.Types.TyThing
+import GHC.Types.BreakInfo
import GHC.Unit
import GHC.Unit.Module.Graph
diff --git a/compiler/GHC/Runtime/Eval/Types.hs b/compiler/GHC/Runtime/Eval/Types.hs
index c72c5c89ff..5706c037de 100644
--- a/compiler/GHC/Runtime/Eval/Types.hs
+++ b/compiler/GHC/Runtime/Eval/Types.hs
@@ -8,8 +8,7 @@
module GHC.Runtime.Eval.Types (
Resume(..), History(..), ExecResult(..),
- SingleStep(..), isStep, ExecOptions(..),
- BreakInfo(..)
+ SingleStep(..), isStep, ExecOptions(..)
) where
import GHC.Prelude
@@ -19,7 +18,7 @@ import GHCi.Message (EvalExpr, ResumeContext)
import GHC.Types.Id
import GHC.Types.Name
import GHC.Types.TyThing
-import GHC.Unit.Module
+import GHC.Types.BreakInfo
import GHC.Types.Name.Reader
import GHC.Types.SrcLoc
import GHC.Utils.Exception
@@ -54,11 +53,6 @@ data ExecResult
, breakInfo :: Maybe BreakInfo
}
-data BreakInfo = BreakInfo
- { breakInfo_module :: Module
- , breakInfo_number :: Int
- }
-
data Resume = Resume
{ resumeStmt :: String -- the original statement
, resumeContext :: ForeignRef (ResumeContext [HValueRef])
diff --git a/compiler/GHC/Runtime/Interpreter.hs b/compiler/GHC/Runtime/Interpreter.hs
index 7dcc5fcd82..29c5592299 100644
--- a/compiler/GHC/Runtime/Interpreter.hs
+++ b/compiler/GHC/Runtime/Interpreter.hs
@@ -66,7 +66,7 @@ import GHCi.Message
import GHCi.RemoteTypes
import GHCi.ResolvedBCO
import GHCi.BreakArray (BreakArray)
-import GHC.Runtime.Eval.Types(BreakInfo(..))
+import GHC.Types.BreakInfo (BreakInfo(..))
import GHC.ByteCode.Types
import GHC.Linker.Types
diff --git a/compiler/GHC/Types/BreakInfo.hs b/compiler/GHC/Types/BreakInfo.hs
new file mode 100644
index 0000000000..d08ccda0bf
--- /dev/null
+++ b/compiler/GHC/Types/BreakInfo.hs
@@ -0,0 +1,12 @@
+-- | A module for the BreakInfo type. Used by both the GHC.Runtime.Eval and
+-- GHC.Runtime.Interpreter hierarchy, so put here to have a less deep module
+-- dependency tree
+module GHC.Types.BreakInfo (BreakInfo(..)) where
+
+import GHC.Prelude
+import GHC.Unit.Module
+
+data BreakInfo = BreakInfo
+ { breakInfo_module :: Module
+ , breakInfo_number :: Int
+ }