summaryrefslogtreecommitdiff
path: root/src/vm/loaderallocator.inl
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-11-28 18:18:04 -0800
committerGitHub <noreply@github.com>2018-11-28 18:18:04 -0800
commitb6d47b3a1b5b05c25968701615707e381f35a7ce (patch)
tree33056aabf9b36b2fbfd7d91218bd0a6fa3ff2cf3 /src/vm/loaderallocator.inl
parente7ead79fedc52e17f2cf9befd5c0f5091d70f909 (diff)
downloadcoreclr-b6d47b3a1b5b05c25968701615707e381f35a7ce.tar.gz
coreclr-b6d47b3a1b5b05c25968701615707e381f35a7ce.tar.bz2
coreclr-b6d47b3a1b5b05c25968701615707e381f35a7ce.zip
Delete code related to LoaderOptimization and SharedDomain (#21031)
Diffstat (limited to 'src/vm/loaderallocator.inl')
-rw-r--r--src/vm/loaderallocator.inl26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/vm/loaderallocator.inl b/src/vm/loaderallocator.inl
index 327dd3e432..8543916840 100644
--- a/src/vm/loaderallocator.inl
+++ b/src/vm/loaderallocator.inl
@@ -22,19 +22,6 @@ inline void GlobalLoaderAllocator::Init(BaseDomain *pDomain)
LoaderAllocator::Init(pDomain, m_ExecutableHeapInstance);
}
-inline void AppDomainLoaderAllocator::Init(AppDomain *pAppDomain)
-{
- WRAPPER_NO_CONTRACT;
- m_Id.Init(pAppDomain);
- LoaderAllocator::Init((BaseDomain *)pAppDomain);
-}
-
-inline void LoaderAllocatorID::Init(AppDomain *pAppDomain)
-{
- m_type = LAT_AppDomain;
- m_pAppDomain = pAppDomain;
-}
-
inline void AssemblyLoaderAllocator::Init(AppDomain* pAppDomain)
{
m_Id.Init();
@@ -94,13 +81,6 @@ inline DomainAssemblyIterator LoaderAllocatorID::GetDomainAssemblyIterator()
return DomainAssemblyIterator(m_pDomainAssembly);
}
-inline AppDomain *LoaderAllocatorID::GetAppDomain()
-{
- LIMITED_METHOD_DAC_CONTRACT;
- _ASSERTE(m_type == LAT_AppDomain);
- return m_pAppDomain;
-}
-
inline LoaderAllocatorID* AssemblyLoaderAllocator::Id()
{
LIMITED_METHOD_DAC_CONTRACT;
@@ -113,12 +93,6 @@ inline LoaderAllocatorID* GlobalLoaderAllocator::Id()
return &m_Id;
}
-inline LoaderAllocatorID* AppDomainLoaderAllocator::Id()
-{
- LIMITED_METHOD_DAC_CONTRACT;
- return &m_Id;
-}
-
/* static */
FORCEINLINE BOOL LoaderAllocator::GetHandleValueFast(LOADERHANDLE handle, OBJECTREF *pValue)
{