What is the reason the C++ standard allows(requires) compilers to optimize away calls to copy constructor(in certain cases), even though it might contain observable side effects?
If I'm not mistaken, the "as if" rule already allows compilers to optimize unnecessary code away, as long as the resulting program emulates the observable behavior of the abstract machine defined in the standard.
What were the motives behind making an exception rule? Doesn't it create inconsistencies in the language? Is it convenient(or necessary)?
Copy elision can mean two different things. The "mandatory copy elision" in C++17 is simply a redefinition of what a prvalue is.
This is legal and makes sense because within the function
std::mutex
isn't "created" yet as far as the language is concerned. Let's not dwell on this case.In other cases, such as
the compiler is allowed to elide the copy/move, after checking that copy/move semantics are legal.
Yes. But there is rarely a language as fixated on consistency as C++, copy elision stands out precisely because C++ prizes consistency. This compromise is made for the overwhelmingly large benefit: we don't want people to worry about performance overhead for writing functions.
The as-if rule is sometimes theoretically enough to generate efficient code, but is often extremely difficult in practice. Compilers have trouble optimizing this for the longest time
trivial as it may be for a human to reason about. We don't want to wait until optimizers are perfect before starting to write functions.