summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/mcs/verbildump.h
blob: d93b9ac1a5463ad61d8277b7254a40486bc4c1af (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