In a programme I am writing, I have to pass large data structures (images) between functions. I need my code to be as fast as possible, on different OSs (thus, I can't profile all test cases). I frequently have code of the form...
void foo() {
ImageType img = getCustomImage();
}
ImageType getCustomImage() {
ImageType custom_img;
//lots of code
return custom_img;
}
AFAIK, the line ImageType img = getCustomImage(); will result in a copy constructor being called for img with the return value from custom_img as its parameter. Wikipedia says that some compilers will even do this operation again, for an initial temporary variable!
My question: Is it faster in general to thus bypass this overhead (copy constructors for images are expensive) by using pass by reference rather than a return value...
void foo() {
ImageType img;
getCustomImage(img);
}
void getCustomImage(ImageType &img) {
//code operating directly on img
}
I've been told that if the compiler supports return value optimisation then there should be no difference. Is this true? can I (within reason) assume this nowadays, and how should I structure my programmes when speed is important

getCustomImagefunction signature, this is only applicable to C++. – Vicky Nov 3 '11 at 15:35ImageTypeconstructors, even without return value optimization, the two forms might be more or less equivalent. This is why the only correct answer to "which is faster" is "profile." If you can't do all platforms, pick your favorite... the major issues will likely be universally applicable. – Dennis Zickefoose Nov 3 '11 at 15:46ImageType. If that class were to become a small, light-weight handler for dynamically managed storage (say a membervector), and if you use C++11 move semantics, then you could leave your code as it is (return by value) and you'd get good performance out. – Kerrek SB Nov 3 '11 at 16:11