up vote 6 down vote favorite
3
share [g+] share [fb]

Using memcpy() when source and destination overlap can lead to undefined behaviour - in those cases only memmove() can be used.

But what if I know for sure buffers don't overlap - is there a reason to use specifically memcpy() or specifically memmove()? Which should I use and why?

link|improve this question

75% accept rate
1  
Or std::copy? ;) – jalf Dec 25 '09 at 14:47
I wouldn't use std::copy if my life depended on it. – Matt Joiner Sep 13 '10 at 14:02
@Matt Joiner: Could you please explain why you dislike std::copy() so much? – sharptooth Sep 13 '10 at 14:04
It's sugar coating, and brings no particular performance improvement. Furthermore it's harder to parse with the eye, and occupies far more space (a std::copy can occupy 160 characters). The only benefit is the fact it wraps a loop for you, which is easy to get wrong. But chances are people who are aware of std::copy, are able to get a loop right. – Matt Joiner Sep 14 '10 at 2:52
feedback

3 Answers

up vote 9 down vote accepted

Assuming a sane library implementor, memcpy will always be at least as fast as memmove. However, on most platforms the difference will be minimal, and on many platforms memcpy is just an alias for memmove to support legacy code that (incorrectly) calls memcpy on overlapping buffers.

Both memcpy and memmove should be written to take advantage of the fastest loads and stores available on the platform.

To answer your question: you should use the one that is semantically correct. If you can guarantee that the buffers do not overlap, you should use memcpy. If you cannot guarantee that the buffers don't overlap, you should use memmove.

link|improve this answer
+1. I especially like the "assuming sane" counterpoint to my own answer :-) – paxdiablo Dec 26 '09 at 0:37
Nitpick: memcpy and memmove should be written to take advantage of the fastest unaligned loads and stores available on the platform. If you know your buffers are aligned properly, you can often get much better performance using things like MMX, which copy much larger data units at a time. – Adam Rosenfield Dec 26 '09 at 1:40
@Adam: Generally speaking one can arrange to use aligned loads and stores in memcopy by first copying some smaller units to achieve appropriate alignment. If the buffers do not have similar alignment, it will be necessary to apply some shift or permute before storing, but this is faster than using unaligned memory accesses on many architectures. – Stephen Canon Dec 26 '09 at 2:23
feedback

memcpy() doesn't have any special handling for overlapping buffers so it lacks some checks therefore it is faster than memmove().

Also on some architectures memcpy() can benefit from using CPU instructions for moving blocks of memory - something that memmove() cannot use.

link|improve this answer
your edit captured what I wanted to say, +1. – roe Dec 25 '09 at 11:21
+1, for mentioning CPU instructions. – MAK Dec 25 '09 at 11:33
Even on a RISC architecture, there are often block-move operations from which memcpy() can benefit. PowerPC has VMX, for example. – Crashworks Dec 25 '09 at 12:56
Nah, decent code generators produce rep movs after checking for no overlap. MSVC does. – Hans Passant Dec 25 '09 at 13:03
@nobugz Not always at compile time you can determine whether buffers overlap or not. Or did you mean checking at run time? – qrdl Dec 25 '09 at 13:12
show 4 more comments
feedback

If you're interested in which will perform better, you need to test it on the target platform. Nothing in the standard mandates how the functions are implemented and, while it may seem logical that a non-checking memcpy would be faster, this is by no means a certainty.

It's quite possible, though unlikely, that the person who wrote memmove for your particular compiler was a certified genius while the poor soul who got the job of writing memcpy was the village idiot :-)

Although, in reality, I find it hard to imagine the memmove could be faster than memcpy, I don't discount the possibility. Measure, don't guess.

link|improve this answer
memcpy has the restrict qualifier on its arguments, not memmove. (It codifies precisely the fact that the buffers don't overlap). – Stephen Canon Dec 25 '09 at 14:39
D'Oh! You're right, of course, @StephenC, I got them the wrong way around. Removed that twaddle from my answer :-) – paxdiablo Dec 26 '09 at 0:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.