vote up 6 vote down star

What does the register keyword do in C? I have read that it is used for optimizing but is not clearly defined in any standard. Is it still relevant and if so, when would you use it?

flag

75% accept rate

7 Answers

vote up 24 vote down check

It's a hint to the compiler that the variable will be heavily used and that you recommend it be kept in a processor register if possible.

Most modern compilers do that automatically, and are better at picking them than us humans. :-)

link|flag
Well, I experimented with register to get my ACM submissions tweaked, and sometimes it really helped. But you really have to be carful, because poor choices degrade performance. – ypnos Feb 23 at 16:20
1  
A good reason not to use 'register': you can't take the address of a variable declared 'register' – Adam Rosenfield Feb 23 at 16:21
Note that some/many compilers will completely ignore the register keyword (which is perfectly legal). – Euro Micelli Feb 23 at 17:49
ypnos: Actually the speed of a solution for ACM ICPC problems depends much more on the algorithm choice than on such micro-optimizations. The 5-second time limit is usually enough for a correct solution, especially when using C instead of Java. – Johannes Rössel Oct 15 at 13:12
vote up 8 vote down

It tells the compiler to try to use a CPU register, instead of RAM, to store the variable. Registers are in the CPU and much faster to access than RAM. But it's only a suggestion to the compiler, and it may not follow through.

link|flag
vote up 7 vote down

It hasn't been relevant for at least 15 years as optimizers make better decisions about this than you can. Even when it was relevant, it made a lot more sense on a CPU architecture with a lot of registers, like SPARC or M68000 than it did on Intel with its paucity of registers, most of which are reserved by the compiler for its own purposes.

link|flag
vote up 4 vote down

I'm surprised that nobody mentioned that you cannot take an address of register variable, even if compiler decides to keep variable in memory rather than in register.

So using register you win nothing (anyway compiler will decide for itself where to put the variable) and loose the & operator - no reason to use it.

link|flag
vote up 3 vote down

You are messing with the compiler's sophisticated graph-coloring algorithm. This is used for register allocation. Well, mostly. It acts as a hint to the compiler -- that's true. But not ignored in its entirety since you are not allowed to take the address of a register variable (remember the compiler, now on your mercy, will try to act differently). Which in a way is telling you not to use it.

The keyword was used long, long back. When there were only so few registers that could count them all using your index finger.

But, as I said, deprecated doesn't mean you cannot use it.

link|flag
vote up 2 vote down

On supported C compilers it tries to optimize the code so that variable's value is held in an actual processor register.

link|flag
vote up 1 vote down

Register would notify the compiler that the coder believed this variable would be written/read enough to justify its storage in one of the few registers available for variable use. Reading/writing from registers is usually faster and can require a smaller op-code set.

Nowadays, this isn't very useful, as most compilers' optimizers are better than you at determining whether a register should be used for that variable, and for how long.

link|flag

Your Answer

Get an OpenID
or

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