vote up 7 vote down star
4

If I have a function that needs to work with a shared_ptr, wouldn't it be more efficient to pass it a reference to it (so to avoid copying the shared_ptr object)? What are the possible bad side effects? I envision two possible cases:

1) inside the function a copy is made of the argument, like in

ClassA::take_copy_of_sp(boost::shared_ptr<foo> &sp)  
{  
     ...  
     m_sp_member=sp; //This will copy the object, incrementing refcount  
     ...  
}

2) inside the function the argument is only used, like in

Class::only_work_with_sp(boost::shared_ptr<foo> &sp) //Again, no copy here  
{    
    ...  
    sp->do_something();  
    ...  
}

I can't see in both cases a good reason to pass the boost::shared_ptr by value instead of by reference. Passing by value would only "temporarily" increment the reference count due to the copying, and then decrement it when exiting the function scope. Am I overlooking something?

Andrea.

EDIT:
Just to clarify, after reading several answers : I perfectly agree on the premature-optimization concerns, and I alwasy try to first-profile-then-work-on-the-hotspots. My question was more from a purely technical code-point-of-view, if you know what I mean.

flag

50% accept rate
I don't know if you can modify the tags of your question, but please try to add a boost tag in there. I tried looking for this question but I couldn't find any because I looked for boost and smart-pointer tags. So I found your question just after composing my own question – Edison Gustavo Muenz Mar 6 at 17:09

8 Answers

vote up 10 vote down check

The point of a distinct shared_ptr instance is to guarantee (as far as possible) that as long as this shared_ptr is in scope, the object it points to will still exist, because its reference count will be at least 1.

Class::only_work_with_sp(boost::shared_ptr<foo> sp)
{
    // sp points to an object that cannot be destroyed during this function
}

So by using a reference to a shared_ptr, you disable that guarantee. So in your second case:

Class::only_work_with_sp(boost::shared_ptr<foo> &sp) //Again, no copy here  
{    
    ...  
    sp->do_something();  
    ...  
}

How do you know that sp->do_something() will not blow up due to a dangling pointer?

It all depends what is in those '...' sections of the code. What if you call something during the first '...' that has the side-effect (somewhere in another part of the code) of clearing a shared_ptr to that same object? And what if it happens to be the only remaining distinct shared_ptr to that object? Bye bye object, just where you're about to try and use it.

So there are two ways to answer that question:

  1. Examine the source of your entire program very carefully until you are sure the object won't die during the function body.

  2. Change the parameter back to be a distinct object instead of a reference.

General bit of advice that applies here: don't bother making risky changes to your code for the sake of performance until you've timed your product in a realistic situation in a profiler and conclusively measured that the change you want to make will make a significant difference to performance.

link|flag
The shared_ptr that is passed in already lives in a scope, at the call site. You might be able to create an elaborate scenario where the code in this question would blow up due to a dangling pointer, but then I suppose you have bigger problems than the reference parameter! – Magnus Hoff Nov 30 '08 at 14:48
It may be stored in a member. You may call something that happens to clear that member. The whole point of smart_ptr is to avoid having to coordinate lifetimes in hierarchies or scopes that nest around the call stack, so that's why it's best to assume that lifetimes don't do that in such programs. – Earwicker Nov 30 '08 at 19:47
Earwicker: Your scenario is of course real, but it my personal experience not likely. Perhaps we have just been working in different code bases. :) Good thing is, this page contains both viewpoints now ;) – Magnus Hoff Nov 30 '08 at 22:42
It's not really my viewpoint though! If you think what I'm saying is something specific to do with my code, you may not have understood me. I'm talking about an unavoidable implication of the reason shared_ptr exists in the first place: many object lifetimes are not simply related to function calls. – Earwicker Nov 30 '08 at 23:19
vote up 1 vote down

I'll assume that you are familiar with premature optimization and are asking this either for academic purposes or because you have isolated some pre-existing code that is under-performing.

Passing by reference is okay

Passing by const reference is better, and can usually be used, as it does not force const-ness on the object pointed to.

You are not at risk of losing the pointer due to using a reference. That reference is evidence that you have a copy of the smart pointer earlier in the stack and only one thread owns a call stack, so that pre-existing copy isn't going away.

Using references is often more efficient for the reasons you mention, but not guaranteed. Remember that dereferencing an object can take work too. Your ideal reference-usage scenario would be if your coding style involves many small functions, where the pointer would get passed from function to function to function before being used.

You should always avoid storing your smart pointer as a reference. Your Class::take_copy_of_sp(&sp) example shows correct usage for that.

link|flag
"You are not at risk of losing the pointer due to using a reference. That reference is evidence that you have a copy of the smart pointer earlier in the stack" Or a data member...? – Earwicker Nov 30 '08 at 23:23
vote up 2 vote down

It is sensible to pass shared_ptrs by const&. It will not likely cause trouble (except in the unlikely case that the referenced shared_ptr is deleted during the function call, as detailed by Earwicker) and it will likely be faster if you pass a lot of these around. Remember; the default boost::shared_ptr is thread safe, so copying it includes a thread safe increment.

Try to use const& rather than just &, because temporary objects may not be passed by non-const reference. (Even though a language extension in MSVC allows you to do it anyway)

link|flag
Yes, I always use const references, I just forgot to put it in my example. Anyway, MSVC allows to bind non-const references to temporaries not for a bug, but because by default it has the property "C/C++ -> Language -> Disable Language Extension" set to "NO". Enable it and it won't compile them... – abigagli Nov 30 '08 at 16:01
abigagli: Seriously? Sweet! I will enforce this at work, first thing tomorrow ;) – Magnus Hoff Nov 30 '08 at 22:31
vote up 2 vote down

I would avoid a "plain" reference unless the function explicitely may modify the pointer.

A const & may be a sensible micro-optimization when calling small functions - e.g. to enable further optimizations, like inlining away some conditions. Also, the increment/decrement - since it's thread safe - is a synchronization point. I would not expect this to make a big difference in most scenarios, though.

Generally, you should use the simpler style unless you have reason not to. Then, either use the const & consistently, or add a comment as to why if you use it just in a few places.

link|flag
vote up 0 vote down

In addition to what litb said, I'd like to point out that it's probably to pass by const reference in the second example, that way you are sure you don't accidentally modify it.

link|flag
vote up 7 vote down

I would advise against this practice unless you and the other programmers you work with really, really know what you are all doing.

First, you have no idea how the interface to your class might evolve and you want to prevent other programmers from doing bad things. Passing a shared_ptr by reference isn't something a programmer should expect to see, because it isn't idiomatic, and that makes it easy to use it incorrectly. Program defensively: make the interface hard to use incorrectly. Passing by reference is just going to invite problems later on.

Second, don't optimize until you know this particular class is going to be a problem. Profile first, and then if your program really needs the boost given by passing by reference, then maybe. Otherwise, don't sweat the small stuff (i.e. the extra N instructions it takes to pass by value) instead worry about design, data structures, algorithms, and long-term maintainability.

link|flag
My thoughts exactly! +1 – divideandconquer.se Nov 29 '08 at 16:42
Although litb's answer is technically correct, never underestimate the "laziness" of programmers (I'm lazy too!). littlenag's answer is better, that a reference to a shared_ptr will be unexpected, and possibly (probably) an unnecessary optimization that makes future maintenance more challenging. – netjeff Nov 30 '08 at 5:00
vote up 3 vote down

In the second case, doing this is simpler:

Class::only_work_with_sp(foo &sp)
{    
    ...  
    sp.do_something();  
    ...  
}

You can call it as

only_work_with_sp(*sp);
link|flag
1  
If you adopt the convention to use object references when you don't need to take a copy of the pointer, it serves to document your intent as well. It also gives you a chance to use a const reference. – Mark Ransom Nov 29 '08 at 16:36
Yes, I agree on the usage of references to objects as a mean to express that the called function is not "remembering" anything about that object. Usually I use pointer formal arguments if the function is "keeping track" of the object – abigagli Nov 30 '08 at 15:57
vote up 4 vote down

Yes, taking a reference is fine there. You don't intend to give the method shared ownership; it only wants to work with it. You could take a reference for the first case too, since you copy it anyway. But for first case, it takes ownership. There is this trick to still copy it only once:

void ClassA::take_copy_of_sp(boost::shared_ptr<foo> sp) {
    m_sp_member.swap(sp);
}

You should also copy when you return it (i.e not return a reference). Because your class doesn't know what the client is doing with it (it could store a pointer to it and then big bang happens). If it later turns out it's a bottleneck (first profile!), then you can still return a reference.


Edit: Of course, as others point out, this only is true if you know your code and know that you don't reset the passed shared pointer in some way. If in doubt, just pass by value.

link|flag

Your Answer

Get an OpenID
or

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