summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/mcs/verbildump.h
blob: e947fcf40c7d9e5e903640c6b0135e807100e0aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

//----------------------------------------------------------
// verbILDump.h - verb that attempts to dump the raw IL for a MC
//----------------------------------------------------------
#ifndef _verbILDump
#define _verbILDump

#include "methodcontext.h"

class verbILDump
{
public:
    static int DoWork(const char *nameOfInput1, int indexCount, const int *indexes);
};

void DumpPrimToConsoleBare(MethodContext *mc, CorInfoType prim, DWORDLONG classHandle);
void DumpSigToConsoleBare(MethodContext *mc, CORINFO_SIG_INFO *pSig);
char * DumpAttributeToConsoleBare(DWORD attribute);

#endif