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

Thomas Würthinger
Institute for System Software

Michael Van de Vanter
Sun Microsystems Laboratories, Menlo Park

Doug Simon
Sun Microsystems Laboratories, Menlo Park

Proceedings of the Conference on Perspectives of System Informatics (PSI'09), Novosibirsk, Russia, June 2009.
Lecture Notes in Computer Science 5947, Springer-Varlag, 2010, pp.401-412.
doi:10.1007/978-3-642-11486-1_34


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 understanding 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 platformindependent 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.


Download as PDF

© Springer-Verlag, 2010. This is the author’s version of the work. It is posted here for your personal use. Not for redistribution.