Copy elision refers to an optimization technique that eliminates unnecessary copying of objects.

learn more… | top users | synonyms

2
votes
3answers
134 views

Eliminating copying of function parameter

I am writing a custom memory allocator. If possible, I want to make object creation function like this to abstract creation procedure completely. template<typename T> class CustomCreator { ...
-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 ...
2
votes
3answers
92 views

Will compilers apply move semantics automatically in a setter method?

I want to know if the compiler is allowed to automatically use the move constructor for wstring in the following setter method (without an explicit call to std::move): void SetString(std::wstring ...
3
votes
2answers
97 views

Why will the following code also call the copy constructor?

Why is it that when the g_Fun() executes to the return temp it will call the copy constructor? class CExample { private: int a; public: CExample(int b) { a = b; } CExample(const ...
1
vote
1answer
52 views

Copy elision in chained invocation of constructors

Due to copy elision, it is generally preferred to pass objects by value, as long as an internal copy is retained. What about the following situation: struct A { A(int x, int y) : x(x), y(y) {} ...
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 ...
5
votes
3answers
174 views

In c++11, can a virtual function return a large value efficiently with move semantics?

Normally, this would be optimised to not involve copying the large value (since a std::vector has move semantics enabled): std::vector<int> makeABigThing(){ std::vector<int> ...
0
votes
1answer
64 views

Should the return value of binary operator+ overload be const and can it interfere with optimizations?

Given the example code: class Integer { int i_; public: Integer(int i) : i_(i) {} const Integer operator+(const Integer &arg) const { return Integer(i_ + arg.i_); } }; I started ...
4
votes
2answers
130 views

vector.push_back rvalue and copy-elision

I push_back a temporary object into a vector like this, vector<A> vec; vec.push_back(A("abc")); will the compiler apply copy-elision to construct the temporary A("abc") directly into the ...
12
votes
1answer
348 views

initializing a non-copyable member (or other object) in-place from a factory function

A class must have a valid copy or move constructor for any of this syntax to be legal: C x = factory(); C y( factory() ); C z{ factory() }; In C++03 it was fairly common to rely on copy elision to ...
2
votes
1answer
110 views

Is this copy constructor elision?

The following code doesn't call the copy constructor. struct X { int x; X(int num) { x = num; std::cout << "ctor" << std::endl; } X(const X& other) { ...
2
votes
2answers
79 views

copy elision causes different results

Suppose I have this hypothetical, wacky, odd and unintuitive situation (just another Tuesday, right?) #include <iostream> struct A { A() { member = 1; } ...
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 ...
2
votes
2answers
242 views

Copy constructor elision? [duplicate]

Possible Duplicate: Why has the destructor been called only once? Given the code below, I fail to understand the output in gcc. I expect two objects to be created and destroyed but instead ...
8
votes
3answers
164 views

Can copy elision occur in catch statements?

Consider an exception class with a copy constructor with side-effects. Can a compiler skip calling the copy constructor here: try { throw ugly_exception(); } catch(ugly_exception) // ignoring ...
-2
votes
1answer
218 views

Nicer way to avoid moves/copies in C++0x

This question follows on from How to pass by lambda in C++0x?, but perhaps this is a clearer way to ask the question. Consider the following code: #include <iostream> #define LAMBDA(x) ...
6
votes
5answers
345 views

passing heavy objects C++0x

I have a function which produces a type of expensive object (containing vectors and a maps of a non fixed size) so I really want to avoid invoking copy c'tors. Until now I have just returned a ...
5
votes
2answers
235 views

Is it possible to ensure copy elision?

Copy elision is a neat optimization technique and in some cases relying on copy elision can actually be faster than passing around references "by hand". So, let's assume you have identified a ...
10
votes
3answers
336 views

Can the compiler elide the following copy?

I'm still a rookie programmer, I know that premature optimization is bad, but Ialso know that copying huge stuff around is bad, as well. I've read up on copy elision and it's synonyms but the ...
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 ...
14
votes
3answers
2k views

What is copy elision and how does it optimize the copy-and-swap idiom?

I was reading Copy and Swap. I tried reading some links on Copy Elision but could not figure out properly what it meant. Can somebody please explain what this optimization is, and especially what is ...
5
votes
3answers
660 views

Copy elision on Visual C++ 2010 Beta 2

I was reading Want Speed? Pass by Value on the C++ Next blog and created this program to get a feel for copy elision and move semantics in C++0x: #include <vector> #include <iostream> ...