Making operations on volatile fields atomic

Overview

The expected behaviour for volatile fields is that they should behave in a multi-threaded application the same as they do in a single threaded application.  They are not forbidden to behave the same way, but they are not guaranteed to behave the same way.

The solution in Java 5.0+ is to use AtomicXxxx classes however these are relatively inefficient in terms of memory (they add a header and padding), performance (they add a references and little control over their relative positions), and syntactically they are not as clear to use.

IMHO A simple solution if for volatile fields to act as they might be expected to do, the way JVM must support in AtomicFields which is not forbidden in the current JMM (Java- Memory Model) but not guaranteed.

Why make fields volatile?

The benefit of volatile fields is that they are visible across threads and some optimisations which avoid re-reading them are disabled so you always check again the current value even if you didn’t change them.

e.g. without volatile

1 Thread 2:  int a = 5;
2  
3 Thread 1:  a = 6;

(later)

1 Thread 2: System.out.println(a); // prints 5 or 6

With volatile

1 Thread 2:  volatile int a = 5;
2  
3 Thread 1: a = 6;

(later)

1 Thread 2: System.out.println(a); // prints 6 given enough time.

Why not use volatile all the time?

Volatile read and write access is substantially slower.  When you write to a volatile field it stalls the entire CPU pipeline to ensure the data has been written to cache.  Without this, there is a risk the next read of the value sees an old value, even in the same thread (See AtomicLong.lazySet() which avoids stalling the pipeline)

The penalty can be in the order of 10x slower which you don’t want to be doing on every access.

What are the limitations of volatile?

A significant limitation is that operations on the field is not atomic, even when you might think it is.  Even worse than that is that usually, there is no difference.  I.e. it can appear to work for a long time even years and suddenly/randomly break due to an incidental change such as the version of Java used, or even where the object is loaded into memory. e.g. which programs you loaded before running the program.

e.g. updating a value

1 Thread 2:  volatile int a = 5;
2  
3 Thread 1:  a += 1;
4 Thread 2:  a += 2;

(later)

1 Thread 2: System.out.println(a); // prints 6, 7 or 8 even given enough time.

This is an issue because the read of a and the write of a are done separately and you can get a race condition. 99%+ of the time it will behave as expect, but sometimes it won’t.

What can you do about it?

You need to use AtomicXxxx classes. These wrap volatile fields with operations which behave as expected.

1 Thread 2:  AtomicInteger a = new AtomicInteger(5);
2  
3 Thread 1:  a.incrementAndGet();
4 Thread 2:  a.addAndGet(2);

(later)

1 Thread 2: System.out.println(a); // prints 8 given enough time.

What do I propose?

The JVM has a means to behave as expected,  the only surprising thing is you need to use a special class to do what the JMM won’t guarantee for you.  What I propose is that the JMM be changed to support the behaviour currently provided by the concurrency AtomicClasses.

In each case the single threaded behaviour is unchanged. A multi-threaded program which does not see a race condition will behave the same. The difference is that a multi-threaded program does not have to see a race condition but changing the underlying behaviour.
 

current method suggested syntax notes
x.getAndIncrement() x++ or x += 1  
x.incrementAndGet() ++x  
x.getAndDecrment() x– or x -= 1  
x.decrementAndGet() –x  
x.addAndGet(y) (x += y)  
x.getAndAdd(y) ((x += y)-y)  
x.compareAndSet(e, y) (x == e ? x = y, true : false) Need to add the comma syntax
used in other languages.

 
These operations could be supported for all the primitive types such as boolean, byte, short, int, long, float and double.

Additional assignment operators could be supported such as:
 

current method suggested syntax notes
Atomic multiplication x *= 2;  
Atomic subtraction x -= y;  
Atomic division x /= y;  
Atomic modulus x %= y;  
Atomic shift x <<= y;  
Atomic shift x >>= z;  
Atomic shift x >>>= w;  
Atomic and x &= ~y; clears bits
Atomic or x |= z; sets bits
Atomic xor x ^= w; flips bits

 

What is the risk?

This could break code which relies on these operations occasionally failing due to race conditions.

It might not be possible to support more complex expressions in a thread safe manner.  This could lead to surprising bugs as the code can look like the works, but it doesn’t.  Never the less it will be no worse than the current state.

JEP 193 – Enhanced Volatiles

There is a JEP 193 to add this functionality to Java. An example is:

1 class Usage {
2     volatile int count;
3     int incrementCount() {
4         return count.volatile.incrementAndGet();
5     }
6 }

IMHO there is a few limitations in this approach.

  • The syntax is fairly significant change.  Changing the JMM might not require many changes the the Java syntax and possibly no changes to the compiler.
  • It is a less general solution.  It can be useful to support operations like volume += quantity; where these are double types.
  • It places more burden on the developer to understand why he/she should use this instead of x++;

I am not convinced that a more cumbersome syntax makes it clearer as to what is happening. Consider this example:

1 volatile int a, b;
2  
3 a += b;

or

1 a.volatile.addAndGet(b.volatile);

or

1 AtomicInteger a, b;
2  
3 a.addAndGet(b.get());

Which of these operations, as a line are atomic. Answer none of them, however systems with Intel TSX can make these atomic and if you are going to change the behaviour of any of these lines of code I would make the the a += b;  rather than invent a new syntax which does the same thing most of the time, but one is guaranteed and not the other.

Conclusion

Much of the syntactic and performance overhead of using AtomicInteger and AtomicLong could be removed if the JMM guaranteed the equivalent single threaded operations behaved as expected for multi-threaded code.

This feature could be added to earlier versions of Java by using byte code instrumentation.

Reference: http://www.javacodegeeks.com/2014/07/making-operations-on-volatile-fields-atomic.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值