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
14class verbILDump
15{
16public:
17 static int DoWork(const char* nameOfInput1, int indexCount, const int* indexes);
18};
19
20void DumpPrimToConsoleBare(MethodContext* mc, CorInfoType prim, DWORDLONG classHandle);
21void DumpSigToConsoleBare(MethodContext* mc, CORINFO_SIG_INFO* pSig);
22char* DumpAttributeToConsoleBare(DWORD attribute);
23
24#endif
25