summaryrefslogtreecommitdiff
path: root/src/ilasm/asmenum.h
blob: 8dd4318cb568ec5b93bcd6612015ad59f95e1f76 (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
32
33
34
35
36
37
38
39
40
41
42
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. 
//
#ifndef __asmenum_h__
#define __asmenum_h__

#include "openum.h"

typedef struct
{
    const char * pszName;
    OPCODE       op;

    BYTE         Type;   // Inline0 etc.

    BYTE         Len;    // std mapping
    BYTE         Std1;
    BYTE         Std2;
} opcodeinfo_t;

#ifdef DECLARE_DATA
opcodeinfo_t OpcodeInfo[] =
{
#define OPALIAS(c,s,real) { s, real, 0, 0, 0, 0 },
#define OPDEF(c,s,pop,push,args,type,l,s1,s2,ctrl) { s, c, args,l,s1,s2 },
#include "opcode.def"
#undef OPDEF
#undef OPALIAS
};

unsigned  OpcodeInfoLen = sizeof(OpcodeInfo) / sizeof(opcodeinfo_t);
#else
extern opcodeinfo_t OpcodeInfo[];
extern unsigned OpcodeInfoLen;
#endif



#endif /* __openum_h__ */