Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/JitInterface/src/CorInfoTypes.cs2
-rw-r--r--src/JitInterface/src/ThunkGenerator/corinfo.h11
-rw-r--r--src/JitInterface/src/ThunkGenerator/corjitflags.h4
-rw-r--r--src/Native/jitinterface/jitwrapper.cpp10
4 files changed, 13 insertions, 14 deletions
diff --git a/src/JitInterface/src/CorInfoTypes.cs b/src/JitInterface/src/CorInfoTypes.cs
index b427f4476..b0ceda613 100644
--- a/src/JitInterface/src/CorInfoTypes.cs
+++ b/src/JitInterface/src/CorInfoTypes.cs
@@ -1464,7 +1464,7 @@ namespace Internal.JitInterface
CORJIT_FLAG_UNUSED3 = 10,
CORJIT_FLAG_UNUSED4 = 11,
CORJIT_FLAG_UNUSED5 = 12,
- CORJIT_FLAG_USE_SSE3_4 = 13,
+ CORJIT_FLAG_UNUSED6 = 13,
CORJIT_FLAG_USE_AVX = 14,
CORJIT_FLAG_USE_AVX2 = 15,
CORJIT_FLAG_USE_AVX_512 = 16,
diff --git a/src/JitInterface/src/ThunkGenerator/corinfo.h b/src/JitInterface/src/ThunkGenerator/corinfo.h
index c79dd3f4c..8292d5ad3 100644
--- a/src/JitInterface/src/ThunkGenerator/corinfo.h
+++ b/src/JitInterface/src/ThunkGenerator/corinfo.h
@@ -213,14 +213,13 @@ TODO: Talk about initializing strutures before use
#define SELECTANY extern __declspec(selectany)
#endif
-SELECTANY const GUID JITEEVersionIdentifier = { /* a6860f80-01cb-4f87-82c2-a8e5a744f2fa */
- 0xa6860f80,
- 0x01cb,
- 0x4f87,
- {0x82, 0xc2, 0xa8, 0xe5, 0xa7, 0x44, 0xf2, 0xfa}
+SELECTANY const GUID JITEEVersionIdentifier = { /* e042cffc-cf03-4315-96b9-5fd01dc15923 */
+ 0xe042cffc,
+ 0xcf03,
+ 0x4315,
+ {0x96, 0xb9, 0x5f, 0xd0, 0x1d, 0xc1, 0x59, 0x23}
};
-
//////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// END JITEEVersionIdentifier
diff --git a/src/JitInterface/src/ThunkGenerator/corjitflags.h b/src/JitInterface/src/ThunkGenerator/corjitflags.h
index 2598c26ac..da303b6a0 100644
--- a/src/JitInterface/src/ThunkGenerator/corjitflags.h
+++ b/src/JitInterface/src/ThunkGenerator/corjitflags.h
@@ -52,16 +52,16 @@ public:
#endif // !defined(_TARGET_X86_)
+ CORJIT_FLAG_UNUSED6 = 13,
+
#if defined(_TARGET_X86_) || defined(_TARGET_AMD64_)
- CORJIT_FLAG_USE_SSE3_4 = 13,
CORJIT_FLAG_USE_AVX = 14,
CORJIT_FLAG_USE_AVX2 = 15,
CORJIT_FLAG_USE_AVX_512 = 16,
#else // !defined(_TARGET_X86_) && !defined(_TARGET_AMD64_)
- CORJIT_FLAG_UNUSED6 = 13,
CORJIT_FLAG_UNUSED7 = 14,
CORJIT_FLAG_UNUSED8 = 15,
CORJIT_FLAG_UNUSED9 = 16,
diff --git a/src/Native/jitinterface/jitwrapper.cpp b/src/Native/jitinterface/jitwrapper.cpp
index 3b1532124..b34dcf426 100644
--- a/src/Native/jitinterface/jitwrapper.cpp
+++ b/src/Native/jitinterface/jitwrapper.cpp
@@ -27,11 +27,11 @@ private:
unsigned __int64 corJitFlags;
};
-static const GUID JITEEVersionIdentifier = { /* a6860f80-01cb-4f87-82c2-a8e5a744f2fa */
- 0xa6860f80,
- 0x01cb,
- 0x4f87,
- {0x82, 0xc2, 0xa8, 0xe5, 0xa7, 0x44, 0xf2, 0xfa}
+static const GUID JITEEVersionIdentifier = { /* e042cffc-cf03-4315-96b9-5fd01dc15923 */
+ 0xe042cffc,
+ 0xcf03,
+ 0x4315,
+ {0x96, 0xb9, 0x5f, 0xd0, 0x1d, 0xc1, 0x59, 0x23}
};
class Jit