Dynamic Data Structure Analysis for Java Programs

  • Authors:
  • Sokhom Pheng;Clark Verbrugge

  • Affiliations:
  • McGill University, Canada;McGill University, Canada

  • Venue:
  • ICPC '06 Proceedings of the 14th IEEE International Conference on Program Comprehension
  • Year:
  • 2006

Quantified Score

Hi-index 0.00

Visualization

Abstract

Analysis of dynamic data structure usage is useful for both program understanding and for improving the accuracy of other program analyses. Static analysis techniques, however, suffer from reduced accuracy in complex situations, and do not necessarily give a clear picture of runtime heap activity. We have designed and implemented a dynamic heap analysis system that allows one to examine and analyze how Java programs build and modify data structures. Using a complete execution trace from a profiled run of the program, we build an internal representation that mirrors the evolving runtime data structures. The resulting series of representations can then be analyzed and visualized, and we show how to use our approach to help understand how programs use data structures, the precise effect of garbage collection, and to establish limits on static data structure analysis. A deep understanding of dynamic data structures is particularly important for modern, object-oriented languages that make extensive use of heapbased data structures.