In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth.
Thanks,
Naveen
|
In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth. Thanks, Naveen
| |||||||
feedback
|
|
Here's an excerpt from Section 6.7.1 (footnote 101) of the C99 standard (pdf):
And from Section 7.1.1, Paragraph 3 of the C++ standard (pdf):
So, this seems like another case of C and C++ having "identical" features that behave the way you'd expect them most of the time, but diverge and cause confusion other times. In this situation, I think the way C does it makes sense since it
Fun tidbits about
|
|
Yay. Another thing to add to my list of arbitrary differences between C and C++. I would love to have heard the rationale for changing this. – Mark Bessey Aug 10 '09 at 18:19 |
||
In the old days it made sense for the programmer to specify variabels as register variables because the compilers were not that good. Nowadays the compiler is almost always going to do a better job of optimizations than a programmer, thus changing it to a hint is inline with the advancement of compiler technology. – Loki Astari Aug 10 '09 at 19:31 |
|||
If you think you can optimize better than the compiler you are mistaken. If you actually find an optimization for some obscure hardware great, we will add it to the next version of the compiler and we are back to sqaure one the compiler is better than you. – Loki Astari Aug 10 '09 at 19:35 |
|||
I wasn't arguing that "register" was useful, just that having arbitrary differences between C and C++ is a bad idea. The C++ version of "register" is arbitrarily different, but no more useful. It just adds to the code out there that compiles with a C++ compiler, but not with a C compiler.
I had (naively) expected the C and C++ standards to tend to converge over time, or at least not diverge. – Mark Bessey Aug 11 '09 at 1:05 |
|||
|
@Mark Bessey: They are two different languages. I don't know what you expect from different languages, but divergence sounds perfectly reasonable to me. Arbitrary differences are fine- as they're different. – DeadMG Apr 23 '11 at 8:58 |
|
The register keyword is a hint only and can be ignored. Most C++ compilers ignore it all of the time, but any C++ compiler will ignore it if you take the address of the variable, or create a reference to it. On the other hand, a C++ compiler doesn't have to ignore "register" just because you take the variable's address. In theory the compiler could store it in a register and give you some magic pointer value that is somehow mapped to the register behind the scenes, but that would be a lot of work for very little gain, so no compiler (that I know of) does anything like that. Since register is ignorable in C as well, I suspect that the explicit proscription against taking addresses of register variables was simply to alleviate C compilers from the burden of checking for this. The relevant part of the C++ standard is 7.1.1.3:
| |||
|
feedback
|
|
A register variable doesn't have an address, it's held (at least it's supposed to be held) in a cpu register. Since the register modifier is nothing but a hint, if you force the compiler to generate code to extract it's address, the modifier will be ignored and you'll end up with a regular variable held in memory. To directly answer your question, whichever one lets you take a register variable's address (your original post is contradicting itself..) lets you ignore your own hint and should at least issue a warning. IMO the correct implementation would be to disallow taking the address of a register variable. | |||||
feedback
|
|
The important thing to remember is that "register" is just a hint to the compiler (a pointless one at that; I've never seen any speed improvement, and most compilers probably just ignore it). C and C++ are both allowed to ignore your "advice" and keep the variable in memory. Of course, if you take the address of the variable, it will force it to assign a spot in memory. C and C++ just have different rules about what you can do because they are different languages. The C++ designers decided to allow you to get the address of a register variable because it doesn't hurt anything; C doesn't allow you to do it because it would force it into memory. Thinking about it more, C's restriction is probably for the same reason that variables had to be declared at the beginning of the block—the compiler can layout the memory for variables as it encounters them, without regard to how it's used later in the function. | ||||
|
feedback
|
|
This is an educated guess only, but I doubt that you can take the address of a register in C++ because such a think simply doesn't exist. C++ probably doesn't use a register in your particular case. Notice that the storage class qualifier | |||
|
feedback
|
|
C and C++ are two different languages, with a large common subset. That's why some things are different between them. While I don't understand your question, (Computers normally have registers, which are quick-access parts of the CPU, and hence the fastest storage to access. A variable might live in a register, rather than in memory, if that caused better performance.) Nowadays, almost all compilers are sophisticated enough to do their own allocation better than the programmer can, so using | ||||
|
feedback
|
|
sorry about the super late answer. the problem is that , in C , register originally meant storing values in a register which is why only int and char can be used for it. but with time and especially standard C++, it broadened to "fast access" rather than "in register of CPU". so in C++ , an array maybe a register type but we know that it is not possible to store arrays in register. hence, it is logically okay to address a C++ register(in the above sense) but will still make no sense if the values are actually in a register. thanks, Sriraam | |||
|
feedback
|
|
I assume that the keyword wouldn't have even made it into the language if it weren't for C compatibility. While I can not speak with any authority, if this is so, it seems to me there is a practical reason for it to be legal beyond simply a standard-enforced "the compiler is smarter than you" clause: C++ takes addresses of things without permission more readily than C does. Specifically: member functions, and references. Because member functions require an implicit You also could not create references to such objects, even though, technically, the compiler does not have to treat references as pointers. So, in order to maintain C compatibility, they have to make | |||
|
feedback
|