Show breakpoint locations of breakpoints which were ignored during :force (#2950)
GHCi is split up into 2 major parts: The user-interface (UI) and the byte-code interpreter. With `-fexternal-interpreter` they even run in different processes. Communication between the UI and the Interpreter (called `iserv`) is done using messages over a pipe. This is called `Remote GHCI` and explained in the Note [Remote GHCi] in `compiler/ghci/GHCi.hs`. To process a `:force` command the UI sends a `Seq` message to the `iserv` process. Then `iserv` does the effective evaluation of the value. When during this process a breakpoint is hit, the `iserv` process has no additional information to enhance the `Ignoring breakpoint` output with the breakpoint location. To be able to print additional breakpoint information, there are 2 possible implementation choices: 1. Store the needed information in the `iserv` process. 2. Print the `Ignoring breakpoint` from the UI process. For option 1 we need to store the breakpoint info redundantely in 2 places and this is bad. Therfore option 2 was implemented in this MR: - The user enters a `force` command - The UI sends a `Seq` message to the `iserv` process. - If processing of the `Seq` message hits a breakpoint, the `iserv` process returns control to the UI process. - The UI looks up the source location of the breakpoint, and prints the enhanced `Ignoring breakpoint` output. - The UI sends a `ResumeSeq` message to the `iserv` process, to continue forcing.
Showing
- compiler/GHC/Runtime/Eval.hs 0 additions, 8 deletionscompiler/GHC/Runtime/Eval.hs
- compiler/GHC/Runtime/Heap/Inspect.hs 9 additions, 2 deletionscompiler/GHC/Runtime/Heap/Inspect.hs
- compiler/GHC/Runtime/Interpreter.hs 55 additions, 5 deletionscompiler/GHC/Runtime/Interpreter.hs
- libraries/ghci/GHCi/Message.hs 8 additions, 1 deletionlibraries/ghci/GHCi/Message.hs
- libraries/ghci/GHCi/Run.hs 33 additions, 1 deletionlibraries/ghci/GHCi/Run.hs
- testsuite/tests/ghci.debugger/scripts/T2950.script 6 additions, 0 deletionstestsuite/tests/ghci.debugger/scripts/T2950.script
- testsuite/tests/ghci.debugger/scripts/T2950.stdout 9 additions, 0 deletionstestsuite/tests/ghci.debugger/scripts/T2950.stdout
- testsuite/tests/ghci.debugger/scripts/T2950M.hs 4 additions, 0 deletionstestsuite/tests/ghci.debugger/scripts/T2950M.hs
- testsuite/tests/ghci.debugger/scripts/T2950S.hs 8 additions, 0 deletionstestsuite/tests/ghci.debugger/scripts/T2950S.hs
- testsuite/tests/ghci.debugger/scripts/all.T 1 addition, 0 deletionstestsuite/tests/ghci.debugger/scripts/all.T
- testsuite/tests/ghci.debugger/scripts/print020.stdout 1 addition, 1 deletiontestsuite/tests/ghci.debugger/scripts/print020.stdout
- testsuite/tests/ghci/scripts/T17431.stdout 3 additions, 3 deletionstestsuite/tests/ghci/scripts/T17431.stdout
Loading
Please register or sign in to comment