Modular transactional memory

  • Authors:
  • Matthew Brecknell;Paul Roe

  • Affiliations:
  • Queensland University of Technology, Australia;Queensland University of Technology, Australia

  • Venue:
  • ACSC '10 Proceedings of the Thirty-Third Australasian Conferenc on Computer Science - Volume 102
  • Year:
  • 2010

Quantified Score

Hi-index 0.00

Visualization

Abstract

Software transactional memory has the potential to greatly simplify development of concurrent software, by supporting safe composition of concurrent shared-state abstractions. However, STM semantics are defined in terms of low-level reads and writes on individual memory locations, so implementations are unable to take advantage of the properties of user-defined abstractions. Consequently, the performance of transactions over some structures can be disappointing. We present Modular Transactional Memory, our framework which allows programmers to extend STM with concurrency control algorithms tailored to the data structures they use in concurrent programs. We describe our implementation in Concurrent Haskell, and two example structures: a finite map which allows concurrent transactions to operate on disjoint sets of keys, and a non-deterministic channel which supports concurrent sources and sinks. Our approach is based on previous work by others on boosted and open-nested transactions, with one significant development: transactions are given types which denote the concurrency control algorithms they employ. Typed transactions offer a higher level of assurance for programmers reusing transactional code, and allow more flexible abstract concurrency control.