* Merged with 0da121c758b9.
[cacao.git] / src / vm / jit / ir / bytecode.h
index f920544e401a73a977616a0d4cb864bfd4e443fa..fbedc920fe463021862d1d5698032e1a2a938021 100644 (file)
 #include "config.h"
 
 
+/* bytecode_t *****************************************************************/
+
+typedef struct bytecode_t bytecode_t;
+
+struct bytecode_t {
+       int   length;                       /* length of the instruction in bytes */
+       int   slots;                        /* required stack slots               */
+       char *mnemonic;
+};
+
+extern bytecode_t bytecode[256];
+
+
 /* Java bytecodes *************************************************************/
 
 enum {