JBInsTrace: A tracer of Java and JRE classes at basic-block granularity by dynamically instrumenting bytecode

  • Authors:
  • Pierre Caserta;Olivier Zendra

  • Affiliations:
  • LORIA - Campus Scientifique, 615 Rue du Jardin Botanique CS 20101, 54603 VILLERS-LES-NANCY CEDEX, France;INRIA Nancy - Grand Est/LORIA, 615 Rue du Jardin Botanique, CS 20101, 54603 VILLERS-LES-NANCY CEDEX, France

  • Venue:
  • Science of Computer Programming
  • Year:
  • 2014

Quantified Score

Hi-index 0.00

Visualization

Abstract

Understanding what happens during the runtime of a Java program is difficult. Tracking runtime flow can bring valuable information for program understanding and behavior analysis. Polymorphism, thread concurrency or even simple facts like the number of method invocations and the number of executed bytecodes are valuable information to track, but are difficult to compute outside the Java Virtual Machine (JVM) on running programs. In this paper, we present JBInsTrace, a new tool that instruments and traces Java bytecode. It produces static information about source code and a very fine grained trace of Java software execution, combining them to allow detailed analysis of the runtime. Our tool differs from others because it does not only trace program classes but also JRE classes, and does so at basic block level, without altering the JVM and without statically modifying class files. We explain JBInsTrace design, focused towards efficiency, which results in reasonable performance penalty.