summaryrefslogtreecommitdiff
path: root/src/vm/veropcodes.hpp
blob: 1d25b75ac93d19fbefbc78c6766ce97dddb30225 (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
25
26
27
28
29
30
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
// veropcodes.hpp
//

//
// Declares the enumeration of the opcodes and the decoding tables.
//

#include "openum.h"

#define HackInlineAnnData  0x7F

#ifdef DECLARE_DATA
#define OPDEF(c,s,pop,push,args,type,l,s1,s2,ctrl) L##s,

const WCHAR * const ppOpcodeNameList[] =
{
#include "../inc/opcode.def"
};

#undef OPDEF

#else /* !DECLARE_DATA */

extern const WCHAR * const ppOpcodeNameList[];

#endif /* DECLARE_DATA */