*
* OPC = (op << 8) | op2 where op is the major, op2 the minor opcode
* NAME = name of the opcode, used internally
- * FMT = format of the opcode (defined in insn-format.def)
+ * FMT = format of the opcode (defined in insn-format.h.inc)
* FAC = facility the opcode is available in (defined in DisasFacility)
* I1 = func in1_xx fills o->in1
* I2 = func in2_xx fills o->in2
#define F6(N, X1, X2, X3, X4, X5, X6) F0(N)
typedef enum {
-#include "insn-format.def"
+#include "insn-format.h.inc"
} DisasFormat;
#undef F0
#define F6(N, X1, X2, X3, X4, X5, X6) { { X1, X2, X3, X4, X5, X6 } },
static const DisasFormatInfo format_info[] = {
-#include "insn-format.def"
+#include "insn-format.h.inc"
};
#undef F0
#define E(OPC, NM, FT, FC, I1, I2, P, W, OP, CC, D, FL) insn_ ## NM,
enum DisasInsnEnum {
-#include "insn-data.def"
+#include "insn-data.h.inc"
};
#undef E
#define FAC_MIE3 S390_FEAT_MISC_INSTRUCTION_EXT3 /* miscellaneous-instruction-extensions facility 3 */
static const DisasInsn insn_info[] = {
-#include "insn-data.def"
+#include "insn-data.h.inc"
};
#undef E
static const DisasInsn *lookup_opc(uint16_t opc)
{
switch (opc) {
-#include "insn-data.def"
+#include "insn-data.h.inc"
default:
return NULL;
}