vote up 1 vote down star

In C++ a statement like this is valid:

&Variable;

IMO it doesn't make any sense, so my question is, if you do this, will it affect the compiled result in any way, or will the compiler optimize it away?

Thanks!

flag

If you're seeing this in code, it's possible that it's an attempt to get rid of a "parameter value unused" or "variable unused" warning. Other options are to leave the parameter unnamed (which is invalid in C89 so no good for shared source), not define the variable in the first place (which is no use if the constructor has side effects that you want), or the usual way, which is cast to void: (void)Variable; – Steve Jessop Jul 17 at 10:54

7 Answers

vote up 6 vote down check

It's worth remembering that operator&() might be overloaded for the variable type, have some side effects and optimizing away such statement would change program behaviour.

One example is a smart pointer used for controlling the non-C++ objects - _com_ptr_t. It has an overloaded _com_ptr_t::operator&() which checks whether the pointer inside already stores some non-null address. If it turns out that the stored address is non-null it means that the pointer is already attached to some object. If that happens the _com_ptr_t::operator&() disconnects the object - calls IUnknown::Release() and sets the pointer to null.

The side effect here is necessary because the typical usage is this:

_com_ptr_t<Interface> pointer;
// some other code could be here
CoCreateInstance( ..., &pointer, ...);// many irrelevant parameters here

CoCreateInstance() or other object retrieval code has no idea about C++ and _com_ptr_t so it simply overwrites the address passed into it. That's why the _com_ptr_t::operator&() must first release the object the pointer is attached to if any.

So for _com_ptr_t this statement:

&variable;

will have the same effect as

variable = 0;

and optimizing it away would change program behaviour.

link|flag
+1 good answer. That property of _com_ptr_t bit me in the arse once royally - I'd prefer if it that functionality would be in a member function. – peterchen Jul 17 at 13:35
What i wanted to say - you might want to add that without overload it is likely to be optimized away – peterchen Jul 17 at 13:36
vote up 1 vote down

That depends entirely on the compiler and the compilation options you use. There is nothing in the C++ Standard to prevent a compiler from generating code for such a statement.

link|flag
thanks! in my case i use VS 2005. – matt Jul 17 at 10:09
It will most probably be optimised away. – Goz Jul 17 at 10:10
Does the C++ standard say anything about generated code? – Steve Jessop Jul 17 at 10:50
Not that I'm aware of. – Neil Butterworth Jul 17 at 11:06
Good. My plans for a fully-interpreted C++ implementation are still on track ;-) – Steve Jessop Jul 17 at 11:31
show 3 more comments
vote up 0 vote down

Do you want to remove it, but are worried that you may alter the behavior of the program?

It could have side-effects if Variable's class overrides the address-of-operator (operator&).

link|flag
vote up -2 vote down

Another example of showing the absurdity of C++

link|flag
Elaborate on this... why is it absud? – dribeas Jul 17 at 11:50
Well, understand my comment as critic about C++ in general. In short: the concept of operator overloading at all is one cause of very subtle bugs in C++; without it nobody would even consider writing &Variable; as a statement. So the only possibility to check if it's operator overloading or not is checking the assembly or reading through all header files which are in scope, really great! So my conclusion in general is: operator overloading is a big DON'T in C++ and I judge that C++ code is bad once it uses it. Honestly, I only tolerate a very small C++ subset... – anselm Jul 17 at 12:12
vote up 9 vote down

Consider this snippet:

#include <iostream>
class A {
public:
    A* operator &() {
        std::cout << "aaa" << std::endl;
        return this;
    }
};

int main() {
    A a;
    &a;
    return 0;
};

In this case, "&a;" will generate code.

link|flag
vote up 1 vote down

Yes, such statement is likely to be optimized. It means to take a reference to variable and throw it away. While at 'no optimization' setting your compiler may generate some code for this statement, it is essentially no-op and with optimization this statement should go away.

link|flag
vote up 0 vote down

It seems you take a reference to a local variable on stack or register. The best way to find out what the compiler does at the moment is to view the Disassembly view in Visual Studio.

Disassembly view in Debugger (Visual Studio Orcas)

link|flag

Your Answer

Get an OpenID
or

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