summaryrefslogtreecommitdiff
path: root/src/ildasm/dasmenum.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ildasm/dasmenum.hpp')
-rw-r--r--src/ildasm/dasmenum.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/ildasm/dasmenum.hpp b/src/ildasm/dasmenum.hpp
new file mode 100644
index 0000000000..3dd72ab4d5
--- /dev/null
+++ b/src/ildasm/dasmenum.hpp
@@ -0,0 +1,31 @@
+// 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.
+
+#include "openum.h"
+
+typedef struct
+{
+ const char * pszName;
+
+ OPCODE Ref; // reference codes
+
+ BYTE Type; // Inline0 etc.
+
+ BYTE Len; // std mapping
+ BYTE Std1;
+ BYTE Std2;
+} opcodeinfo_t;
+
+#ifdef DECLARE_DATA
+opcodeinfo_t OpcodeInfo[] =
+{
+#define OPDEF(c,s,pop,push,args,type,l,s1,s2,ctrl) { s,c,args,l,s1,s2 },
+#include "opcode.def"
+#undef OPDEF
+};
+#else
+extern opcodeinfo_t OpcodeInfo[];
+#endif
+
+