What does the volatile keyword do? In C++ what problem does it solve?
In my case, I have never knowingly needed it.
|
I used to work with dual-port ram in a multiprocessor system in straight C. We used a hardware managed 16 bit value as a semaphore to know when the other guy was done. Essentially we did this:
Without |
||||
|
|
|
|
|||||||||
|
|
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. |
|||||||||
|
|
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 |
|||
|
|
|
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:
|
|||
|
|
|
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. |
|||
|
|
|
|||||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||||
|
|
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. |
|||
|
|
volatilecan be used effectively, put together in pretty layman terms. Link : publications.gbdirect.co.uk/c_book/chapter8/… – Optimized Coder Nov 11 '11 at 6:48