up vote 22 down vote favorite
11
share [g+] share [fb]

I'd like to know of an example of a problem which was solved by adding the volatile keyword.

I'm sure it has helped somebody solve something, but I don't know where I would actually apply it.

In my case, it has never been the answer.

link|improve this question

67% accept rate
feedback

14 Answers

up vote 35 down vote accepted

Yes, if you are reading from a spot in memory that, say, a completely separate process/device/whatever may write to..

I used to work with dual-port ram in a multiprocessor system in straight C. We used a hw managed 16 bit value as a semaphore to know when the other guy was done. Essentially we did this:

void waitForSemaphore()
{
   volatile uint16_t* semPtr = WELL_KNOWN_SEM_ADDR;/*well known address to my semaphore*/
   while ((*semPtr) != IS_OK_FOR_ME_TO_PROCEED);
}

Without volatile, the optimizer sees the loop as useless (The guy never sets the value! He's nuts! get rid of that code!) and my code would proceed without having the semaphore, causing problems not just for my code but for my career...

link|improve this answer
feedback

In developing embedded systems or device drivers, where you need to read or write a memory-mapped hardware device. The contents of a particular device register could change at any time, so you need the volatile keyword to ensure that such accesses aren't optimised away by the compiler.

link|improve this answer
3  
This is not only valid for embedded systems but for all device drivers development. – Mladen Jankovic Sep 16 '08 at 14:11
Yes, that's true. – ChrisN Sep 16 '08 at 14:14
The only time I ever needed it on an 8bit ISA bus where you read the same address twice - the compiler had a bug and ignored it (early Zortech c++) – Martin Beckett Jan 13 '09 at 5:13
feedback

Most modern processors have floating point registers that have more than 64 bits of precision. That way, if you run several operations on double-precision numbers, you actually get a higher-precision answer than if you were to truncate each intermediate result to 64 bits.

This is usually great, but it means that depending on how the compiler assigned registers and did optimizations, you'll have different results for the exact same operations on the exact same inputs. If you need consistency, then you can force each operation to go back to memory by using the volatile keyword.

It's also useful for some algorithms that make no algebraic sense, but reduce floating point error, such as Kahan summation. Algebraicly it's a nop, so it will often get incorrectly optimized out, unless some intermediate variables are volatile.

link|improve this answer
2  
+1 for a (useful) use of volatile I don't think I've ever seen before. – Derrick Turk May 4 '10 at 15:56
When you compute numerical derivatives it is useful too, to make sure x + h - x == h you define hh = x + h - x as volatile so that a proper delta can be computed. – Alexandre C. Jun 30 '10 at 11:36
feedback

From an Embedded Systems Article by Dan Saks:

"A volatile object is one whose value might change spontaneously. That is, when you declare an object to be volatile, you're telling the compiler that the object might change state even though no statements in the program appear to change it."

Links to 2 great articles by Mr. Saks regarding the volatile keyword:

http://www.embedded.com/columns/programmingpointers/174300478 http://www.embedded.com/columns/programmingpointers/175801310

link|improve this answer
feedback

Developing for an embedded, I have a loop that checks on a variable that can be changed in an interrupt handler. Without "volatile", the loop becomes a noop - as far as the compiler can tell, the variable never changes, so it optimizes the check away.

Same thing would apply to a variable that may be changed in a different thread in a more traditional environment, but there we often do synchronization calls, so compiler is not so free with optimization.

link|improve this answer
feedback

A large application that I used to work on in the early 1990s contained C-based exception handling using setjmp and longjmp. The volatile keyword was necessary on variables whose values needed to be preserved in the block of code that served as the "catch" clause, lest those vars be stored in registers and wiped out by the longjmp.

link|improve this answer
feedback
  1. you must use it to implement spinlocks as well as some (all?) lock-free data structures
  2. use it with atomic operations/instructions
  3. helped me once to overcome compiler's bug (wrongly generated code during optimization)
link|improve this answer
3  
You are better off using a library, compiler intrinsics, or inline assembly code. Volatile is unreliable. – Zan Lynx May 3 '09 at 17:16
1 and 2 both make use of atomic operations, but volatile does not provide atomic semantics and the platform-specific implementations of atomic will supercede the need for using volatile, so for 1 and 2, I disagree, you do NOT need volatile for these. – Dan Feb 13 '11 at 16:01
Who says anything about volatile providing atomic semantics? I said you need to USE volatile WITH atomic operations and if you don't think it's true look at the declarations of interlocked operations of win32 API (this guy also explained this in his answer) – Mladen Jankovic Feb 17 '11 at 13:05
feedback

There is an intriguing technique that makes your compiler detect possible race conditions that relies heavily on the volatile keyword, you can read about it at http://www.ddj.com/cpp/184403766.

link|improve this answer
feedback

Besides using it as intended, volatile is used in (template) metaprogramming. It can be used to prevent accidental overloading, as the volatile attribute (like const) takes part in overload resolution.

link|improve this answer
feedback

You MUST use volatile when implementing lock-free data structures. Otherwise the compiler is free to optimize access to the variable, which will change the semantics.

To put it another way, volatile tells the compiler that accesses to this variable must correspond to a physical memory read/write operation.

For example, this is how InterlockedIncrement is declared in the Win32 API:

LONG __cdecl InterlockedIncrement(
  __inout  LONG volatile *Addend
);
link|improve this answer
feedback

Here is an interesting discussion about volatile with regards to the Singleton pattern: http://www.aristeia.com/Papers/DDJ_Jul_Aug_2004_revised.pdf

link|improve this answer
feedback

Beside the fact that the volatile keyword is used for telling the compiler not to optimize the access to some variable (that can be modified by a thread or an interrupt routine), it can be also used to remove some compiler bugs -- YES it can be ---.

For example I worked on an embedded platform were the compiler was making some wrong assuptions regarding a value of a variable. If the code wasn't optimized the program would run ok. With optimizations (which were really needed because it was a critical routine) the code wouldn't work correctly. The only solution (though not very correct) was to declare the 'faulty' variable as volatile.

link|improve this answer
2  
It is a faulty assumption the idea that the compiler doesn't optimize access to volatiles. The standard knows nothing about optimizations. The compiler is required to respect what the standard dictates, but it is free to do any optimizations that don't interfere with the normal behavior. – Terminus Sep 25 '08 at 10:22
feedback

I've used it in debug builds when the compiler insists on optimizing away a variable that I want to be able to see as I step through code.

link|improve this answer
feedback

Don't mean to necromance, but this is a nice resource with an example on when 'volatile' can be used effectively, put together in pretty layman terms. Just thought this should be here as SO is a place people look up to pretty often when they seek answers for such questions.

Link : http://publications.gbdirect.co.uk/c_book/chapter8/const_and_volatile.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.