target/s390x: Rename insn-data/format.def -> insn-data/format.h.inc
We use the .h.inc extension to include C headers. To be consistent with the rest of the codebase, rename the C headers using the .def extension. IDE/tools using our .editorconfig / .gitattributes will leverage this consistency. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20221025235006.7215-3-philmd@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
0f208a9747
commit
9cef8d9926
|
@ -8,7 +8,7 @@
|
||||||
*
|
*
|
||||||
* OPC = (op << 8) | op2 where op is the major, op2 the minor opcode
|
* OPC = (op << 8) | op2 where op is the major, op2 the minor opcode
|
||||||
* NAME = name of the opcode, used internally
|
* 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)
|
* FAC = facility the opcode is available in (defined in DisasFacility)
|
||||||
* I1 = func in1_xx fills o->in1
|
* I1 = func in1_xx fills o->in1
|
||||||
* I2 = func in2_xx fills o->in2
|
* I2 = func in2_xx fills o->in2
|
|
@ -1011,7 +1011,7 @@ static void free_compare(DisasCompare *c)
|
||||||
#define F6(N, X1, X2, X3, X4, X5, X6) F0(N)
|
#define F6(N, X1, X2, X3, X4, X5, X6) F0(N)
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
#include "insn-format.def"
|
#include "insn-format.h.inc"
|
||||||
} DisasFormat;
|
} DisasFormat;
|
||||||
|
|
||||||
#undef F0
|
#undef F0
|
||||||
|
@ -1076,7 +1076,7 @@ typedef struct DisasFormatInfo {
|
||||||
#define F6(N, X1, X2, X3, X4, X5, X6) { { X1, X2, X3, X4, X5, X6 } },
|
#define F6(N, X1, X2, X3, X4, X5, X6) { { X1, X2, X3, X4, X5, X6 } },
|
||||||
|
|
||||||
static const DisasFormatInfo format_info[] = {
|
static const DisasFormatInfo format_info[] = {
|
||||||
#include "insn-format.def"
|
#include "insn-format.h.inc"
|
||||||
};
|
};
|
||||||
|
|
||||||
#undef F0
|
#undef F0
|
||||||
|
@ -6143,7 +6143,7 @@ static void in2_insn(DisasContext *s, DisasOps *o)
|
||||||
#define E(OPC, NM, FT, FC, I1, I2, P, W, OP, CC, D, FL) insn_ ## NM,
|
#define E(OPC, NM, FT, FC, I1, I2, P, W, OP, CC, D, FL) insn_ ## NM,
|
||||||
|
|
||||||
enum DisasInsnEnum {
|
enum DisasInsnEnum {
|
||||||
#include "insn-data.def"
|
#include "insn-data.h.inc"
|
||||||
};
|
};
|
||||||
|
|
||||||
#undef E
|
#undef E
|
||||||
|
@ -6223,7 +6223,7 @@ enum DisasInsnEnum {
|
||||||
#define FAC_MIE3 S390_FEAT_MISC_INSTRUCTION_EXT3 /* miscellaneous-instruction-extensions facility 3 */
|
#define FAC_MIE3 S390_FEAT_MISC_INSTRUCTION_EXT3 /* miscellaneous-instruction-extensions facility 3 */
|
||||||
|
|
||||||
static const DisasInsn insn_info[] = {
|
static const DisasInsn insn_info[] = {
|
||||||
#include "insn-data.def"
|
#include "insn-data.h.inc"
|
||||||
};
|
};
|
||||||
|
|
||||||
#undef E
|
#undef E
|
||||||
|
@ -6233,7 +6233,7 @@ static const DisasInsn insn_info[] = {
|
||||||
static const DisasInsn *lookup_opc(uint16_t opc)
|
static const DisasInsn *lookup_opc(uint16_t opc)
|
||||||
{
|
{
|
||||||
switch (opc) {
|
switch (opc) {
|
||||||
#include "insn-data.def"
|
#include "insn-data.h.inc"
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue