27.8 Moving blocks of data (All processors)
There are several ways of moving blocks of data. The most common method is REP MOVSD, but under certain conditions other methods are faster.
On PPlain and PMMX it is faster to move 8 bytes at a time using floating point registers if the destination is not in the cache:
Code:
1 2 3 4 5 6 7 8 9
| TOP: FILD QWORD PTR [ESI]
FILD QWORD PTR [ESI+8]
FXCH
FISTP QWORD PTR [EDI]
FISTP QWORD PTR [EDI+8]
ADD ESI, 16
ADD EDI, 16
DEC ECX
JNZ TOP |
The source and destination should of course be aligned by 8. The extra time used by the slow FILD and FISTP instructions is compensated for by the fact that you only have to do half as many write operations. Note that this method is only advantageous on the PPlain and PMMX and only if the destination is not in the level 1 cache. You cannot use FLD and FSTP (without I) on arbitrary bit patterns because denormal numbers are handled slowly and certain bit patterns are not preserved unchanged.
On the PMMX processor it is faster to use MMX instructions to move eight bytes at a time if the destination is not in the cache:
Code:
1 2 3 4 5 6
| TOP: MOVQ MM0,[ESI]
MOVQ [EDI],MM0
ADD ESI,8
ADD EDI,8
DEC ECX
JNZ TOP |
There is no need to unroll this loop or optimize it further if cache misses are expected, because memory access is the bottleneck here, not instruction execution.
On PPro, PII and PIII processors the REP MOVSD instruction is particularly fast when the following conditions are met (see chapter 26.3):
* both source and destination must be aligned by 8
* direction must be forward (direction flag cleared)
* the count (ECX) must be greater than or equal to 64
* the difference between EDI and ESI must be numerically greater than or
equal to 32
* the memory type for both source and destination must be either
writeback or write-combining (you can normally assume this).
On the PII it is faster to use MMX registers if the above conditions are not met and the destination is likely to be in the level 1 cache. The loop may be rolled out by two, and the source and destination should of course be aligned by 8.
On the PIII the fastest way of moving data is to use the MOVAPS instruction if the above conditions are not met or if the destination is in the level 1 or level 2 cache:
Code:
1 2 3 4 5 6
| SUB EDI, ESI
TOP: MOVAPS XMM0, [ESI]
MOVAPS [ESI+EDI], XMM0
ADD ESI, 16
DEC ECX
JNZ TOP |
Unlike FLD, MOVAPS can handle any bit pattern without problems. Remember that source and destination must be aligned by 16.
If the number of bytes to move is not divisible by 16 then you may round up to the nearest number divisible by 16 and put some extra space at the end of the destination buffer to receive the superfluous bytes. If this is not possible then you have to move the remaining bytes by other methods.
On the PIII you also have the option of writing directly to RAM memory without involving the cache by using the MOVNTQ or MOVNTPS instruction. This can be useful if you don't want the destination to go into a cache. MOVNTPS is only slightly faster than MOVNTQ.