summaryrefslogtreecommitdiff
path: root/src/ilasm/asmenum.h
blob: e16ee23dd0a32f35855e129cdae822ef2868ea43 (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
// 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.
#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__ */