1 | // |
2 | // Copyright (c) Microsoft. All rights reserved. |
3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
4 | // |
5 | |
6 | #ifndef _ICorJitInfo |
7 | #define _ICorJitInfo |
8 | |
9 | #include "runtimedetails.h" |
10 | #include "ieememorymanager.h" |
11 | #include "methodcallsummarizer.h" |
12 | |
13 | class interceptor_ICJI : public ICorJitInfo |
14 | { |
15 | |
16 | #include "icorjitinfoimpl.h" |
17 | |
18 | public: |
19 | // Added to help us track the original icji and be able to easily indirect |
20 | // to it. And a simple way to keep one memory manager instance per instance. |
21 | ICorJitInfo* original_ICorJitInfo; |
22 | MethodCallSummarizer* mcs; |
23 | }; |
24 | |
25 | #endif |
26 | |