Merge pull request #14619 from briansull/emitter-cleanup
[platform/upstream/coreclr.git] / src / vm / gcenv.ee.static.cpp
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4
5 #include "common.h"
6 #include "gcenv.h"
7 #include "../gc/env/gcenv.ee.h"
8 #include "threadsuspend.h"
9
10 #ifdef FEATURE_COMINTEROP
11 #include "runtimecallablewrapper.h"
12 #include "rcwwalker.h"
13 #include "comcallablewrapper.h"
14 #endif // FEATURE_COMINTEROP
15
16 // the method table for the WeakReference class
17 extern MethodTable* pWeakReferenceMT;
18
19 // The canonical method table for WeakReference<T>
20 extern MethodTable* pWeakReferenceOfTCanonMT;
21
22 // Finalizes a weak reference directly.
23 extern void FinalizeWeakReference(Object* obj);
24
25 #include "gcenv.ee.cpp"