Why is volatile needed in C? What is it used for? What will it do?
|
|
volatile tells the compiler not to optimize anything that has to do with the volatile variable. There is only one reason to use it: When you interface with hardware. Let's say you have a little piece of hardware that is mapped into RAM somewhere and that has two addresses: a command port and a data port:
Now you want to send some command:
Looks easy, but it can fail because the compiler is free to change the order in which data and commands are written. This would cause our little gadget to issue commands with the previous data-value. Also take a look at the wait while busy loop. That one will be optimized out. The compiler will try to be clever, read the value of isbusy just once and then go into an infinite loop. That's not what you want. The way to get around this is to declare the pointer gadget as volatile. This way the compiler is forced to do what you wrote. It can't remove the memory assignments, it can't cache variales in registers and it can't change the order of assignments either: This is the correct version:
|
|||||||||||||||||||||
|
|
Another use for
The compiler is allowed to notice the loop body does not touch the However, if the |
|||
|
|
|
|
|||
|
|
|
|
||||
|
|
|
See this article by Andrei Alexandrescu, "volatile - Multithreaded Programmer's Best Friend"
The article applies to both Also see the article "C++ and the Perils of Double-Checked Locking" by Scott Meyers and Andrei Alexandrescu:
|
|||||||
|
|
A marginal use for volatile is the following. Say you want to compute the numerical derivative of a function
The problem is that
but depending on your platform and compiler switches, the second line of that function may be wiped out by a aggressively optimizing compiler. So you write instead
to force the compiler to read the memory location containing hh, forfeiting an eventual optimization opportunity. |
|||
|
|
|
There are two uses. These are specially used more often in embedded development.
See examples with assembly listing. Re: Usage of C "volatile" Keyword in Embedded Development |
|||
|
|
|
I'll mention another scenario where volatiles are important. Suppose you memory-map a file for faster I/O and that file can change behind the scenes (e.g. the file is not on your local hard drive, but is instead served over the network by another computer). If you access the memory-mapped file's data through pointers to non-volatile objects (at the source code level), then the code generated by the compiler can fetch the same data multiple times without you being aware of it. If that data happens to change, your program may become using two or more different versions of the data and get into an inconsistent state. This can lead not only to logically incorrect behavior of the program but also to exploitable security holes in it if it processes untrusted files or files from untrusted locations. If you care about security, and you should, this is an important scenario to consider. |
|||
|
|
|
A volatile can be changed from outside the compiled code (for example, a program may map a volatile variable to a memory mapped register.) The compiler won't apply certain optimizations to code that handles a volatile variable - for example, it won't load it into a register without writing it to memory. This is important when dealing with hardware registers. |
|||
|
|
|
Volatile is also useful, when you want to force the compiler not to optimize a specific code sequence (e.g. for writing a micro-benchmark). |
|||
|
|
|
volatile means the storage is likely to change at anytime and be changed but something outside the control of the user program. This means that if you reference the variable, the program should always check the physical address (ie a mapped input fifo), and not use it in a cached way. Also see the article at http://clinuxpro.com/volatile-in-c |
|||
|
|
|
Another good use for volatile, is that it allows you to set 64 bit values atomically on 32 bit system. |
|||
|
|
|
The Wiki say everything about http://en.wikipedia.org/wiki/Volatile_variable And the Linux kernel's doc also make a excellent notation about http://kernel.org/doc/Documentation/volatile-considered-harmful.txt |
|||
|
|
|
it does not allows compiler to automatic changing values of variables. a volatile variable is for dynamic use. |
|||
|
|
protected by tchrist Sep 5 '12 at 18:36
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.