Multi-Level Virtual Machine Debugging using the Java Platform Debugger Architecture (2009)

Authors: Thomas Würthinger, Michael L. Van De Vanter, and Doug Simon

Abstract:
Debugging virtual machines (VMs) presents unique challenges, especially meta-circular VMs, which are written in the same language they implement. Making sense of runtime state for such VMs requires insight and interaction at multiple levels of abstraction simultaneously. For example, debugging a Java VM written in Java requires under- standing execution state at the source code, bytecode and machine code levels. However, the standard debugging interface for Java, which has a platform-independent execution model, is itself platform-independent. By definition, such an interface provides no access to platform-specific details such as machine code state, stack and register values. Debuggers for low-level languages such as C and C++, on the other hand, have direct access only to low-level information from which they must synthesize higher-level views of execution state. An ideal debugger for a meta-circular VM would be a hybrid: one that uses standard platform- independent debugger interfaces but which also interacts with the execution environment in terms of low-level, platform-dependent state. This paper presents such a hybrid architecture for the meta-circular Maxine VM. This architecture adopts unchanged a standard debugging interface, the Java Platform Debugger Architecture (JPDA), in combination with the highly extensible NetBeans Integrated Development Environment. Using an extension point within the interface, additional machine-level information can be exchanged between a specialized server associated with the VM and plug-in extensions within NetBeans.


Seventh International Andrei Ershov Memorial Conference "Perspectives of System Informatics," 15 - 19 June, 2009, Novosibirsk, Akademgorodok, Russia. To be reprinted in LNCS 5947, Lecture Notes in Computer Science, Springer Verlag.

12 pages (PDF )