Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GNU Smalltalk 80 Debugger. How to debug smallcode code ? Start Debugger?

In GNU Smalltalk 80 it is possible to write smalltalk code in your own plain text editor of personal choice.

Therefore, it is very important to debug the code.

First you save the file as txt File. Then you open the file from the programmers text editor with the "Tools". Here the tool - link C/programme/GNU/gnu smalltalk/gst.exe. The code is running. The debug option is not included. Under these circumstances programming is not possible. There must be a "debug" option to activate.

My question is: how to include that debug option? Normally the smalltalk code is debugged first.

like image 526
Zabo Avatar asked Nov 10 '22 06:11

Zabo


1 Answers

GNU Smalltalk includes tools for debugging. It implements a Debugger class as mentioned in Smalltalk 80: the language within DebugTool.st. Other classes mentioned alongside Debugger are not necessarily implemented, perhaps because they relate to GUI operations.

Instead, GNU Smalltalk provides the MiniDebug command line debugger for use with GNU Smalltalk or when the IDE is not available. It is more or less a rudimentary subset of GDB.

Loading MiniDebugger

A simple way to use it is read the file into gst:

$ gst
GNU Smalltalk ready

st> FileStream fileIn: '/usr/share/gnu-smalltalk/examples/MiniDebugger.st'
"Global garbage collection... done"
Loading package DebugTools
FileStream
st>

Note that the location of MiniDebugger.st is typical for Ubuntu 16.04. Other operating systems may put the file in a different place.

MiniDebugger Hello World

A hello world example of the MiniDebugger is:

st> self halt
'nil error: halt encountered'
Halt(Exception)>>signal (ExcHandling.st:254)
Halt(Exception)>>signal: (ExcHandling.st:264)
UndefinedObject(Object)>>halt: (SysExcept.st:1464)
UndefinedObject(Object)>>halt (Object.st:1325)
UndefinedObject>>executeStatements (a String:1)
      6         ^self activateHandler: (onDoBlock isNil and: [ self isResumable ])
(debug) c
st>

The entry of c at the (debug) prompt is for 'continue'. Other options will be displayed by typing h (or any other invalid command).

Making a Debugging Image

Once MiniDebugger is loaded into a gst REPL, an image containing the debugger can be created:

st> ObjectMemory snapshot: 'myDebuggerImage.im'

and later reloaded when starting gst (this assumes 'myDebuggerImage.im' is located in the current directory or in another place gst looks by default):

$ gst -I myDebuggerImage.im 

Setting a Breakpoint

The MiniDebugger will then appear any time the control flow encounters Object:halt. For example if I have the file:

"Halter.st"
Object subclass: Halter [
  breakpoint [
    self halt.
  ]
]

Then:

st> h := Halter new
a Halter
st> h breakpoint
'a Halter error: halt encountered'
...
(debug)
like image 178
ben rudgers Avatar answered Dec 15 '22 14:12

ben rudgers