Barriers: Friend or Foe

Blackburn, Stephen M. and Hosking, Antony L.

Abstract

Modern garbage collectors rely on read and write barriers imposed on heap accesses by the mutator, to keep track of references between different regions of the garbage collected heap, and to synchronize actions of the mutator with those of the collector. It has been a long-standing untested assumption that barriers impose significant overhead to garbage-collected applications. As a result, researchers have devoted effort to development of optimization approaches for elimination of unnecessary barriers, or proposed new algorithms for garbage collection that avoid the need for barriers while retaining the capability for independent collection of heap partitions. On the basis of the results presented here, we dispel the assumption that barrier overhead should be a primary motivator for such efforts.

We present a methodology for precise measurement of mutator overheads for barriers associated with mutator heap accesses. We provide a taxonomy of different styles of barrier and measure the cost of a range of popular barriers used for different garbage collectors within Jikes RVM. Our results demonstrate that barriers impose surprisingly low cost on the mutator, though results vary by architecture. We found that the average overhead for a reasonable generational write barrier was less than 2% on average, and less than 6% in the worst case. Furthermore, we found that the average overhead of a read barrier consisting of just an unconditional mask of the low order bits read on the PowerPC was only 0.85%, while on the AMD it was 8.05%. With both read and write barriers, we found that second order locality effects were sometimes more important than the overhead of the barriers themselves, leading to counter-intuitive speedups in a number of situations.

@inproceedings{Blackburn+2004ISMM,
  author = {Blackburn, Stephen M. and Hosking, Antony L.},
  title = {Barriers: Friend or Foe},
  booktitle = {ACM SIGPLAN International Symposium on Memory Management},
  series = {ISMM},
  year = {2004},
  pages = {143--151},
  month = {October},
  address = {Vancouver, Canada},
  doi = {10.1145/1029873.1029891},
  acm = {http://dl.acm.org/authorize?66848},
  gscholar = {78}
}