summaryrefslogtreecommitdiff
path: root/src/vm/veropcodes.hpp
blob: a4a89074338fc50599ee5ad64e94a62ca05e081e (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
31
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license 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 */