Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question

4 Answers

up vote 29 down vote accepted

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.

share|improve this answer
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
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
although in that case __attribute__((register_function)) or the like would be better i think – Johannes Schaub - litb Dec 14 '08 at 0:01

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.

share|improve this answer
1  
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

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).

share|improve this answer

first is, register variable should be use for heavily used variables such as loop control variable to enhance performance by minimizing access time. secondary you can use only and only register storage specifier in this situation like , fun (auto int a,auto int b) :error fun (register int a,register int b) :right only this would be run fun (static int a,static int b) :error fun (extern int a,extern int b) :error

share|improve this answer
1  
What?! The K&R text is from the 1970's, so some of their recommendations are a bit out of date. Using register is definitely one of those. – Bo Persson Jan 5 at 12:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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