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 | //---------------------------------------------------------- |
7 | // verbILDump.h - verb that attempts to dump the raw IL for a MC |
8 | //---------------------------------------------------------- |
9 | #ifndef _verbILDump |
10 | #define _verbILDump |
11 | |
12 | #include "methodcontext.h" |
13 | |
14 | class verbILDump |
15 | { |
16 | public: |
17 | static int DoWork(const char* nameOfInput1, int indexCount, const int* indexes); |
18 | }; |
19 | |
20 | void DumpPrimToConsoleBare(MethodContext* mc, CorInfoType prim, DWORDLONG classHandle); |
21 | void DumpSigToConsoleBare(MethodContext* mc, CORINFO_SIG_INFO* pSig); |
22 | char* DumpAttributeToConsoleBare(DWORD attribute); |
23 | |
24 | #endif |
25 | |