vote up 5 vote down star
1

I'm reading through K&R and came to the small section on register variables, and was wondering if people here have some good examples of this put into practice.

From section 4.7 in K&R:

The register declaration looks like
register int x;
register char c;

To be clear, I'm just hoping to see some cool code samples. I (am pretty sure that I) understand the subject matter so don't feel the need to type up a verbose explanation (unless you want to).

flag

3 Answers

vote up 24 vote down check

There is no good example of register usage when using modern compilers (read: last 10+ years) because it almost never does any good and can do some bad. When you use register, you are telling the compiler "I know how to optimize my code better than you do" which is almost never the case. One of three things can happen when you use register:

  • The compiler ignores it, this is most likely. In this case the only harm is that you cannot take the address of the variable in the code.
  • The compiler honors your request and as a result the code runs slower.
  • The compiler honors your request and the code runs faster, this is the least likely scenario.

Even if one compiler produces better code when you use register, there is no reason to believe another will do the same. If you have some critical code that the compiler is not optimizing well enough your best bet is probably to use assembler for that part anyway but of course do the appropriate profiling to verify the generated code is really a problem first.

link|flag
Thanks for the insight, it was very informative. – Kyle Walsh Nov 24 '08 at 18:46
"Three things can happen, and two are bad"? Where have I heard that before... ;-) – Steve Jessop Nov 25 '08 at 3:13
@onebyone: I don't get it. – Robert Gamble Nov 25 '08 at 7:30
Remember the compiler is perfectly free to ignore your suggestion - there is nothing in the standard to say it has to put a register variable in a register. – Martin Beckett Dec 13 '08 at 22:09
could also be the case you write a compiler backend and you say "register" for all locals in a function will make a stackless function. that would be quite useful i think. – Johannes Schaub - litb Dec 13 '08 at 22:51
show 2 more comments
vote up 0 vote down

Another common case is when implementing low-level interpreters. Keeping some state in registers, eg. virtual machine stack pointer, can reduce the memory access significantly and speed up you code.

See vmgen — a generator of efficient virtual machine interpreters for an example of the optimization (5.2 Top of stack caching).

link|flag
vote up 4 vote down

In general i agree with Robert, but as any good rule this one has exceptions as well.
If you working on deeply embedded system you might know better than compiler how to optimize the code for your specific application on your specific hardware architecture.

But in 99% of cases Roberts explanation good for embedded word as well.

link|flag
This looks pretty much like what Robert said, in all honesty. – Jonathan Leffler Nov 24 '08 at 19:22
Actually you kind of right. I reread the post and the last paragraph is clarifying what i wanted to clarify... Next time i will read better – Ilya Nov 24 '08 at 20:02

Your Answer

Get an OpenID
or

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