Suppose I have this structures in c++:

class A{
  public:
    B b;
}

class B{
  public:
    C c;
}

class C{
  public:
    double x;
    double y;
    double z;
    double s;
    function Usize(){
      s  = sqrt(pow(x,2) + pow(y,2) + pow(z,2));
    }
}

Will accessing the the values in c ten times require more memory traffic than creating a direct pointer to c and use it? In code terms (assuming legal values):

double dx = 2*rand()-1;
double dy = 2*rand()-1;
double dz = 2*rand()-1;

a->b->c.x *= dx;
a->b->c.y *= dy;
a->b->c.z *= dz;

if (a->b->c.x > 10) a->b->c.x -= 10;
else if (a->b->c.x <0) a->b->c.x += 10;
if (a->b->c.y > 10) a->b->c.y -= 10;
else if (a->b->c.y < 0) a->b->c.y += 10;
if (a->b->c.z > 10) a->b->c.z -= 10;
else if (a->b->c.z < 0) a->b->c.z += 10;

a->b->c->Usize();

vs.

double dx = 2*rand()-1;
double dy = 2*rand()-1;
double dz = 2*rand()-1;


C* ac = a->b->c
ac.x *= dx;
ac.y *= dy;
ac.z *= dz;

if (ac.x > 10) ac.x -= 10;
else if (ac.x < 0)  ac.x += 10;
if (ac.y > 10) ac.y -= 10;
else if (Ac.y < 0) ac.y += 10;
if (ac.z > 10) ac.z -= 10;
else if (ac.z < 0) ac.z += 10;

Thanks.

link|improve this question

59% accept rate
1  
Your code is wrong, which makes it difficult to know what you are asking. Should the class member declarations be B* band C* c, or should the accesses be a.b.c.x etc? – TonyK Jan 21 at 8:37
feedback

3 Answers

up vote 2 down vote accepted

In this exact case, a good compiler should be able eliminate the common expression and generate pretty much optimal code. Since you're accessing primitive types, a->b->c can be evaluated once and used throughout the method.

The call to C::USize() or access of a non primitive type in "class C" will break this pattern and force the compiler to re-evaluate a->b->c for the next line.

a->b->c.x = 10;
a->b->c.Usize();   // <-- Usize() may change a.b so the next line references another B.
a->b->c.y = 5;

This is because the compiler cannot make 100% sure that a method call/operator does not change a, a.b or b.c, so it has to re-evaluate the chain to make sure.

I'd almost call worrying about this at this stage premature optimization. That said, your second example is both more readable and helps the compiler not have to second guess in case you insert any method calls later, so I'd go for that.

link|improve this answer
I didn't downvote, but I don't follow you. How can a method call prevent the optimization? It doesn't matter if A contains B contains C, the method will still do the same thing. – Paul Manta Jan 21 at 8:55
Added a more descriptive code snippet. – Joachim Isaksson Jan 21 at 8:58
I still don't understand. How could class C know that it is contained by class B? And if it did, how would C::Usize() know what instance of B to modify? – Paul Manta Jan 21 at 9:01
If the Usize() implementation is in the same compilation unit, the compiler may figure out that it does not change a, b or c. Consider though that we don't know where a is allocated, there may be a stored pointer to it in another compilation unit that Usize() or anything it calls could use to get to a. The big problem with C/C++ is that the compiler can't assume you're writing clean code, it has to assume the worst. – Joachim Isaksson Jan 21 at 9:09
But doesn't that hold true whether you call like this a->b->c->Usize() or like this C* pc = a->b->c; pc->Usize()? – Paul Manta Jan 21 at 9:11
show 7 more comments
feedback

Chances are no. There will be no difference.

While it is true that dereference chaining will lead to more memory accesses, modern compilers are able to do exactly what you have done. (That is, transform your first example into your second example.)

This is due to a standard compiler optimization called Common Subexpression Elimination (CSE).

The name pretty much says it all. In your first example, a->b->c is the common subexpression that will be optimized out by the compiler. It will be evaluated only once, the result saved, and reused for all the instances it is needed.


There are a number of situations that could prevent a compiler from making such optimizations.

  1. If any relevant variables are declared volatile, then this optimization is not allowed since a volatile variable requires that it be reloaded each time it is used.
  2. If any of the relevant variables are (or potentially) modified, then this optimization is not allowed since it may produce a different result.

As a side-note though, your second example is also more readable since there's dereference chaining.
So if I had to pick which to use, I'd go with the second example anyway.

link|improve this answer
feedback

Theoretically it will not make a difference.

Any modern optimizer should translate to exactly the same code.

link|improve this answer
The more correct way of putting it is that theoretically it should make a difference, but there's no difference in practice because of modern compilers. – Paul Manta Jan 21 at 8:52
@PaulManta well, what I meant is that theoretically all optimizers should be able generate the same code :). – Luchian Grigore Jan 21 at 8:56
feedback

Your Answer

 
or
required, but never shown

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