|
[ Publications ]
[ Research Opportunities ]
[ Partners & Supporters ]
[ Earlier Work ]
|
|
Object Race Detection
|
| Christoph von Praun,
Thomas Gross,
Object Race Detection, Proceedings of the 16th Conference on Object-Oriented Programming, Systems, Languages, and Applications (OOPSLA 2001), October 2001.
[OOPSLA_2001.pdf]
|
|
We present an on-the-fly mechanism that detects access conflicts in
executions of multi-threaded Java programs. Access conflicts are a
conservative approximation of data races. The checker tracks access
information at the level of objects (object races) rather than at
the level of individual variables. This viewpoint allows the checker to
exploit specific properties of object-oriented programs for optimization
by restricting dynamic checks to those objects that are identified by
escape analysis as potentially shared. The checker has been implemented
in collaboration with an "ahead-of-time" Java compiler.
The combination of static program analysis (escape-analysis) and inline
instrumentation during code generation allows us to reduce the runtime
overhead of detecting access conflicts. This overhead amounts to about
16-129% in time and less than 25% in space for typical benchmark
applications and compares favorably to previously published on-the-fly
mechanisms that incurred an overhead of about a factor of 2-80 in time
and up to a factor of 2 in space.
|
|
[ Publications ]
[ Research Opportunities ]
[ Partners & Supporters ]
[ Earlier Work ]
|
|