提交 a2e40c05 编写于 作者: J Jan Kotas 提交者: GitHub

Workaround memset alignment sensitivity (dotnet/coreclr#24302)

* Workaround memset alignment sensitivity

memset is up to 2x slower on misaligned block on some types of hardware. The problem is uneven performance of "rep stosb"
used to implement the memset in some cases. The exact matrix on when it is slower and by how much is very complex.

This change workarounds the issue by aligning the memory block before it is passed to memset and filling in the potential misaligned
part manually. This workaround will regress performance by a few percent (<10%) in some cases, but we will gain up to 2x improvement
in other cases.

Fixes dotnet/coreclr#24300

Commit migrated from https://github.com/dotnet/coreclr/commit/3661584ffcdeac6f35fa9e2485796a482ebbf7b3
上级 853f9c76
......@@ -815,6 +815,28 @@ void QCALLTYPE MemoryNative::Clear(void *dst, size_t length)
{
QCALL_CONTRACT;
#if defined(_X86_) || defined(_AMD64_)
if (length > 0x100)
{
// memset ends up calling rep stosb if the hardware claims to support it efficiently. rep stosb is up to 2x slower
// on misaligned blocks. Workaround this issue by aligning the blocks passed to memset upfront.
*(uint64_t*)dst = 0;
*((uint64_t*)dst + 1) = 0;
*((uint64_t*)dst + 2) = 0;
*((uint64_t*)dst + 3) = 0;
void* end = (uint8_t*)dst + length;
*((uint64_t*)end - 1) = 0;
*((uint64_t*)end - 2) = 0;
*((uint64_t*)end - 3) = 0;
*((uint64_t*)end - 4) = 0;
dst = ALIGN_UP((uint8_t*)dst + 1, 32);
length = ALIGN_DOWN((uint8_t*)end - 1, 32) - (uint8_t*)dst;
}
#endif
memset(dst, 0, length);
}
......
......@@ -24,7 +24,9 @@ public static unsafe void ClearWithoutReferences(ref byte b, nuint byteLength)
return;
#if CORECLR && (AMD64 || ARM64)
if (byteLength > 4096)
// The exact matrix on when RhZeroMemory is faster than InitBlockUnaligned is very complex. The factors to consider include
// type of hardware and memory aligment. This threshold was chosen as a good balance accross different configurations.
if (byteLength > 768)
goto PInvoke;
Unsafe.InitBlockUnaligned(ref b, 0, (uint)byteLength);
return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册