Safe Haskell | None |
---|---|
Language | GHC2021 |
GHC.Runtime.Eval.Types
Synopsis
- data Resume = Resume {
- resumeStmt :: String
- resumeContext :: ForeignRef (ResumeContext [HValueRef])
- resumeBindings :: ResumeBindings
- resumeFinalIds :: [Id]
- resumeApStack :: ForeignHValue
- resumeBreakpointId :: Maybe InternalBreakpointId
- resumeSpan :: SrcSpan
- resumeDecl :: String
- resumeCCS :: RemotePtr CostCentreStack
- resumeHistory :: [History]
- resumeHistoryIx :: Int
- type ResumeBindings = ([TyThing], IcGlobalRdrEnv)
- data IcGlobalRdrEnv = IcGlobalRdrEnv {}
- data History = History {}
- data ExecResult
- = ExecComplete { }
- | ExecBreak { }
- data SingleStep
- = RunToCompletion
- | RunAndLogSteps
- | SingleStep
- | LocalStep { }
- | ModuleStep { }
- enableGhcStepMode :: SingleStep -> Bool
- breakHere :: SingleStep -> SrcSpan -> Bool
- data ExecOptions = ExecOptions {}
Documentation
Constructors
Resume | |
Fields
|
type ResumeBindings = ([TyThing], IcGlobalRdrEnv) Source #
data IcGlobalRdrEnv Source #
Essentially a GlobalRdrEnv, but with additional cached values to allow efficient re-calculation when the imports change. Fields are strict to avoid space leaks (see T4029) All operations are in GHC.Runtime.Context. See Note [icReaderEnv recalculation]
Constructors
IcGlobalRdrEnv | |
Fields
|
Constructors
History | |
Fields
|
data ExecResult Source #
Constructors
ExecComplete | Execution is complete |
Fields | |
ExecBreak | Execution stopped at a breakpoint. Note: |
Fields |
data SingleStep Source #
What kind of stepping are we doing?
Constructors
RunToCompletion | |
RunAndLogSteps | :trace [expr] |
SingleStep | :step [expr] |
LocalStep | :steplocal [expr] |
ModuleStep | :stepmodule [expr] |
enableGhcStepMode :: SingleStep -> Bool Source #
Whether this SingleStep
mode requires instructing the interpreter to
step at every breakpoint.
breakHere :: SingleStep -> SrcSpan -> Bool Source #
Given a SingleStep
mode and the SrcSpan of a breakpoint we hit, return
True
if based on the step-mode alone we should stop at this breakpoint.
In particular, this will always be False
for
and
RunToCompletion
. We'd need further information e.g. about the user
breakpoints to determine whether to break in those modes.RunAndLogSteps
data ExecOptions Source #
Constructors
ExecOptions | |
Fields
|