From dc2baada9beab3fb3a850ae3385018d6014b6bfc Mon Sep 17 00:00:00 2001 From: Maryam Ariyan Date: Tue, 12 Jun 2018 22:50:19 -0700 Subject: [PATCH] Move x86 HW intrinsics files to shared (dotnet/coreclr#18427) * Switch platfom amd64 to x64 * Move x86 intrinsics file to shared * Adding condition so corert always picks up X.PlatformNotSupported.cs Related to: dotnet/coreclr#15922 Commit migrated from https://github.com/dotnet/coreclr/commit/308850ced07e56bd83a36df23455d023b5dba06e --- src/coreclr/clr.coreclr.props | 1 + .../System.Private.CoreLib.csproj | 54 ++-------------------- .../src/System.Private.CoreLib.Shared.projitems | 41 ++++++++++++++++ .../src/System/Runtime/Intrinsics/Vector128.cs | 0 .../Runtime/Intrinsics/Vector128DebugView.cs | 0 .../src/System/Runtime/Intrinsics/Vector256.cs | 0 .../Runtime/Intrinsics/Vector256DebugView.cs | 0 .../src/System/Runtime/Intrinsics/Vector64.cs | 0 .../System/Runtime/Intrinsics/Vector64DebugView.cs | 0 .../Intrinsics/X86/Aes.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Aes.cs | 0 .../Intrinsics/X86/Avx.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Avx.cs | 0 .../Intrinsics/X86/Avx2.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Avx2.cs | 0 .../Intrinsics/X86/Bmi1.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Bmi1.cs | 0 .../Intrinsics/X86/Bmi2.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Bmi2.cs | 0 .../src/System/Runtime/Intrinsics/X86/Enums.cs | 0 .../Intrinsics/X86/Fma.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Fma.cs | 0 .../Intrinsics/X86/Lzcnt.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Lzcnt.cs | 0 .../X86/Pclmulqdq.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Pclmulqdq.cs | 0 .../Intrinsics/X86/Popcnt.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Popcnt.cs | 0 .../Intrinsics/X86/Sse.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Sse.cs | 0 .../Intrinsics/X86/Sse2.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Sse2.cs | 0 .../Intrinsics/X86/Sse3.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Sse3.cs | 0 .../Intrinsics/X86/Sse41.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Sse41.cs | 0 .../Intrinsics/X86/Sse42.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Sse42.cs | 0 .../Intrinsics/X86/Ssse3.PlatformNotSupported.cs | 0 .../src/System/Runtime/Intrinsics/X86/Ssse3.cs | 0 40 files changed, 45 insertions(+), 51 deletions(-) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128DebugView.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256DebugView.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64DebugView.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.PlatformNotSupported.cs (100%) rename src/{coreclr/src => libraries}/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs (100%) diff --git a/src/coreclr/clr.coreclr.props b/src/coreclr/clr.coreclr.props index 8b546c6..7c402c7 100644 --- a/src/coreclr/clr.coreclr.props +++ b/src/coreclr/clr.coreclr.props @@ -1,6 +1,7 @@ true + true true true true diff --git a/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj b/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj index 51e394b..3e427be 100644 --- a/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj +++ b/src/coreclr/src/System.Private.CoreLib/System.Private.CoreLib.csproj @@ -5,12 +5,9 @@ - amd64,x86,arm,armel,arm64 + x64,x86,arm,armel,arm64 $(BuildType) $(BuildArch) - - amd64 arm {3DA06C3A-2E7B-4CB7-80ED-9B12916013F9} Library @@ -49,7 +46,7 @@ - + x64 false 0x180000000 @@ -75,7 +72,7 @@ true full _LOGGING;DEBUG;TRACE;$(DefineConstants) - CODE_ANALYSIS;$(DefineConstants) + CODE_ANALYSIS;$(DefineConstants) true @@ -244,51 +241,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems b/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems index ecc2fdd..07a184f 100644 --- a/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems +++ b/src/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems @@ -476,6 +476,13 @@ + + + + + + + @@ -852,4 +859,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128DebugView.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128DebugView.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128DebugView.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128DebugView.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256DebugView.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256DebugView.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256DebugView.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256DebugView.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64DebugView.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64DebugView.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64DebugView.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64DebugView.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Pclmulqdq.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.PlatformNotSupported.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.PlatformNotSupported.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.PlatformNotSupported.cs diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs similarity index 100% rename from src/coreclr/src/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs rename to src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs -- 2.7.4