Return value optimization (RVO) is a compiler optimization technique that involves eliminating the temporary object created to hold a function's return value.
0
votes
2answers
68 views
Getting C-string from local copy of returned std::string
I am trying to debug a problem related to the scope of the character array contained within a std::string. I have posted the relevant code sample below,
#include <iostream>
#include ...
-1
votes
3answers
135 views
How can I disable c++ return value optimization for one type only?
I have come across the situation where I really do need to execute non-trivial code in a copy-constructor/assignment-operator. The correctness of the algorithm depends on it.
While I could disable ...
0
votes
2answers
85 views
When does a compiler perform RVO?
It seems there are a lot of questions about when a compiler will perform RVO or why it does not perform it in such-and-such a situation.
After reading ...
1
vote
2answers
114 views
Return value optimization while returning by reference
I have read a lot of articles about return value optimization. Yet I'm not sure to fully understand if this is what takes place in the following case (the addresses are actually always identical):
...
2
votes
1answer
118 views
Can a C++ compiler perform RVO for a const return value?
Let's say I have the function
#include <string>
std::string const foo()
{
std::string s = "bar";
return s;
}
int main()
{
std::string t = foo();
}
Can a compiler perform (named) ...
4
votes
2answers
149 views
Efficiency of construction of stl container based on a function return
I have a factory function which return a stl container:
const std::vector<int> f(...) {
std::vector<int> retval;
return retval;
}
I guess it is ok to define a stl instance as ...
1
vote
2answers
100 views
RVO vs std::unique_ptr<> cleanup
This is a question about C++ specs on object destruction vs Return-Value-Optimization.
Can I expect RVO return the right value before std::unique_ptr<> cleanup?
Foo
Bar()
{
...
2
votes
2answers
311 views
const reference to temporary vs. return value optimization
I'm aware of the fact that assigning an rvalue to a const lvalue reference extends the temporaries lifetime until the end of the scope. However, it is not clear to me when to use this and when to rely ...
4
votes
2answers
175 views
What is the best way to write a function, which returns an object in C++? [duplicate]
Possible Duplicate:
how to “return an object” in C++
Hello, guys!
If I need to return an object from function (and it is not a getter, and also this function for some reason cannot be ...
8
votes
3answers
641 views
What are copy elision and return value optimization?
What is copy elision? What is (named) return value optimization? What do they imply?
In what situations can they occur? What are limitations?
If you were referenced to this question, you're ...
8
votes
1answer
292 views
Why is Visual C++ not performing return-value optimization on the most trivial code?
Does Visual C++ not perform return-value optimization?
#include <cstdio>
struct Foo { ~Foo() { printf("Destructing...\n"); } };
Foo foo() { return Foo(); }
int main() { foo(); }
I compile and ...
6
votes
2answers
297 views
compiler optimization of return value in VS 2010
using VS 2010 with full optimization /Ox look at the following two function calls:
static string test1(const string& input)
{
return input;
}
static void test2(const string& input, ...
10
votes
1answer
157 views
RVO for complex user-defined types in C++
In an programming interview I had yesterday, one of the programs I had to write ended up having something like this:
struct Blob
{
// basic field containing image blob statistics.
};
...
3
votes
3answers
522 views
Efficient use of move semantics together with (N)RVO
Let's say I want to implement a function that is supposed to process an object and return a new (possibly changed) object. I would like to do this as efficient as possible in C+11. The environment is ...
4
votes
3answers
650 views
How to disable return value optimization in Visual Studio 2010?
Is it possible to disable RVO (return value optimization) in Visual Studio 2010? Setting optimization flag to /Od (turns off all optimizations) doesn't help. In g++ there exists flag ...
4
votes
3answers
155 views
How can I be sure a routine is taking advantage of (N)RVO?
I'd like to make sure my routines are leveraging (N)RVO whenever possible. Other than parsing through the resulting disassembly, is there something I can do or check to see if a routine is being ...
10
votes
1answer
1k views
Is returning with `std::move` sensible in the case of multiple return statements?
I'm aware that it's normally not a good idea to return with std::move, i.e.
bigObject foo() { bigObject result; /*...*/ return std::move(result); }
instead of simply
bigObject foo() { bigObject ...
11
votes
2answers
368 views
Why is RVO disallowed when returning a parameter?
It's stated in [C++11: 12.8/31] :
This elision of copy/move operations, called copy elision, is permitted [...] :
— in a return statement in a function with a class return type, when the ...
0
votes
5answers
423 views
How to return a struct without using global declaration of struct in C
Hello i am trying to return a struct from a function but i cant find a way to do so without declaring the struct as global. How can this be done? Here is the code (THIS WORKS AS IT IS)
...
void ...
8
votes
1answer
899 views
Disabling g++'s return-value optimisation
What flag(s) do I need on the command line to disable the return-value optimisation automatically enabled by the g++ compiler?
2
votes
1answer
197 views
Steps in Return Value Optimization [duplicate]
Possible Duplicate:
Understanding return value optimization and returning temporaries - C++
let Integer be some class with i as it's member.left and right are passed as arguments to a ...
1
vote
5answers
194 views
how to design class method that returns two different return type?
A subclass having small logic and it's return Boolean true/false or error message but in case of any exception it catch into an same class and error message just for intimation to the upper class ...
2
votes
3answers
248 views
Is RVO (Return Value Optimization) on unnamed objects a universally guaranteed behavior?
This question is in different aspect (also limited to gcc). My question is meant only for unnamed objects. Return Value Optimization is allowed to change the observable behavior of the resulting ...
0
votes
1answer
76 views
Correct initialization of objects based on return-by-value functions
I've basically the following two classes for which I use return-by-value functions to create objects.
In the Bar class below, I've two Foo class member objects. How could I initialize correctly, each ...
4
votes
7answers
310 views
reference or return - best practice [closed]
For example we have encoding function. What is the best practice to use:
void Crypto::encoding(string &input, string &output)
{
//encoding string
output = encoded_string;
}
or
...
4
votes
4answers
322 views
Is it faster to return a value or modify a parameter passed by reference?
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 ...
2
votes
8answers
234 views
Return value copying issue (to improve debug timing) — What's the solution here?
The most interesting C++ question I've encountered recently goes as follows:
We determined (through profiling) that our algorithm spends a lot of time in debug mode in MS Visual Studio 2005 with ...
1
vote
5answers
199 views
C++ returning an object throw an interface
I want to design a common interface which has a method that let me multiply two object which has this interface, returning a new object of the same class as the result. In order to keep it easy, I'm ...
6
votes
2answers
295 views
Will the c++ compiler optimize away unused return value by `reference`?
Before someone jumps and says Profile before optimize!, this is simply a curiosity question and stems from this original question.
If I am returning by reference the same object, would that get ...
8
votes
2answers
1k views
Move or Named Return Value Optimization (NRVO)?
Lets say we have the following code:
std::vector<int> f()
{
std::vector<int> y;
...
return y;
}
std::vector<int> x = ...
x = f();
It seems the compiler has two approaches ...
7
votes
3answers
2k views
Proper way (move semantics) to return a std::vector from function calling in C++11
I want to fill std::vector (or some other STL container):
class Foo {
public:
Foo(int _n, const Bar &_m);
private:
std::vector<Foo> fooes_;
}
1.Good looking ctor, expensive ...
24
votes
6answers
845 views
Why are by-value parameters excluded from NRVO?
Imagine:
S f(S a) {
return a;
}
Why is it not allowed to alias a and the return value slot?
S s = f(t);
S s = t; // can't generally transform it to this :(
The spec doesn't allow this ...
3
votes
2answers
202 views
Does return value optimization work, when assigning to a different type?
Consider the following two classes:
class Base
{
Base(const Base& other) {...} // relatively expensive operations here...
Base(int i) {...} // ...here,
virtual ~Base() ...
3
votes
2answers
160 views
Copy-elision of automatic variable for return
I am wondering if in C++0x "12.8 Copying and Moving class objects [class.copy] paragraph 31" when copy elision happens, exactly:
When certain criteria are met, an implementation is allowed to omit ...
8
votes
3answers
541 views
RVO/NRVO and public undefined copy constructor
I'm fighting the following proposal now, and I want to know legal and for lesser extent moral arguments against it or for it.
What we had:
#include <vector>
class T;
class C
{
public:
...
6
votes
1answer
218 views
Return value optimization of values unpacked from std::tuple
Are there any compilers capable of performing return value optimization on multiple values returned from a function through std::tuple? To be clear, in the following code, are there any compilers ...
4
votes
3answers
1k views
How to return an fstream (C++0x)
I think I'll get right into it and start with the code:
#include <iostream>
#include <fstream>
#include <string>
class test : public std::ofstream
{
public:
test(const ...
8
votes
3answers
436 views
STL swap on return?
sorry for such a long question but I try to be as clear as possible. This somehow follows my previous question about strings in C++. I'm trying to figure out how I could return std::string from a ...
6
votes
3answers
683 views
Isn't return value optimization (RVO) a bug?
I maybe asking a dumb question, but I looked at the wikipedia page for RVO here and could not stop wondering if that behavior is wrong. I tried it in my machine and RVO is fully kicked in despite ...
3
votes
5answers
227 views
Likeliness of Named RVO?
I have a function that looks like this:
// Fetch 1 MB of data
void GetData(std::vector<char> & outData);
The 1MB is exaggerated, but I just want to make the point that it's preferable to ...
45
votes
7answers
5k views
In C++, is it still bad practice to return a vector from a function?
Short version: It's common to return large objects—such as vectors/arrays—in many programming languages. Is this style now acceptable in C++0x if the class has a move constructor, or do C++ ...
4
votes
4answers
5k views
C++ get method - returning by value or by reference
I've go a very simple question, but unfortunately I can't figure the answer myself.
Suppose I've got some data structure that holds settings and acts like a settings map.
I have a GetValue(const ...
8
votes
4answers
1k views
const reference to temporary and copying - C++
Please consider the following code,
struct foo
{
foo()
{
std::cout << "Constructing!" << std::endl;
}
foo(const foo& f)
{
std::cout << "Copy ...
5
votes
4answers
284 views
Does “Return value optimization” cause undefined behavior?
Reading this Wikipedia article pointed by one of the repliers to the following question:
http://stackoverflow.com/questions/2323225/c-copy-constructor-temporaries-and-copy-semantics
I came across ...
12
votes
9answers
4k views
C++: returning by reference and copy constructors
References in C++ are baffling me. :)
The basic idea is that I'm trying to return an object from a function. I'd like to do it without returning a pointer (because then I'd have to manually delete ...
5
votes
3answers
681 views
Trusting the Return Value Optimization
How do you go about using the return value optimization?
Is there any cases where I can trust a modern compiler to use the optimization, or should I always go the safe way and return a pointer of ...
8
votes
4answers
1k views
When should RVO kick-in?
From the following code, If RVO has happened, I expect to see the 2 addresses pointing to the same location, however this is not the case (my compiler is MS VC9.0)
#include <iostream>
#include ...
17
votes
5answers
3k views
Understanding return value optimization and returning temporaries - C++
Please consider the three functions.
std::string get_a_string()
{
return "hello";
}
std::string get_a_string1()
{
return std::string("hello");
}
std::string get_a_string2()
{
...
6
votes
2answers
917 views
Are return values going to be passed by rvalue reference in c++0x?
Let's say I have a function:
typedef std::vector<int> VecType;
VecType randomVector();
int processing()
{
VecType v = randomVector();
return std::accumulate(v.begin(), v.end(), 0);
}
...
0
votes
2answers
363 views
Return value optimization in VC2008
Is there other technique like RVO (return value optimization) or NRVO (named return value optimization) that can be use with VC2008?

