summaryrefslogtreecommitdiff
path: root/compiler/ghci/Debugger.hs
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix a bug in the closure viewerPepe Iborra2007-01-201-1/+0
|
* An object code module in ghci is not and cannot be handled by the GHCi debuggerPepe Iborra2007-01-111-23/+33
| | | | | This patch should provide more informative messages to the user
* Added the new :breakpoint continue optionPepe Iborra2007-01-111-6/+10
| | | | | | | | | | | Previously, when in a breakpoint, :quit was used to continue execution. This is not the right thing to do, so this patch restores :quit to its original meaning whether or not ghci is in an inferior session. The continue behavior is now provided by ":breakpoint continue". I added a synonim command in :continue because it is much shorter, but this is optional
* Remove a tracing statement, change a comment, and make more obvious an ↵Pepe Iborra2007-01-051-4/+3
| | | | unexpected condition
* Improved an error message, giving a more concrete suggestionPepe Iborra2007-01-051-1/+2
|
* This patch fixes ticket #1083 in the ghci debuggerPepe Iborra2007-01-051-1/+1
| | | | | | | A module loaded under debugging mode but owning no breakpoints was erroneously identified by ghci as a non-under debugging module, producing a confusing error msg when the user tried to set a breakpoint The fix inserts an empty list of sites in the module-sites dictionary used by the debugger
* Add newline at endsimonpj@microsoft.com2007-01-031-1/+1
|
* Remove uses of Data.Traversable to fix stage1 on pre ghc-6.6 systemsPepe Iborra2006-12-181-3/+3
|
* Toggle whether the RTS gets build with debugger support for ghciPepe Iborra2006-12-111-1/+6
| | | | | | Specifically, this disables the special support in the RTS for looking up the datacon name corresponding to an address. Correspondingly, the debugging commads in GHCi will not be available, and neither will the '-fdebugging' flag
* Closure inspection in GHCiPepe Iborra2006-12-101-0/+242
| | | | | | | The :print, :sprint and :force commands for GHCi. This set of commands allows inspection of heap structures of the bindings in the interactive environment. This is useful to observe lazyness and specially to inspect things with undespecified polymorphic types, as happens often in breakpoints.
* Dynamic breakpoints in GHCiPepe Iborra2006-12-101-0/+307
This patch adds dynamic breakpoints to GHCi There is a new ':breakpoint' command to manage breakpoints. GHCi simply uses the breakpoint api functions in ghc-api to install itself as a client. The mechanism used by GHCi to keep track of enabled breakpoints is a simple table. When a breakpoint is hit, a new interactive session is launched and the bindings in the breakpoint are injected. Some commands are disabled in this sub session