summaryrefslogtreecommitdiff
path: root/src/vm/compile.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-03-08 00:41:21 -0800
committerJan Kotas <jkotas@microsoft.com>2016-03-09 08:46:07 -0800
commit618e798e3ba00e8b95158fd1d7081ca91cc43bf5 (patch)
tree091b7e7719d83d7408d623c82a3deaeca96e67ed /src/vm/compile.h
parentb219fbbe1fe72b4a44b5247c9a77f9447d34b028 (diff)
downloadcoreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.tar.gz
coreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.tar.bz2
coreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.zip
Delete dead code
- Delete BINDER, STANDALONE_BINDER and MDIL ifdefs
Diffstat (limited to 'src/vm/compile.h')
-rw-r--r--src/vm/compile.h37
1 files changed, 3 insertions, 34 deletions
diff --git a/src/vm/compile.h b/src/vm/compile.h
index 46fec94462..6898c159b2 100644
--- a/src/vm/compile.h
+++ b/src/vm/compile.h
@@ -194,11 +194,7 @@ class CEECompileInfo : public ICorCompileInfo
BOOL fForceDebug,
BOOL fForceProfiling,
BOOL fForceInstrument,
- BOOL fForceFulltrustDomain
-#ifdef MDIL
- , MDILCompilationFlags mdilCompilationFlags
-#endif
- );
+ BOOL fForceFulltrustDomain);
HRESULT MakeCrossDomainCallback(
ICorCompilationDomain* pDomain,
@@ -252,20 +248,6 @@ class CEECompileInfo : public ICorCompileInfo
LPWSTR assemblyManifestModulePath,
LPDWORD cAssemblyManifestModulePath);
-#ifdef MDIL
- DWORD GetMdilModuleSecurityFlags(
- CORINFO_ASSEMBLY_HANDLE assembly);
-
- BOOL CompilerRelaxationNoStringInterningPermitted(
- CORINFO_ASSEMBLY_HANDLE assembly);
-
- BOOL RuntimeCompatibilityWrapExceptions(
- CORINFO_ASSEMBLY_HANDLE assembly);
-
- DWORD CERReliabilityContract(
- CORINFO_ASSEMBLY_HANDLE assembly);
-#endif //MDIL
-
HRESULT SetCompilationTarget(CORINFO_ASSEMBLY_HANDLE assembly,
CORINFO_MODULE_HANDLE module);
@@ -359,10 +341,6 @@ class CEECompileInfo : public ICorCompileInfo
ICorCompileDataStore *pData,
CorProfileData *profileData);
-#if MDIL
- HRESULT ShouldCompile(CORINFO_METHOD_HANDLE methodHandle);
-#endif // MDIL
-
#ifdef FEATURE_FUSION
HRESULT GetAssemblyName(
CORINFO_ASSEMBLY_HANDLE hAssembly,
@@ -374,9 +352,7 @@ class CEECompileInfo : public ICorCompileInfo
HRESULT GetLoadHint(CORINFO_ASSEMBLY_HANDLE hAssembly,
CORINFO_ASSEMBLY_HANDLE hAssemblyDependency,
LoadHintEnum *loadHint,
- LoadHintEnum *defaultLoadHint = NULL // for MDIL we want to separate the default load hint on the assembly
- // from the load hint on the dependency
- );
+ LoadHintEnum *defaultLoadHint);
HRESULT GetAssemblyVersionInfo(CORINFO_ASSEMBLY_HANDLE Handle,
CORCOMPILE_VERSION_INFO *pInfo);
@@ -603,9 +579,6 @@ class CEEPreloader : public ICorCompilePreloader
void MethodReferencedByCompiledCode(CORINFO_METHOD_HANDLE handle);
BOOL IsUncompiledMethod(CORINFO_METHOD_HANDLE handle);
-#ifdef MDIL
- void AddMDILCodeFlavorsToUncompiledMethods(CORINFO_METHOD_HANDLE handle);
-#endif
private:
void AddToUncompiledMethods(MethodDesc *pMethod, BOOL fForStubs);
@@ -823,11 +796,7 @@ class CompilationDomain : public AppDomain,
~CompilationDomain();
#endif
- void Init(
-#ifdef MDIL
- MDILCompilationFlags mdilCompilationFlags
-#endif
- );
+ void Init();
HRESULT AddDependency(AssemblySpec *pRefSpec, PEAssembly *pFile);