EN VI

Is it better to pass a C++ object by reference than by value if it is in RAM?

2024-03-10 04:00:05
Is it better to pass a C++ object by reference than by value if it is in RAM?

There is a widespread opinion that in the C++ language it is better to pass an object to a function by reference than by value (thus supposedly reducing the number of copies). But what if this object is located in RAM (not in processor the cache) and the function itself accesses the fields of this object several times. As known, access to RAM is expensive (200-600 cycles), but 64-128 bytes are copied at a time. Wouldn't it be more efficent to pass a small object (up to 128 bytes) by value, allowing the processor to copy it into the cache at a time and then access its fields using the high speed cache memory?

Or maybe the compiler in such a situation independently performs implicit copying to the cache?

Solution:

Regardless of the physical memory location, passing a large object by value normally forces it to be passed via stack, which means it needs to be copied there first which takes time. The object needs to be accessed either way. Passing by reference saves this copy step.

Additionally, the following depends on compiler and target machine, but in general the compiler will keep the values in CPU registers if it's accessed multiple times in a close succession. Otherwise, which level of memory the object is located in physically is not something the compiler or the program is in control of.

Answer

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login