From cad1f2735c2b2f9951f3a393ce179dc4bae5f847 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Tue, 26 Apr 2022 23:05:13 -0700 Subject: [PATCH] msvc: disable optimizations for x64EmitterTest.cpp 40s -> 5s speedup --- Source/UnitTests/Common/x64EmitterTest.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/UnitTests/Common/x64EmitterTest.cpp b/Source/UnitTests/Common/x64EmitterTest.cpp index d374391876..439ac5e9d6 100644 --- a/Source/UnitTests/Common/x64EmitterTest.cpp +++ b/Source/UnitTests/Common/x64EmitterTest.cpp @@ -19,6 +19,11 @@ #include "Common/StringUtil.h" #include "Common/x64Emitter.h" +#ifdef _MSC_VER +// This file is extremely slow to optimize (40s on amd 3990x), so just disable optimizations +#pragma optimize("", off) +#endif + namespace Gen { struct NamedReg @@ -1243,3 +1248,7 @@ FMA4_TEST(VFMADDSUB, P, true) FMA4_TEST(VFMSUBADD, P, true) } // namespace Gen + +#ifdef _MSC_VER +#pragma optimize("", on) +#endif