Meta Debug Interface

Most current (2005) programming languages conform to a debugging model, that is either tied to the ProgrammingLanguage (special debug information) or to the OperatingSystem (symbol table + assembly break-points).

JavaLanguage 5.0 (or rather the VM ByteCode format) is beginning to be a notable exception, allowing for multiple levels of transformation.

Herewith I propose a new model for Debugging, that allows to smoothly debug across multiple levels of transformation and interpretation by defining a MetaDebugInterface, that can be implemented by intermediate languages.

I will sketch the (obvious) model in JavaLanguage just for exposition purposes:

  interface Debuggable
  {
List<Location> getLocations(Source);
Collection<Thread> getThreads();
BreakPoint? createBreakPoint(Location);
Collection<Thread> getPendingThreads();
  }

interface BreakPoint? { Location getLocation(); void delete(); }

interface Thread { Location getCurrentLocation(); ActivationRecord getActivationRecord();

void interrupt(); void resume(); }

interface Location { Source getSource(); int getLineNumber(); int getStartingOffset(); int getEndingOffset();

// possible successor locations (step-in, step-out, step-over, step-true, wait-receive) for step breakpoints Map<Target,Location> getSuccessors(); }

interface Source { String getName(); String getSourceText(int fromOffset, int toOffset); List<Location> getLocationsAt(int fromOffset, int toOffset); }

Of course some classes for inspecting program state (e.g. ActivationRecord, Variable) are needed too.

Implementation of these interfaces is fairly straightforward for most language implementations (for BasicLanguage: Every source line is a Location; there is only one thread, whose currentLocation is the currently interpreted line; if interpretation is done by a thread, it can be stopped e.g. with interrupt()).

Concrete Debuggable classes might be registered at a debug factory and accessed by an actual debugger.

To be really useful, it must be implemented on the lowest level of the target language (e.g. AssemblyLanguage or ByteCode). In Java this would mean an implmentation with JDI into its own VM.

And now comes the cool part: It could be possible to provide a method returning a parent Debuggable as well as a mapping from Locations in one Debuggable to the ones in the Parent (and/or vice versa) thus allowing for smooth zooming in over the abstraction levels onto the lowest levels.

Assume you are debugging an interpreter for Basic written in Java. You discover a problem in the basic program, which might result from an error in the java interpreter. You could step up to the error line and then switch to the parent debugger and continue in the java source interpreting the given line. And if that isn't enough you could further switch to ByteCode or even assembly debugging.

-- GunnarZarncke

Very nice.

I'd almost promote it from a 'bell-and-whistle' to a core requirement for the approach in RethinkingCompilerDesign. When debugging an interpreter interpreting itself interpreting target code, I've had three debug windows to show what is going on as I 'single step' through the code. I didn't have the debug interfaces cleanly exposed.

Now the same actually goes for tokenising->MinimalParsing->graph-rewriting as we progress through there are 'errors' possible at different levels of the process. Similarly for any pipeline process. In a sense what we want to do is 'mark' an area of data at some level of abstraction and see how that marked data flows through the system at different levels of abstraction - or from the point of view of different processes.

In the debugger we are controlling what functions we step into and which ones we step over, not through decisions we the programmer make on each click, but through rules. Switching levels is chosing a different rule-set. So also is switching what stage of a pipeline we are watching.

-- JamesCrook.

Yes, I didn't present it in the general form intentionally (to keep it simple). But its general usefulness for debugging over multiple abstractions of data or control flow is intended. -- .gz

More practical example where this would be helpful:


CategoryDebugging CategoryBug


EditText of this page (last edited October 18, 2013) or FindPage with title or text search