diff options
author | Bruce Forstall <brucefo@microsoft.com> | 2016-10-26 15:52:06 -0700 |
---|---|---|
committer | Bruce Forstall <brucefo@microsoft.com> | 2016-10-27 12:08:20 -0700 |
commit | e72536c32676b412cfead025b577d4e8c18d1c2f (patch) | |
tree | 41c0b6f18262cdacc29070e5fa880c6ba82c1081 /src/vm/compile.h | |
parent | 675622bb85f3c78de1967a78052d7280a2834611 (diff) | |
download | coreclr-e72536c32676b412cfead025b577d4e8c18d1c2f.tar.gz coreclr-e72536c32676b412cfead025b577d4e8c18d1c2f.tar.bz2 coreclr-e72536c32676b412cfead025b577d4e8c18d1c2f.zip |
Introduce new CORJIT_FLAGS type
The "JIT flags" currently passed between the EE and the JIT have traditionally
been bit flags in a 32-bit word. Recently, a second 32-bit word was added to
accommodate additional flags, but that set of flags is definitely "2nd class":
they are not universally passed, and require using a separate set of bit
definitions, and comparing those bits against the proper, 2nd word.
This change replaces all uses of bare DWORD or 'unsigned int' types
representing flags with CORJIT_FLAGS, which is now an opaque type. All
flag names were renamed from CORJIT_FLG_* to CORJIT_FLAG_* to ensure all
cases were changed to use the new names, which are also scoped within the
CORJIT_FLAGS type itself.
Another motivation to do this, besides cleaner code, is to allow enabling the
SSE/AVX flags for x86. For x86, we had fewer bits available in the "first
word", so would have to either put them in the "second word", which, as
stated, was very much 2nd class and not plumbed through many usages, or
we could move other bits to the "second word", with the same issues. Neither
was a good option.
RyuJIT compiles with both COR_JIT_EE_VERSION > 460 and <= 460. I introduced
a JitFlags adapter class in jitee.h to handle both JIT flag types. All JIT
code uses this JitFlags type, which operates identically to the new
CORJIT_FLAGS type.
In addition to introducing the new CORJIT_FLAGS type, the SSE/AVX flags are
enabled for x86.
The JIT-EE interface GUID is changed, as this is a breaking change.
Diffstat (limited to 'src/vm/compile.h')
-rw-r--r-- | src/vm/compile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/compile.h b/src/vm/compile.h index 19bbac3228..8ee66dbec8 100644 --- a/src/vm/compile.h +++ b/src/vm/compile.h @@ -377,7 +377,7 @@ class CEECompileInfo : public ICorCompileInfo HRESULT GetBaseJitFlags( IN CORINFO_METHOD_HANDLE hMethod, - OUT DWORD *pFlags); + OUT CORJIT_FLAGS *pFlags); #ifdef _WIN64 SIZE_T getPersonalityValue(); |